Annotation of parser3/ChangeLog, revision 1.198
1.198 ! moko 1: 2024-09-22 moko
! 2:
! 3: * src/classes/array.C: minor simplification
! 4:
! 5: * src/classes/array.C: ^array.left(N),
! 6: ^array.right(N),^array.mid(P;N) added (related to feature #930)
! 7:
! 8: * src/: classes/array.C, include/pa_request.h, main/pa_request.C,
! 9: types/pa_varray.C, types/pa_varray.h: $MAIN:LIMITS.max_array_size
! 10: added, default 1000000 (related to feature #930)
! 11:
! 12: * tests/: 426.html, results/426.processed: test for negative limit
! 13: and offset processing for table options added
! 14:
! 15: * src/: classes/table.C, include/pa_array.h, main/pa_table.C:
! 16: bugfix: negative limit and offset processing for table options
! 17: fixed
! 18:
! 19: 2024-09-21 moko
! 20:
! 21: * src/: classes/array.C, types/pa_varray.h: join supports hash;
! 22: ^for added that also iterates holes; ^remove added (related to
! 23: feature #930)
! 24:
! 25: * src/classes/array.C: ^array.join[$another_array; $.limit(N)
! 26: $.offset(M) ] added (related to feature #930)
! 27:
! 28: 2024-09-20 moko
! 29:
! 30: * src/: classes/array.C, types/pa_varray.h: array:
! 31: +foreach[value]{code}, + add[hash with numeric keys] (related to
! 32: feature #930)
! 33:
! 34: 2024-09-19 moko
! 35:
! 36: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h,
! 37: main/execute.C, types/pa_varray.h: OP_CONSTRUCT_ARRAY added to
! 38: support $a[v1;v2;...] syntax (related to feature #930)
! 39:
! 40: 2024-09-17 moko
! 41:
! 42: * src/: classes/reflection.C, include/pa_request.h,
! 43: main/compile_tools.h, main/pa_request.C:
! 44: ^reflection:class_alias[existing class name;alias class name]
! 45: added. The array class can now be redefined regardless of the
! 46: $.replace(bool) option value (related to feature #930)
! 47:
! 48: * src/main/: compile.y, compile_tools.h: class_add return value
! 49: inverted to add it to request class
! 50:
! 51: * src/: classes/array.C, include/pa_array.h, include/pa_request.h,
! 52: include/pa_stack.h, types/pa_varray.C, types/pa_varray.h,
! 53: types/pa_vmethod_frame.h: array: fused -> fsize, fit(index) to
! 54: resize if required. spared array - added fused, append.
! 55:
1.197 moko 56: 2024-09-16 moko
57:
58: * src/types/pa_varray.h: get moved to where it belongs
59:
60: 2024-09-15 moko
61:
62: * src/: include/pa_array.h, types/pa_varray.h: more agressive
63: expansion to minimize reallocs: fallocated/32 -> fallocated/4
64:
65: * tests/: 421.html, results/323.processed, results/421.processed:
66: tests updated after 'spared-array' class renamed to 'array'
67: following a discussion on the forum (related to feature #930)
68:
69: * src/: include/pa_array.h, types/pa_value.h, types/pa_varray.h,
70: types/pa_vmail.C: initial SparseArray separation from Array,
71: parser class now 'array'
72:
73: 2024-09-14 moko
74:
75: * tests/: 030.html, results/030.processed: out of range expires
76: check added
77:
78: * src/types/pa_vcookie.C: VDate range is narrower than gmtime, thus
79: checking expires time using VDate
80:
81: 2024-09-13 moko
82:
83: * src/: classes/array.C, classes/curl.C, classes/date.C,
84: classes/file.C, classes/hash.C, classes/image.C, classes/json.C,
85: classes/memcached.C, classes/op.C, classes/regex.C,
86: classes/string.C, classes/xdoc.C, classes/xnode.C,
87: main/execute.C, main/pa_http.C, main/pa_request.C,
88: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
89: types/pa_vclass.h, types/pa_vcookie.C, types/pa_vhashfile.C,
90: types/pa_vmail.C, types/pa_vobject.C, types/pa_vobject.h,
91: types/pa_vxdoc.C, types/pa_vxdoc.h: optimization: Value::as()
92: removed as dynamic_cast is faster, Value::is() is still required
93: for is operator.
94:
95: 2024-09-12 moko
96:
97: * src/: classes/file.C, classes/image.C, classes/reflection.C,
98: classes/table.C, classes/xnode.C, include/pa_array.h,
99: include/pa_string.h, main/pa_common.C, main/pa_request.C,
100: main/pa_string.C, targets/cgi/pa_sapi_info.h, types/pa_vform.C,
101: types/pa_vhash.h, types/pa_vtable.C, types/pa_vxnode.C: faster
102: templated pa_itoa/pa_uitoa added to work with any integer type,
103: String::Body::Format removed
104:
105: 2024-09-10 moko
106:
107: * src/classes/array.C: append and insert methods added to
108: sparse-array (related to feature #930)
109:
110: * tests/: 253.html, 255.html, 421.html, results/421.processed:
111: tests updated after sparse-array was added to avoid ^json:parse[]
112: using it in old tests (related to feature #930)
113:
114: * src/: classes/array.C, classes/json.C, types/pa_varray.C,
115: types/pa_varray.h: sparse-array class added (initial feature #930
116: implementation)
117:
118: * src/: classes/Makefile.am, types/Makefile.am: Makefiles update
119: for sparse-array class files (related to feature #930)
120:
121: * src/: classes/json.C, include/pa_array.h, types/pa_value.h,
122: types/pa_vhash.h: VArray support functions without actual VArray
123: files (related to feature #930)
124:
1.196 moko 125: 2024-09-07 moko
126:
127: * src/: classes/curl.C, classes/string.C, classes/table.C,
128: include/pa_array.h, main/execute.C, main/pa_dictionary.C,
129: main/pa_http.C, main/pa_sql_driver_manager.C,
130: main/pa_stylesheet_manager.C, main/pa_table.C, types/pa_vclass.C,
131: types/pa_vmethod_frame.C, types/pa_vstateless_class.C,
132: types/pa_vtable.C, types/pa_wcontext.C: Array::Iterator unified
133: with Hash::Iterator, has_next() replaced with operator bool
134: (related to feature #930)
135:
136: * src/: classes/string.C, include/pa_array.h, main/pa_http.C,
137: main/pa_table.C, types/pa_vclass.C, types/pa_vmethod_frame.C,
138: types/pa_vstateless_class.C: Array class extended,
139: Array::Iterator added and used (related to feature #930)
140:
1.195 moko 141: 2024-08-26 moko
142:
143: * src/targets/cgi/parser3.C: under Windows back_slashes_to_slashes
144: should be used on argv[0] as well to match document root.
145:
1.194 moko 146: 2024-08-25 moko
147:
148: * src/main/pa_request.C: be more specific
149:
150: * src/targets/cgi/parser3.C: parser3 t.html now behaves identically
151: to /usr/bin/parser3 t.html in terms of /etc/parser3/auto.p load
152: (fixes bug #1244)
153:
154: * src/targets/cgi/parser3.C: avoid "parser allready configured"
155: exception when ./parser3.cgi <file> is used; rsplit(..., '/') ||
156: rsplit(..., '\\') is not correct when / and \ are mixed in path
157:
158: * src/targets/cgi/parser3.C: full_disk_path now uses pa_strcat()
159:
1.193 moko 160: 2024-07-24 moko
161:
162: * src/: include/pa_config_includes.h, lib/gd/gifio.C,
163: main/execute.C, main/pa_string.C: Warning war: clang changed
164: -Wdeprecated-register warning to -Wregister, it's easier to
165: remove all register vars then continue this fight. :)
166:
167: * src/main/: compile.y, compile.tab.C: warning war: register
168: removed
169:
1.192 moko 170: 2024-07-14 moko
171:
172: * src/targets/cgi/pa_sapi_info.h: When accessing $env:name,
173: checking the HTTP request environment; if the variable is not
174: present, checking the web server process environment (implements
175: feature #1242)
176:
1.191 moko 177: 2024-05-26 moko
178:
179: * tests/: 195.html, 229.html, results/096.processed,
180: results/097.processed, results/158.processed,
181: results/186.processed, results/273.processed,
182: results/293.processed, results/317.processed,
183: results/389.processed, results/402.processed: tests updated as
184: single quote now escaped with ' in HTML tainting mode
185: (related to feature #1241)
186:
187: * src/main/untaint.C: single quote now escaped with ' in HTML
188: tainting mode (implements feature #1241)
189:
190: * tests/results/: 020.processed, 021.processed, 026.processed,
191: 042.processed, 043.processed, 057.processed, 110.processed,
192: 115.processed, 116.processed, 117.processed, 118.processed,
193: 119.processed, 120.processed, 125.processed, 126.processed,
194: 128.processed, 130.processed, 131.processed, 132.processed,
195: 133.processed, 135.processed, 136.processed, 138.processed,
196: 139.processed, 140.processed, 145.processed, 150.processed,
197: 151.processed, 165.processed, 174.processed, 181.processed,
198: 182.processed, 192.processed, 193.processed, 201.processed,
199: 213.processed, 224.processed, 226.processed, 230.processed,
200: 239.processed, 240.processed, 244.processed, 253.processed,
201: 254.processed, 261.processed, 264.processed, 269.processed,
202: 274.processed, 275.processed, 288.processed, 294.processed,
203: 296.processed, 303.processed, 306.processed, 307.processed,
204: 308.processed, 311.processed, 312.processed, 314.processed,
205: 315.processed, 316.processed, 320.processed, 323.processed,
206: 324.processed, 325.processed, 328.processed, 330.processed,
207: 332.processed, 333.processed, 337.processed, 338.processed,
208: 341.processed, 342.processed, 343.processed, 344.processed,
209: 345.processed, 348.processed, 352.processed, 356.processed,
210: 357.processed, 363.processed, 364.processed, 368.processed,
211: 372.processed, 373.processed, 376.processed, 378.processed,
212: 379.processed, 385.processed, 386.processed, 387.processed,
213: 389.processed, 390.processed, 395.processed, 397.processed,
214: 398.processed, 399.processed, 404.processed, 406.processed,
215: 413.processed, 414.processed, 420.processed, 421.processed,
216: 424.processed, auto.p: Type -> Exception type for readability
217:
218: * tests/: 119.html, 165.html, 175.html, 192.html, 213.html,
219: 217.html, 230.html, 240.html, 298.html, 380.html, 415.html,
220: results/119.processed, results/165.processed,
221: results/175.processed, results/192.processed,
222: results/213.processed, results/217.processed,
223: results/230.processed, results/240.processed,
224: results/298.processed, results/380.processed,
225: results/415.processed: try-catch, try-catch-comment used
226:
227: 2024-05-21 moko
228:
229: * tests/: 169.html, 180.html, 195.html, 224.html, 246.html,
230: results/180.processed, results/195.processed,
231: results/224.processed, results/auto.p: @try-catch-comment added
232: and used
233:
234: * tests/: 175.html, 256.html, 269.html, 283.html, 341.html,
235: 415.html, results/269.processed, results/283.processed,
236: results/auto.p: more tests are updated to prepare for apostrophe
237: escaping in HTML tainting
238:
239: * tests/results/: 181.processed, 294.processed, 296.processed,
240: 315.processed, 379.processed, 389.processed, auto.p:
241: $exception.comment printed as-is for whitespace reporting and to
242: prepare for apostrophe escaping in HTML mode
243:
1.190 moko 244: 2024-05-11 moko
245:
246: * tests/: 099.html, 100.html, results/099.processed,
247: results/100.processed: a test for non-UTF-8 filename* added
248: (related to feature #1240)
249:
250: * tests/: 293.html, results/293.processed: tainting modes tests
251: added
252:
253: * tests/results/: 099.processed, 100.processed, 205.processed,
254: 309.processed, 310.processed, 419.processed: tests results
255: updated after filename* added (related to feature #1240)
256:
257: * src/: include/pa_common.h, main/pa_request.C: The filename*
258: parameter was added to the Content-Disposition header to conform
259: with RFC 6266, with code provided by Sumo (implements feature
260: #1240)
261:
262: 2024-05-10 moko
263:
264: * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
265: positive performance effect in our case
266:
1.189 moko 267: 2024-03-27 moko
268:
269: * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
270: (related to feature #1236)
271:
272: 2024-03-15 moko
273:
274: * tests/: 413.html, results/413.processed: test for object still
275: can be used as file parameter (related to bug #1218)
276:
277: * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
278: still can be used in file context (fixes bug #1218)
279:
280: 2024-03-14 moko
281:
282: * src/include/pa_string.h: ArrayString get() null result assert
283: also added (related to bug #1238)
284:
285: * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
286: VString::empty() used instead of new VString()
287:
288: 2024-03-12 moko
289:
290: * tests/: 379-curl.html, 379.html, results/379-curl.processed,
291: results/379.processed: test added for cookie without value
292: (related to bug #1238)
293:
294: * src/include/pa_string.h: In assertions enabled mode, ArrayString
295: values are now required to be non-null (related to bug #1238)
296:
297: * src/main/pa_http.C: cookies without value are now parsed
298: correctly (fixed bug #1238)
299:
300: 2024-03-11 moko
301:
302: * tests/run_parser.sh: for better error reporting
303:
1.188 moko 304: 2023-12-30 moko
305:
306: * tests/: 038.html, results/038.processed: test for atan2 added
307:
308: 2023-12-29 moko
309:
310: * src/classes/math.C: atan2(y,x) math function added
311:
1.187 moko 312: 2023-12-14 moko
313:
314: * tests/212.html: pcre2 compatibility (related to feature #1236)
315:
316: * tests/: 425.html, results/425.processed: test for pcre/pcre2
317: exceptions and behavour added (related to feature #1236)
318:
319: 2023-12-13 moko
320:
321: * buildall: by default parser is now bundled with pcre2 10.42,
322: --without-pcre2 option added to build with pcre-8.45 (related to
323: feature #1236)
324:
325: 2023-12-12 moko
326:
327: * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
328: support added (implements feature #1236)
329:
330: * src/: include/pa_charset.h, include/pa_config_includes.h,
331: lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
332: main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
333: types/pa_vregex.h: Adopted patch from Yavor Doganov
334: <yavor@gnu.org> to add pcre2 library support (implements feature
335: #1236)
336:
1.186 moko 337: 2023-11-28 moko
338:
339: * src/include/pa_config_includes.h: warnings war continues
340:
341: * src/include/pa_config_includes.h: warning war
342:
343: * tests/: 424.html, results/424.processed: tests for '+' and '-'
344: number strings, whitespace and sign in exception messages
345: (related to bug #1234)
346:
1.185 moko 347: 2023-11-26 moko
348:
349: * tests/: 274.html, results/224.processed, results/274.processed:
350: tests for date double, int, bool added (related to feature #1235)
351:
352: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
353: added for date class (implements feature #1235)
354:
355: 2023-11-23 moko
356:
357: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
358: and '-' strings are no longer can be treated as number 0,
359: exception thrown (fixes bug #1234)
360:
1.184 moko 361: 2023-11-18 moko
362:
363: * src/include/pa_types.h: minor
364:
365: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
366:
367: * tests/: 389.html, results/389.processed: error messages for some
368: OS differs a bit, reducing failing tests for them
369:
370: 2023-11-17 moko
371:
372: * tests/: 423.html, results/423.processed: test for optional
373: @auto[] inheritance added (related to feature #1233)
374:
375: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
376: types/pa_vstateless_class.C: optional @auto[] inheritance
377: implemented if defined with two args (path, class name)
378: (implements feature #1233)
379:
380: * src/: classes/double.C, classes/int.C, classes/math.C,
381: include/pa_random.h, include/pa_types.h, main/pa_common.C,
382: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
383: sync double->int overflow behavour under different architectures
384: (fixes bug #1232)
385:
386: * tests/: 422.html, results/422.processed: int clipping added
387:
388: 2023-11-16 moko
389:
390: * tests/: 422.html, results/422.processed: test for int and uint
391: overflow in ^n.format[d/u/x]
392:
393: * src/classes/math.C: bugfix: crc32 should not be negative (under
394: Apple M1 when negative double converts to uint the result is 0)
395: and crc32 should be 32 bits
396:
397: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
398: on Apple M1 it's 0
399:
400: * src/classes/file.C: bugfix: crc32 should not be negative (under
401: Apple M1 when negative double converts to uint the result is 0)
402: and crc32 should be 32 bits
403:
1.183 moko 404: 2023-10-07 moko
405:
406: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
407: behavour with other OP_NUM_*, related to bug #1230
408:
409: 2023-10-06 moko
410:
411: * tests/: 338.html, results/338.processed: test for bug #1230 added
412:
413: * src/: main/execute.C, types/pa_vdate.h: force double operands to
414: be converted to double to avoid 80 bit operations in x87 mode
415: (fixes bug #1230)
416:
417: 2023-10-05 moko
418:
419: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
420: compatibility
421:
422: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
423:
424: * tests/: 421.html, results/421.processed: test to cover all
425: classes and objects nonexistent method and field exceptions
426: (related to feature #1080 and #1227)
427:
428: * tests/results/: 182.processed, 324.processed: undefined method ->
429: <type> method not found exception (related to feature #1080)
430:
431: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
432: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
433: "element can not be fetched from" for them, "field not found" for
434: all other types (related to bug #1227)
435:
436: 2023-10-03 moko
437:
438: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
439: <type> method not found" exception now thrown for static calls
440: instead of "undefined method" without class name (related to
441: feature #1080)
442:
443: 2023-10-02 moko
444:
445: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
446: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
447: <method name>, Comment: <type> method not found" exception now
448: thrown for all dynamic objects instead of "undefined method"
449: without class name (implements feature #1080)
450:
1.182 moko 451: 2023-10-01 moko
452:
453: * src/classes/json.C: we don't have a dynamic json object.
454:
455: 2023-09-28 moko
456:
457: * tests/: 420.html, results/261.processed, results/420.processed:
458: tests updated after bug #1228 fix reverted
459:
460: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
461: whitespace string is hash compatible, so we don't want $s.key to
462: return a junction
463:
464: * tests/: 261.html, 420.html, results/261.processed,
465: results/420.processed: test for bug #1227 added, test updated
466: after bug #1228 fixed
467:
468: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
469: now throws exception as $non-empty-string.field (fixes bug #1227)
470:
471: * src/types/pa_vstring.h: allow $string.method access (fixes bug
472: #1228)
473:
474: 2023-09-26 moko
475:
476: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
477: src/classes/classes.C, src/classes/classes.awk,
478: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
479: src/classes/double.C, src/classes/file.C, src/classes/form.C,
480: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
481: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
482: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
483: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
484: src/classes/regex.C, src/classes/response.C,
485: src/classes/string.C, src/classes/table.C, src/classes/void.C,
486: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
487: src/include/pa_array.h, src/include/pa_base64.h,
488: src/include/pa_cache_managers.h, src/include/pa_charset.h,
489: src/include/pa_charsets.h, src/include/pa_common.h,
490: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
491: src/include/pa_dictionary.h, src/include/pa_dir.h,
492: src/include/pa_exception.h, src/include/pa_exec.h,
493: src/include/pa_globals.h, src/include/pa_hash.h,
494: src/include/pa_http.h, src/include/pa_memory.h,
495: src/include/pa_opcode.h, src/include/pa_operation.h,
496: src/include/pa_os.h, src/include/pa_pool.h,
497: src/include/pa_random.h, src/include/pa_request.h,
498: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
499: src/include/pa_sapi.h, src/include/pa_socks.h,
500: src/include/pa_sql_connection.h,
501: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
502: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
503: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
504: src/include/pa_table.h, src/include/pa_threads.h,
505: src/include/pa_types.h, src/include/pa_uue.h,
506: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
507: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
508: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
509: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
510: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
511: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
512: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
513: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
514: src/main/compile.tab.C, src/main/compile.y,
515: src/main/compile_tools.C, src/main/compile_tools.h,
516: src/main/execute.C, src/main/pa_base64.C,
517: src/main/pa_cache_managers.C, src/main/pa_charset.C,
518: src/main/pa_charsets.C, src/main/pa_common.C,
519: src/main/pa_dictionary.C, src/main/pa_dir.C,
520: src/main/pa_exception.C, src/main/pa_exec.C,
521: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
522: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
523: src/main/pa_request.C, src/main/pa_socks.C,
524: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
525: src/main/pa_stylesheet_connection.C,
526: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
527: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
528: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
529: src/main/untaint.C, src/main/helpers/simple_folding.pl,
530: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
531: src/targets/apache/mod_parser3_core.C,
532: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
533: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
534: src/types/pa_method.h, src/types/pa_property.h,
535: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
536: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
537: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
538: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
539: src/types/pa_vcookie.h, src/types/pa_vdate.C,
540: src/types/pa_vdate.h, src/types/pa_vdouble.h,
541: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
542: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
543: src/types/pa_vhash.C, src/types/pa_vhash.h,
544: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
545: src/types/pa_vimage.C, src/types/pa_vimage.h,
546: src/types/pa_vint.h, src/types/pa_vjunction.C,
547: src/types/pa_vjunction.h, src/types/pa_vmail.C,
548: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
549: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
550: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
551: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
552: src/types/pa_vobject.h, src/types/pa_vregex.C,
553: src/types/pa_vregex.h, src/types/pa_vrequest.C,
554: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
555: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
556: src/types/pa_vstateless_class.h,
557: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
558: src/types/pa_vstatus.h, src/types/pa_vstring.C,
559: src/types/pa_vstring.h, src/types/pa_vtable.C,
560: src/types/pa_vtable.h, src/types/pa_vvoid.C,
561: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
562: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
563: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
564: src/types/pa_wwrapper.h: copyright, authors actualized
565:
1.181 moko 566: 2023-08-20 moko
567:
568: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
569: commited (related to feature #1219)
570:
571: 2023-08-16 moko
572:
573: * src/main/pa_random.C: replaced clock precision with monotonicity
574: counter, good for Windows version with low clock frequency
575: (related to feature #1229)
576:
577: 2023-08-15 moko
578:
579: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
580: fixes related to feature #1229
581:
582: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
583: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
584: (implements feature #1229)
585:
1.180 moko 586: 2023-08-02 moko
587:
588: * tests/: results/417.processed, 417.html: test for empty string
589: match after last char added (related to bug #1224)
590:
591: * src/main/pa_string.C: avoid prestart++ after last char on zero
592: length match (related to bug #1224)
593:
1.179 moko 594: 2022-11-22 moko
595:
596: * tests/: 419.html, results/419.processed: test for L_URI and path
597: removeal from filename added (related to bug #1204)
598:
599: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
600: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
601: attribute value, L_URI should be used
602:
1.178 moko 603: 2022-09-21 moko
604:
605: * src/targets/cgi/parser3.C: more clear error messages
606:
607: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
608: SAPI_Info will return 0 in read_post and post_size !=
609: content_length will be thrown
610:
1.177 moko 611: 2022-08-23 moko
612:
613: * src/types/pa_vmail.C: .tables addes as .raw contains only last
614: header value
615:
616: 2022-08-22 moko
617:
618: * tests/: 418.html, results/418.processed: test for
619: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
620: to #1225)
621:
622: * src/classes/hash.C: keep old behavoir by default
623:
624: * src/classes/hash.C: ^hash_a.intersection[hash_b;
625: $.order[self|arg] ] added (implements #1215)
626:
1.176 moko 627: 2022-03-21 moko
628:
629: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
630: xmlInitCharEncodingHandlers is called in libxml static
631: initializers before gc_substitute_memory_management_functions in
632: pa_globals and thus gc may not see reference to our
633: xmlCharEncodingHandler and free it.
634:
1.175 moko 635: 2022-01-26 moko
636:
637: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
638:
1.174 moko 639: 2021-12-28 moko
640:
641: * tests/: 417.html, results/417.processed: test for empty string
642: match added (related to bug #1224)
643:
644: * src/main/pa_string.C: empty string match now works (fixes bug
645: #1224)
646:
1.173 moko 647: 2021-12-24 moko
648:
649: * tests/: 415_dir/29.p, results/415.processed: yet another test
650:
651: 2021-12-23 moko
652:
653: * src/: classes/table.C, main/pa_request.C: warnings war
654:
655: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
656: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
657:
658: 2021-12-21 moko
659:
660: * tests/: 416.html, results/416.processed: test for ^break[] in
661: ^hash/table.select[] (related to feature #1222)
662:
663: * src/classes/: hash.C, table.C: ^break[] support for
664: ^hash/table.select[] (implements feature #1222)
665:
1.172 moko 666: 2021-11-30 moko
667:
668: * src/targets/cgi/parser3.C: default sock_ready interval changed to
669: 0.5 sec
670:
1.171 moko 671: 2021-11-10 moko
672:
673: * tests/results/415.processed: more syntax errors tests added
674:
675: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
676: 28.p: minor syntax error tests
677:
678: * src/main/pa_exception.C: pa_strdup added for compatibility
679:
680: * src/classes/curl.C: hint to call ^curl:options[
681: $.library[correct.libcurl.so.name] ] added if default load fails.
682:
683: 2021-11-09 moko
684:
685: * src/main/compile.y: error message can be on stack
686:
687: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
688:
689: * src/main/pa_charset.C: memcpy is more correct and efficient in
690: this case then strncpy
691:
692: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
693: instead of strcpy where possible
694:
695: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
696: used to avoid MAX_STRING limit in Exception comment
697:
698: * tests/results/415.processed: compiler exceptions are no longer
699: limited to MAX_STRING
700:
701: * src/main/: compile.y, compile_tools.h: Parse_control uses const
702: char * instead of fixed buffer
703:
704: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
705: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
706: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
707: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
708: results/415.processed: tests for parser.compile exceptions added
709:
710: 2021-11-08 moko
711:
712: * src/: classes/math.C, include/pa_common.h, main/compile.y,
713: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
714: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
715: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
716: drawbacks
717:
1.170 moko 718: 2021-11-06 moko
719:
720: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
721: (implements feature #1219)
722:
723: * tests/: 414.html, results/414.processed: test for
724: ^hash.rename[from;to] added (related to feature #1144)
725:
726: 2021-11-05 moko
727:
728: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
729: (related to feature #1144)
730:
731: 2021-11-04 moko
732:
733: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
734: added (implements feature #1144)
735:
1.169 moko 736: 2021-10-19 moko
737:
738: * tests/: 413.html, results/413.processed: test for hash no longer
739: is accepted as file parameter (related to bug #1218)
740:
741: * src/: classes/curl.C, classes/file.C, classes/image.C,
742: classes/math.C, classes/xdoc.C, types/pa_value.C,
743: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
744: longer is accepted as file parameter (fixes bug #1218)
745:
1.168 moko 746: 2021-07-19 moko
747:
748: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
749: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
750:
1.167 moko 751: 2021-04-16 moko
752:
753: * src/types/pa_vmail.C: message can be null when e-mail is broken,
754: processing it leads to assertions.
755:
1.166 moko 756: 2021-03-25 moko
757:
758: * tests/: 412.html, results/412.processed: test to demonstrate bug
759: #1213
760:
1.165 moko 761: 2021-02-12 moko
762:
763: * tests/: 360.html, results/360.processed, results/363.processed:
764: parser method call in expression mode no longer differs from call
765: in string mode (related to feature #1211)
766:
767: 2021-02-11 moko
768:
769: * src/types/pa_vmail.C: mail parsing with Windows line endings
770: fixed (bug #1212)
771:
772: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
773: when called $v[^test[]] vs $v(^test[]), numbers are converted to
774: strings in both calls (implements feature #1211)
775:
1.164 moko 776: 2021-01-28 moko
777:
778: * buildall, etc/auto.p.in: to remove last patch in debian package
779:
780: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
781: 3.4.7b
782:
1.162 moko 783: 2021-01-21 moko
784:
785: * src/main/pa_http.C: no alarm() in file::load when web server mode
786: is MULTITHREADED
787:
1.157 moko 788: 2021-01-20 moko
789:
1.161 moko 790: * src/targets/apache/mod_parser3.c: it is more correct to recommend
791: 'a2enmod mpm_prefork'
792:
1.160 moko 793: * src/targets/apache/mod_parser3.c: prefork name is now
794: 'libapache2-mpm-itk'
795:
796: * src/targets/apache/mod_parser3_core.C: last regular malloc
797: removed
798:
1.159 moko 799: * src/targets/isapi/Makefile.am: -pa_threads.C
800:
1.158 moko 801: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
802: 3.4.6
803:
1.157 moko 804: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
805:
806: * etc/auto.p.in: @config[result] added to simplify $cfg change in
807: /httpd.p
808:
809: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
810: ^use[/httpd.p] + optional ^preprocess[] (related to feature
811: #1203)
812:
813: 2021-01-19 moko
814:
815: * buildall: --disable-parallel-mark added to avoid "number of
816: processors" threads creation for heap marking as it conflicts
817: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
818: limits threads)
819:
1.156 moko 820: 2021-01-16 moko
821:
822: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
823: main/pa_globals.C, main/pa_memory.C,
824: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
825: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
826: feature #1209)
827:
828: 2021-01-15 moko
829:
830: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
831: 3.4.6rc
832:
833: * src/classes/json.C: get_delim added for delimiter caching (10%
834: faster on large json)
835:
836: 2021-01-14 moko
837:
838: * operators.txt: updated with 3.4.6 changes
839:
840: * tests/results/224.processed: test result modified after
841: today(shift) implemented
842:
843: * tests/: 407.html, results/407.processed: test for ^hash.select
844: option $.default(bool) added (related to feature #1172)
845:
846: * src/classes/hash.C: ^hash.select option $.default(bool) added
847: (related to feature #1172)
848:
849: * tests/: 141.html, results/141.processed: test modified for
850: feature #1185.
851:
852: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
853: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
854: options $.lower(bool) (implements feature #1185)
855:
856: 2021-01-11 moko
857:
858: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
859: #1192)
860:
861: * tests/: 411.html, results/411.processed: test for ^date::today(N)
862: added (related to feature #1192)
863:
1.155 moko 864: 2021-01-05 moko
865:
866: * tests/: 270.html, results/270.processed: test modified to work
867: under Windows
868:
869: * tests/: 390.html, 395.html, results/395.processed: tests updated
870: 4 windows
871:
872: * tests/: 410.html, results/410.processed: test for
873: $CLASS-GETTER-PROTECTED(false) added
874:
875: 2021-01-04 moko
876:
877: * tests/: 409.html, results/409.processed, results/auto.p: test for
878: $MAIN:LOCALS(true) added
879:
1.154 moko 880: 2021-01-03 moko
881:
882: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
883: types/pa_vclass.h, types/pa_vstateless_class.C,
884: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
885: +LOCALS. $main -> $MAIN in exception texts (implements feature
886: #1207)
887:
888: 2021-01-02 moko
889:
890: * etc/auto.p.in: minor
891:
892: * src/main/pa_request.C: sending headers only after opening file to
893: allow error reporting if file was not opened (foreign group,
894: etc).
895:
896: 2020-12-31 moko
897:
898: * src/: include/pa_request.h, main/pa_request.C,
899: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
900:
901: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
902: main/pa_request.C: get_class_ref added and used
903:
904: * etc/auto.p.in: @CLASS httpd added
905:
906: * etc/auto.p.in: @auto[] is now first
907:
908: 2020-12-30 moko
909:
910: * tests/: 408.html, results/408.processed: test for bug #1166
911: (windows only) added
912:
913: * src/main/pa_common.C: create_dir_for_file should not create dir
914: for trailing / (fixes bug #1166)
915:
916: * tests/: 341.html, results/341.processed: tests for
917: ^nameless_table.hash[] added (related to feature #1138)
918:
919: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
920: (implements feature #1138), extra fields in named tables no
921: longer ignored (implements feature #1138)
922:
923: * tests/results/390.processed: updated after exception text change
924:
925: 2020-12-29 moko
926:
927: * tests/: 407.html, results/407.processed: +$._default check
928:
929: * src/classes/hash.C: keep $_default in ^hash.reverse[]
930:
931: * tests/: 407.html, results/407.processed: test for ^hash.select[]
932: and ^hash.reverse[] added (releated to feature #1172)
933:
934: * src/classes/hash.C:
935: ^hash.select[key;value](bool-condition)[options hash] +
936: ^hash.reverse[] added (implements feature #1172)
937:
938: * src/types/pa_vtable.h: warning war
939:
940: * src/include/pa_config_fixed.h: win32 fix
941:
1.153 moko 942: 2020-12-27 moko
943:
944: * tests/: 406.html, results/406.processed: test results updated
945:
946: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
947: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
948: spelling
949:
950: 2020-12-26 moko
951:
952: * tests/: 406.html, results/406.processed: tests for
953: ^table.rename[] added (related to feature #1148)
954:
955: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
956: ^table.rename[column name from;column name to], ^table.rename[
957: $.[column name from][column name to] ... ] added (implements
958: feature #1148)
959:
960: 2020-12-25 moko
961:
962: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
963: request_info now on stack to avoid yet another THREAD_LOCAL
964: memory deallocation issue (now with cookies), explained in #1203
965:
966: * src/types/pa_vcookie.C: fields should be inited
967:
968: 2020-12-24 moko
969:
970: * src/include/pa_stylesheet_connection.h: looks like
971: xsltFreeStylesheet leads to memory double-free. If so, it's for
972: sure libxml bug, but we have GC anyway, so we just remove this
973: call and see...
974:
975: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
976: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
977: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
978: abort.c:65:8 frame #3: 0x00000000004da663
979: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
980: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
981: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
982: malloc.c:617:9 frame #5: 0x0000000000577f0c
983: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
984: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
985: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
986: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
987: frame #8: 0x000000000050d35c
988: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
989: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
990: frame #10: 0x00000000004436e5
991: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
992: [inlined]
993: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
994: pa_stylesheet_connection.h:62:3
995:
996: 2020-12-23 moko
997:
998: * src/classes/image.C: ^image::measure[; $.video() ] option added
999:
1000: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
1001: ^image::measure[; $.video(true) ] added
1002:
1003: * src/main/pa_exec.C: not cleared automatically in multithreaded
1004: httpd mode for unknown reasons
1005:
1006: 2020-12-22 moko
1007:
1008: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
1009: error_log uri of currently processed document", but never used
1010: and conflicts with how libgc stops threads on FreeBSD (#define
1011: SIG_SUSPEND SIGUSR1), thus removed.
1012:
1013: 2020-12-21 moko
1014:
1015: * src/main/pa_request.C: +comment
1016:
1.151 moko 1017: 2020-12-20 moko
1018:
1.152 moko 1019: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
1020: it is more safe to have versions of pa_strdup with one and two
1021: arguments, as helper_length=0 not always mean that strlen()
1022: should be called, but means zero.
1023:
1024: * src/targets/isapi/parser3isapi.C: minor
1025:
1026: * src/main/pa_http.C: +valid_http_method
1027:
1.151 moko 1028: * src/: include/pa_http.h, main/pa_http.C,
1029: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
1030:
1031: 2020-12-17 moko
1032:
1033: * tests/: 405.html, results/405.processed: test for split by regex
1034: added (related to feature #1160)
1035:
1036: * src/classes/string.C: split by regex implemented (feature #1160)
1037:
1038: * src/classes/string.C: minor
1039:
1040: * tests/: 404.html, results/404.processed: test for whitespace
1041: string is now OK for table argument (related to feature #1169)
1042:
1043: * src/: classes/image.C, classes/string.C, classes/table.C,
1044: types/pa_vmethod_frame.C: whitespace string is now OK for table
1045: argument (as with hash) (implements feature #1169)
1046:
1047: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
1048: limit for comment (fixes bug #1102)
1049:
1050: * src/targets/cgi/parser3.C: +HAVE_TLS check
1051:
1052: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
1053:
1054: * src/include/pa_config_includes.h: HAVE_TLS used
1055:
1056: * configure.ac: +TLS check
1057:
1058: * src/main/pa_http.C: content logging added
1059:
1060: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
1061: clear_response_headers added
1062:
1063: 2020-12-16 moko
1064:
1065: * buildall: as we now use threads, libatomic_ops still required for
1066: some OS.
1067:
1068: * src/main/pa_request.C: whitespace
1069:
1070: * src/: include/pa_request.h, main/pa_request.C:
1071: Request::Exception_trace::table extracted and used
1072:
1073: * src/main/pa_request.C: moving output_result call outside of try
1074: as network exceptions should not be handled by parser code
1075:
1076: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
1077: logging network exchange
1078:
1079: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
1080: via network if it was network write error.
1081:
1082: * src/targets/cgi/parser3.C: log -> pa_log
1083:
1084: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
1085:
1086: * src/main/pa_threads.C: getpid() if no gettid() found
1087:
1088: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1089: we need to ignore "void" connections from browsers (browsers open
1090: connections in advance and they will be empty if user does not
1091: request more pages)
1092:
1093: 2020-12-15 moko
1094:
1095: * src/targets/cgi/parser3.C: avoid previous uri in logs
1096:
1097: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
1098: RequestController not needed in httpd mode
1099:
1100: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
1101: classes/classes.h, classes/curl.C, classes/date.C,
1102: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
1103: classes/hashfile.C, classes/image.C, classes/inet.C,
1104: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1105: classes/memcached.C, classes/memory.C, classes/op.C,
1106: classes/reflection.C, classes/regex.C, classes/response.C,
1107: classes/string.C, classes/table.C, classes/void.C,
1108: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
1109: include/pa_array.h, include/pa_base64.h,
1110: include/pa_cache_managers.h, include/pa_charset.h,
1111: include/pa_charsets.h, include/pa_common.h,
1112: include/pa_config_fixed.h, include/pa_config_includes.h,
1113: include/pa_dictionary.h, include/pa_dir.h,
1114: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
1115: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
1116: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
1117: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
1118: include/pa_request_charsets.h, include/pa_request_info.h,
1119: include/pa_sapi.h, include/pa_socks.h,
1120: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
1121: include/pa_stack.h, include/pa_string.h,
1122: include/pa_stylesheet_connection.h,
1123: include/pa_stylesheet_manager.h, include/pa_symbols.h,
1124: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
1125: include/pa_uue.h, include/pa_xml_exception.h,
1126: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
1127: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
1128: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
1129: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
1130: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
1131: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
1132: main/compile.tab.C, main/compile.y, main/compile_tools.C,
1133: main/compile_tools.h, main/execute.C, main/pa_base64.C,
1134: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
1135: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
1136: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
1137: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
1138: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
1139: main/pa_sql_driver_manager.C, main/pa_string.C,
1140: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
1141: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
1142: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
1143: main/untaint.C, sql/pa_sql_driver.h,
1144: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
1145: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
1146: targets/isapi/parser3isapi.C, types/pa_junction.h,
1147: types/pa_method.h, types/pa_property.h, types/pa_value.C,
1148: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
1149: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
1150: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
1151: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
1152: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
1153: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
1154: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
1155: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
1156: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
1157: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
1158: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
1159: types/pa_vmemory.h, types/pa_vmethod_frame.C,
1160: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
1161: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
1162: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
1163: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
1164: types/pa_vstateless_object.h, types/pa_vstatus.C,
1165: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
1166: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
1167: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
1168: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1169: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
1170:
1171: * src/main/pa_request.C: old compilers support
1172:
1173: * tests/: 362.html, results/362.processed: test updated after
1174: changes after upgrade to libxml2-2.9.9 were made (related to bug
1175: #1108)
1176:
1177: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
1178: removed, as xsltFreeStylesheet has side effects on original doc.
1179: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
1180: not updated after xdoc modification (part 3 of test 362).
1181: (related to bug #1108)
1182:
1183: * src/targets/isapi/parser3isapi.C: +pa_strcat
1184:
1185: * src/: classes/memory.C, include/pa_memory.h,
1186: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
1187: PA_GC_GCOLLECT used
1188:
1189: * src/include/pa_memory.h: +PA_GC_COLLECT
1190:
1191: * src/targets/cgi/parser3.C: msvs support fixes
1192:
1193: * src/lib/gc/include/gc.h: more cleanup
1194:
1195: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
1196:
1197: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
1198: targets/cgi/parser3.C: $main:HTTPD.mode implemented
1199:
1200: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
1201:
1202: * configure.ac: pthread.h added to checked headers
1203:
1204: * src/classes/table.C: string stream is back :)
1205:
1206: * src/classes/memory.C: GC_generate_random_backtrace no longer
1207: exists
1208:
1209: * src/main/pa_globals.C: GC_dont_gc replaced
1210:
1211: * src/lib/gc/include/gc.h: major cleanup, only used functions are
1212: left to simplify adding new functions. depricated GC_dont_gc
1213: replaced with GC_disable and GC_enable calls.
1214:
1215: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
1216: CORD_from_file* not used and thus removed
1217:
1218: * src/lib/gc/include/gc_allocator.h: minor cleanup
1219:
1220: 2020-12-14 moko
1221:
1222: * src/classes/: curl.C, memory.C, table.C: every TLS should be
1223: referenced elsewhere, or GC will collect it.
1224:
1225: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
1226: main/pa_xml_io.C: bugfix: TLS variables should be referenced
1227: elsewhere, or GC will collect them (and we'll get GPF in
1228: multithreaded enviroment). May be it can be also fixed by some
1229: GC call, not sure. But this fix costs nothing (but hours of
1230: debugging to find the issue :).
1231:
1.150 moko 1232: 2020-12-11 moko
1233:
1234: * configure.ac: gettid() check added
1235:
1236: * src/main/pa_threads.C: HAVE_GETTID used
1237:
1238: * src/include/pa_config_auto.h.in: +HAVE_GETTID
1239:
1240: * src/: include/pa_threads.h, main/pa_threads.C: now unified
1241: version for isapi/cgi/apache
1242:
1243: * buildall: threads are now required.
1244:
1245: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
1246: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1247: main/main.vcproj: pa_threads.C moved to main
1248:
1249: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
1250: isapi/pa_threads.C: pa_threads.C moved to main
1251:
1252: * src/: main/Makefile.am, targets/cgi/Makefile.am,
1253: targets/apache/Makefile.am: pa_threads.C moved to main
1254:
1255: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
1256:
1257: * src/: include/pa_stylesheet_connection.h,
1258: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
1259: and weird GPF in multithreaded httpd is gone
1260:
1261: * src/include/: pa_stylesheet_connection.h,
1262: pa_sql_driver_manager.h: whitespace
1263:
1264: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
1265:
1266: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
1267: main/pa_stylesheet_manager.C: whitespace, warning war
1268:
1269: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
1270: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
1271: parser_multithreaded never used
1272:
1273: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
1274:
1275: 2020-12-10 moko
1276:
1277: * src/: include/pa_config_includes.h, include/pa_http.h,
1278: main/pa_http.C, targets/cgi/parser3.C: initial support for
1279: MULTITHREADED and PARALLEL httpd server modes
1280:
1281: * src/main/pa_globals.C: GC_java_finalization is depricated
1282:
1283: 2020-12-09 moko
1284:
1285: * etc/auto.p.in: + @httpd-main
1286:
1287: * src/: include/pa_common.h, main/pa_request.C,
1288: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
1289: work
1290:
1291: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1292: slow file_read_binary no longer used, send_range added
1293:
1294: 2020-12-08 moko
1295:
1296: * src/main/pa_request.C: >4Gb support
1297:
1298: * src/targets/cgi/parser3.C: msvc warning war
1299:
1300: * src/: include/pa_config_includes.h, main/pa_http.C,
1301: main/pa_request.C: msvc warnings war
1302:
1303: * src/classes/image.C: warning war
1304:
1305: * src/classes/table.C: MSVC warning war
1306:
1307: * src/targets/cgi/parser3.C: msvc warnings war
1308:
1309: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
1310: added
1311:
1.149 moko 1312: 2020-12-07 moko
1313:
1.150 moko 1314: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
1315: avoid logging beside system-wide auto.p
1316:
1317: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
1318:
1319: * configure, configure.ac, src/include/pa_config_auto.h.in:
1320: configure options added:
1321:
1322: --with-system-cfg=FILE to specify system-wide auto.p
1323: --with-system-log=FILE to specify system-wide parser3.log
1324:
1325: * Makefile.am: bin no longer exists
1326:
1327: * configure, configure.ac: auto.p moved to etc to simplify debian
1328: package
1329:
1330: * buildall: auto.p and parser3.charsets moved to their default
1331: location after install
1332:
1333: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
1334:
1335: * aclocal.m4, configure: automake 1.15 -> 1.16.1
1336:
1.149 moko 1337: * src/targets/cgi/parser3.C: locate_config call returned to
1338: original place as it requires pa_thread_request() under Windows
1339:
1340: * src/targets/cgi/parser3.C: renaming
1341:
1342: 2020-12-06 moko
1343:
1344: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
1345: check added
1346:
1347: 2020-12-04 moko
1348:
1349: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1350: main/pa_request.C: unified uint64_t lseek implemented to support
1351: >4Gb files under x86, including Windows
1352:
1353: 2020-12-02 moko
1354:
1355: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
1356: with max_file_size
1357:
1358: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1359: support for processing files sized >4Gb on 32 bit planforms
1360:
1361: * tests/399.html: file moved
1362:
1363: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
1364:
1365: * src/targets/cgi/pa_sapi_info.h: warning war
1366:
1367: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
1368: warning war
1369:
1370: 2020-12-01 moko
1371:
1372: * src/classes/image.C: mp4 extended size (>4Gb) support added
1373:
1374: * src/classes/image.C: for "size not found" exception to be shown
1375: if size not found until eof
1376:
1377: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
1378: bit linux)
1379:
1380: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
1381: #1188)
1382:
1383: 2020-11-30 moko
1384:
1385: * src/classes/image.C: definitions moved closer to code
1386:
1387: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
1388: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
1389: 395_dir/3_VP8X.webp, results/395.processed,
1390: results/396.processed: tests for ^image::measure[] .webp support
1391: added, all image files moved into one directory (related to
1392: feature #1188)
1393:
1394: * src/classes/image.C: ^image::measure[] now supports webp (feature
1395: #1188)
1396:
1.148 moko 1397: 2020-11-29 moko
1398:
1399: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
1400: processing, unnessesary defines removed
1401:
1402: 2020-11-24 moko
1403:
1404: * tests/results/: 099.processed, 100.processed, 205.processed,
1405: 309.processed, 310.processed: Content-Disposition: inline
1406: returned
1407:
1408: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
1409: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
1410: ] added (related to bug #1204)
1411:
1412: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
1413: ] supported to avoid Content-Disposition: inline;
1414: filename="<file>.ext" but still set Content-Type for ext (related
1415: to bug #1204)
1416:
1.147 moko 1417: 2020-11-22 moko
1418:
1419: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
1420: types/pa_vfile.C: pa_filename added to avoid useless rsplit
1421:
1422: * src/main/pa_request.C: content_disposition_inline returned.
1423:
1424: 2020-11-17 moko
1425:
1426: * src/main/pa_request.C: empty main method name support
1427:
1428: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
1429: config_handler added, stdout flush added.
1430:
1431: 2020-11-16 moko
1432:
1433: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
1434:
1435: * tests/results/: 099.processed, 205.processed, 237.processed,
1436: 309.processed, 310.processed: Content-Disposition: inline is not
1437: required and should not contain filename="<name>"
1438:
1439: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
1440: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1441: targets/isapi/parser3isapi.C: pa_strcat implemented and used
1442:
1.146 moko 1443: 2020-11-14 moko
1444:
1445: * src/targets/cgi/parser3.C: spelling
1446:
1447: * src/targets/cgi/parser3.C: renaming
1448:
1449: * src/targets/cgi/parser3.C: args_skip removed, locate_config
1450: relocated
1451:
1452: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
1453: before request processing, which is weired
1454:
1455: 2020-11-13 moko
1456:
1457: * src/main/pa_http.C: pa_recv added with timeout support, thus read
1458: copied in httpd.
1459:
1460: 2020-11-12 moko
1461:
1462: * src/main/pa_http.C: ALARM code unified to be used in httpd
1463:
1464: * src/: include/pa_request.h, main/pa_request.C,
1465: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
1466:
1467: * src/main/pa_http.C: URI validation added
1468:
1469: * src/targets/cgi/parser3.C: filespec_to_process now variable,
1470: can't be empty but can be null. httpd-main is now main method
1471: name for httpd mode
1472:
1473: 2020-11-11 moko
1474:
1475: * src/main/pa_request.C: path_translated can be null in httpd mode
1476:
1477: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
1478: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
1479: classes/xdoc.C, include/pa_request.h, main/execute.C,
1480: main/pa_request.C: r.absolute -> r.full_disk_path
1481:
1482: * src/targets/cgi/parser3.C: if filename to process is not
1483: specified, auto.p should be present.
1484:
1.145 moko 1485: 2020-11-03 moko
1486:
1487: * src/: classes/op.C, include/pa_request.h: unused argument removed
1488:
1489: * src/main/pa_request.C: content_disposition_inline is the default,
1490: not required.
1491:
1.144 moko 1492: 2020-10-29 moko
1493:
1494: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
1495: ^use[file; $.main(true) ] implemented for auto.p processing and
1496: path_translated changing to correct relative files path
1497: calculation in httpd mode
1498:
1499: * src/: include/pa_request.h, main/pa_request.C:
1500: fail_on_read_problem removed, as it allways true, as if should
1501: be.
1502:
1503: * src/: include/pa_request.h, main/pa_request.C,
1504: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1505: targets/isapi/parser3isapi.C: clearing config_filespec when
1506: config was not found, thus flag not required and removed.
1507:
1508: 2020-10-28 moko
1509:
1510: * tests/: 402.html, results/402.processed: error reporting test
1511:
1512: * src/main/execute.C: better error reporting when
1513: $result[^hash::create[]] in @main.
1514:
1515: * src/main/: execute.C, pa_request.C: frame.result() should be used
1516: + minor optimization
1517:
1518: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1519: main/pa_xml_io.C: execute_*_method simplified and unified
1520:
1521: 2020-10-27 moko
1522:
1523: * tests/: 306.html, results/306.processed: a bit more testing. :)
1524:
1525: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
1526: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
1527: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
1528: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
1529: types/pa_vmethod_frame.h, types/pa_vobject.C,
1530: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
1531: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
1532: longer used in object-prototype mode
1533:
1534: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
1535: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
1536: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
1537: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
1538: $form:name[value] features
1539:
1.143 moko 1540: 2020-10-18 moko
1541:
1542: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
1543:
1544: 2020-10-15 moko
1545:
1546: * src/main/pa_http.C: url no longer needed as
1547: ALTER_EXCEPTION_SOURCE is used
1548:
1549: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
1550: main/pa_http.C: check_file_size filespec is now optional
1551:
1552: * src/: classes/curl.C, include/pa_exception.h,
1553: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
1554: ALTER_EXCEPTION_COMMENT added for better error reporting
1555:
1556: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
1557: results/346-curl.processed, results/379-curl.processed,
1558: results/379.processed: test results updated as load now provides
1559: better error reporting + curl responses updated
1560:
1561: 2020-10-14 moko
1562:
1563: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
1564: main/pa_string.C, targets/apache/mod_parser3_core.C,
1565: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1566: checked. 10 is now default base, no hex autodetect by default
1567:
1568: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1569: connection socket closing in destructor + accept exception
1570: handling
1571:
1572: * src/targets/cgi/parser3.C: warning war
1573:
1574: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1575: main/pa_request.C, targets/apache/mod_parser3_core.C,
1576: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1577: exception handling unified
1578:
1579: 2020-10-13 moko
1580:
1581: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1582: autodetection
1583:
1584: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1585:
1586: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1587:
1588: * src/main/pa_http.C: warning war
1589:
1.142 moko 1590: 2020-10-12 moko
1591:
1.143 moko 1592: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1593: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1594: unhandled exception code optimization
1595:
1596: * src/targets/cgi/parser3.C: request_info now global variable
1597:
1598: * src/main/pa_http.C: http_read_response moved to HTTP_response
1599: class
1600:
1601: * src/: include/pa_http.h, main/pa_http.C,
1602: targets/cgi/pa_sapi_info.h: read_post implemented
1603:
1.142 moko 1604: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1605: [host:]port syntax support in httpd mode
1606:
1607: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1608: targets/cgi/parser3.C: populate_env added
1609:
1610: * src/include/pa_hash.h: to make get(char *) compiling in
1611: HashStringString
1612:
1613: 2020-10-10 moko
1614:
1615: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1616: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1617:
1618: * src/: include/pa_http.h, include/pa_request_info.h,
1619: main/pa_http.C, main/pa_string.C,
1620: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1621: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1622: types/pa_vrequest.C: initial httpd mode implementation
1623:
1.141 moko 1624: 2020-10-04 moko
1625:
1626: * src/targets/cgi/parser3.C: options together
1627:
1628: 2020-09-30 moko
1629:
1630: * src/main/pa_http.C: renamed
1631:
1.140 moko 1632: 2020-08-14 moko
1633:
1634: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1635: src/targets/cgi/Makefile.am: no httpd as separate library
1636:
1637: 2020-08-13 moko
1638:
1639: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1640: unhandled exception handler to report 500 instead of 200 it was
1641: before.
1642:
1643: * src/targets/apache/mod_parser3_core.C: minor cleanup
1644:
1645: * src/: include/pa_sapi.h, main/untaint.C,
1646: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1647: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1648: thus replaced with SAPI::die and removed
1649:
1650: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1651: cgi/parser3.C: whitespace
1652:
1653: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1654:
1655: 2020-08-12 moko
1656:
1657: * src/targets/cgi/parser3.C: duplicate info in signal logging
1658: removed, whitespace was: SIGPIPE received while executing code.
1659: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1660: cl=0]
1661:
1662: * parser3.sln: + httpd.vcproj
1663:
1664: 2020-08-11 moko
1665:
1666: * src/targets/cgi/Makefile.am: +libhttpd
1667:
1668: * configure.ac, src/lib/Makefile.am: +libhttpd
1669:
1.139 moko 1670: 2020-07-13 moko
1671:
1672: * tests/: 401.html, results/401.processed: test for hash key does
1673: not keep language, but tainted in foreach.
1674:
1.138 moko 1675: 2020-07-01 moko
1676:
1677: * tests/: 235.html, results/235.processed: test result updated as
1678: messages before attachments implemented (feature #1176)
1679:
1.137 moko 1680: 2020-06-27 moko
1681:
1682: * tests/: 400.html, results/400.processed: test updated to check
1683: ^return{code}
1684:
1685: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
1686: fixed
1687:
1688: 2020-06-26 moko
1689:
1690: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
1691: added (related to https://www.parser.ru/forum/?id=85319)
1692:
1693: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
1694: when $result assignment was last statement in the method
1695: (https://www.parser.ru/forum/?id=85319)
1696:
1.136 moko 1697: 2020-05-23 moko
1698:
1699: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
1700: whitespace, unused level removed
1701:
1702: 2020-05-19 moko
1703:
1704: * src/types/pa_vmail.C: whitespace
1705:
1706: * src/types/pa_vmail.C: files should be processed last (related to
1707: feature #1176)
1708:
1.135 moko 1709: 2020-05-12 moko
1710:
1711: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
1712: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
1713:
1714: * configure.ac: FreeBSD1X.X check added to avoid
1715: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
1716:
1.134 moko 1717: 2020-02-26 moko
1718:
1719: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
1720: compilation issue (related to bug #1201)
1721:
1722: * src/main/pa_common.C: entry_readable -> entry_exists,
1723: undocumented access(fname, R_OK) call removed (fixes bug #1201)
1724: -f and -d now works under Windows in UTF-8 with Russian
1725: filenames.
1726:
1727: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
1728: advice (related to feature #1199)
1729:
1730: 2020-02-25 moko
1731:
1732: * buildall: --silent removed
1733:
1734: * configure.ac: gmime-3.0 support
1735:
1736: * buildall: --with-system-mailreceive option added to build with
1737: system libgmime
1738:
1739: * src/types/pa_vmail.C: avoiding
1740: https://github.com/jstedfast/gmime/issues/83 "feature" (related
1741: to feature #1199)
1742:
1.133 moko 1743: 2020-02-18 moko
1744:
1745: * src/classes/op.C: windows x64 debug mode compile fix
1746:
1747: * src/main/pa_globals.C: no longer required due to -MD -> -MT
1748: change (releated to feature #1200)
1749:
1750: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1751: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
1752: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
1753: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
1754: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1755: targets/apache/ApacheModuleParser3.vcproj,
1756: targets/apache/ApacheModuleParser3Core.vcproj,
1757: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1758: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
1759: dependency (related to feature #1200)
1760:
1.132 moko 1761: 2020-02-12 moko
1762:
1763: * src/types/pa_vmail.C: minimize diff
1764:
1765: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
1766: #1199)
1767:
1.131 moko 1768: 2020-01-18 moko
1769:
1770: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
1771:
1.130 moko 1772: 2019-12-28 moko
1773:
1774: * src/targets/cgi/parser3.C: avoid empty ?
1775:
1776: 2019-12-27 moko
1777:
1778: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
1779: DOCUMENT_ROOT (related to feature #1164)
1780:
1781: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
1782: fcgiwrap setup (implements feature #1164)
1783:
1784: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
1785: but no issues found (related to feature #1164)
1786:
1787: * src/targets/cgi/parser3.C: actualized
1788:
1789: 2019-12-26 moko
1790:
1791: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
1792: removed
1793:
1794: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
1795: removed
1796:
1797: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
1798: allocation errors, we don't want default gc warnings (without
1799: timestamp and URI).
1800:
1801: * src/: classes/memory.C, main/pa_globals.C,
1802: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1803: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
1804: pa_globals_init
1805:
1806: * src/main/pa_globals.C: setup_hex_value() removed, static array
1807: initialization used (optimization)
1808:
1809: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
1810: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
1811: pa_socks_init/pa_socks_done moved inside pa_globals_init
1812: (optimization)
1813:
1.129 moko 1814: 2019-12-09 moko
1815:
1816: * src/include/pa_config_fixed.h: warning war
1817:
1.128 moko 1818: 2019-12-08 moko
1819:
1820: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
1821: process grammar under Unix.
1822:
1823: 2019-12-07 moko
1824:
1825: * tests/389.html: For Windows XP. :)
1826:
1827: * tests/388-sql.html: Windows compatibility added
1828:
1829: 2019-12-06 moko
1830:
1831: * src/targets/cgi/parser3.C: warning war
1832:
1833: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
1834: == sizeof(CORD)) to avoid aligning bugs in future
1835:
1836: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
1837: XML_STATIC
1838:
1839: * src/include/pa_request.h: StackItem() not required
1840:
1841: * src/include/pa_stack.h: warning war
1842:
1843: * src/include/pa_config_includes.h: GCC warning silenced
1844:
1845: * src/include/pa_memory.h: warning war: the program should also
1846: define 'void operator delete [](void*, std::size_t)'
1847: [-Wsized-deallocation]
1848:
1849: * src/types/: pa_vregex.h, pa_vtable.h: warning war
1850:
1851: * src/classes/string.C: not reqired cast removed
1852:
1853: * src/classes/string.C: not reqired cast removed
1854:
1855: 2019-12-05 moko
1856:
1857: * src/lib/sdbm/pa_file_io.C: warning war
1858:
1859: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
1860: enum Language : size_t - required for VS2015+ to make
1861: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
1862: without it (related to feature #1198)
1863:
1864: 2019-12-04 moko
1865:
1866: * src/main/pa_base64.C: unsigned char -> uchar
1867:
1868: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
1869: as other libs
1870:
1871: * src/include/pa_version.h: +amd64
1872:
1873: 2019-12-03 moko
1874:
1875: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
1876: release
1877:
1878: * src/include/pa_config_includes.h: warning war
1879:
1880: * src/classes/image.C: warning war
1881:
1882: * src/main/pa_globals.C: x64 libs support
1883:
1884: * src/include/pa_config_includes.h: warning war
1885:
1886: * src/types/pa_method.h: warning war
1887:
1.127 moko 1888: 2019-11-28 moko
1889:
1890: * src/classes/math.C: vs2003 compatibility + warning war
1891:
1892: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
1893: libxml2-2.9.9 (related to feature #1136)
1894:
1895: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
1896: typecast for more compatibility (related to feature #1136)
1897:
1898: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
1899: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
1900: feature #1136)
1901:
1902: 2019-11-26 moko
1903:
1904: * src/main/: compile_tools.C, compile_tools.h: invalid assert
1905: removed (it was failing in $$var case), condition added
1906:
1.126 moko 1907: 2019-11-25 moko
1908:
1909: * tests/: 397.html, 399.html, results/141.processed,
1910: results/399.processed: base64 options tested
1911:
1912: * src/: classes/math.C, main/pa_http.C: base64 options used
1913:
1914: * src/main/pa_base64.C: base64 encode rewritten, base64 options
1915: implemented (feature #986)
1916:
1917: * src/main/pa_cache_managers.C: whitespace
1918:
1919: * tests/: 397.html, 399.html, results/399.processed: tests for
1920: ^base64 encode options added (related to feature #986)
1921:
1922: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
1923: pa_base64_encode(file) removed - more memory, but faster and less
1924: code (related fo feature #986)
1925:
1926: 2019-11-24 moko
1927:
1928: * tests/: 155.html, results/155.processed: limit and offset in
1929: ^table::load[] now supported, thus test added
1930:
1931: * src/: classes/file.C, classes/table.C, include/pa_common.h,
1932: main/pa_common.C: optimization: offset and limit options parsing
1933: moved inside file_load.
1934:
1935: 2019-11-23 moko
1936:
1937: * src/: classes/file.C, classes/op.C, include/pa_common.h,
1938: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
1939: optimization: file_read replaced with simplified file_read_binary
1940:
1941: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1942: types/pa_vform.C: whitespace
1943:
1944: * src/: include/pa_common.h, main/pa_common.C: never used params
1945: removed
1946:
1947: 2019-11-21 moko
1948:
1949: * tests/: 193.html, results/193.processed, results/389.processed:
1950: test results updated as now base64 does not discard tail without
1951: padding (related to feature #986)
1952:
1953: 2019-11-20 moko
1954:
1955: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1956: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1957: pa_base64_decode (related to feature #986)
1958:
1959: * tests/398.html: tests for base64 decode added (related to feature
1960: #986)
1961:
1962: * src/main/pa_base64.C: base64_decode rewritten - padding option
1963: support, padding inside base 64 supported (related to feature
1964: #096)
1965:
1966: 2019-11-19 moko
1967:
1968: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1969: FreeBSD 12
1970:
1.125 moko 1971: 2019-11-16 moko
1972:
1973: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1974: support added, step support removed (related to #986)
1975:
1976: 2019-11-15 moko
1977:
1978: * src/classes/math.C: using log since log2 is not present on
1979: FreeBSD < 8.4 (related to feature #1177)
1980:
1981: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1982: pa_base64_size extracted and used for files as well (related to
1983: feature 986)
1984:
1985: 2019-11-14 moko
1986:
1987: * tests/: 397.html, results/397.processed: + content check
1988:
1989: * tests/: 141.html, results/141.processed: make test resuls more
1990: readable
1991:
1992: * tests/: 397.html, results/193.processed, results/397.processed:
1993: test results updated after \x00 character was disabled in
1994: math:convert string mode (related to feature #1177)
1995:
1996: * src/classes/: math.C, string.C: \\x00 character disabled while
1997: converting to string (as in base64, related to feature #1177)
1998:
1999: * src/classes/file.C: more correct arguments separation
2000:
2001: * src/: classes/file.C, classes/math.C, classes/string.C,
2002: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2003: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
2004: options added, but not yet implemented (related to feature #986)
2005:
2006: * src/classes/math.C: whitespace
2007:
2008: 2019-11-13 moko
2009:
2010: * tests/: 397.html, results/397.processed: +tainting test (related
2011: to feature #1177)
2012:
2013: * src/classes/math.C: as we now produce not only digits, result
2014: should be tainted (related to feature #1177)
2015:
2016: * src/main/pa_base64.C: whitespace
2017:
2018: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
2019: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2020: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
2021: implementation moved from pa_common.h and pa_common.C
2022:
2023: 2019-11-12 moko
2024:
2025: * tests/: 275.html, results/275.processed: out of range test fixed,
2026: as ^math:convert now supports arbitrary precision
2027:
2028: 2019-11-11 moko
2029:
2030: * tests/results/389.processed: uctualized error message
2031:
2032: * tests/: 389.html, 397.html, results/397.processed: tests for
2033: ^math:convert added (related to feature #1177)
2034:
2035: * src/classes/math.C: ^math:convert now supports arbitrary
2036: precision, alphabet support added (implements feature #1177)
2037:
1.124 moko 2038: 2019-11-06 moko
2039:
2040: * tests/: 181.html, results/181.processed: entities usage added,
2041: more entites load tests (related to bug #842 discussion)
2042:
2043: 2019-11-05 moko
2044:
2045: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
2046: call from xmlFileOpen if http://localhost/<file> was not found
2047: (related to bug #842)
2048:
2049: * src/main/pa_xml_io.C: rename
2050:
2051: * src/main/pa_xml_io.C: +MemoryStream constructor
2052:
2053: * src/main/pa_xml_io.C: whitespace
2054:
1.123 moko 2055: 2019-10-31 moko
2056:
2057: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
2058: XML_PARSE_NOENT) added to fix entities load, (related to feature
2059: #1181)
2060:
1.122 moko 2061: 2019-10-25 moko
2062:
2063: * tests/: 388-sql.html, results/388-sql.processed: more multiple
2064: queries tests
2065:
2066: 2019-10-24 moko
2067:
2068: * tests/: 388-sql.html, results/388-sql.processed: support for
2069: pgsql driver test
2070:
2071: * tests/: 388-sql.html, results/388-sql.processed:
2072: multi_statements=1 now tested, mysql test now supported
2073: (connection must be specified in [parser3] section in .my.cnf)
2074: related to issues #1195 and #1194
2075:
1.121 moko 2076: 2019-09-11 moko
2077:
2078: * src/classes/int.C: whitespace
2079:
2080: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
2081: exception test
2082:
2083: * tests/results/388-sql.processed: sql queries now shown (related
2084: to feature #1196)
2085:
2086: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
2087: with old parser versions.
2088:
2089: * src/: classes/file.C, classes/hash.C, classes/string.C,
2090: classes/table.C, classes/void.C, include/pa_sql_connection.h,
2091: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
2092: instead of connect string in query_event_handlers exceptions
2093: (implements feature #1196)
2094:
1.120 moko 2095: 2019-09-06 moko
2096:
2097: * tests/388-sql.html: mysql compat
2098:
2099: * src/: classes/hash.C, classes/string.C, classes/table.C,
2100: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
2101: sql_ variables declaration moved to pa_common.h
2102:
1.116 moko 2103: 2019-01-15 moko
2104:
2105: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
2106: logically sorted
2107:
2108: 2018-12-27 moko
2109:
2110: * src/include/pa_config_includes.h: warning war:
2111: -Wdeprecated-register added for C++ 17
2112:
2113: 2018-10-15 moko
2114:
2115: * configure.ac: FreeBSD 11.2 can be build with ./configure
2116: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
2117: --with-xml=/usr/local/
2118:
2119: 2018-09-24 moko
2120:
2121: * tests/: 396.html, 396.tiff, results/396.processed: test for
2122: ^image::measure[] now supports tiff added (related to feature
2123: #1188)
2124:
2125: * src/classes/image.C: ^image::measure[] now supports tiff
2126: (implements feature #1188)
2127:
2128: 2018-09-20 moko
2129:
2130: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
2131: files measure added (related to ticket #1188)
2132:
2133: * src/classes/image.C: measure of bmp files implemented (related to
2134: ticket #1188)
2135:
2136: 2018-09-18 moko
2137:
2138: * tests/: 394-curl.html, results/394-curl.processed,
2139: results/auto.p: test for bug #1187 (max_file_size check for head
2140: requests) added
2141:
2142: 2018-08-24 moko
2143:
2144: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
2145: response content-length check is required (fixes bug #1187)
2146:
2147: 2018-05-11 moko
2148:
2149: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
2150: $.append(bool) ] option added (related to feature #919)
2151:
2152: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
2153: from misha@ patch (implements feature #919)
2154:
2155: 2018-03-22 moko
2156:
2157: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
2158: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
2159: with 128kb buffer. Now works at least 12 times faster. :) May be
2160: Windows-only problem.
2161:
2162: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
2163: build fix)
2164:
2165: 2018-02-03 moko
2166:
2167: * src/main/execute.C: removes irrelevant lines from exception stack
2168: trace when exceptions occurs in assigment (fixes bug #1165)
2169:
2170: * tests/: 393.html, results/393.processed: test for behavour after
2171: "Property can not be created, already exists field with that
2172: name" exception removed (related to feature #1183)
2173:
2174: * src/types/pa_vclass.C: "Property can not be created, already
2175: exists field with that name" exception removed (implements
2176: feature #1183)
2177:
2178: 2018-01-19 moko
2179:
2180: * src/classes/string.C: whitespace
2181:
2182: * src/classes/string.C: whitespace
2183:
2184: * tests/: 392.html, results/392.processed: test for
2185: ^regex::create[$regex] added (related to feature #1135)
2186:
2187: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
2188: ^regex::create[$regex] added (implements feature #1135)
2189:
2190: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
2191: commented define added (related to feature #1157)
2192:
2193: 2018-01-17 moko
2194:
2195: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
2196:
2197: 2018-01-15 moko
2198:
2199: * tests/: 390.html, results/390.processed: real path replaced by
2200: stub
2201:
2202: * tests/: 391.html, results/391.processed: test for feature #1181
2203: (XML_PARSE_HUGE exception) added
2204:
2205: 2018-01-11 moko
2206:
2207: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
2208: XML_PARSE_HUGE option passed by default (implements feature
2209: #1181)
2210:
2211: * src/classes/string.C: whitespace
2212:
2213: 2017-12-10 moko
2214:
2215: * tests/: 389.html, 390.html, results/389.processed,
2216: results/390.processed: image code coverage tests added (related
2217: to feature #1125)
2218:
2219: 2017-12-08 moko
2220:
2221: * tests/: 346-curl.html, 388-sql.html, 389.html,
2222: results/346-curl.processed, results/388-sql.processed,
2223: results/389.processed: more code coverage tests
2224:
2225: * tests/: 264.html, results/264.processed: code coverage for
2226: ^file::exec[]
2227:
2228: 2017-12-07 moko
2229:
2230: * tests/: 174.html, 388-sql.html, 389.html,
2231: results/388-sql.processed, results/389.processed,
2232: results/174.processed: more coverage tests
2233:
2234: * src/classes/math.C: exception text actualized
2235:
2236: 2017-12-06 moko
2237:
2238: * tests/388-sql.html: $SQL can be here
2239:
2240: * tests/results/auto.p: $SQL not required here
2241:
2242: * tests/: 388-sql.html, 389.html, Makefile,
2243: results/388-sql.processed, results/389.processed, results/auto.p:
2244: code coverage tests for sql (using sqlite) and int/double/bool
2245: added (related to feature #1125)
2246:
2247: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2248: lib/json/json.vcproj, lib/md5/md5.vcproj,
2249: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
2250: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2251: targets/apache/ApacheModuleParser3Core.vcproj,
2252: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2253: types/types.vcproj: gc\include no longer required
2254:
2255: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
2256: required
2257:
2258: * src/: classes/Makefile.am, classes/table.C,
2259: include/pa_config_includes.h, include/pa_string.h,
2260: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2261: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
2262: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
2263: targets/apache/Makefile.am, targets/cgi/Makefile.am,
2264: types/Makefile.am: to be sure that our version of gc.h/cord.h is
2265: used, we now include it directly
2266:
2267: 2017-12-04 moko
2268:
2269: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
2270: memcached/memcached.vcproj, punycode/punycode.vcproj,
2271: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
2272: where required
2273:
2274: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
2275: now can be used to trace memory allocations
2276:
2277: * src/: classes/table.C, include/pa_config_includes.h,
2278: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2279: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
2280: method removes, libcord also can work without libgc
2281:
2282: * src/classes/json.C: pa_gc_malloc_atomic should not be used
2283:
2284: 2017-11-29 moko
2285:
2286: * src/classes/curl.C: no exception if some of ^curl:info[] elements
2287: are not present (related to feature #1173)
2288:
2289: * tests/346-curl.html: test updated to test curl content-length bug
2290: (related to feature #1173)
2291:
2292: * tests/results/346-curl.processed: more test for content-length
2293: curl bug (related to feature #1173)
2294:
2295: * tests/results/346-curl.processed: test results updated after
2296: #1173 implemented
2297:
2298: 2017-11-28 moko
2299:
2300: * src/classes/curl.C: another libcurl Content-length bug walkaround
2301: (related to feature #1173)
2302:
2303: 2017-11-27 moko
2304:
2305: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
2306: $.http_version[version string] added (implements feature #1173),
2307: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
2308: where $post(true) bug existed.
2309:
2310: 2017-11-18 moko
2311:
2312: * src/include/pa_memory.h: warning war (related to feature #1170)
2313:
2314: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
2315: feature #1170)
2316:
2317: 2017-11-17 moko
2318:
2319: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
2320: std::basic_stringstream used in ^table.csv-string[] is compatible
2321: with delete usage check only under Debian 9 (related to feature
2322: #1170)
2323:
2324: 2017-11-16 moko
2325:
2326: * src/: classes/curl.C, classes/hash.C, classes/json.C,
2327: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
2328: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
2329: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
2330: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
2331: types/pa_vxdoc.h: regular new/delete no longer used in our code,
2332: stubs defend from accidental use (implements feature #1170)
2333:
2334: 2017-06-24 moko
2335:
2336: * configure.ac: minor fix: thanks to alx@
2337:
1.115 moko 2338: 2017-05-29 moko
2339:
2340: * src/types/pa_vmail.C: mail headers are now correctly truncated -
2341: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
2342: added to avoid cutting of UTF-8 chars (fixed bug #123)
2343:
2344: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
2345: ignored, =?UTF-8?Q?= should start in case of leading space
2346: (related to bug #123)
2347:
2348: * buildall: echo -n -> printf for OS X. :)
2349:
2350: 2017-05-25 moko
2351:
2352: * tests/: 288.html, results/288.processed: test updated afted
2353: setting $o.prop without setter exception removed (related to
2354: feature #1157)
2355:
2356: * src/types/pa_vclass.C: no more "this property has no setter
2357: method" when setting $o.prop without setter (implements feature
2358: #1157)
2359:
2360: * buildall: echo \c -> echo -n for FreeBSD
2361:
2362: * configure, configure.ac, src/include/pa_config_auto.h.in,
2363: src/types/pa_vdouble.h: isfinite now checked in configure
2364:
2365: * compile, config.guess, config.sub, depcomp, install-sh, missing:
2366: upgraded to automake 1.15
2367:
2368: 2017-05-23 moko
2369:
2370: * src/types/pa_vdouble.h: finite returned where isfinite not
2371: defined
2372:
2373: 2017-05-22 moko
2374:
2375: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
2376:
2377: * buildall: extern CFLAGS setting support
2378:
2379: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
2380:
2381: * buildall: http -> https
2382:
2383: * buildall: gc-7.2f -> gc-7.6.0
2384:
2385: 2017-05-20 moko
2386:
2387: * buildall: https, pcre, xml, xslt updated to current versions
2388: (related to feature #1136)
2389:
2390: 2017-05-19 moko
2391:
2392: * tests/097.html: after parser.ru moved to https
2393:
2394: 2017-05-17 moko
2395:
2396: * tests/results/: 175.processed, 372.processed: tests resuls
2397: updated after lintian spelling typos fixed (related to bug #1156)
2398:
2399: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
2400: classes/string.C, classes/table.C, main/pa_charset.C,
2401: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
2402: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
2403: lintian reported by Sergey B Kirpichev (fixes bug #1156)
2404:
2405: * tests/results/096.processed: +XMP
2406:
2407: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
2408: $.xmp(true) options tested (test for feature #1154)
2409:
2410: * src/classes/image.C: ^image:measure[] options $.exif(false)
2411: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
2412: fetched by default! (implements feature #1154)
2413:
2414: 2017-05-16 moko
2415:
2416: * tests/: 256.html, results/256.processed: ^json:string[$image] now
2417: allowed (related to feature #1154)
2418:
2419: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2420: initial XMP implementation - without options and transcode
2421: (related to feature #1154)
2422:
2423: 2017-05-12 moko
2424:
2425: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2426: image: exif moved to ffields, skipped in ^image.html[] where
2427: iterators now used (preparation for feature #1154)
2428:
2429: 2017-05-05 moko
2430:
2431: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
2432: results/387.processed: test for circular class inheritance check
2433: added (related to bug #1150)
2434:
2435: * src/types/pa_vstateless_class.C: circular class inheritance check
2436: added (fixes endless add_derived bug #1150)
2437:
2438: 2017-05-04 moko
2439:
2440: * tests/: 386.html, results/386.processed: test for
2441: $table.value(number) added (related to feature #1152)
2442:
2443: * src/types/pa_vtable.C: table put_element: column value must be
2444: string - > column value must be string compatible to allow
2445: $t.value(1) (implements feature #1152)
2446:
2447: 2017-05-03 moko
2448:
2449: * src/main/pa_request.C: $use[$method] is not possible, reverting
2450: (related to feature #1151)
2451:
2452: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
2453: not possible, removing test (related to feature #1151)
2454:
2455: * src/: main/pa_request.C, types/pa_vstateless_class.h:
2456: get_element_method added and used to allow $use[$method] and
2457: $autouse[$method] (implements feature 1151)
2458:
2459: * tests/: 386.html, 386.p, results/386.processed: test for @use in
2460: variable added (related to feature #1151)
2461:
2462: * tests/results/226.processed: actualized after ^try-catch used
2463:
2464: * tests/: 226.html, 385.html, results/385.processed: test for
2465: @autouse in variable added
2466:
2467: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
2468:
1.114 moko 2469: 2017-02-27 moko
2470:
2471: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
2472:
1.113 moko 2473: 2017-02-20 moko
2474:
2475: * operators.txt: actualization + beauty
2476:
2477: 2017-02-16 moko
2478:
2479: * tests/: 384.html, results/384.processed: test for
2480: ^reflection:mixin[; $.name[] ] option added (related to feature
2481: #1089)
2482:
2483: * tests/: 384.html, results/384.processed: test for
2484: ^reflection:mixin[] added (related to feature #1089)
2485:
2486: * src/types/pa_value.h: warning war: virtual ~Value() added
2487:
1.112 moko 2488: 2017-02-15 moko
2489:
2490: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
2491: fixed
2492:
2493: * tests/: 320.html, results/320.processed: $.reverse(true/false)
2494: test added (related to feature #1069)
2495:
2496: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2497: compilation without HASH_ORDER fixed
2498:
2499: * src/: classes/reflection.C, include/pa_hash.h:
2500: $.reverse(true/false) added to ^reflection:methods[] (related to
2501: feature #1069)
2502:
2503: 2017-02-14 moko
2504:
2505: * tests/: 152.html, results/152.processed: test for $._default hash
2506: added (related to bug #1131)
2507:
2508: * tests/: 277.html, results/277.processed: test for hash with only
2509: $._default is now defined (related to bug #1131)
2510:
2511: * src/types/pa_vhash.h: hash with only $._default is now defined
2512: (fixed bug #1131)
2513:
2514: 2017-02-13 moko
2515:
2516: * tests/cat-windows.sh: cat-windows added (cygwin required)
2517:
2518: * tests/: 171.html, 264.html, 286.html, 370.html,
2519: results/320.processed, results/375.processed, results/auto.p:
2520: cat-windows.sh support added
2521:
2522: * tests/375.html: Windows support
2523:
2524: * tests/270.html: documented
2525:
2526: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
2527: (not backslashes) even under Windows (broke test 270)
2528:
2529: 2017-02-12 moko
2530:
2531: * tests/: descript.ion, todo.txt: cleanup
2532:
2533: 2017-02-09 moko
2534:
2535: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
2536: run_tests.cmd: Windows compatibility
2537:
2538: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
2539: incorrectly (GMT) if parser is called from cygwin
2540:
1.111 moko 2541: 2017-02-08 moko
2542:
1.112 moko 2543: * operators.txt: actualization 15% completed
2544:
2545: * operators.txt: cp1251 -> utf-8
2546:
2547: * NEWS, README: minor update
2548:
2549: * src/include/pa_config_includes.h: warning war continues
2550:
2551: * src/: include/pa_config_includes.h, include/pa_memory.h,
2552: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2553: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
2554: gcc 6.x issues fixed
2555:
1.111 moko 2556: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2557: classes/classes.h, classes/curl.C, classes/date.C,
2558: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2559: classes/hashfile.C, classes/image.C, classes/inet.C,
2560: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2561: classes/memcached.C, classes/memory.C, classes/op.C,
2562: classes/reflection.C, classes/regex.C, classes/response.C,
2563: classes/string.C, classes/table.C, classes/void.C,
2564: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2565: include/pa_array.h, include/pa_cache_managers.h,
2566: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2567: include/pa_config_fixed.h, include/pa_config_includes.h,
2568: include/pa_dictionary.h, include/pa_dir.h,
2569: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2570: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2571: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2572: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2573: include/pa_request_charsets.h, include/pa_request_info.h,
2574: include/pa_sapi.h, include/pa_socks.h,
2575: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2576: include/pa_stack.h, include/pa_string.h,
2577: include/pa_stylesheet_connection.h,
2578: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2579: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2580: include/pa_uue.h, include/pa_xml_exception.h,
2581: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2582: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2583: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2584: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2585: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2586: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2587: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2588: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2589: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2590: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2591: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2592: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2593: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2594: main/pa_string.C, main/pa_stylesheet_connection.C,
2595: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2596: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2597: main/untaint.C, sql/pa_sql_driver.h,
2598: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2599: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2600: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2601: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2602: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2603: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2604: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2605: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2606: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2607: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2608: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2609: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2610: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2611: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2612: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2613: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2614: types/pa_vmemcached.h, types/pa_vmemory.h,
2615: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2616: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2617: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2618: types/pa_vresponse.C, types/pa_vresponse.h,
2619: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2620: types/pa_vstateless_object.h, types/pa_vstatus.C,
2621: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2622: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2623: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2624: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2625: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2626: 2015->2017
2627:
1.110 moko 2628: 2017-02-07 moko
2629:
2630: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2631:
2632: 2017-02-06 moko
2633:
2634: * src/main/pa_common.C: minor fixes, whitespace
2635:
2636: * src/: classes/curl.C, classes/file.C, classes/image.C,
2637: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2638: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2639: now used (implements feature #1081)
2640:
2641: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2642:
2643: 2017-02-01 moko
2644:
2645: * src/include/pa_request.h: cleanup
2646:
2647: 2017-01-30 moko
2648:
2649: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2650:
2651: 2017-01-29 moko
2652:
2653: * tests/: 383.html, results/383.processed: test for
2654: ^reflection:stack[] added (related to feature #1052)
2655:
2656: * src/classes/reflection.C: else added
2657:
2658: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2659: $.max_file_lock_wait added (implements feature #1128)
2660:
2661: 2017-01-28 moko
2662:
2663: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2664: body and other cases tests added (related to featue #1014)
2665:
2666: * src/classes/curl.C: bug if response is empty fixed (related to
2667: feature #1014)
2668:
2669: 2017-01-27 moko
2670:
2671: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
2672: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
2673: added (implements feature #1052)
2674:
2675: 2017-01-25 moko
2676:
2677: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
2678: method test added
2679:
2680: 2017-01-23 moko
2681:
2682: * src/classes/reflection.C: optimization: options->get replaced by
2683: hash iterator
2684:
2685: * tests/: 381.html, results/381.processed: now -> fixed date
2686:
2687: * src/main/pa_request.C: warning war
2688:
2689: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
2690: 5Mb (fixes bug #1058)
2691:
2692: * src/classes/curl.C: warning war
2693:
2694: * tests/: 381.html, results/381.processed: tests for ^json:string
2695: $.one-line(true) option added (related to feature #1124)
2696:
2697: * src/: classes/json.C, types/pa_value.h: $json-string
2698: $.one-line(true|false) options is now supported (implements
2699: feature #1124)
2700:
2701: * tests/: 380.html, results/380.processed: test for modified
2702: $.max_file_size added (related to bug #1014)
2703:
2704: * tests/: 379.html, results/auto.p: tests for rewritten http file
2705: load added (related to bug #1014)
2706:
2707: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2708: main/pa_common.C, main/pa_http.C: check_file_size added and used
2709: in curl / file load from disk and http, http file load rewritten
2710: (related to bug #1014)
2711:
2712: 2017-01-18 moko
2713:
2714: * tests/: 378.html, results/378.processed: tests for ^result[]
2715: added (related to feature #66)
2716:
2717: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
2718: Method::CO_WITHOUT_FRAME as frame still added in expression
2719: (related to feature #66)
2720:
2721: 2017-01-17 moko
2722:
2723: * tests/: 377.html, results/377.processed: test for different
2724: combinations of breaks in body and delimiter (related to bug
2725: #1077)
2726:
2727: * tests/: 376.html, results/376.processed: many ^break[] tests
2728: added (related to bug #1077)
2729:
2730: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
2731: passed to native method" exception added to avoid bugs due to
2732: WRITE_EXPR_RESULT skipped and native methods execution continues
2733: after ^break[] (related to bug #1077)
2734:
2735: 2017-01-14 moko
2736:
2737: * tests/: 330.html, results/330.processed: test results updated
2738: after ^break[] bugs where fixed (related to bug #1077)
2739:
2740: * tests/: 329.html, results/329.processed: test results updated
2741: after ^break[] bugs where fixed (related to bug #1077)
2742:
2743: * tests/results/320.processed: ^return[] added
2744:
2745: 2017-01-13 moko
2746:
2747: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
2748: classes/table.C, include/pa_request.h, main/execute.C,
2749: main/pa_request.C, targets/cgi/parser3.C,
2750: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
2751: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
2752: checked after each possible process/execute call (fixes bug
2753: #1077)
2754:
2755: 2016-12-29 moko
2756:
2757: * src/main/pa_common.C: warning war
2758:
2759: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
2760: include/pa_types.h, main/pa_request.C, main/pa_string.C:
2761: pa_file_size_limit added, ^math:random fixed for upper limit and
2762: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
2763: (related to feature #1014)
2764:
2765: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
2766: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
2767: (related to feature #1014)
2768:
2769: 2016-12-28 moko
2770:
2771: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
2772: warning war
2773:
2774: 2016-12-26 moko
2775:
2776: * tests/: 341.html, results/341.processed: test for
2777: ^table.hash[id;;$.type[string]] added (related to feature #1057)
2778:
2779: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
2780: (related to feature #1057)
2781:
2782: * src/types/pa_vdate.C: warning war continues...
2783:
2784: * src/: classes/date.C, classes/image.C, classes/table.C,
2785: include/pa_config_includes.h, types/pa_vfile.C: warning war
2786:
2787: * src/lib/gd/gifio.C: warning war / cleanup
2788:
2789: * src/lib/json/pa_json.C: warning war
2790:
2791: * src/classes/hash.C: warning war
2792:
2793: * src/types/pa_vfile.C: warning war
2794:
2795: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
2796: -Wall warning war continues
2797:
2798: * configure.ac: --with-build-warnings actualized
2799:
2800: 2016-12-25 moko
2801:
2802: * src/main/pa_exec.C: -wAll warning war
2803:
2804: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
2805: -wAll warning war
2806:
2807: * src/: include/pa_common.h, include/pa_sapi.h,
2808: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
2809: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
2810: -wAll warning war
2811:
2812: 2016-12-23 moko
2813:
2814: * src/lib/ltdl/Makefile.am: extra dist added
2815:
2816: * tests/results/344.processed: test result updated after $file.text
2817: prefetched in ^hash::create[$file] (related to feature #1075)
2818:
2819: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
2820: ^hash::create[$file] (related to feature #1075)
2821:
2822: 2016-12-22 moko
2823:
2824: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
2825: main/pa_request.C, main/pa_stylesheet_connection.C,
2826: types/pa_vfile.C: file_stat now return 64-bit size (implements
2827: #1014 under 32-bit unix versions)
2828:
2829: 2016-12-21 moko
2830:
2831: * tests/: 375.html, results/375.processed: test for exec returning
2832: stated file added (related to feature #1119)
2833:
2834: * src/classes/file.C: load should not return file with null body
2835: (fixes bug #1119)
2836:
2837: 2016-12-14 moko
2838:
2839: * tests/: 374.html, results/374.processed: test for $method.name
2840: added (related to feature #1117) plus method returning junction
2841: test
2842:
2843: 2016-12-13 moko
2844:
2845: * src/: include/pa_symbols.h, main/pa_symbols.C,
2846: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
2847: (implements feature #1117)
2848:
2849: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
2850: HEAD and TRACE can't have body (implements feature #1116)
2851:
2852: 2016-12-09 moko
2853:
2854: * tests/: 373.html, results/373.processed: tests for
2855: ^reflection:tainting added (related to feature #1098)
2856:
2857: * src/classes/reflection.C: ^reflection:tainting arguments order
2858: change (related to feature #1098)
2859:
2860: 2016-12-06 moko
2861:
2862: * src/: classes/reflection.C, include/pa_string.h,
2863: main/pa_string.C: ^reflection:tainting[$string] added (implements
2864: feature #1098)
2865:
2866: 2016-12-05 moko
2867:
2868: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
2869: (fixes bug #1114)
2870:
2871: 2016-12-04 moko
2872:
2873: * tests/: 206.html, results/206.processed: negative zero (0/-1)
2874: check added
2875:
2876: 2016-12-03 moko
2877:
2878: * tests/: 346-curl.html, results/346-curl.processed: test modified
2879: to test value.as_hash() usage
2880:
2881: * src/classes/curl.C: value.as_hash() used for correct hash
2882: processing
2883:
2884: * src/classes/reflection.C: exceptions texts fixes
2885:
2886: 2016-12-02 moko
2887:
2888: * tests/: 372.html, results/372.processed: tests for
2889: ^reflection:create[ $.class[name] $.constructor[name]
2890: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
2891: feature #1094)
2892:
2893: * src/types/pa_vmethod_frame.h: comment added: params should be
2894: declared outside of *_FRAME_ACTION as MethodParams destructor
2895: will be called in ~VNativeMethodFrame
2896:
2897: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
2898: ] minor fix
2899:
2900: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
2901: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
2902: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
2903: now supported (implements feature #1094) value::as_hash added
2904: (and should be used everywhere)
2905:
2906: * src/classes/reflection.C: cleanup
2907:
2908: 2016-12-01 moko
2909:
2910: * tests/: 356.html, results/356.processed: test for method
2911: junctions class name added to the resulting hash added (related
2912: to feature #1068)
2913:
2914: * src/classes/reflection.C: for method junctions class name added
2915: to the resulting hash (related to feature #1068)
2916:
2917: 2016-11-30 moko
2918:
2919: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
2920: exception (related to bug #1113)
2921:
2922: * src/types/pa_vhashfile.C: whitespace
2923:
2924: * src/main/pa_os.C: errno now returned as it should (fixes bug
2925: #1113)
2926:
2927: * tests/results/: 175.processed, 192.processed, 224.processed,
2928: 229.processed, 239.processed, 244.processed, 246.processed,
2929: 314.processed, 352.processed: tests results updated after method
2930: call exceptions improved as method now keeps its name
2931:
2932: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
2933: types/pa_vmethod_frame.h: method call exceptions improved as
2934: method now keeps its name
2935:
2936: * tests/: 224.html, 239.html, results/224.processed,
2937: results/239.processed: tests and tests results updated after
2938: Request::construct exception changed
2939:
2940: * src/: classes/reflection.C, main/execute.C: Request::construct
2941: exception optimized
2942:
2943: * tests/: 371.html, results/371.processed: test for
2944: WWrapper.get_element call in $.name.key[value] code added
2945: (related to feature #1091)
2946:
2947: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2948: in $.name.key[value] code (related to feature #1091)
2949:
2950: 2016-11-29 moko
2951:
2952: * src/classes/op.C: VS warning war
2953:
2954: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2955: C4239: nonstandard extension used : 'return' : conversion from
2956: 'Value' to 'Value &' (related to feature #1020)
2957:
2958: * src/: main/execute.C, types/pa_vmethod_frame.h,
2959: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2960: used : 'return' : conversion from 'Value' to 'Value &' (related
2961: to feature #1020)
2962:
2963: * src/main/execute.C: VS warning war
2964:
2965: * src/targets/cgi/parser3.C: VS compatibility fix
2966:
2967: * src/include/pa_request.h: VS warning war
2968:
2969: * tests/: 370.html, results/370.processed: test for ^file::exec[
2970: ... $.stdin[$binary_file] ] added (related to bug #1044)
2971:
2972: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2973: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2974: $.stdin[$binary_file] (fixes bug #1044)
2975:
2976: 2016-11-28 moko
2977:
2978: * src/main/pa_exec.C: whitespace
2979:
2980: * src/main/pa_request.C: whitespace
2981:
2982: * tests/: 369.html, results/369.processed: test for
2983: $response:status usage added (related to feature #1099)
2984:
2985: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2986: if < 100 (implements feature #1099)
2987:
2988: * src/targets/cgi/parser3.C: whitespace
2989:
2990: * src/targets/cgi/parser3.C: whitespace
2991:
2992: * tests/: 368.html, results/368.processed: test updated after
2993: ^reflection:filename[$method] added (related to feature #1053)
2994:
2995: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2996: main/compile.y, main/execute.C, main/pa_request.C,
2997: types/pa_vclass.h: filename -> filespec,
2998: ^reflection:filename[$method] added (related to feature #1053)
2999:
3000: 2016-11-27 moko
3001:
3002: * tests/: 368.html, results/368.processed: test for
3003: reflection:filename[$class or object] added (related to feature
3004: #1053)
3005:
3006: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
3007: types/pa_vstateless_class.h: ^reflection:filename[$class or
3008: object] added (implements feature #1053)
3009:
3010: 2016-11-26 moko
3011:
3012: * src/: include/pa_request_info.h,
3013: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3014: remove_absolute_uri -> strip_absolute_uri
3015:
3016: 2016-11-25 moko
3017:
3018: * src/: include/pa_request_info.h,
3019: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3020: request_info.remove_absolute_uri added to remove possible
3021: http://site.name/ from $request:uri (implements feature #1112)
3022:
3023: 2016-11-24 moko
3024:
3025: * tests/: 367-curl.html, results/367-curl.processed: test for
3026: previous request headers clearing after redirect added (related
3027: to bug #1109)
3028:
3029: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
3030: response headers from previous requests are now cleared, only
3031: last request headers are collected (fixes bug #1109)
3032:
3033: * tests/results/: 266.processed, 321.processed, 356.processed:
3034: tests results updated as method name now added to the resulting
3035: hash for new syntax only (Imp1 compatimility fixed, related to
3036: feature #1068)
3037:
3038: * src/classes/reflection.C: method name now added to the resulting
3039: hash for new syntax only (Imp1 compatimility fixed, related to
3040: feature #1068)
3041:
3042: * tests/results/366.processed: test for native and parser
3043: implementation of ^use[] logic (related to feature #1074)
3044:
3045: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
3046: for native and parser implementation of ^use[] logic (related to
3047: feature #1074)
3048:
3049: 2016-11-23 moko
3050:
3051: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3052: main/pa_request.C: @USE file now implemented as ^use[file;
3053: $.origin[origin_file] ] (implements feature #1074)
3054:
1.109 moko 3055: 2016-11-21 moko
3056:
1.110 moko 3057: * tests/: 365.html, results/365.processed: test for $caller bugs in
3058: 3.4.4 and $caller.method now tested (related to feature #1110)
3059:
3060: * tests/: 364.html, results/364.processed: $caller usage in
3061: different contexts now tested (related to feature #1110)
3062:
3063: * src/types/types.vcproj: +pa_vcaller_wrapper.h
3064:
3065: * src/types/Makefile.am: pa_vcaller_wrapper.h added
3066:
1.109 moko 3067: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
3068: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
3069: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
3070: used (implements feature #1110)
3071:
3072: 2016-11-20 moko
3073:
3074: * src/types/pa_vdouble.h: whitespace
3075:
3076: 2016-11-11 moko
3077:
3078: * tests/: 363.html, results/363.processed: more tests for feature
3079: #1091 (how parser methods work in expression context)
3080:
3081: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
3082: expressions strings are now written as strings, not values by
3083: write_as_string (related to feature #1091)
3084:
3085: * src/classes/op.C: to make more correct behavour in expression
3086: context
3087:
3088: 2016-11-07 moko
3089:
3090: * tests/: 362.html, results/362.processed: test for
3091: xsltParseStylesheetDoc caching as xsl modification after it added
3092: (related to bug #1108)
3093:
3094: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
3095: result now cached as xdoc is modified after it (fixes bug #1108)
3096:
3097: 2016-11-06 moko
3098:
3099: * src/types/pa_vxdoc.h: whitespace
3100:
3101: 2016-11-05 moko
3102:
3103: * src/types/pa_vmethod_frame.h: cleanup
3104:
3105: 2016-11-03 moko
3106:
3107: * tests/results/244.processed: more correct exception after method
3108: frames separation
3109:
3110: * src/types/pa_vmethod_frame.h: minor optimizaion
3111:
3112: * src/types/pa_method.h: optimization: params_count added
3113:
3114: * src/: classes/json.C, classes/op.C, classes/reflection.C,
3115: include/pa_request.h, main/execute.C, main/pa_request.C,
3116: types/pa_value.C, types/pa_vmethod_frame.C,
3117: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
3118: VMethodFrame now divided into VNativeMethodFrame,
3119: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
3120: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
3121: and used (related to feature #1104)
3122:
3123: 2016-11-02 moko
3124:
3125: * src/: classes/bool.C, classes/curl.C, classes/date.C,
3126: classes/double.C, classes/file.C, classes/hash.C,
3127: classes/hashfile.C, classes/image.C, classes/inet.C,
3128: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3129: classes/memcached.C, classes/op.C, classes/reflection.C,
3130: classes/regex.C, classes/string.C, classes/table.C,
3131: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
3132: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
3133: r.write (implements feature #1091)
3134:
3135: * src/main/execute.C: cleanup (related to feature #1104)
3136:
3137: * src/: include/pa_request.h, main/execute.C,
3138: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
3139: added, in_expression removed (implements feature #1104)
3140:
3141: 2016-10-31 moko
3142:
3143: * src/types/pa_value.C: whitespace
3144:
3145: 2016-10-28 moko
3146:
3147: * tests/results/244.processed: updated after error reporting fixed
3148: in pa_wcontext.C
3149:
3150: * src/types/pa_wcontext.C: error reporting fixed
3151:
3152: * src/types/pa_wcontext.h: whitespace
3153:
3154: * src/classes/image.C: not fully readed entries are no longer
3155: processed (fixes bug #1106)
3156:
3157: 2016-10-26 moko
3158:
3159: * src/classes/image.C: whitespace
3160:
3161: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
3162: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
3163: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
3164: longer required (related to feature #1091)
3165:
3166: * tests/results/: 264.processed, 350.processed: test results update
3167: reverted (whitespace optimization) after write_no_lang removed :)
3168: (related to feature #1091)
3169:
3170: * src/: classes/file.C, classes/hash.C, classes/op.C,
3171: classes/string.C, classes/table.C, classes/void.C,
3172: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
3173: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
3174: equal write_pass_lang (related to feature #1091)
3175:
3176: * tests/results/: 264.processed, 350.processed: test results
3177: updated (whitespace optimization) after write_assign_lang removed
3178: (related to feature #1091)
3179:
3180: * tests/: 361.html, results/361.processed: test for non-string
3181: ^untaint added (related to feature #1091)
3182:
3183: * src/: classes/curl.C, classes/date.C, classes/file.C,
3184: classes/hash.C, classes/op.C, classes/string.C,
3185: include/pa_request.h, main/execute.C: optimization:
3186: write_assign_lang removed as not required (first part of feature
3187: #1091 implementation)
3188:
1.108 moko 3189: 2016-10-12 moko
3190:
3191: * tests/: 360.html, results/360.processed: more test code (related
3192: to feature #1104)
3193:
3194: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
3195: include/pa_request.h, main/compile.y, main/execute.C: opcode
3196: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
3197: WContext is next task (implements feature #1104)
3198:
3199: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
3200: / CO_WITHOUT_WCONTEXT
3201:
3202: * tests/: 360.html, results/360.processed: test for in expression
3203: state (related to feature #1104)
3204:
3205: 2016-10-11 moko
3206:
3207: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
3208:
3209: * src/classes/op.C: default value removed from initializer
3210:
3211: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
3212:
3213: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
3214:
3215: 2016-10-10 moko
3216:
3217: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
3218: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
3219: to feature #42)
3220:
3221: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
3222: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
3223:
3224: 2016-10-08 moko
3225:
3226: * src/classes/double.C: whitespace
3227:
3228: 2016-10-07 moko
3229:
3230: * src/types/pa_vmethod_frame.h: reorder
3231:
3232: 2016-10-06 moko
3233:
3234: * src/classes/date.C: typo
3235:
3236: * src/types/pa_vmethod_frame.h: whitespace + cleanup
3237:
3238: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3239: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
3240: types/pa_vmethod_frame.h: params.get now returns Value&, not
3241: Value*
3242:
3243: * src/types/pa_vmethod_frame.C: params.get should return Value&.
3244:
3245: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
3246: removed; first as_* code rewrite
3247:
3248: 2016-10-05 moko
3249:
3250: * src/include/pa_request.h: whitespace
3251:
3252: * tests/: 359.html, results/359.processed: test for VCodeFrame and
3253: intercept_string added (related to feature #1097)
3254:
3255: * src/: classes/image.C, classes/op.C, classes/table.C,
3256: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3257: optimization: intercept_string removed (implements feature #1097)
3258:
3259: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
3260:
3261: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
3262: from VCodeFrame and WWrapper as not required
3263:
3264: 2016-10-04 moko
3265:
3266: * src/: classes/curl.C, classes/date.C, classes/double.C,
3267: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
3268: classes/int.C, classes/json.C, classes/op.C,
3269: classes/reflection.C, classes/string.C, classes/table.C,
3270: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3271: proces_to_value -> process after StringOrValue removed (related
3272: to feature #1020)
3273:
3274: * src/classes/form.C: whitespace
3275:
3276: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
3277:
3278: * tests/: 357.html, 358.html, results/357.processed,
3279: results/358.processed, results/auto.p: test for @conf
3280: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
3281:
3282: 2016-10-03 moko
3283:
3284: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
3285: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
3286: supported (implements feature #42)
3287:
3288: * src/types/pa_vregex.h: no reason for VRegex to be
3289: is_evaluated_expr
3290:
3291: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
3292: (implements feature #1095)
3293:
3294: 2016-10-01 moko
3295:
3296: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
3297: false by default (related to feature #1089)
3298:
3299: 2016-09-30 moko
3300:
3301: * src/types/pa_wcontext.h: cleanup
3302:
3303: 2016-09-29 moko
3304:
3305: * src/main/execute.C: whitespace
3306:
3307: * src/include/pa_request.h: whitespace
3308:
3309: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3310: classes/op.C, classes/table.C, include/pa_request.h,
3311: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
3312: types/pa_vobject.C, types/pa_wcontext.h: optimization:
3313: StringOrValue removed as it just slows down and adds complexity
3314: (implements feature #1020)
3315:
3316: 2016-09-28 moko
3317:
3318: * tests/: 356.html, results/266.processed, results/321.processed,
3319: results/356.processed: tests updated after name was added to
3320: method_info hash, test for ^reflection:method_info[junction]
3321: added (related to feature #1068)
3322:
3323: * src/classes/reflection.C: ^reflection:method_info[junction] now
3324: supported, method name added to the resulting hash (implements
3325: feature #1068)
3326:
3327: * tests/: 276.html, results/276.processed: more tests for
3328: ^reflection:delete[]
3329:
3330: * src/classes/reflection.C: fixed bug then ^reflection:delete
3331: didn't work on class and could damage native objects (like file)
3332:
3333: 2016-09-26 moko
3334:
3335: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
3336: results/345.processed, results/346-curl.processed,
3337: results/347-curl.processed, results/348.processed: numbers added
3338: to simplify diff analysis
3339:
3340: * tests/: 352.html, results/352.processed: test result updated as
3341: method name used
3342:
3343: * src/classes/reflection.C: method name used
3344:
3345: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3346: its name
3347:
3348: * src/types/pa_method.h: whitespace
3349:
3350: * src/classes/reflection.C: both method and field with one name can
3351: exist.
3352:
3353: * src/classes/reflection.C: ^reflection:mixin added (implements
3354: feature #1089)
3355:
3356: * tests/: 355.html, results/355.processed: property appears in
3357: derived class if added in base test added
3358:
3359: * src/types/pa_vstateless_class.h: get_method declaration +
3360: whitespace
3361:
3362: * tests/: 354.html, results/354.processed: nice test from method
3363: and property with one name in class added
3364:
3365: 2016-09-23 moko
3366:
3367: * src/classes/reflection.C: ^reflection:method usage documented
3368:
3369: 2016-09-22 moko
3370:
3371: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
3372: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
3373: compile warning and GPF occures on VS2003 (related to feature
3374: #1087)
3375:
3376: * tests/: 350.html, results/350.processed: test added for
3377: $.encloser[] support in ^table::create (related to feature #11)
3378:
3379: * src/classes/table.C: another minor fix (related to feature #11)
3380:
1.107 moko 3381: 2016-09-21 moko
3382:
3383: * src/include/pa_config_fixed.h: vs2015 compilation fixes
3384:
3385: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3386: classes/json.C, classes/string.C, classes/table.C,
3387: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3388: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3389: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
3390: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
3391: pa_charsets, vs2015 warning war
3392:
3393: * src/classes/table.C: vs2015 warning war
3394:
3395: * src/types/pa_vdate.C: vs2015 warning war
3396:
3397: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
3398:
3399: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
3400: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
3401:
3402: * src/main/pa_common.C: vs2015 compilation fixes
3403:
3404: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
3405: vs2015 compilation fixes
3406:
3407: * src/main/pa_charset.C: vs2015 warning war
3408:
3409: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
3410:
3411: * src/main/pa_charset.C: vs2015 warning war
3412:
3413: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
3414:
3415: * src/types/pa_vdate.C: vs2015 compilation fix
3416:
3417: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
3418:
3419: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
3420: VS2015 compilation fixes
3421:
3422: * src/classes/table.C: minor fix (related to feature #11)
3423:
3424: * tests/results/282.processed: no longer skipping extra enclosers
3425: (related to feature #11)
3426:
3427: * src/classes/table.C: minor fix + no longer skipping extra
3428: enclosers (related to feature #11)
3429:
3430: * src/classes/table.C: minor optimization (related to feature #11)
3431:
3432: * src/classes/table.C: minor fix and optimization (related to
3433: feature #11)
3434:
3435: 2016-09-20 moko
3436:
3437: * tests/: 353.html, results/353.processed: test for
3438: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
3439: added (related to bug #1090)
3440:
3441: * src/main/compile.y: PC.cclass->is_vars_local() check added for
3442: one_big_piece (fixes bug #1090)
3443:
3444: * tests/: 229.html, results/229.processed: code coverage tests
3445:
3446: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
3447: body) was called
3448:
3449: * src/classes/op.C: whitespace
3450:
3451: * tests/: 323.html, results/323.processed: test for code junction
3452: should not be returned by ^reflection:class, ^reflection:base
3453:
3454: * src/classes/reflection.C: bugfix: code junction should not be
3455: returned by ^reflection:class, ^reflection:base
3456:
3457: * tests/: 323.html, 352.html, results/352.processed: no more
3458: exception for ^reflection:method[class;no-such-method] (related
3459: to feature #1087)
3460:
3461: * src/classes/reflection.C:
3462: ^reflection:method[class;no-such-method] : exception -> void
3463: (related to feature #1087)
3464:
3465: * src/include/pa_request.h: request::write_value added to allow
3466: write value without convertion (related to issue #1091)
3467:
3468: 2016-09-19 moko
3469:
3470: * src/main/pa_random.C: windows build fix
3471:
3472: * src/types/pa_vhash.h: warning war
3473:
3474: 2016-09-14 moko
3475:
3476: * tests/: 352.html, 552.html, results/352.processed,
3477: results/552.processed: test for ^reflection:method[] extension
3478: added (related to feature #1087)
3479:
3480: * tests/: 552.html, results/552.processed: test for
3481: ^reflection:method[] extension added (related to feature #1087)
3482:
3483: * src/classes/reflection.C: compatibility issue fixed, VClass
3484: dynamic_cast check added (related to feature #1087)
3485:
3486: * tests/: 351.html, results/351.processed: test for @auto[]
3487: inheritance bug diring ^process[] added (related to bug #1088)
3488:
3489: * src/: classes/op.C, main/pa_request.C,
3490: types/pa_vstateless_class.C: set_method now checks for @auto[] to
3491: disable it inheritance during ^process (fixes bug #1088)
3492:
3493: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
3494: added (implements feature #1087)
3495:
3496: 2016-09-13 moko
3497:
3498: * tests/: 349.html, results/auto.p: test for objects prototyping
3499: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
3500: to feature #1086)
3501:
3502: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
3503: types/pa_vobject.C: objects now are not class instances, but have
3504: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
3505: in @conf (implements feature #1086)
3506:
3507: 2016-09-08 moko
3508:
3509: * src/: classes/file.C, classes/mail.C, classes/string.C,
3510: classes/table.C, main/pa_http.C, main/pa_string.C,
3511: include/pa_string.h: cleanup: string::split limit argument
3512: removed as no longer required, pos_after no longer reference
3513: (related to feature #11)
3514:
3515: * src/classes/table.C, tests/results/348.processed: now exception
3516: is rised when invalid option is passed to ^table::create[]
3517:
3518: * tests/: 282.cfg, 282.html, results/282.processed: more code
3519: coverage tests
3520:
3521: * tests/: 348.html, results/348.processed: code coverage tests
3522: added
3523:
3524: * tests/: 348.html, results/348.processed: generic ^table::create[]
3525: tests
3526:
3527: * tests/: 035.html, results/035.processed, results/272.processed:
3528: tests updated after $.encloser[] support for ^table::create
3529: implementation (related to feature #11)
3530:
3531: * src/classes/table.C: $.encloser[] support for ^table::create
3532: finally added (implements feature #11)
3533:
3534: 2016-09-07 moko
3535:
3536: * src/include/pa_string.h: added StringSplitHelper as friend
3537: (related to feature #11)
3538:
3539: * src/include/pa_string.h: body and langs now protected, not
3540: private to allow inheritance (related to feature #11)
3541:
3542: * src/classes/table.C: lsplit optimized before cloning for
3543: ^table::create with $.encloser[] (related to feature #11)
3544:
3545: * src/classes/table.C: optimizaion: TableControlChars.separators
3546: added and used (related to feature #11)
3547:
3548: * src/classes/table.C: spelling:
3549:
3550: TableSeparators -> TableControlChars column -> separator
3551: separators -> control_chars
3552:
3553: 2016-09-06 moko
3554:
3555: * src/main/pa_string.C: whitespace
3556:
3557: * src/main/pa_string.C: whitespace
3558:
3559: 2016-09-01 moko
3560:
3561: * tests/: 347-curl.html, results/347-curl.processed: to make tests
3562: results OS-independent
3563:
3564: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3565: compiler (related to feature #1042)
3566:
3567: 2016-08-15 moko
3568:
3569: * src/include/pa_string.h: whitespace
3570:
3571: * src/classes/table.C: whitespace
3572:
1.106 moko 3573: 2016-08-05 moko
3574:
3575: * tests/: 344.html, results/344.processed: test for
3576: ^hash::create[$file] added (related to feature #1075)
3577:
3578: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3579: supported (implements feature #1075)
3580:
3581: 2016-08-04 moko
3582:
3583: * tests/: 341.html, results/341.processed: more code coverage tests
3584:
3585: * tests/: 346-curl.html, results/346-curl.processed: more code
3586: coverage tests for curl
3587:
3588: * tests/: 346-curl.html, results/346-curl.processed: more code
3589: coverage tests for curl
3590:
3591: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3592: results/223.processed: code coverage tests: $.form[ $.table[] ]
3593: test added
3594:
3595: * tests/: 223-curl.html, results/223-curl.processed: more code
3596: coverage tests for curl
3597:
3598: 2016-08-03 moko
3599:
3600: * src/classes/curl.C: dlink(curl_library) now called not once, but
3601: until it will be loaded, allowing to find existing library.
3602:
3603: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3604: results/347-curl.processed: more code coverage tests for curl
3605:
3606: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3607: results/339-curl.processed, results/346-curl.processed: curl
3608: functionality tests
3609:
3610: 2016-08-02 moko
3611:
3612: * tests/: 339.html, results/339.processed: test for tables in
3613: ^file:load[] and ^curl:load[] (commented) added (related to
3614: feature #1042)
3615:
3616: * tests/: 345.html, results/345.processed: code coverage tests for
3617: file class
3618:
3619: * tests/: 344.html, results/344.processed: code coverage tests
3620:
3621: * tests/: 344.html, results/344.processed: mdate removed from
3622: output
3623:
3624: * src/classes/file.C: minor bugfix: is_text should be taked from
3625: fcontent.is_text_mode() if not set (related to feature #1061)
3626:
3627: * tests/: 344.html, results/344.processed: more tests
3628:
3629: * tests/: 343.html, 344.html, results/343.processed,
3630: results/344.processed: tests for ^file::create[ $.from-charset
3631: and $.to-charset ] (related to feature #1061)
3632:
3633: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3634: aset_text_mode argument optimized
3635:
3636: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3637: checkBOM now used in detect_binary_content (related to feature
3638: #1061)
3639:
3640: * src/main/pa_request.C: load_charset no longer required to_upper
3641:
3642: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3643: preserves original file mode (if no $.mode specified)
3644:
3645: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3646: ^file::create now supports $.from-charset[] and $.to-charset
3647: options (implements feature #1061), automatic transcode is done
3648: if text file is created from binary file and charset is detected.
3649:
3650: 2016-07-30 moko
3651:
3652: * src/classes/table.C: ^t.hash[..;] now supported (related to
3653: feature #1057)
3654:
3655: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3656: added (related to feature #1057)
3657:
3658: * tests/: 286.html, results/286.processed: code tests coverage
3659:
3660: 2016-07-29 moko
3661:
3662: * src/classes/table.C: table size should be checked inside menu and
3663: foreach (related to feature #858)
3664:
3665: * src/: classes/curl.C, classes/file.C, classes/string.C,
3666: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3667: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
3668: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
3669: charsets.get now does str_upper inside (related to feature #1061)
3670:
3671: * tests/: 342.html, results/342.processed: more code coverage tests
3672:
3673: * tests/: 342.html, outputs/342.processed: table menu code coverage
3674: + foreach test added (related to feature #858)
3675:
3676: * tests/: 341.html, results/341.processed: tests for
3677: ^table.hash[]{code} added + code coverage tests (related to
3678: feature #1057)
3679:
3680: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
3681: value} support (implements feature #1057)
3682:
3683: * src/classes/table.C: whitespace
3684:
3685: 2016-07-28 moko
3686:
3687: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
3688: from URL, if not specified query string removed from url-based
3689: filenames in ^curl:load[] and ^file::load[] (related to feature
3690: #1042)
3691:
3692: 2016-07-27 moko
3693:
3694: * tests/: 340.html, results/340.processed: test for
3695: transcode_text_result=false added (related to issue #1042)
3696:
3697: 2016-07-26 moko
3698:
3699: * src/types/pa_vfile.C: file name should not be empty (if file path
3700: is folder and ends with /) (related to feature #1042)
3701:
3702: * src/main/pa_http.C: whitespace optimizaion
3703:
3704: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3705: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
3706: multiple headers, ^file::load supports headers transcoding
3707: (implements feature #1042)
3708:
3709: 2016-07-25 moko
3710:
3711: * src/include/pa_common.h: PA_DEFAULT added
3712:
3713: 2016-07-22 moko
3714:
3715: * tests/: 338.html, results/338.processed: test for
3716: $date.field(value) added (related to feature #1066)
3717:
3718: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3719: $date.field(value) now supported for y/m/d/h/m/s (implements
3720: feature #1066)
3721:
1.105 moko 3722: 2016-07-21 moko
3723:
3724: * src/: classes/file.C, classes/image.C, include/pa_common.h,
3725: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
3726: arguments removed; image.C - absolute path shown in exception
3727: (implements feature #1071)
3728:
3729: * tests/: 235.html, results/235.processed: test and test result
3730: updated after static boundary in mail and Errors-To: mail header
3731: removed (related to feature #1047)
3732:
3733: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
3734: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
3735: used, static boundary in mail removed, Errors-To: mail header
3736: removed (implements feature #1047)
3737:
3738: 2016-07-20 moko
3739:
3740: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3741: equest.classes(): Value -> VStateless_class, part 3 (related to
3742: issue #1051)
3743:
3744: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
3745: request.classes(): Value -> VStateless_class, part 2 (related to
3746: issue #1051)
3747:
3748: * tests/results/: 224.processed, 323.processed: classes without
3749: methods should not be methoded (related to issue #1051)
3750:
3751: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
3752: main/compile_tools.h, main/pa_request.C: request.classes(): Value
3753: -> VStateless_class, part 1 (related to issue #1051)
3754:
3755: * tests/: 337.html, results/337.processed: test for
3756: ^reflection:fields_reference[] and VHashReference class added
3757: (related to feature #1072)
3758:
3759: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
3760: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
3761: and VHashReference added, allowing ^reflection:fields_reference[]
3762: implementation (closes feature #1072)
3763:
3764: 2016-07-19 moko
3765:
3766: * tests/: 323.html, results/323.processed: we want to see
3767: "methoded"
3768:
3769: * tests/: 336.html, results/336.processed: test for $BASE:property
3770: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
3771: #1059)
3772:
3773: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
3774: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
3775: somebody_entered_some_class, $BASE:property works again,
3776: ^BASE:method[] bugs fixed (fixes bug #1059)
3777:
3778: 2016-07-14 moko
3779:
3780: * tests/: 335.html, results/335.processed: test for feature #1055
3781: added
3782:
3783: * src/classes/hash.C: bugfix: $._default was not copied if empty
3784: feature: ^hash.contains[_default] added (implements feature
3785: #1055)
3786:
3787: 2016-07-13 moko
3788:
3789: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
3790: should not call @autouse (http://www.parser.ru/forum/?id=83480)
3791:
3792: 2016-07-05 moko
3793:
3794: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
3795: in ^hash.foreach (related to feature #1073)
3796:
3797: 2016-07-04 moko
3798:
3799: * tests/: 134.html, 281.html, results/134.processed,
3800: results/281.processed: tests updated after hash blocking removed
3801: (related to feature #1073)
3802:
3803: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
3804: no longer blocks on change during foreach (implements feature
3805: #1073)
3806:
3807: 2016-06-17 moko
3808:
3809: * tests/: 330.html, results/330.processed: try exception source
3810: test added (related to bug in #1062)
3811:
3812: * tests/: 334.html, results/334.processed: Exception stack trace
3813: test added (related to bug in $1062)
3814:
3815: * src/classes/op.C: Exception trace now correctly restored and
3816: errors reported (related to bug #1062)
3817:
1.104 moko 3818: 2016-05-25 moko
3819:
3820: * src/main/compile.y: minor cleanup + beauty
3821:
3822: 2016-05-24 moko
3823:
3824: * tests/: 333.html, results/333.processed: more exceptions testing
3825:
3826: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
3827: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
3828: features #1056, #1026)
3829:
3830: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
3831: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
3832: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
3833: (implements feature #1056)
3834:
3835: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3836: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
3837: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
3838: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
3839: feature #1026)
3840:
3841: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
3842: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
3843: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
3844: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
3845: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
3846: feature #1026)
3847:
3848: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3849: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
3850: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
3851: SYMBOLS_CACHING define implemented (related to feature #1026)
3852:
3853: * src/main/main.vcproj: + ps_symbols
3854:
3855: * src/: include/Makefile.am, include/pa_string.h,
3856: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
3857: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
3858: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3859: types/pa_vstateless_class.C: initial implementation for symbols
3860: cache (related to feature #1026)
3861:
3862: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
3863:
3864: * src/main/pa_globals.C: minor cleanup
3865:
3866: 2016-05-19 moko
3867:
3868: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
3869: (related to feature #1046)
3870:
3871: * tests/: 331.html, results/331.processed: test for
3872: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
3873: (related to feature #1051)
3874:
3875: * src/main/compile.y:
3876: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
3877: (implements feature #1054)
3878:
3879: 2016-05-18 moko
3880:
3881: * src/types/pa_vtable.C, tests/results/324.processed: no more
3882: "column not found" exception for ^table.no-such-method[] (related
3883: to feature #1046)
3884:
3885: * tests/: 261.html, results/261.processed: test added and updated
3886: after feature #1046 implementation
3887:
3888: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
3889: types/pa_vvoid.h: $string.anything works for whitespace strings,
3890: ^string.contains added for hash compatibility, $string.method no
3891: longer returns stting method (implements feature #1046)
3892:
3893: 2016-05-12 moko
3894:
3895: * src/classes/curl.C: content-type response header no longer
3896: ignored (fixes issue #1045)
3897:
3898: * tests/: 330.html, results/330.processed: test for incomplete
3899: finally execution when break occures added (related to issue
3900: #1077)
3901:
3902: * src/classes/op.C: bugfix: Request::skip reset is called before
3903: executing catch and finally code (fixes issue #1062)
3904:
3905: 2016-05-11 moko
3906:
3907: * tests/: 329.html, results/329.processed: test for invalid
3908: ^break[] behavour added (bug #1077)
3909:
3910: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
3911:
3912: 2016-04-24 moko
3913:
3914: * src/types/pa_vstateless_class.h: warning war
3915:
3916: 2016-04-17 moko
3917:
3918: * tests/: 328.html, results/328.processed: test for
3919: ^break(condition) and ^continue(condition) (related to feature
3920: #1063)
3921:
3922: * src/classes/op.C: ^break(condition) and ^continue(condition)
3923: implemented (feature #1063)
3924:
3925: 2016-04-12 moko
3926:
3927: * tests/results/280.processed: ordered hash now used for class
3928: methods and properties (test results updated for feature #1069)
3929:
3930: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
3931: to xdoc.C as under FreeBSD it was inited after and inheritance
3932: failed (related to issue #1051)
3933:
3934: * tests/: 320.html, results/320.processed: xdoc and xnode methods
3935: are printed to check inheritance (related to feature #1051)
3936:
1.103 moko 3937: 2016-04-09 moko
3938:
3939: * tests/results/320.processed: ordered hash now used for class
3940: methods and properties (test results updated for feature #1069)
3941:
3942: * src/types/pa_vstateless_class.h: ordered hash now used for class
3943: methods and properties (implements feature #1069)
3944:
3945: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3946: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3947: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3948: feature #1051)
3949:
3950: 2016-04-07 moko
3951:
3952: * src/main/execute.C: returned Value in .CLASS case for VJunction
3953: (related to feature #1051)
3954:
3955: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3956: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3957: string constants deduplication (related to feature #1051)
3958:
3959: * tests/results/224.processed: test result updated (related to
3960: feature #1051)
3961:
3962: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3963: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3964: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3965: types/pa_vstatus.h: classes hash now contains only
3966: VStateless_class derived objects, .CLASS is also allways
3967: VStateless_class derived object (related to feature #1051).
3968:
3969: 2016-04-06 moko
3970:
3971: * tests/results/323.processed: test result updated after feature
3972: #1051 implementation
3973:
3974: * src/: classes/classes.h, classes/op.C, classes/response.C,
3975: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3976: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3977: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3978: types/pa_vresponse.C, types/pa_vresponse.h,
3979: types/pa_vstateless_class.h: base -> methoded_donor for static
3980: classes, type() moved from VStateless_class to VClass and
3981: Methoded (implements feature #1051)
3982:
3983: 2016-04-04 moko
3984:
3985: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3986: beauty: put_class added (related to feature #1051)
3987:
3988: 2016-04-01 moko
3989:
3990: * tests/results/: 175.processed, 192.processed, 224.processed,
3991: 229.processed, 244.processed, 246.processed, 316.processed: test
3992: results updated as class.type() removed from error messages, only
3993: type() left (related to feature #1051)
3994:
3995: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3996: classes/op.C, classes/reflection.C, main/compile.y,
3997: main/compile_tools.h, main/execute.C, main/pa_request.C,
3998: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3999: types/pa_vmethod_frame.h, types/pa_vobject.h,
4000: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
4001: from VStateless_class, type() is used instead (related to feature
4002: #1051)
4003:
4004: * src/classes/mail.C: old logic restored.
4005:
4006: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4007: classes/classes.h, classes/curl.C, classes/date.C,
4008: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4009: classes/hashfile.C, classes/image.C, classes/inet.C,
4010: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4011: classes/memcached.C, classes/memory.C, classes/reflection.C,
4012: classes/regex.C, classes/response.C, classes/string.C,
4013: classes/table.C, classes/xdoc.C, classes/xnode.C,
4014: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
4015: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
4016: feature #1051)
4017:
4018: 2016-03-30 moko
4019:
4020: * tests/: 327.html, results/224.processed, results/327.processed:
4021: test for TZ specification in ^date::create[], TZ is kept during
4022: ^date::create[$dt] (related to feature #1048)
4023:
4024: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
4025: ^date::create[], TZ is kept during ^date::create[$dt] (implements
4026: feature #1048)
4027:
4028: 2016-03-29 moko
4029:
4030: * tests/: 315.html, results/315.processed: test for timezone format
4031: +HHmm added (related to feature #1065)
4032:
4033: * src/classes/date.C: timezone format +HHmm now supported
4034: (implements feature #1065)
4035:
4036: 2016-03-28 moko
4037:
4038: * tests/: 202.html, results/131.processed, results/202.processed,
4039: results/224.processed, results/256.processed,
4040: results/315.processed: test results updated after %.2d now
4041: default for hours offset in iso-string (was %2d), test for
4042: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4043: added (related to feature #1065)
4044:
4045: 2016-03-27 moko
4046:
4047: * src/types/pa_vdate.C: '+' sign for zero offset (related to
4048: feature #1065)
4049:
4050: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
4051: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4052: added (implements feature #1065)
4053:
4054: 2016-03-24 moko
4055:
4056: * tests/: 202.html, results/202.processed: test $date.week added
4057: (related to bug #1067)
4058:
4059: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
4060: date (fix for bug #1067)
4061:
4062: 2016-03-10 moko
4063:
4064: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
4065:
1.102 moko 4066: 2015-12-07 moko
4067:
4068: * tests/: 326.html, results/326.processed: test for .CLASS &
4069: .CLASS_NAME optimization added (related to feature #844)
4070:
4071: 2015-11-17 moko
4072:
4073: * tests/: 323.html, results/323.processed: order added
4074:
4075: * tests/: 325.html, results/325.processed: double range test added
4076: (related to bug #1049)
4077:
4078: 2015-11-16 moko
4079:
4080: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
4081: added to disallow NaN and Infinity (fixes bug #1049)
4082:
4083: 2015-11-11 moko
4084:
4085: * tests/324.html: parser 3.4.3 execution support added (related to
4086: feature #1017)
4087:
4088: * tests/: 324.html, results/324.processed: test for
4089: GET_ELEMENT4CALL feature added (feature #1017)
4090:
1.101 moko 4091: 2015-10-29 moko
4092:
4093: * operators.txt: updated for 3.4.4
4094:
4095: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
4096:
4097: * src/main/pa_exec.C: get_exit_status implemented for Windows
4098: (related to bug #1043)
4099:
4100: 2015-10-28 moko
4101:
4102: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
4103: hangup during ^file::exec (fixes bug #1043)
4104:
1.100 moko 4105: 2015-10-27 moko
4106:
4107: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
4108:
1.99 moko 4109: 2015-10-26 moko
4110:
1.100 moko 4111: * tests/322.html, src/classes/reflection.C: arguments reorder
4112: (related to issue #1041)
4113:
4114: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
4115: Copyright year updated
4116:
1.99 moko 4117: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
4118: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
4119: classes/form.C, classes/hash.C, classes/hashfile.C,
4120: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
4121: classes/mail.C, classes/math.C, classes/memcached.C,
4122: classes/memory.C, classes/op.C, classes/reflection.C,
4123: classes/regex.C, classes/response.C, classes/string.C,
4124: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4125: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4126: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4127: include/pa_config_fixed.h, include/pa_config_includes.h,
4128: include/pa_dictionary.h, include/pa_dir.h,
4129: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4130: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4131: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4132: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4133: include/pa_request_charsets.h, include/pa_request_info.h,
4134: include/pa_sapi.h, include/pa_socks.h,
4135: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4136: include/pa_stack.h, include/pa_string.h,
4137: include/pa_stylesheet_connection.h,
4138: include/pa_stylesheet_manager.h, include/pa_table.h,
4139: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4140: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4141: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4142: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
4143: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
4144: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
4145: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
4146: main/compile.y, main/compile_tools.C, main/compile_tools.h,
4147: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
4148: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
4149: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
4150: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
4151: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4152: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4153: main/pa_string.C, main/pa_stylesheet_connection.C,
4154: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4155: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4156: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
4157: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
4158: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
4159: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
4160: targets/isapi/parser3isapi.C, types/pa_junction.h,
4161: types/pa_method.h, types/pa_property.h, types/pa_value.C,
4162: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
4163: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
4164: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
4165: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4166: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4167: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4168: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4169: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4170: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4171: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4172: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
4173: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
4174: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4175: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
4176: types/pa_vresponse.C, types/pa_vresponse.h,
4177: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
4178: types/pa_vstateless_object.h, types/pa_vstatus.C,
4179: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
4180: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
4181: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4182: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
4183: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
4184:
4185: * src/targets/cgi/parser3.C: year updated
4186:
4187: * src/classes/reflection.C: VS2003 compatibility fixed (related to
4188: issue #1041)
4189:
4190: * tests/: 323.html, results/323.processed: test for base classes
4191: added
4192:
4193: * tests/: 261.html, results/261.processed: updated after better
4194: error reporting done for $string.key exception
4195:
4196: * src/types/pa_vstring.h: better error report for $string.key
4197: exception
4198:
4199: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
4200: copied as VObject::get_element4call to remove extra virtual call
4201:
4202: * tests/: 322.html, results/322.processed: test for
4203: ^reflection:is[] added (related to feature #1041)
4204:
4205: * src/classes/reflection.C: ^reflection:is empty value is void
4206: (related to feature #1041)
4207:
4208: * src/classes/reflection.C:
4209: ^reflection:is[class_name|code|method;[context;]element_name]
4210: added (implements feature #1041)
4211:
4212: 2015-10-24 moko
4213:
4214: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
4215:
1.98 moko 4216: 2015-10-22 moko
4217:
4218: * tests/: 321.html, results/321.processed: test for
4219: ^reflection:method_info[] file detection added
4220:
4221: * tests/: 320.html, results/320.processed: test for
4222: ^reflection:class_by_name[class_name] added (related to feature
4223: #993)
4224:
4225: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
4226: added (implements feature #993)
4227:
4228: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
4229: (related to feature #1017)
4230:
4231: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
4232: added (related to issue #1039)
4233:
4234: * src/main/pa_request.C: ^throw origin fixed (related to feature
4235: #1039)
4236:
4237: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
4238: for VDate
4239:
4240: * tests/results/182.processed: updated after feature #1038
4241: implemented
4242:
4243: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
4244: compile-time exception origin added (test for feature #1039)
4245:
4246: * src/: include/pa_request.h, main/compile.C, main/compile.y,
4247: main/pa_request.C: exception unification: compile-time exceptions
4248: now have origin, @USE origins also tracked (implements feature
4249: #1039)
4250:
4251: 2015-10-20 moko
4252:
4253: * src/main/pa_request.C: cleanup
4254:
4255: 2015-10-15 moko
4256:
4257: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
4258:
4259: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
4260: types/pa_vtable.C: new feature: no more $table.method and
4261: $hash.method, aliases for _at, _count, _key (related to feature
4262: #1017)
4263:
1.97 moko 4264: 2015-10-14 moko
4265:
1.98 moko 4266: * tests/: 317.html, results/317.processed: test for
4267: ^string.unescape[] added (related to feature #120)
4268:
1.97 moko 4269: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
4270: defined" bug (described in issue #1036)
4271:
4272: * tests/: 247.html, results/247.processed: test for checkBOM added
4273: (test for bug #1037)
4274:
4275: * src/: include/pa_charsets.h, main/pa_charsets.C,
4276: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
4277: it's not enforced, skips BOM signature if it complies charset
4278: (fixes bug #1037)
4279:
4280: 2015-10-13 moko
4281:
4282: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
4283: linking
4284:
4285: * src/classes/inet.C: vs2003 compilation fix
4286:
4287: * src/classes/math.C: warning war
4288:
4289: * src/lib/punycode/pa_punycode.c: warning war
4290:
4291: 2015-10-12 moko
4292:
4293: * src/lib/punycode/pa_punycode.c: warning war
4294:
4295: * parser3.sln: moved parser3 first, to make it default startup
4296: project
4297:
4298: * buildall: parser "mirror" now used for external libs sources
4299: (implements feature #1036)
4300:
4301: * buildall: most external libs are updated to their current
4302: versions (related to feature #1036)
4303:
4304: * src/classes/image.C: more tags added
4305:
4306: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
4307:
4308: 2015-10-11 moko
4309:
4310: * src/classes/curl.C: minor optimization (related to feature #1035)
4311:
4312: 2015-10-09 moko
4313:
4314: * src/classes/curl.C: pa_strdup added for strings from curl
4315: (related to feature #1035)
4316:
4317: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
4318: ULLONG_MAX definition
4319:
4320: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
4321: (implements feature #1035)
4322:
4323: * src/main/pa_charset.C: String::Body(String::C) used
4324:
4325: * src/main/pa_charset.C: exceptions unified
4326:
4327: * src/: include/pa_charset.h, main/pa_charset.C: declarations
4328: unified
4329:
4330: * src/: classes/file.C, classes/image.C, classes/mail.C,
4331: classes/op.C, classes/xdoc.C, classes/xnode.C,
4332: include/pa_string.h, main/pa_request.C, main/pa_string.C,
4333: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
4334: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
4335: String::Body(String::C) constructor added (related to bug #957)
4336:
4337: * src/classes/file.C: minor optimization
4338:
4339: * src/include/pa_hash.h: hash.get(char*) added, to minimize
4340: Cord(char*) autocreation (related to bug #957)
4341:
4342: * src/: classes/string.C, main/untaint.C: minor optimizations
4343:
4344: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
4345: String(char*, Lang, length) removed, String(C(), Lang) used
4346: instead (related to bug #957)
4347:
4348: 2015-10-08 moko
4349:
4350: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4351: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4352: main/untaint.C: Now char * is converted to CORD only using
4353: AS_CORD() to check for empty cord bug (fixes bug #957)
4354:
4355: * src/include/pa_hash.h: fixed compilation without
4356: HASH_CODE_CACHING
4357:
4358: * src/classes/string.C:
4359: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
4360: feature #120)
4361:
4362: * src/main/pa_common.C: reduce js flags checks count (related to
4363: feature #120)
4364:
1.96 moko 4365: 2015-10-07 moko
4366:
4367: * tests/: 275.html, results/275.processed: test modified after
4368: unsigned long long int support implemented (feature #1034)
4369:
4370: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
4371: pa_atoul added for unsigned long long int support
4372:
4373: 2015-10-06 moko
4374:
4375: * src/types/pa_vdate.C: INT_MAX used
4376:
4377: 2015-10-03 moko
4378:
4379: * tests/: 302.html, results/302.processed: test for bug #1023
4380: (\u2028, \u2029 escaping) added
4381:
4382: * src/main/untaint.C: \u2028, \u2029 are now escaped in
4383: json:string[] (fixes bug #1023)
4384:
4385: 2015-09-29 moko
4386:
4387: * tests/305.html: try-catch added for OS without ipv6 support
4388:
4389: * src/lib/json/pa_json.C: more unique prefixes for Solaris
4390: compilation
4391:
4392: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
4393: main/execute.C, types/pa_value.h, types/pa_vhash.h,
4394: types/pa_vtable.C, types/pa_vtable.h: get_element4call
4395: implemented to distinguish ^hash.method from $hash.field
4396: (implements feature #1017)
4397:
4398: * src/lib/punycode/pa_punycode.c: warning war
4399:
4400: * src/include/pa_config_includes.h: warning war
4401:
4402: * src/include/pa_config_includes.h: pragma warning actualized a bit
4403:
4404: * src/include/pa_config_includes.h: warning war
4405:
4406: * src/include/pa_hash.h: clang compilation fix
4407:
4408: 2015-09-27 moko
4409:
4410: * src/main/compile.tab.C: Bison 3 is now default
4411:
4412: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
4413:
4414: 2015-09-25 moko
4415:
4416: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
4417: works with undefined HASH_ORDER (related to feature #196)
4418:
4419: 2015-09-24 moko
4420:
4421: * tests/: 027.html, results/027.processed: test modified to test
4422: ^hash.sort (feature #196)
4423:
4424: * src/: classes/hash.C, include/pa_hash.h:
4425: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
4426: added (implements feature #196)
4427:
4428: * tests/: 316.html, results/316.processed: Added test for bug #1025
4429: (exception handling in non-cached ^cache), plus for "it does not
4430: have logical value" and "$exception.handled value must be either
4431: boolean or string 'cache'" exceptions.
4432:
4433: * src/classes/op.C: ^cache: exceptions now handled in non-cached
4434: code (fixes bug #1025)
4435:
1.95 moko 4436: 2015-09-23 moko
4437:
4438: * src/classes/table.C: warning war
4439:
4440: * src/: classes/math.C, types/pa_vcookie.C: warning war
4441:
4442: * src/classes/file.C: warning war
4443:
4444: * src/: include/pa_table.h, main/pa_table.C: warning war
4445:
4446: * src/: main/pa_request.C, classes/date.C: warning war
4447:
4448: * src/: types/pa_vdate.C, classes/op.C: warning war
4449:
4450: * tests/: 122.html, results/122.processed: win sync: to remove
4451: differences with OS that doesn't keep timezone change history
4452:
4453: * src/types/pa_vdate.C: tzset() should be called in Windows after
4454: TZ change (related to feature #36)
4455:
4456: * tests/: 075.html, results/075.processed: win sync: to remove
4457: differences with OS that doesn't keep timezone change history
4458:
4459: * tests/: 315.html, results/315.processed: win sync: to remove
4460: differences with OS that doesn't keep timezone change history
4461:
4462: * tests/: 256.html, results/256.processed: win sync: to remove
4463: differences with OS that doesn't keep timezone change history
4464:
4465: * tests/: 124.html, results/124.processed: win results sync: to
4466: avoid hitting time change hole.
4467:
4468: * src/types/pa_vdate.C: static returned. :)
4469:
4470: 2015-09-22 moko
4471:
4472: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
4473:
4474: * tests/results/131.processed: more tests for feature #1032
4475:
4476: * src/classes/date.C: minor fix related to feature #1032
4477:
4478: * operators.txt: ISO date creation documented (related to feature
4479: #1032)
4480:
4481: * operators.txt: iso-string documented (related to feature #1032)
4482:
4483: * tests/: 315.html, results/315.processed: more tests added
4484: (related to feature #1032)
4485:
4486: * tests/: 131.html, results/131.processed: date range checks
4487: updated (related to feature #36)
4488:
4489: * tests/: 315.html, results/057.processed, results/315.processed:
4490: test added for ISO date support (related to issue #315)
4491:
4492: * src/classes/date.C: more readable exceptions in date creation
4493: (related to ticket #1032)
4494:
4495: 2015-09-18 moko
4496:
4497: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
4498: added (related to issue #1032)
4499:
4500: * tests/results/256.processed, src/classes/json.C: iso-string
4501: documented (related to issue #1032)
4502:
4503: * tests/: 256.html, results/256.processed: ISO date check added
4504: (related to issue #1032)
4505:
4506: * tests/: 057.html, results/057.processed, results/224.processed:
4507: tests results updated after ISO date support implemented (related
4508: to feature #1032)
4509:
4510: * src/: classes/date.C, classes/image.C, types/pa_value.h,
4511: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
4512: ^date::create[string] constructor formalized, ^date.iso-string[]
4513: added (implements feature #1032)
4514:
4515: 2015-09-05 moko
4516:
4517: * operators.txt: actualized
4518:
4519: * operators.txt: date changes documented (related to ticket #36)
4520:
4521: 2015-09-04 moko
4522:
4523: * src/types/pa_vdate.C: warning war
4524:
4525: * src/: classes/op.C, types/pa_vhashfile.C: warning war
4526:
4527: 2015-09-03 moko
4528:
4529: * tests/results/096.processed: test result updated for 0..9999 year
4530: date range support (related to feature #36)
4531:
4532: * tests/: 314.html, results/314.processed: test for
4533: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
4534: bug #1031)
4535:
4536: * src/classes/string.C: Static calls fixed for ^string:base64[],
4537: ^string:idna[], ^string:js-escape[] (closes bug #1031)
4538:
1.116 moko 4539: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
4540: configure.in -> configure.ac
1.95 moko 4541:
1.116 moko 4542: * configure, configure.in, src/include/pa_config_auto.h.in: more
4543: correct timezone check for FreeBSD Warning war: configure.in ->
4544: configure.ac
1.95 moko 4545:
4546: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 4547: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
4548: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
4549: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
4550: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
4551: src/main/Makefile.am, src/targets/apache/Makefile.am,
4552: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 4553: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
4554: check added
4555:
4556: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
4557:
4558: * tests/results/: 124.processed, 224.processed: test resuls updated
4559: for new date implementation (related to feature #36)
4560:
4561: * src/: classes/date.C, classes/image.C, include/pa_common.h,
4562: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
4563: types/pa_vdate.h: new double date implementation with internal
4564: support for extended 0..9999 year range, default timezone support
4565: (related to feature #36)
4566:
4567: 2015-08-28 moko
4568:
4569: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4570: (fixes bug #1030)
4571:
4572: 2015-08-21 moko
4573:
4574: * src/classes/inet.C: snprintf size "bug" commented
4575:
4576: * src/main/pa_common.C: snprintf comments updated
4577:
4578: 2015-08-16 moko
4579:
4580: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4581:
4582: 2015-08-11 moko
4583:
4584: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4585: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4586: can be null (fixes bug #1029)
4587:
4588: 2015-08-06 moko
4589:
1.116 moko 4590: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4591: pa_vdate.C added
1.95 moko 4592:
4593: 2015-08-05 moko
4594:
4595: * tests/: 313.html, results/313.processed: test for
4596: ^table.count[columns] and ^table.flip[] with nameless tables
4597: (feature #1003)
4598:
4599: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4600: max_cell added, now ^table.count[columns] and ^table.flip[] works
4601: correctly for nameless tables (implements feature #1003)
4602:
4603: 2015-08-03 moko
4604:
4605: * tests/312.html: test for ^table.append[$hash] and
4606: ^table.insert[$hash] added (related to feature #1028)
4607:
4608: * src/classes/table.C: ^table.append[$hash] and
4609: ^table.insert[$hash] now supported (implements feature #1028)
4610:
4611: * tests/: 312.html, results/312.processed: test row copy in
4612: ^table.hash[; $.type[table] ] added (related to feature #1016)
4613:
4614: * src/classes/table.C: row copy now created in ^table.hash[;
4615: $.type[table] ] (related to feature #1016)
4616:
4617: 2015-07-29 moko
4618:
4619: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4620: added (related to feature #1016)
4621:
4622: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4623: ^table.delete[] added to delete current row (related to feature
4624: 1016)
4625:
4626: 2015-07-28 moko
4627:
4628: * tests/: 312.html, results/312.processed: test for
4629: $table.column[value] and ^table.insert{row} (related to feature
4630: #1016)
4631:
4632: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4633: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4634: ^table.insert{row} are now implemented (feature #1016)
4635:
4636: * src/include/pa_array.h: Optimization: bool reverse removed from
4637: append(), insert() added, memmove arguments order in remove()
4638: fixed (related to feature #1016)
4639:
4640: 2015-07-23 moko
4641:
4642: * src/classes/json.C: tainted json and empty json exception added
4643: (implements feature #1015)
4644:
4645: * tests/: 311.html, results/311.processed: empty json and tainted
4646: json exception test added (related to issue #1015)
4647:
4648: 2015-07-22 moko
4649:
4650: * tests/: 311.html, results/311.processed: test for UTF-8
4651: processing added
4652:
4653: * tests/: 311.html, results/311.processed: test for
4654: json_exception_with_source added (related to issue #394)
4655:
4656: * src/classes/json.C: json_exception_with_source added (implements
4657: feature #394)
4658:
4659: 2015-06-29 moko
4660:
4661: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4662: directories are now correctly determined if _d_type == DT_UNKNOWN
4663: (closes bug #1027)
4664:
4665: 2015-06-10 moko
4666:
4667: * src/types/pa_vxnode.h: extern "C" not requred and causes build
4668: error if libxml has LIBXML_ICU_ENABLED.
4669:
4670: 2015-06-04 moko
4671:
4672: * tests/099.html: ups, reverting
4673:
4674: * tests/: 099.html, 309.html, 310.html, results/309.processed,
4675: results/310.processed: tests for $response:body[ $.file[] ] and
4676: $response:last-modified added
4677:
4678: * src/main/pa_request.C: last-modified check fixed
4679:
4680: 2015-06-03 moko
4681:
4682: * tests/: 204.html, 205.html, 293.html, results/204.processed,
4683: results/205.processed, results/293.processed: $response:headers
4684: logging added (tests for feature #1007)
4685:
4686: * src/: include/pa_common.h, include/pa_request.h,
4687: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
4688: $response:headers are now in uppercase (closes feature #1007)
4689:
4690: 2015-06-02 moko
4691:
4692: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
4693: build errors reverted for clang compatibility
4694:
4695: 2015-06-01 moko
4696:
4697: * src/include/pa_memory.h: -pedantic build errors fixed
4698:
4699: * src/classes/math.C: -pedantic build error fixed
4700:
4701: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
4702:
4703: 2015-05-31 moko
4704:
4705: * src/classes/table.C: USE_STRINGSTREAM optimized
4706:
4707: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
4708: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
4709: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
4710: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
4711: types/pa_vxnode.h: warning war (-pedantic flag)
4712:
4713: 2015-05-28 moko
4714:
4715: * tests/: 308.html, results/308.processed: test for
4716: ^table::create[$t;], etc work added (related to bug #975)
4717:
4718: * src/classes/table.C: check_option_param removed,
4719: ^table::create[$t;], etc now works (fixes bug #975)
4720:
4721: 2015-05-27 moko
4722:
4723: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
4724: (Debian jessie) fixed (closes issue #1024)
4725:
4726: * tests/Makefile: sort added as in Debian jessie list become
4727: unsorted
4728:
4729: 2015-05-18 moko
4730:
4731: * tests/: 201.html, results/201.processed: test for
4732: ^string.trim[what] feature #1022
4733:
4734: * src/classes/string.C: ^string.trim[what] now supported,
4735: implements feature #1022
4736:
4737: 2015-05-17 moko
4738:
4739: * tests/results/185.processed: test result updated as feature #1021
4740: implemented (left/right accept negative parameter)
4741:
4742: * src/classes/string.C: left/right now accept negative parameter
4743: (implements feature #1021)
4744:
4745: 2015-05-08 moko
4746:
4747: * src/classes/math.C: isalnum -> pa_isalnum
4748:
4749: * src/main/execute.C: optimization in getter-junction processing
4750: (related to issue #997)
4751:
4752: 2015-05-07 moko
4753:
4754: * tests/: 307.html, results/307.processed: test for issue #997
4755: added
4756:
4757: * src/main/execute.C: process_getter result now checked if junction
4758: returned (closes issue #997)
4759:
4760: * tests/: 305.html, results/305.processed: sort added to ignore
4761: different order
4762:
4763: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
4764: assignment (closes issue #994)
4765:
4766: * tests/: 306.html, results/306.processed: test for issue #994
4767: added
4768:
4769: * tests/: 303.html, results/303.processed: two more errors tested
4770:
4771: 2015-05-06 moko
4772:
4773: * tests/: 305.html, results/305.processed: test for name2ip &
4774: ip2name added (related to feature #992)
4775:
4776: * tests/: 303.html, 304.html, results/303.processed,
4777: results/304.processed: tests for idna conversion added (related
4778: to issue #849)
4779:
4780: 2015-05-02 moko
4781:
4782: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
4783: implemented
4784:
4785: 2015-04-30 moko
4786:
4787: * src/main/pa_http.C: idna_host added, related to issue #849
4788:
4789: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
4790: (related to issue #849)
4791:
4792: 2015-04-24 moko
4793:
4794: * src/types/pa_vjunction.C: warning war
4795:
4796: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
4797: unification
4798:
4799: * src/lib/punycode/pa_idna.c: warning war
4800:
4801: 2015-04-22 moko
4802:
4803: * src/main/main.vcproj: punycode include path added
4804:
4805: * src/lib/punycode/pa_idna.c: windows compile error fixed
4806:
4807: * src/lib/punycode/pa_idna.c: warning war
4808:
4809: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
4810: project file added
4811:
4812: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
4813:
4814: * src/include/pa_memory.h: warning war
4815:
4816: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
4817: ^string:idna[xn--...], ^string.idna[] - idna conversion support
4818: implemented (related to feature #849)
4819:
4820: * configure.in, src/main/Makefile.am,
4821: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
4822: libpunycode added in Unix
4823:
4824: 2015-04-21 moko
4825:
4826: * configure.in: large files support
4827:
4828: 2015-04-15 moko
4829:
4830: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
4831: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
4832: pa_punycode.h: initial version for punycode/idna support library
4833: (ticket #849)
4834:
4835: 2015-04-08 moko
4836:
4837: * src/: classes/curl.C, classes/date.C, classes/file.C,
4838: classes/image.C, classes/mail.C, classes/reflection.C,
4839: classes/string.C, classes/xnode.C, include/pa_request.h,
4840: include/pa_string.h, include/pa_stylesheet_connection.h,
4841: main/compile.y, main/compile_tools.h, main/execute.C,
4842: main/pa_common.C, main/pa_request.C, main/pa_string.C,
4843: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
4844: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
4845: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
4846: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
4847: clang compiler warnings (closes issue #1018)
4848:
4849: * src/include/pa_string.h: String::Body comparation operators with
4850: char * added (related to issue #958)
4851:
4852: 2015-04-07 moko
4853:
4854: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
4855: pa_malloc/pa_free to remove system malloc/free usage (related to
4856: issue #1018)
4857:
4858: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
4859: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
4860: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
4861: main/pa_http.C, main/pa_request.C, main/pa_string.C,
4862: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
4863: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
4864: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
4865: malloc/strdup/free replaced with pa_ version and checks for
4866: accidental use of non-pa_ version added (related to issue #1018)
4867:
4868: 2015-04-03 moko
4869:
4870: * buildall: pcre-8.33 -> pcre-8.36
4871:
4872: * src/: main/compile.y, classes/form.C, classes/mail.C,
4873: classes/op.C, classes/string.C, main/compile.tab.C,
4874: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
4875: main/pa_sql_driver_manager.C, types/pa_vfile.C,
4876: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
4877: ticket #958)
4878:
4879: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
4880: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4881: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
4882: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
4883: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
4884: $request:headers, $request:method added (implements feature
4885: #1007)
4886:
4887: 2015-03-17 misha
4888:
4889: * tests/302.html: - test for
4890: ^json:string[...;$._default[method-name]]
4891:
4892: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4893: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
4894: option $._default[method-name] is specified in ^json:string[], a
4895: method with specified name will be called for classes/objects
4896: serialization ( new feature: #982 )
4897:
4898: 2015-03-16 misha
4899:
4900: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4901: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
4902: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
4903: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
4904: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
4905: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
4906: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4907: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
4908: types/pa_vrequest.h, types/pa_vstateless_class.C,
4909: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4910: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
4911: $var.CLASS_NAME now have special opcodes. This can be switched
4912: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
4913: on pa_opcode.h ( new feature: #844 )
4914:
4915: 2015-03-15 misha
4916:
4917: * tests/075.html: - test for $response:header[]
4918:
4919: * src/types/pa_vresponse.C: - $response:header[] deletes header
4920: that was set earlie ( new feature: #1001 )
4921:
4922: 2015-03-12 misha
4923:
4924: * tests/246.html: - more tests for ^hash._at[]
4925:
4926: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
4927: accepts second param [key|value|hash] ( new feature: #1012 )
4928:
4929: 2015-03-09 moko
4930:
4931: * src/types/pa_vmail.C: exception for everything but
4932: $mail:received, closes issue #1011
4933:
4934: 2015-02-20 moko
4935:
4936: * tests/: 275.html, results/275.processed: hex detection in
4937: pa_atoui fix test (closes issue #1010)
4938:
4939: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
4940: issue #1010)
4941:
4942: 2015-02-17 moko
4943:
4944: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4945: tainted.
4946:
4947: 2015-02-03 misha
4948:
4949: * tests/301.html: - test for ^json:string($double) causes
4950: exception. bugfix: #1008
4951:
4952: * src/classes/json.C: - ^json:string($double) causes exception.
4953: bugfix: #1008
4954:
4955: * tests/014.html: - updated for work with ^hash.delete[]
4956:
4957: 2015-01-12 misha
4958:
4959: * src/: classes/form.C, include/pa_common.h,
4960: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4961: types/pa_vform.h: - supports body with PUT method as well ( new
4962: feature: #1006 )
4963:
4964: * src/classes/file.C: - warnings war
4965:
4966: 2015-01-11 misha
4967:
4968: * tests/300.html: - test for ^hash.delete[] is added
4969:
4970: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4971: feature: #989 ) - tiny optimization in intersects
4972:
4973: 2015-01-06 moko
4974:
4975: * src/types/pa_vmail.C: file names transcode added, to and cc added
4976: with transcode, attachments detection fixed
4977:
4978: * src/main/pa_request.C: filling mail received after cgi/auto.p
4979: load to allow charset switch (related to issue #996)
4980:
4981: 2014-12-31 moko
4982:
4983: * src/types/pa_vmail.C: from and subject now transcoded if not
4984: UTF-8 source charset (fixes issue 996)
4985:
4986: * src/main/pa_exception.C: fixed string from stack bug (closes
4987: issue #1000)
4988:
4989: 2014-12-11 misha
4990:
4991: * src/types/pa_vhashfile.C: - check if key is not empty before
4992: access ( bug fix: #1005 )
4993:
4994: 2014-11-13 misha
4995:
4996: * src/main/compile.y: - PC.append does not reset to false while
4997: creating a new class. bugfix: #990
4998:
4999: * tests/299.html: - test for creation class after working with
5000: partial class (create+append)
5001:
5002: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
5003: #995
5004:
5005: * tests/232.html: - test for @get[def] added
5006:
5007: 2014-10-12 moko
5008:
5009: * src/lib/pcre/pcre_internal.vcproj: correct path
5010:
5011: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
5012: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
5013: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
5014: targets/apache/ApacheModuleParser3.vcproj,
5015: targets/apache/ApacheModuleParser3Core.vcproj,
5016: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5017: types/types.vcproj: project GUID inserted in *.vcproj for correct
5018: conversion in newer VS versions
5019:
5020: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
5021: pcre_internal.vcproj added
5022:
5023: 2014-08-28 moko
5024:
5025: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
5026: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
5027: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
5028:
5029: 2014-06-30 misha
5030:
5031: * tests/298.html: - tests for ^reflection:def[class;className]
5032: added
5033:
5034: * src/classes/reflection.C: - ^reflection:def[class;className]
5035: added ( new feature: #918 )
5036:
5037: 2014-06-29 misha
5038:
5039: * src/classes/table.C: - ^table::create[unsupported data] -
5040: exception comment changed to "body must be table or code" ( bug
5041: fix: #951 )
5042:
5043: * tests/: 261.html, results/261.processed: - tests for
5044: ^json:string[...;$.void[null|string]] added
5045:
5046: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
5047: option $.void[string|null] added to ^json:string[...] ( new
5048: feature: #952 )
5049:
5050: 2014-06-28 moko
5051:
5052: * src/classes/curl.C: $.charset now processed before other curl
5053: options (closes issue #980)
5054:
5055: 2014-05-23 misha
5056:
5057: * src/classes/json.C: - bug fix: #987
5058:
5059: 2014-05-04 misha
5060:
5061: * tests/: 253.html, 253_json.txt: - test for
5062: ^json:parse[$.int(false)] is added
5063:
5064: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
5065: default true). The option is similar to $.double(bool) but for
5066: integers.
5067:
5068: 2014-05-01 moko
5069:
5070: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
5071: #12 )
5072:
5073: 2014-04-16 moko
5074:
5075: * src/main/pa_http.C: response-charset option should finally work
5076: now (fix for issue #867)
5077:
5078: * src/main/pa_http.C: response-charset option should work now (fix
5079: for issue #867)
5080:
5081: 2014-03-07 moko
5082:
5083: * buildall: libgc moved
5084:
5085: * buildall: libgc moved
5086:
5087: 2013-12-29 moko
5088:
5089: * src/classes/string.C: ^string:js-unescape result now tainted,
5090: closes issue #966
5091:
5092: * tests/: 186.html, results/186.processed: ^string:js-unescape
5093: result now tainted, issue #966
5094:
5095: 2013-12-03 moko
5096:
5097: * src/: classes/memcached.C, types/pa_vmemcached.C,
5098: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
5099: option was added for http://www.parser.ru/forum/?id=79343
5100:
5101: * src/classes/file.C: bugfix for
5102: http://www.parser.ru/forum/?id=79337
5103:
5104: 2013-11-05 moko
5105:
5106: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
5107:
5108: * src/main/pa_globals.C: spelling fixed
5109:
5110: 2013-10-29 moko
5111:
5112: * src/lib/json/json.vcproj: json.c -> pa_json.C
5113:
5114: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
5115: #892
5116:
5117: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
5118: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
5119: exceptions to be thrown thougth json library), related to issue
5120: #892
5121:
5122: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
5123: related to issue #896
5124:
5125: 2013-10-24 moko
5126:
5127: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
5128:
5129: 2013-10-23 moko
5130:
5131: * README: actualization
5132:
5133: 2013-10-22 moko
5134:
5135: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
5136: compatibility patch from Sergey Kirpichev
5137:
5138: * tests/: 297.html, results/297.processed: non-working getter fix
5139: test for issue #948
5140:
5141: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
5142: called when saving value of $match variable in ^string.match[] to
5143: increase compatibility (related to issue #948).
5144:
5145: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
5146: usage optimization
5147:
5148: 2013-10-21 moko
5149:
5150: * tests/: 182.html, results/182.processed: local path removed for
5151: compatibility
5152:
5153: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
5154: results/244.processed, results/253.processed,
5155: results/254.processed, results/275.processed,
5156: results/281.processed: try_catch -> try-catch
5157:
5158: * tests/: 288.html, 294.html, 296.html, results/288.processed,
5159: results/294.processed, results/296.processed: try_catch ->
5160: try-catch
5161:
5162: 2013-10-20 moko
5163:
5164: * tests/: 296.html, results/296.processed: test for xsl exception
5165: for issue #938 added.
5166:
5167: * src/: include/pa_xml_exception.h,
5168: main/pa_stylesheet_connection.C: forgotten to be replaced
5169: XmlException is now replaced (once again closes issue #938)
5170:
5171: 2013-10-18 moko
5172:
5173: * buildall: disable clock_gettime detection to avoid librt linking
5174: (which in turn depends on libpthread), related to issue #943
5175:
5176: 2013-10-18 misha
5177:
5178: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
5179: lib/smtp/smtp.vcproj, main/main.vcproj,
5180: targets/apache/ApacheModuleParser3Core.vcproj,
5181: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5182: types/types.vcproj: - new locations for libxml2 includes where
5183: added to vcproj files
5184:
5185: 2013-10-18 moko
5186:
5187: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
5188: fix
5189:
5190: * tests/: 295.html, results/295.processed: test for issue #948
5191: updated
5192:
5193: * src/classes/table.C: hopefully last lost part for issue #948 fix.
5194: :)
5195:
5196: * tests/: 295.html, results/295.processed: test for issue #948
5197: added
5198:
5199: * src/: classes/hash.C, classes/string.C, classes/table.C,
5200: include/pa_request.h, types/pa_method.h: for getters and setters
5201: to be executed request.put_element should be called, not
5202: context.put_element (fixes issue #948)
5203:
5204: 2013-10-17 moko
5205:
5206: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
5207: LIBXML2_NEW_BUFFER check (closes issue #943)
5208:
5209: * buildall: libxml 2.9.1 build is broken --without-reader.
5210:
5211: 2013-10-16 moko
5212:
5213: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
5214:
5215: * tests/: 294.html, results/294.processed: test for issue #938
5216:
5217: * src/: classes/xdoc.C, classes/xnode.C,
5218: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
5219: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
5220:
5221: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
5222: libxslt-1.1.26 -> libxslt-1.1.28
5223:
5224: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
5225: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
5226: to '?', related to issue #938
5227:
5228: 2013-10-15 moko
5229:
5230: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
5231: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
5232: minor optimizations (closes issue #896)
5233:
5234: * tests/results/: 292.processed, 293.processed: results updated to
5235: comply with issue #896
5236:
5237: * tests/: 292.html, 293.html, results/292.processed,
5238: results/293.processed: tests for json escaping
5239:
5240: 2013-10-14 moko
5241:
5242: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
5243: and cleanup, code moved from .h to .C, no changes in code
5244:
5245: 2013-10-12 moko
5246:
5247: * tests/results/119.processed: updated test result commited
5248:
5249: * tests/: 291.html, results/291.processed: test for issue #894
5250: added
5251:
5252: * src/types/pa_wcontext.h: base methods call support function
5253: get_somebody_entered_some_class should not be true forever, as
5254: wcontext can have many get_elements calls (fixes issue #894)
5255:
5256: 2013-10-11 moko
5257:
5258: * tests/: 290.html, results/290.processed: test for junction GPF
5259: issue #942 added
5260:
5261: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
5262: to native method fixed (closes issue #942)
5263:
5264: * tests/: 158.html, results/158.processed: test for csv-string[]
5265: added
5266:
5267: * src/classes/table.C: minor fixes for table.csv-string[] (closes
5268: feature #907)
5269:
5270: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
5271: feature #907)
5272:
5273: 2013-10-09 moko
5274:
5275: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
5276: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
5277: types/pa_vstateless_class.C: GET_default, SET_default now works
5278: properly not only in objects, but in classes as well (closes
5279: issue #903)
5280:
5281: * tests/: 289.html, results/289.processed: GET/SET_default now
5282: works in classes, not only objects, test case added, related to
5283: issue #903
5284:
5285: * tests/: 288.html, results/288.processed: test for endless
5286: recursion bug added (related to issue #903)
5287:
5288: 2013-10-05 moko
5289:
5290: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
5291: classes/table.C, main/execute.C, types/pa_method.h,
5292: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
5293: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
5294: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
5295: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
5296: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
5297: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
5298: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
5299: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5300: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
5301: optimization: put_element no longer has "bool areplace" argument,
5302: related to issue #903
5303:
5304: 2013-10-03 moko
5305:
5306: * tests/results/182.processed: result for $.replace(false) test
5307: commited
5308:
5309: * src/classes/date.C: ^date::create(number) processed correctly
5310: (fixes issue #901)
5311:
5312: * src/classes/image.C: as_no_junction removed, as param can be
5313: expression (closes issue #931)
5314:
5315: * tests/233.html: test for issue #931 added
5316:
5317: 2013-10-02 moko
5318:
5319: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
5320: modified, test for $.replace(false) added
5321:
5322: * src/main/compile_tools.h: forgotten class replace returned. :)
5323:
5324: 2013-09-30 moko
5325:
5326: * tests/: 141.html, results/141.processed: md5 tainting test added
5327:
5328: * src/: classes/op.C, include/pa_request.h, main/compile.y,
5329: main/compile_tools.h, main/pa_request.C: allow_class_replace
5330: implemented; $.replace option added to ^process and ^use
5331:
5332: 2013-08-27 moko
5333:
5334: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
5335: cstr_to_string_body_untaint should be called with charsets for
5336: possible uri language and connection for possible sql language.
5337: related to issue #857
5338:
5339: * buildall: and -> or fixed
5340:
5341: 2013-08-26 moko
5342:
5343: * buildall: prepare_ functions logic changed to support
5344: gc-7.2d.tar.gz extracting to gc-7.2 directory
5345:
5346: 2013-08-23 moko
5347:
5348: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5349: statically
5350:
5351: 2013-08-22 moko
5352:
5353: * src/classes/string.C: String::Empty used (related to issue #912)
5354: append_know_length removed (related to old GPF bug)
5355:
5356: 2013-08-21 moko
5357:
5358: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
5359:
5360: * src/classes/math.C: ^math:digest[...;$file] support added
5361: (related to ticket #857
5362:
5363: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
5364: implemented
5365:
5366: * src/types/pa_vhashfile.h: warning war
5367:
5368: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
5369: include/pa_request.h, main/pa_request.C, types/pa_value.h:
5370: anti_endless_json_string_recoursion removed from request;
5371: json_string_recoursion added to json_options; $.indent[indent
5372: value] now supported and passed within recoursion closes feature
5373: #937
5374:
5375: * tests/: 287.html, results/287.processed: test for feature #937
5376:
5377: 2013-07-31 moko
5378:
5379: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
5380: compilation having #define _S
5381:
5382: * src/main/pa_globals.C: cleanup
5383:
5384: 2013-07-30 moko
5385:
5386: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
5387: main/pa_common.C: vs2003 warning war
5388:
5389: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
5390:
5391: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
5392:
5393: * src/lib/md5/pa_sha2.c: warning war
5394:
5395: 2013-07-29 moko
5396:
5397: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
5398: patches from github
5399:
5400: * src/: classes/bool.C, classes/double.C, classes/int.C,
5401: classes/memcached.C, include/pa_config_includes.h,
5402: types/pa_vfile.C, types/pa_vfile.h: warning war
5403:
5404: * src/lib/json/json.vcproj: C++ -> C
5405:
5406: * src/lib/json/: json.c, pa_json.C: C++ warning revert
5407:
5408: * src/lib/json/: json.c, pa_json.C: windows compatibility
5409:
5410: * src/lib/json/: json.c, pa_json.C: windows compatibility
5411:
5412: * src/lib/json/: json.c, pa_json.C: warning war
5413:
5414: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
5415:
5416: * src/include/pa_config_fixed.h: uint16_t added
5417:
5418: * configure.in: uint16_t check added
5419:
5420: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 5421: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
5422: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
5423: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
5424: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 5425:
5426: 2013-07-25 moko
5427:
5428: * parser3.sln: dependencies added
5429:
5430: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
5431: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
5432: module support
5433:
5434: * src/targets/apache/mod_parser3_core.C: win32 cleanup
5435:
5436: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
5437:
5438: 2013-07-23 moko
5439:
5440: * src/: include/pa_memory.h, main/pa_memory.C: non-working
5441: PA_DEBUG_GC_MEMORY removed
5442:
5443: * src/: main/pa_globals.C, targets/cgi/parser3.C:
5444: PA_DEBUG_DISABLE_GC compilation fix
5445:
5446: * src/: classes/op.C, classes/table.C, include/pa_request.h,
5447: main/pa_request.C: outdated RESOURCES_DEBUG removed
5448:
5449: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
5450: garbage cleanup
5451:
5452: * src/main/pa_common.C: warning war
5453:
5454: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
5455:
5456: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
5457: minor cleanup
5458:
5459: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
5460: uses cygwin, not WIN32 implementation
5461:
5462: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
5463: able to exec shell scripts
5464:
5465: * src/classes/math.C: ifdef WIN32 cleanup
5466:
5467: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
5468:
5469: * src/classes/curl.C: LT_MODULE_EXT used
5470:
5471: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
5472:
5473: 2013-07-22 moko
5474:
5475: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
5476: includes fix
5477:
5478: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
5479:
5480: * configure.in, src/include/pa_config_includes.h,
5481: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
5482: src/main/pa_exec.C: includes cleanup
5483:
5484: * src/targets/cgi/parser3.C: 2012->2013
5485:
5486: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
5487:
5488: * configure.in, src/include/pa_config_includes.h,
5489: src/include/pa_http.h, src/lib/json/JSON_parser.h,
5490: src/main/pa_random.C, src/main/pa_socks.C,
5491: src/types/pa_vstatus.C: cygwin support cleanup
5492:
5493: * configure.in: dirent.h check added
5494:
5495: * src/: include/pa_config_includes.h, include/pa_dir.h,
5496: main/pa_dir.C: includes cleanup, dirent.h check added filePath
5497: not copied
5498:
5499: 2013-07-21 moko
5500:
5501: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
5502:
5503: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
5504: parser3.vcproj: unused getopt.h / getopt.c removed
5505:
5506: * operators.txt, src/classes/file.C, tests/022.html,
5507: tests/results/022.processed: ^file:list[path][$.filter[regexp]
5508: $.stat(true)] usage commented
5509:
5510: * configure.in, src/classes/file.C, src/include/pa_dir.h,
5511: src/main/pa_dir.C: ^file:list[] now has dir column and when
5512: $.stat(true) it has size/*date columns modified patch from misha@
5513: that closes issue #914.
5514:
5515: * src/: include/pa_config_includes.h, main/pa_globals.C:
5516: PA_RELEASE_ASSERTS removed
5517:
5518: * src/lib/md5/pa_md5c.c: minor cleanup
5519:
5520: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
5521: localeconv()->decimal_point usage remoed (related to issue #934)
5522:
5523: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
5524: cordprnt.c removed
5525:
5526: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
5527: pa-include/pa_errno.h, pa-include/pa_file_io.h,
5528: pa-include/pa_strings.h: includes cleanup
5529:
5530: * src/lib/md5/pa_md5c.c: headers cleanup
5531:
5532: 2013-07-20 moko
5533:
5534: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
5535: cleanup
5536:
5537: 2013-07-19 moko
5538:
5539: * src/classes/math.C: extern "C" added for crypt
5540:
5541: 2013-07-18 moko
5542:
5543: * src/classes/math.C: fix redhat7.2 build
5544:
5545: 2013-07-17 moko
5546:
5547: * configure.in, src/include/pa_config_includes.h,
5548: src/include/pa_config_fixed.h: headers actualized (inttypes.h
5549: added for uint8/32/64_t)
5550:
5551: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
5552: pa_config_includes.h used for uint32/64_t
5553:
5554: 2013-07-16 moko
5555:
5556: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
5557: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
5558: war
5559:
5560: * src/main/compile.tab.C: compile.y was updated
5561:
5562: * src/main/compile.y: warning war
5563:
5564: * src/: include/pa_exception.h, main/pa_exception.C,
5565: main/pa_xml_exception.C: warning war
5566:
5567: * src/: include/pa_common.h, main/pa_common.C: warning war
5568:
5569: * configure.in: beauty :)
5570:
5571: * tests/: 141.html, results/141.processed: sha256/512 added
5572:
5573: 2013-07-13 moko
5574:
5575: * src/lib/md5/md5.vcproj: sha2 added
5576:
5577: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5578: classes/math.C: sha2 support (sha256/sha512 digest)
5579:
5580: 2013-07-08 moko
5581:
5582: * src/classes/image.C: directory read or other read problem message
5583: fixed (related to issue #933)
5584:
5585: 2013-07-07 moko
5586:
5587: * AUTHORS: + misha + moko. :)
5588:
5589: 2013-07-06 moko
5590:
5591: * src/: classes/curl.C, include/pa_globals.h,
5592: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5593: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5594: for lt_dlinit to be called once and lt_dlexit called at right
5595: place (related to issue #925)
5596:
5597: 2013-07-04 moko
5598:
5599: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5600: VString::as_vfile now uses vfile.set_binary_string to avoid
5601: content-type to be set, as it brokes badly designed logic in
5602: response output. This hopefully finishes issue #928.
5603:
5604: * tests/results/: 256.processed, 286.processed: file now displayed
5605: as name, size, mode, content-type
5606:
5607: * src/main/pa_common.C: read error now reported cottectly (fixes
5608: issue #933
5609:
5610: 2013-06-28 moko
5611:
5612: * tests/: 286.html, results/286.processed: test extended
5613:
5614: * tests/: 286.html, results/286.processed: Test for issue #928
5615: added. it tests default content-type change.
5616:
5617: * src/types/pa_vfile.C: closes issue #928 - default content-type
5618: now updated
5619:
5620: 2013-06-25 moko
5621:
5622: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5623: content-type for text/binary files without name added;
5624: ^file::create[$f;...] options now works properly and $f
5625: properties are default (fixes issue #928)
5626:
5627: 2013-05-16 misha
5628:
5629: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5630: added
5631:
5632: * src/main/pa_table.C: - a tiny memory optimisation while creating
5633: table if specified limit is bigger than source rows count
5634:
5635: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5636: added ( new feature: #858 )
5637:
5638: 2013-04-29 moko
5639:
5640: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5641: $.ipresolve(0|1|2) added (closes issue #891)
5642:
5643: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5644:
5645: 2013-04-24 moko
5646:
5647: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5648: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5649: types/pa_vmemcached.h: ^memcache.release[] added, calls
5650: memcached_quit (refs #893)
5651:
5652: 2013-04-22 moko
5653:
5654: * src/: include/pa_string.h, main/pa_common.C: no more double
5655: slashes in file path (fixes bug #872)
5656:
5657: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5658: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5659: #739)
5660:
5661: * tests/results/266.processed: $.max_params added (feature #915)
5662:
5663: * src/: include/pa_common.h, main/pa_http.C: response-charset
5664: option added to file::load (closes issue #867)
5665:
5666: 2013-04-20 misha
5667:
5668: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
5669: commited
5670:
5671: 2013-03-15 misha
5672:
5673: * src/classes/: hash.C, table.C: - Optimisation: do not create
5674: multiple empty strings while ::sql. uae String::Empty instead
5675:
5676: 2013-03-14 misha
5677:
5678: * src/classes/reflection.C: - for user classes
5679: ^reflection:method_info[] returns $.max_params and $.extra_param
5680: with $.call_type if they available ( new feature: #915 )
5681:
5682: * src/classes/file.C: - ^file:delete[] now supports an option
5683: $.exception(false) that suppress any exception while deleting
5684: file ( new feature: #916 )
5685:
5686: * src/classes/curl.C: - parsing cookies after curl:load now should
5687: work :)
5688:
5689: 2013-03-12 misha
5690:
5691: * src/types/pa_vfile.C: - if specified file_name is empty string
5692: set default name for the file
5693:
5694: 2013-03-11 misha
5695:
5696: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
5697: also available in $f.cookies
5698:
5699: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
5700: moved to a separate method
5701:
5702: 2013-03-10 moko
5703:
5704: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
5705: added
5706:
5707: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
5708: removed (declared by autoconf)
5709:
5710: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
5711: uint32_t define
5712:
5713: 2013-03-10 misha
5714:
5715: * src/classes/file.C: ^file:delete and ^file:move now support
5716: option $.keep-empty-dirs(true) ( new feature: #884 )
5717:
5718: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
5719: empty dirs is added
5720:
5721: 2013-03-10 moko
5722:
5723: * src/classes/: bool.C, double.C, int.C: default can be present,
5724: but default check removed from ^int/double/bool.int/double/bool
5725: for string.int/double/bool compatibility (related to issue #913)
5726:
5727: * src/classes/string.C: ^string.int/dobule/bool no longer
5728: internally throws exception if default is present (closes issue
5729: #913)
5730:
5731: 2013-03-09 misha
5732:
5733: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
5734: optimisations ( #845 )
5735:
5736: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
5737:
5738: 2013-03-08 moko
5739:
5740: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
5741: creates correct table (fixes issue #910)
5742:
5743: * src/classes/op.C: r.connection() -> r.connection(false) to allow
5744: use outside of 'connect' operator (fixes issue #911)
5745:
5746: * tests/results/: 096.processed, 122.processed: test results
5747: updated as doubles now printed with 15 significant digits, not 5
5748: (fixes issue #882)
5749:
5750: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
5751: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
5752:
5753: 2013-02-21 moko
5754:
5755: * src/classes/table.C: _locate_name_value does not check arguments
5756: count, so we check it in advance (fixes issue #905)
5757:
5758: 2012-10-23 moko
5759:
5760: * buildall: old shell for and echo compatibility (for six)
5761:
5762: 2012-10-19 moko
5763:
5764: * buildall: --strip added --disable-safe-mode listed in usage
5765:
5766: 2012-10-17 misha
5767:
5768: * src/classes/op.C: - apply-taint should not throw "outside
5769: connect" exception with sql lang now
5770:
5771: 2012-10-17 moko
5772:
5773: * src/main/pa_request.C: bugfix: safe mode should be inited for
5774: each request (for apache module)
5775:
5776: 2012-09-26 moko
5777:
5778: * src/doc/doxygen.cfg: png -> svg
5779:
5780: 2012-09-25 moko
5781:
5782: * tests/: 141.html, results/141.processed: md5 hmac added, long key
5783: test added
5784:
5785: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
5786: double use when key is long
5787:
5788: 2012-09-16 moko
5789:
5790: * src/classes/math.C: Format -> Method Encode -> Format
5791:
5792: * tests/: 141.html, results/141.processed: math:digest hmac test
5793: added
5794:
5795: 2012-09-14 moko
5796:
5797: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
5798: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
5799: implementation added
5800:
5801: 2012-09-12 moko
5802:
5803: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
5804: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
5805: targets.dox and string.dox slightly actualized
5806:
5807: 2012-08-31 moko
5808:
5809: * ChangeLog: now generated with patched cvs2cl.pl
5810:
5811: 2012-07-29 moko
5812:
5813: * tests/285.html, src/main/execute.C, tests/results/285.processed:
5814: result should be pushed after VMethodFrame destructor is called,
5815: as it deletes junctions from stack params (fixes issue #868)
5816:
5817: 2012-07-23 moko
5818:
5819: * INSTALL, README: buildall script usage documented, other outdated
5820: info updated.
5821:
5822: * buildall-with-xml, buildall-without-xml: replaced by buildall
5823:
5824: 2012-07-21 moko
5825:
5826: * buildall: glib does not compile when threads are disabled...
5827:
5828: * src/types/pa_vmail.C: g_assertion fixes for empty input
5829:
5830: * src/types/pa_vmail.C: yet another fix (strange GPF on object
5831: unref, can't unref nested objects)
5832:
5833: * src/types/pa_vmail.C: another check added
5834:
5835: 2012-07-19 moko
5836:
5837: * buildall: usage added
5838:
5839: * buildall: new buildall script that unites buildall-with-xml,
5840: buildall-without-xml, --with-apache and --with-mailreceive
5841:
5842: * configure.in: support for static gmime and dynamic glib linking.
5843: fixes for FreeBSD
5844:
5845: 2012-07-17 moko
5846:
5847: * configure.in: --with-mailreceive replaced
5848: --with-static-mailreceive and --with-shared-mailreceive pathlink
5849: removed
5850:
5851: 2012-07-16 moko
5852:
5853: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
5854: capitalized, content now decoded and text content converted to
5855: $request:charset. all properties are accessed by functions, this
5856: ready for dynamic load.
5857:
5858: 2012-06-28 moko
5859:
1.116 moko 5860: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
5861: 32 bit
1.95 moko 5862:
5863: 2012-06-27 moko
5864:
5865: * buildall-with-xml, buildall-without-xml: fetch requires -p for
5866: passive ftp
5867:
5868: * src/lib/ltdl/ltdl.vcproj: release build fixed
5869:
5870: * configure.in: 3.4.2 RC -> 3.4.2
5871:
5872: 2012-06-22 moko
5873:
5874: * src/types/pa_vfile.C: returned empty mode to stated files (issue
5875: #815)
5876:
5877: * tests/: 284.html, results/284.processed: output options test
5878: (feature #265)
5879:
5880: 2012-06-22 misha
5881:
5882: * tests/215.html: - little changes
5883:
5884: 2012-06-21 moko
5885:
5886: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
5887: types/pa_vxdoc.h: output_options returned and used (bugfix for
5888: feature #265)
5889:
5890: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
5891: breaks long .*, default 10M restored. (issue #216)
5892:
5893: * tests/: 283.html, results/283.processed: test for issue #815
5894: added
5895:
5896: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
5897: again, cstrm not required.
5898:
5899: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
5900: Win32 and broken FreeBSD (issue #45)
5901:
5902: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
5903:
5904: * src/main/pa_string.C: warnings war
5905:
5906: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
5907: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
5908: main/pa_socks.C, targets/apache/pa_threads.C,
5909: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5910: types/pa_vstatus.C: compilation under cygwin fixed
5911:
5912: 2012-06-19 moko
5913:
5914: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
5915: Windows fixed
5916:
5917: * parser3.sln: removed antique pcre_ctype
5918:
5919: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
5920:
5921: * src/include/pa_config_fixed.h: undefined reference to
5922: __imp__pcre_* fix for Windows
5923:
5924: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 5925: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
5926: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
5927: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
5928: define fixed
1.95 moko 5929:
5930: 2012-06-18 moko
5931:
5932: * src/classes/memcached.C: flush -> clear
5933:
5934: * src/classes/memcached.C: memcached does not support quotes even
5935: in server name
5936:
5937: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5938: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
5939: called on open to check servers existance. $.key(true) syntax
5940: now supported
5941:
5942: 2012-06-17 moko
5943:
5944: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5945: cleanup
5946:
5947: * src/classes/table.C, tests/282.cfg, tests/282.html,
5948: tests/results/282.processed: encloser at the EOF bug fixed,
5949: incorrectly enclosed data now processed more logicaly (fixes
5950: #339)
5951:
5952: 2012-06-15 moko
5953:
5954: * buildall-without-xml: sync with buildall-with-xml
5955:
5956: * buildall-with-xml: download auto-detected between fetch and curl
5957:
5958: * configure.in: --with-gc and --with-pcre now also processed
5959: correctly
5960:
1.116 moko 5961: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5962: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5963: should be run on rol1 using automake / aclocal (GNU automake)
5964: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5965:
5966: * configure.in: new PARSER_VERSION logic
5967:
5968: * src/include/pa_version.h: new pa_version.h logic
5969:
5970: * src/: classes/curl.C, classes/file.C, classes/image.C,
5971: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5972: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5973: feols_normalized -> fis_text_content set_binary added
5974:
5975: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5976:
5977: 2012-06-15 misha
5978:
5979: * src/: classes/curl.C, classes/file.C, classes/image.C,
5980: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5981: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5982: ^file::create[text;content] EOLs in content now is normalized. (
5983: new feature: #815 )
5984:
5985: 2012-06-15 moko
5986:
5987: * configure.in: --disable-version-update added to disable version
5988: update with host information (for debian package) whitespace
5989: optimized
5990:
5991: * configure.in: version changed to 3.4.2 RC no-pic added for
5992: libtool
5993:
5994: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5995: it.
5996:
5997: 2012-06-14 moko
5998:
5999: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
6000: tests/results/281.processed: "hash flocked" error removed for
6001: safe operations like ^h._count[] ( new feature: #335 )
6002:
1.116 moko 6003: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 6004:
6005: * buildall-with-xml, buildall-without-xml: --with-static -> --with
6006:
6007: * configure.in: --with-static/shared xml replaced with --with-xml,
6008: xml compilation check added
6009:
6010: * configure.in: --with-static/shared-gc, --with-static-pcre are
6011: replaced with --with-gc and --with-pcre test for pcre linking
6012: added
6013:
6014: 2012-06-13 moko
6015:
6016: * configure.in: apxs2 check optimized
6017:
6018: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
6019: .la, includes optimized
6020:
6021: * buildall-with-xml: --with-pic looks better for -fPIC
6022:
6023: * configure.in: switched to convenience library in static linking
6024:
6025: * src/targets/apache/Makefile.am: switched to convenience library
6026: usage to avoid libtool warnings
6027:
6028: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
6029: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
6030: smtp/Makefile.am: switched to convenience library usage
6031:
6032: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
6033:
6034: * src/targets/apache/Makefile.am: updated for libtool usage
6035:
6036: * buildall-without-xml: --with-included-ltdl added
6037:
6038: * buildall-without-xml: sync with buildall-with-xml
6039:
6040: * buildall-with-xml: --with-included-ltdl added $cflags added for
6041: -fPIC for x64 $download added for wget success check added
6042:
6043: * buildall-without-xml: --with-dynamic-stdcpp removed
6044:
6045: * configure.in: disable-static returned
6046:
6047: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
6048: LIBTOOLFLAGS
6049:
6050: 2012-06-12 moko
6051:
6052: * configure.in, src/targets/cgi/Makefile.am: disable-static not
6053: compatible with LIBTOOLFLAGS for unknown reasons
6054:
6055: * buildall-with-xml: --with-dynamic-stdcpp removed
6056:
6057: * configure.in: static/dynamic -lstdc++ linking option removed
6058: apxs2 check added
6059:
6060: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
6061: option removed
6062:
6063: 2012-06-10 moko
6064:
6065: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
6066: added
6067:
6068: * src/targets/cgi/pp3.cmd: old PAF stuff
6069:
1.116 moko 6070: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
6071: beauty
1.95 moko 6072:
6073: * depcomp: from libtool 2.4.2
6074:
6075: * configure.in: ltdl directory removed, it has correct Makefile.in
6076:
6077: 2012-06-09 moko
6078:
1.116 moko 6079: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
6080: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 6081: autogenerated files updated after libtool update
6082:
1.116 moko 6083: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
6084: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 6085: config_auto.h.in, config_fixed.h, configure, configure.ac,
6086: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
6087: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
6088: config/compile, config/config.guess, config/config.sub,
6089: config/depcomp, config/install-sh, config/ltmain.sh,
6090: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
6091: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
6092: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
6093: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
6094: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
6095: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
6096: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
6097: m4/lt~obsolete.m4: libtool updated to version 2.4.2
6098:
6099: * configure.in: preparation for new libtool
6100:
6101: * configure.in: Some beauty added :)
6102:
6103: * src/targets/apache/Makefile.am: := -> =
6104:
6105: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
6106: again. :)
6107:
6108: * src/include/pa_config_includes.h, configure.in: limits.h added,
6109: previously was taken from pcre_internal.h. :)
6110:
6111: * src/lib/pcre/Makefile.am: config.h returned
6112:
6113: * src/lib/pcre/config.h: still need this. :)
6114:
6115: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
6116:
6117: * configure.in: --with-charsets removed; --with-mysql-client & co
6118: removed
6119:
6120: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
6121: now in parser tree, no need to copy
6122:
6123: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
6124: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
6125: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
6126: debian/patches/101_pcre.patch - local copy of pcre_internal.h
6127: extracts now used old trash removed
6128:
6129: * etc/parser3.charsets/Makefile.am: charsets now in share
6130: (debian/patches/104_automake.patch) + all charsets are copied
6131:
6132: * buildall-with-xml, buildall-without-xml: curl option removed +
6133: extra arguments now supported
6134:
6135: 2012-06-08 misha
6136:
6137: * src/classes/table.C: - one params.as_hash usage was rolled back:
6138: the 2nd option in ^table.hash[] could be hash or table so
6139: .as_hash will throw an exception when table option is specified
6140:
6141: * src/: classes/curl.C, classes/file.C, classes/hash.C,
6142: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
6143: classes/table.C, classes/void.C, classes/xdoc.C,
6144: include/pa_exception.h, types/pa_vmethod_frame.C,
6145: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
6146: and improved (whitespaces are allowed as empty options) -
6147: MethodParams::as_table is added - above methods are used for
6148: parsing methods' options ( new feature: #9 )
6149:
6150: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
6151: to vclass. now class fields can be accessible as a hash:
6152: $h[^hash::create[$asd:CLASS]]
6153:
6154: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
6155: have get_fields method so their fields can be accessed with
6156: ^reflection:fields[...] & ^reflection:field[...]
6157:
6158: 2012-06-06 misha
6159:
6160: * tests/280.html: - tests for
6161: ^reflection:method[obj-or-class;method],
6162: ^reflection:field[obj-or-class;field] and
6163: ^reflection:fields[obj-or-class] are added
6164:
6165: 2012-06-05 misha
6166:
6167: * src/classes/reflection.C: - ^reflection:method[class or
6168: object;method name] and ^reflection:field[class or object;field
6169: name] are added
6170:
6171: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
6172: is used
6173:
6174: * src/types/pa_method.h: - Method::as_vjunction method is added
6175:
6176: 2012-06-05 moko
6177:
1.116 moko 6178: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 6179:
6180: * src/classes/memcached.C: flish ttl fixed
6181:
6182: 2012-06-04 moko
6183:
6184: * src/classes/json.C, src/classes/op.C, tests/279.html,
6185: tests/results/279.processed: ^json:parse[] now supports $.taint
6186: option (new feature #833)
6187:
6188: 2012-06-04 misha
6189:
6190: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
6191: - search_stop method was moved from pa_vcookie.C to pa_common.C
6192:
6193: 2012-06-03 misha
6194:
6195: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
6196: cookies are parced and stored into $.cookies ( new feature: #31 )
6197:
6198: 2012-05-30 misha
6199:
6200: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
6201: incomplete class into a scope while @USE is found
6202:
6203: * src/main/compile.y: - add incomplete class into a scope while
6204: @USE and @CLASS instructions are found ( bugfix: #838 )
6205:
6206: 2012-05-30 moko
6207:
6208: * src/types/pa_vclass.C, tests/278.html,
6209: tests/results/278.processed: removed "property has no getter
6210: method" exception when GET_DEFAULT present (fixes #269)
6211:
6212: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
6213: $._default
6214:
6215: 2012-05-29 moko
6216:
6217: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
6218: uninitialized values usage (new feature: #154)
6219:
6220: 2012-05-28 moko
6221:
6222: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
6223: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
6224: src/types/pa_vdate.h, src/types/pa_vdouble.h,
6225: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
6226: src/types/pa_vobject.C, src/types/pa_vobject.h,
6227: src/types/pa_vstring.h, src/types/pa_vtable.C,
6228: tests/results/277.processed, src/types/pa_vtable.h,
6229: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
6230: ^json:string[$o; $.default[$method]] implemented for VObject (new
6231: feature #803)
6232:
6233: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
6234: tests/results/277.processed: json numbers are now treated as
6235: double ( new feature: #834 )
6236:
6237: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
6238: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
6239: added for out of range checks, zero division in vint/vdouble
6240: check added ( fixes #832 )
6241:
6242: * tests/: 275.html, results/275.processed: tests for pa_atoui added
6243: ( fixes #832 )
6244:
6245: 2012-05-28 misha
6246:
6247: * buildall-with-xml: - --without-lzma option is added to libxml2
6248: configure
6249:
6250: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
6251: added - tests for unsupported values for options $.file, $.table
6252: and $.date are added
6253:
6254: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
6255: accepts "stat" $.file[] option's value in addition to existed
6256: "text" and "base64" ( new feature: #835 )
6257:
6258: * tests/276.html: - test for
6259: ^reflection:delete[$object-or-class;field-name]
6260:
6261: * src/classes/reflection.C: -
6262: ^reflection:delete[$object-or-class;field-name] is added ( new
6263: feature: #268 )
6264:
6265: 2012-05-27 misha
6266:
6267: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
6268:
6269: 2012-05-24 misha
6270:
6271: * src/include/pa_common.h: - method lastposafter was removed
6272:
6273: * src/classes/file.C: - use strrpbrk & rskipchars instead of
6274: lastposafter - ^file:dirname[] & Co proper handle windows file
6275: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
6276: work as *nix commands
6277:
6278: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
6279:
6280: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
6281: rskipchars were added
6282:
6283: * tests/270.html: - more tests for ^file:find[]
6284:
6285: * tests/065.html: - more tests for ^file:dirname[] & Co
6286:
6287: * src/include/pa_version.h: - must be "win32" here. it is
6288: auto-generated on *nix
6289:
6290: 2012-05-24 moko
6291:
6292: * src/classes/math.C: ^math:convert[] now supports uint32 and
6293: throws overflow exception ( new feature: #830 )
6294:
6295: * tests/: 275.html, results/275.processed: test for ^math:convert[]
6296: uint32 support and overflow added ( new feature: #830 )
6297:
6298: 2012-05-23 moko
6299:
6300: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
6301: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
6302: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
6303: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
6304: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
6305: types/pa_vregex.h, types/pa_vstateless_class.C,
6306: types/pa_vstateless_class.h, types/pa_vstring.h,
6307: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6308: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
6309: "return string as-is" removed from as_expr_result. ( new feature:
6310: #831 )
6311:
6312: * tests/results/244.processed: test changed after bug #782 fix
6313: commited
6314:
6315: * tests/results/229.processed: test results for bug #782 commited
6316:
6317: * tests/: 254.html, results/254.processed: uid now just compared,
6318: not printed. :)
6319:
6320: 2012-05-20 moko
6321:
6322: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
6323: feature: #341 )
6324:
6325: * tests/: 254.html, results/254.processed: test for
6326: ^reflection:uid[] added
6327:
6328: * tests/: 254.html, results/254.processed: test for
6329: ^reflection:uid[$obj] added
6330:
6331: 2012-05-17 misha
6332:
6333: * src/main/untaint.C: - do not replace ' char by _26 while
6334: exploding filespec-tainting ( new feature: #829 )
6335:
6336: 2012-05-12 moko
6337:
6338: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
6339: not.
6340:
6341: 2012-05-08 moko
6342:
6343: * src/types/pa_vmethod_frame.h: bug #782 fixed
6344:
6345: * tests/229.html: test for bug #782
6346:
6347: * tests/results/259.processed, src/main/pa_request.C,
6348: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6349: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6350: src/types/pa_vvoid.h: feature #154 - first empty param now
6351: string; defined locals are empty strings; $STRICT-VARS(true)
6352: added
6353:
6354: 2012-04-27 moko
6355:
1.116 moko 6356: * src/targets/apache/Makefile.am:
1.95 moko 6357: ../../lib/memcached/libmemcached.a added
6358:
6359: 2012-04-27 misha
6360:
6361: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
6362: ( #827 )
6363:
6364: 2012-04-25 moko
6365:
6366: * src/: classes/json.C, classes/memcached.C,
6367: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6368: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
6369: implemented.
6370:
6371: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
6372:
6373: 2012-04-23 moko
6374:
6375: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6376: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6377: types/pa_vmemcached.h: open allows options hash for new
6378: memcached(options) function
6379:
6380: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
6381: not appended
6382:
6383: 2012-04-21 moko
6384:
6385: * src/classes/curl.C: '' added. :)
6386:
6387: * src/classes/classes.vcproj: new curl.h location
6388:
6389: * src/classes/curl.C: verbose output redirection from stderr to
6390: file curl option added
6391:
6392: 2012-04-20 moko
6393:
6394: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
6395: contains what we need from curl, #ifdef HAVE_CURL removed
6396:
1.116 moko 6397: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 6398: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 6399: src/lib/Makefile.am, src/lib/curl/Makefile.am,
6400: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 6401: configure option
6402:
6403: 2012-04-19 moko
6404:
6405: * src/: classes/double.C, classes/inet.C, classes/int.C,
6406: classes/string.C, lib/gc/include/gc_allocator.h,
6407: types/pa_vform.C: PVS-Studio detected errors fixes, unused
6408: options from sql_result_string removed. (closes issue #468)
6409:
6410: * src/types/pa_vmemcached.C: empty string fix
6411:
6412: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
6413: pa_vstring.C, pa_vstring.h: serialization helpers moved to
6414: pa_vmemcached.C
6415:
6416: 2012-04-18 moko
6417:
6418: * src/targets/apache/mod_parser3.c: "Parser3 module requires
6419: apache2-mpm-prefork" error displayed in threaded mpm.
6420:
6421: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6422: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
6423: installed (issue #354)
6424:
6425: 2012-04-16 moko
6426:
6427: * src/types/pa_vmemcached.C: call to memcached_result_create and
6428: memcached_result_free removed
6429:
6430: 2012-04-14 moko
6431:
6432: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
6433:
6434: * src/types/pa_vmemcached.C: check_key added and used
6435:
6436: 2012-04-13 moko
6437:
6438: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
6439: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
6440: Serialization_data now added and used, VString now serialized
6441: with languages into memcached.
6442:
6443: 2012-03-28 moko
6444:
6445: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
6446: lib/memcached/pa_memcached.h: result lengths added
6447:
6448: 2012-03-27 moko
6449:
6450: * src/types/pa_vmemcached.C: strdup added
6451:
6452: 2012-03-24 moko
6453:
6454: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6455: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6456: types/pa_vmemcached.h: memcached: mget, flush, fttl added
6457:
6458: 2012-03-20 moko
6459:
1.116 moko 6460: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 6461:
6462: * src/targets/cgi/Makefile.am: cleanup
6463:
6464: * src/: types/Makefile.am, types/pa_vmemcached.C,
6465: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
6466:
6467: * src/: classes/Makefile.am, classes/memcached.C,
6468: lib/memcached/Makefile.am, lib/memcached/constants.h,
6469: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6470: lib/memcached/types.h, lib/Makefile.am: memcached initial
6471:
6472: 2012-03-16 moko
6473:
6474: * src/main/execute.C: ident now works under Linux + ident displays
6475: filenames (closes issue #818)
6476:
1.116 moko 6477: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 6478: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
6479: pa_vmethod_frame_local.h removed
6480:
6481: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
6482: classes/classes.h, classes/curl.C, classes/date.C,
6483: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
6484: classes/hashfile.C, classes/image.C, classes/inet.C,
6485: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
6486: classes/memory.C, classes/op.C, classes/reflection.C,
6487: classes/regex.C, classes/response.C, classes/string.C,
6488: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6489: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
6490: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
6491: include/pa_config_fixed.h, include/pa_config_includes.h,
6492: include/pa_dictionary.h, include/pa_dir.h,
6493: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
6494: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
6495: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
6496: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
6497: include/pa_request_charsets.h, include/pa_request_info.h,
6498: include/pa_sapi.h, include/pa_socks.h,
6499: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
6500: include/pa_stack.h, include/pa_string.h,
6501: include/pa_stylesheet_connection.h,
6502: include/pa_stylesheet_manager.h, include/pa_table.h,
6503: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
6504: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
6505: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
6506: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
6507: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
6508: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
6509: main/compile.tab.C, main/compile.y, main/compile_tools.C,
6510: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
6511: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6512: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
6513: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
6514: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
6515: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
6516: main/pa_string.C, main/pa_stylesheet_connection.C,
6517: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
6518: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
6519: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
6520: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
6521: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
6522: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
6523: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6524: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
6525: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
6526: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
6527: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
6528: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
6529: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6530: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
6531: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
6532: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
6533: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
6534: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
6535: types/pa_vmemory.h, types/pa_vmethod_frame.C,
6536: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
6537: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
6538: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
6539: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
6540: types/pa_vresponse.h, types/pa_vstateless_class.C,
6541: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
6542: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
6543: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
6544: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
6545: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6546: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
6547: ident now works under Linux + ident displays filenames (closes
6548: issue #818) Copyright updated
6549:
6550: 2012-03-13 moko
6551:
6552: * src/main/pa_string.C: compilation fix for feature #741
6553:
6554: 2012-03-09 misha
6555:
6556: * tests/193.html: - tests for ^string:base64[encoded] are updated
6557:
6558: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
6559: now detects invalid base64 chars in the middle of encoded stricg
6560: ( new feature: #55 )
6561:
6562: * src/include/pa_exception.h: - new exception type for base64
6563: decoding is added
6564:
6565: 2012-03-06 misha
6566:
6567: * tests/274.html: - tests for ^date::today[] and
6568: ^date.sql-string[datetime|date|time] are added
6569:
6570: * src/classes/date.C: - constructor ^date::today[] is added ( new
6571: feature: #811 ) - ^date.sql-string[] now can accept one param --
6572: strings "datetime", "date" or "time" - comments tidying up
6573:
6574: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6575: date and time
6576:
6577: 2012-03-03 misha
6578:
6579: * tests/193.html: - tests for
6580: ^string:base64[encoded;$.strict(true)] are added
6581:
6582: * tests/results/auto.p: - try-catch operator is added
6583:
6584: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6585: main/pa_common.C: - $.strict(true|false) option is added to
6586: base64 decode methods ( new feature: #55 )
6587:
6588: * src/main/pa_common.C: - base64 decode memory usage was decreased
6589: ( new feature: #819 )
6590:
6591: 2012-02-28 moko
6592:
6593: * src/classes/hash.C: ident test
6594:
6595: 2012-02-27 misha
6596:
6597: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6598:
6599: 2012-01-08 misha
6600:
6601: * tests/273.html: - tests for ^string.replace[from;to] are added
6602:
6603: * src/: classes/string.C, include/pa_dictionary.h,
6604: main/pa_dictionary.C, main/pa_string.C: -
6605: ^string.replace[from;to] is added ( new feature: #741 ) -
6606: ^string.replace[one subst here] is slightly optimized
6607:
6608: 2011-12-07 misha
6609:
6610: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6611: named table with one empty column ( bugfix: #63 )
6612:
6613: 2011-11-30 misha
6614:
6615: * src/classes/json.C: - it's possible to set user's method for
6616: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6617: #763 )
6618:
6619: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6620:
6621: 2011-11-23 misha
6622:
6623: * src/: classes/curl.C, classes/file.C, classes/image.C,
6624: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6625: types/pa_vfile.h, types/pa_vform.C: - constructor
6626: ^file::create[mode;filename;content[;options]] now accepts binary
6627: mode and file-content - new constructor's format:
6628: ^file::create[string-or-file-content[;$.name[filename]
6629: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6630: feature: #65 )
6631:
6632: * src/: include/pa_request.h, main/pa_request.C: - new method
6633: mime_type_of(const String*) is added
6634:
6635: * src/include/pa_exception.h: - new exception constant
6636: FILE_NAME_MUST_BE_SPECIFIED is added
6637:
6638: * src/classes/table.C: - bug with negative offset transformed into
6639: a feature. it means pointing to a row from the end of the table (
6640: new feature: #810 )
6641:
6642: 2011-11-19 misha
6643:
6644: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6645: â ìåòîäå _select ( new feature: #810 )
6646:
6647: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6648: options were specified together is simplified
6649:
6650: 2011-11-12 misha
6651:
6652: * src/main/pa_request.C: - forgotten fix for escaping filename in
6653: HTTP content-disposition header (a part of bug #361 )
6654:
6655: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6656: checks for ancestors' classes as well ( new feature: #456 )
6657:
6658: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6659: "without cycle" now have types "parser.break" and
6660: "parser.continue" instead of "parser.runtime" ( new feature: #799
6661: )
6662:
6663: 2011-11-11 misha
6664:
6665: * tests/results/: 099.processed, 100.processed, 205.processed,
6666: 237.processed: - since bug #361 was fixed the content of filename
6667: in HTTP headers is quoted
6668:
6669: * tests/results/270.processed: - result for test 270
6670:
6671: * tests/: 065.html, results/065.processed: - more tests for
6672: ^file:basename[] & Co were added
6673:
6674: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
6675:
6676: * tests/270.html: - tests for ^file:find[] are added
6677:
6678: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
6679: using option $.charset. option $.engoding is still supported but
6680: these options can not be specified together
6681:
6682: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
6683: comparation charset name with string "UTF-8" ( bugfix: #759 )
6684:
6685: 2011-10-11 misha
6686:
6687: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
6688: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
6689: #622)
6690:
6691: 2011-09-30 misha
6692:
6693: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
6694: exception "saving stat-ed file" ( bugfix: #395 )
6695:
6696: 2011-05-30 misha
6697:
6698: * src/classes/string.C: - fixed bug which was added with
6699: params.as_hash into string:sql
6700:
6701: 2011-05-29 misha
6702:
6703: * src/types/pa_value.C: - filename in content-disposition header
6704: must be quoted ( bugfix: #361 )
6705:
6706: 2011-05-27 misha
6707:
6708: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
6709: created file
6710:
6711: * src/classes/: hash.C, mail.C: - little tunning with get_hash
6712: usage
6713:
6714: * src/include/pa_exception.h: - one more string for exception was
6715: added
6716:
6717: 2011-05-25 misha
6718:
6719: * tests/269.html: - tests for checking input params in some dom
6720: methods
6721:
6722: * src/classes/: xdoc.C, xnode.C: - validation of some input params
6723: was added. it isn't possible not wo create xdoc with invalid
6724: tagName. ( bugfix: #160 )
6725:
6726: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
6727: string "data must be string" was mover from pa_exception.h to
6728: pa_xml_exception.h
6729:
6730: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
6731: as_xmlncname, as_xmlname and as_xmlnsuri were added
6732:
6733: * src/main/pa_xml_exception.C: - XmlException accepts more options
6734:
6735: * src/include/pa_xml_exception.h: - XmlException accepts more
6736: options - XML-related exception's strings were added
6737:
6738: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
6739: output_options were removed)
6740:
6741: 2011-05-19 misha
6742:
6743: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
6744: params.as_hash is used more while parsing methods hash-options
6745:
6746: 2011-05-18 misha
6747:
6748: * operators.txt: - info about json-serialization of xdoc was added
6749:
6750: * tests/256.html: - tests for json-serialization xdoc were added
6751:
6752: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
6753:
6754: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
6755: classes/json.C, classes/xdoc.C: - now json:string can serialize
6756: xdoc-objects. options (the same as ^xdoc.string[]) could be
6757: specified in $.xdoc[] ( new feature: #265 )
6758:
6759: 2011-05-15 misha
6760:
6761: * tests/268.html: - tests for ^table.count[with options] were added
6762:
6763: * src/classes/table.C: - method ^table.count[] now can accept
6764: options ( new feature: #93 ): ^table.count[column] returns number
6765: of columns for named table; ^table.count[cells] returns number of
6766: cells in the current row; ^table.count[] & ^table.count[rows]
6767: return number of rows in a table.
6768:
6769: * tests/267.html: - test for checking switch/case in boolean mode
6770: was added
6771:
6772: * src/classes/op.C: - if switch's or case's value is bool, they are
6773: compared as bool values, not as double values: new feature: #351
6774:
6775: 2011-05-06 misha
6776:
6777: * tests/242.html: - EOL before EOF was added
6778:
6779: * tests/169.html: - tests for splitting empty string and void were
6780: added
6781:
6782: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
6783: returned table with one empty cell)
6784:
6785: 2011-04-03 misha
6786:
6787: * src/include/pa_version.h, configure.in: - version in head was
6788: changed to 3.4.2b
6789:
6790: 2011-03-30 misha
6791:
6792: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
6793: as well ( new feature #294 )
6794:
6795: 2011-03-29 misha
6796:
6797: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
6798: limited to approx. 6 MB. previous limits were too big for real
6799: life. bugfix: #216
6800:
6801: 2011-03-04 moko
6802:
6803: * etc/parser3.charsets/cp866.cfg: Conforms to
6804: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
6805:
6806: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
6807: vlalek@
6808:
6809: 2011-02-22 misha
6810:
6811: * src/include/pa_charset.h, operators.txt: - some methods mustn't
6812: be under #ifdef XML or parser can't be compiled without xml
6813: support
6814:
6815: 2011-02-21 misha
6816:
1.116 moko 6817: * src/targets/apache/: Makefile.am: - mention
1.95 moko 6818: ApacheModuleParser3.vcproj was removed
6819:
6820: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
6821: removed)
6822:
6823: 2011-02-20 misha
6824:
6825: * tests/: 266.html, 266.p: - tests for checking $.inherited and
6826: $.overridden in ^reflection:method_info[...] were added
6827:
6828: * src/classes/reflection.C: - beautifying result of
6829: ^reflection:method_info[] ($.overridden/inherited)
6830:
6831: 2011-02-18 misha
6832:
6833: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
6834: and pa_isalnum instead of isalpha and isalnum - bug with
6835: redundand quoting lowercased latin chars while building email
6836: body was fixed
6837:
6838: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
6839: added (they check for latin chars only)
6840:
6841: 2011-02-16 misha
6842:
6843: * src/main/pa_charset.C: - bugfix: in some cases the calculating
6844: string size for transcoding gave too small value (should ever
6845: look for availability char in dest charset inspite of the char
6846: size)
6847:
6848: 2011-02-04 moko
6849:
6850: * tests/223.html: header values now not url-encoded (issue #195)
6851:
6852: 2011-02-01 misha
6853:
6854: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
6855:
6856: 2011-01-31 misha
6857:
6858: * src/main/pa_request.C: - throw exception if param file_name in
6859: use_file is empty
6860:
6861: 2011-01-08 moko
6862:
6863: * src/classes/curl.C: compilations errors fixed
6864:
6865: 2010-12-29 moko
6866:
6867: * tests/: 265.html, results/265.processed: test for issue #200
6868: added
6869:
6870: * src/main/pa_string.C: empty regex result check added (fixes issue
6871: #200)
6872:
6873: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
6874:
6875: * tests/results/223.processed: header values now not url-encoded
6876: (issue #195)
6877:
6878: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
6879: main/untaint.C: L_HTTP_HEADER now used in http headers values,
6880: pa_http_safe_header_name added for headers names (fixes bug #195)
6881:
6882: 2010-12-18 misha
6883:
6884: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
6885: => pa-include
6886:
6887: 2010-11-28 moko
6888:
6889: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
6890:
6891: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
6892: -> pa
6893:
6894: * configure.in: apr -> pa
6895:
6896: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
6897:
6898: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
6899: classes/Makefile.am, types/Makefile.am: apr -> pa
6900:
6901: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
6902: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
6903: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
6904: pa-include/pa_apr.h, pa-include/pa_errno.h,
6905: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
6906: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
6907: module apr name conflict resolved)
6908:
6909: 2010-11-27 misha
6910:
6911: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
6912: libbz2
6913:
6914: 2010-11-26 misha
6915:
6916: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
6917: warnings removed
6918:
6919: 2010-11-25 moko
6920:
6921: * operators.txt: $.indent(true)
6922:
6923: * operators.txt: another bugfix. :)
6924:
6925: * operators.txt: bugfix. :)
6926:
6927: * buildall-with-xml: libxml2-2.7.8 + with-apache
6928:
6929: 2010-11-24 moko
6930:
1.116 moko 6931: * configure: apxs support
1.95 moko 6932:
6933: * configure.in: apxs support -Bstatic gc removed for OS X
6934:
6935: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
6936:
6937: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
6938: THREAD_LOCAL usage
6939:
6940: * src/: classes/curl.C, include/pa_config_includes.h,
6941: main/pa_globals.C: THREAD_LOCAL defined and used
6942:
6943: 2010-11-23 moko
6944:
6945: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6946: should be passed to pa_sleep, and only fractional part (bugfix:
6947: #188)
6948:
6949: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6950:
6951: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6952: GC_dont_gc=1, as in cgi version
6953:
6954: * src/targets/apache/mod_parser3.c: warning war
6955:
6956: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6957: pa_httpd.h: version removed, some trash removed
6958:
6959: * src/targets/apache/mod_parser3.c: version removed (we don't want
6960: to show it), warning war
6961:
6962: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6963: pa_httpd.h: parser_status_allowed removed + merge config
6964: functions removed (override is the default) + beauty
6965:
6966: * src/: include/pa_request.h, main/pa_request.C,
6967: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6968: hide $status used in apache module removed
6969:
6970: 2010-11-18 moko
6971:
6972: * operators.txt: $.table[compact] added for ^json:string[]
6973:
6974: 2010-11-16 moko
6975:
6976: * src/targets/apache/mod_parser3.c: some cleanup done
6977:
6978: * src/main/untaint.C: bugfix: first, second String::Body argument
6979: is hashcode; second, info.fragment_begin is original, not
6980: resulting length
6981:
6982: * src/classes/file.C: new feature: $.stdin now untainted
6983:
6984: * tests/results/264.processed: new feature: $.stdin[] now untainted
6985:
6986: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6987:
6988: * src/classes/op.C: ^apply-taint[] method added
6989:
6990: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6991: added; $.stdin untaint test added
6992:
6993: 2010-11-15 moko
6994:
6995: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6996: removed
6997:
6998: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6999: pa_httpd.h: 2x2 calculated under apache2. :)
7000:
7001: 2010-11-13 moko
7002:
7003: * src/targets/apache/mod_parser3.c: initial changes to build module
7004: with apache 2.x includes
7005:
7006: * src/targets/apache/: Makefile.am, mod_parser3.c,
7007: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
7008: united apache 1.3 / apache 2.x DSO module
7009:
7010: 2010-11-09 moko
7011:
7012: * src/types/pa_method.h: check added to dissallow @method[name;*]
7013: syntax
7014:
7015: * tests/: 263.html, results/263.processed: test from method[*args]
7016: added
7017:
7018: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
7019: number of params can now be passed to a method declared with *arg
7020:
7021: 2010-11-06 moko
7022:
7023: * src/classes/table.C: formating fixed. :)
7024:
7025: * src/classes/table.C: closes #4: ^table.select now supports
7026: $.limit(), $.offset, $.reverse() options
7027:
7028: * tests/: 262.html, results/262.processed: test for ^table:select
7029: with options added (feature #4)
7030:
7031: * src/include/pa_array.h: remove function added
7032:
7033: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
7034: object in get_element/put_element, using static one.
7035:
7036: 2010-11-04 moko
7037:
7038: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
7039: options is passed
7040:
7041: * tests/: 256.html, results/256.processed: $.table[compact] feature
7042: now tested; k and p in handler now tested.
7043:
7044: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
7045: $.table[compact] feature added
7046:
7047: * src/classes/json.C: key is now passed to handler in
7048: value_json_string; ^json:string result now process tainting
7049: inside and returns clean string, related to issue #153
7050:
7051: * src/main/untaint.C: bugfix: charset can be null (in
7052: ^string:save[] as example), thus check is added
7053:
7054: 2010-10-31 moko
7055:
7056: * src/classes/string.C: error message changed (fixes issue #149)
7057:
7058: 2010-10-29 moko
7059:
7060: * src/main/pa_http.C: ":port" is now added to "Host:" header if
7061: port is not default (fixes issue #155); exception on invalid port
7062: added.
7063:
7064: * src/main/untaint.C: '*' is now not urlencoded to allow header
7065: "Accept: */*" to be passed
7066:
7067: 2010-10-28 moko
7068:
7069: * src/classes/curl.C: bugfix: detect_charset() was throwing
7070: exception on unknown charset even if response_charset was
7071: specified
7072:
7073: 2010-10-27 moko
7074:
7075: * src/classes/string.C: ^string.append removed for void
7076: compatibility
7077:
7078: 2010-10-26 moko
7079:
7080: * src/classes/json.C: libjson supports array at top level, we too
7081: (GPF fixed)
7082:
7083: 2010-10-25 moko
7084:
7085: * tests/: 253.html, results/253.processed: libjson supports array
7086: at top level, parser now supports it as well.
7087:
7088: * tests/261.html, tests/results/261.processed,
7089: src/types/pa_vstring.h: empty string is now void compatible
7090: (allows $empty.key)
7091:
7092: 2010-10-22 misha
7093:
7094: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
7095: while adding additional expires checkout)
7096:
7097: * tests/030.html: - test for session cookie was added
7098:
7099: 2010-10-21 moko
7100:
7101: * src/: classes/string.C, classes/void.C, main/execute.C,
7102: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
7103: string (feature #111)
7104:
7105: * tests/: 261.html, results/261.processed: checks void from string
7106: inheritance (feature #111)
7107:
7108: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
7109: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
7110: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
7111: now true by default
7112:
7113: 2010-10-17 moko
7114:
7115: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
7116: upload now uses binary blocks instead of L_FILE_POST tainting.
7117: (bugfix: #128)
7118:
7119: * tests/: 223.html, results/223.processed: binary file upload test
7120: added, GPF (issue #128) also checked in this test
7121:
7122: 2010-10-13 misha
7123:
7124: * tests/260.html: - test for math:convert
7125:
7126: * src/classes/math.C: - error in math:convert was fixed
7127:
7128: * operators.txt: - info about
7129: ^math:convert[number](from-base;to-base) was added
7130:
7131: * src/classes/math.C: - method
7132: ^math:convert[number](from-base;to-base) for converting number
7133: represention from one base to another was added ( new feature:
7134: #23 )
7135:
7136: 2010-10-13 moko
7137:
7138: * src/main/compile.tab.C: [] now is empty string, not void
7139:
7140: * src/main/compile.y: [] now is empty string, not void
7141:
7142: * src/types/pa_vvoid.h: void now passed as parameter
7143:
7144: * tests/: 259.html, results/259.processed: to test difference
7145: between void and empty string (see ticket #111)
7146:
7147: * tests/results/152.processed: $sEmpty[] is now empty string, not
7148: void
7149:
7150: * tests/256.html: $s[$void] is no longer empty string
7151:
7152: * tests/254.html: empty string is no longer void
7153:
7154: 2010-10-12 misha
7155:
7156: * src/types/pa_vcookie.C: - check if $.expires value can be
7157: converted to date during cookies set up ( bugfix: #104 )
7158:
7159: * tests/041.html: - more tests for ^table.locate were added
7160:
7161: * src/classes/table.C: - ^table.locate[field;value;options] didn't
7162: work ( bugfix: #129 ) - exception comment for incorrect options
7163: ^table.locate[field;value;options] was fixed
7164:
7165: 2010-10-10 moko
7166:
7167: * src/: classes/reflection.C, main/execute.C: constructor returning
7168: another object feature returned
7169:
7170: * tests/results/258.processed: test result updated as constructor
7171: returning another object feature returned
7172:
7173: * tests/: 258.html, results/258.processed: test for constructor
7174: returning another object
7175:
7176: 2010-10-08 misha
7177:
7178: * tests/257.html: - whitespaces after @METACOMMANDS and their
7179: options shouldn't cause exceptions any longer
7180:
7181: 2010-10-06 moko
7182:
7183: * src/classes/: hash.C, table.C: length from sql server is now
7184: ignored, as sql string can contain 0x00 inside (bugfix: #119)
7185:
7186: 2010-10-02 misha
7187:
7188: * operators.txt: - the X mark was removed from ^cache[file]. it is
7189: usable to delete cache file.
7190:
7191: 2010-10-02 moko
7192:
7193: * tests/: 253.html, results/253.processed: hook_key added for key
7194: checking
7195:
7196: * src/classes/json.C: null key bug fixed
7197:
7198: 2010-09-29 misha
7199:
7200: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
7201:
7202: 2010-09-25 moko
7203:
7204: * src/classes/json.C: small fixed
7205:
7206: * tests/results/: 253.processed, 255.processed: just updated
7207:
7208: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
7209: results/255.processed: charset transcode test added for
7210: json:parse
7211:
7212: 2010-09-24 moko
7213:
7214: * src/types/pa_value.h: warning war :)
7215:
7216: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
7217: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
7218: ^json:string
7219:
7220: 2010-09-22 moko
7221:
7222: * src/main/pa_charset.C: parser charset tables declare only
7223: white-space before 0x20, thus adding the missing chars
7224:
7225: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
7226: to http://unicode.org/Public/MAPPINGS/VENDORS/
7227:
7228: 2010-09-21 misha
7229:
7230: * src/main/compile.y: - some semicolons were added (VS2010 don't
7231: want to compile grammar if they are absent)
7232:
7233: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
7234:
7235: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
7236:
7237: * src/main/main.vcproj: - path to bison is changed
7238:
7239: 2010-09-21 moko
7240:
1.116 moko 7241: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
7242: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
7243: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 7244:
7245: 2010-09-20 misha
7246:
7247: * src/types/pa_vtable.C: - add EOLs while json-serializing table
7248:
7249: * src/classes/json.C: - add EOL while json-serializing hash
7250:
7251: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
7252: compilers don't like 'ES'.
7253:
7254: 2010-09-17 misha
7255:
7256: * operators.txt: - info about json class was added
7257:
7258: * src/classes/json.C: - ^json:string[object]
7259:
7260: * src/: include/pa_request.h, main/pa_request.C: - stuff for
7261: preventing infinite recursion while executing json:string was
7262: added
7263:
7264: * src/include/pa_string.h: - method append_quoted was added
7265:
7266: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
7267: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
7268: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
7269: was added to Value & Co
7270:
7271: * src/classes/date.C: - methods get_gmt_string and get_sql_string
7272: were used
7273:
7274: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
7275: were added
7276:
7277: 2010-09-10 moko
7278:
7279: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7280: die_or_abort (backport from 3.4.1)
7281:
7282: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7283: die_or_abort (bugfix: #106)
7284:
7285: 2010-09-09 moko
7286:
7287: * src/classes/json.C: warning war. :)
7288:
7289: 2010-09-08 misha
7290:
7291: * src/lib/json/Makefile.am: - additional include directories were
7292: added (for pa_memory.h and gc.h)
7293:
7294: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
7295: compile as C++ instead default - additional include directory was
7296: added (for gc.h)
7297:
7298: * src/types/pa_vform.C: - little code reformating
7299:
7300: * src/classes/file.C: - $.content-type option now can be specified
7301: in ^file::create ( new feature: #102 )
7302:
7303: 2010-09-08 moko
7304:
7305: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
7306: pa_malloc/pa_free
7307:
7308: 2010-09-07 moko
7309:
7310: * tests/results/254.processed: VStateless_class:put_element
7311: exception was fixed
7312:
7313: * src/types/: pa_value.h, pa_vstateless_class.h: now
7314: VStateless_class:put_element barks self.type, not this.type
7315: (bugfix: #105)
7316:
7317: 2010-09-06 moko
7318:
7319: * src/classes/reflection.C: bugfix: new String() is required for
7320: exception handling
7321:
7322: * tests/: 254.html, results/254.processed: test modified
7323:
7324: 2010-09-05 moko
7325:
7326: * tests/: 254.html, results/254.processed: ^reflection:copy test
7327: added
7328:
7329: * src/: classes/reflection.C, include/pa_request.h:
7330: ^reflection:copy implemented (new feature: #100)
7331:
7332: 2010-09-03 moko
7333:
7334: * src/lib/json/JSON_parser.C: c++ compatiblity
7335:
7336: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
7337: option testing added
7338:
7339: 2010-09-02 moko
7340:
7341: * src/classes/json.C: $.distinct[first|last|all] added
7342:
7343: 2010-09-01 moko
7344:
7345: * tests/results/253.processed: json test result
7346:
7347: * tests/: 253.html, 253_json.txt: json test added
7348:
7349: * src/classes/json.C: json.C update to actual version + hash key
7350: creation bugfix
7351:
7352: 2010-08-31 misha
7353:
7354: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7355: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
7356: src/lib/Makefile.am, src/classes/Makefile.am,
7357: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
7358: json library was added
7359:
7360: 2010-08-30 moko
7361:
7362: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
7363: types/pa_vobject.C: cosmetic optimization in
7364: request:execute_method usage
7365:
7366: * src/: include/pa_charset.h, main/pa_charset.C: small
7367: optimization, just to decrease number of lines. :)
7368:
7369: 2010-08-27 misha
7370:
7371: * src/classes/op.C: - taint[json] was added
7372:
7373: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
7374: were added
7375:
7376: * src/main/pa_exec.C: - warning fix was rolled back.
7377:
7378: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
7379: include/pa_string.h: - taint[json] was added - escaping was
7380: slightly modified
7381:
7382: 2010-08-25 misha
7383:
7384: * src/classes/file.C: - typo in file:sql exception was fixed
7385:
7386: * src/main/pa_exec.C: - warning about declared and not used
7387: variable forced_allow was removed
7388:
7389: 2010-08-14 misha
7390:
7391: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
7392: were removed
7393:
7394: 2010-08-11 moko
7395:
7396: * tests/: 249.html, results/249.processed: default setter and
7397: anti-recursive default getter test added
7398:
7399: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
7400: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
7401: types/pa_vobject.h, types/pa_vstateless_class.C,
7402: types/pa_vstateless_class.h: default setter support +
7403: anti-recursive default getter support ( new feature: #13 )
7404:
7405: * src/include/pa_hash.h: optimization: threshold member removed
7406: from hash, reducing sizeof(hash)
7407:
7408: 2010-08-10 misha
7409:
7410: * tests/196.html: - junction-method was added to the test
7411:
7412: * tests/248.html: - ups. typo :)
7413:
7414: * tests/248.html: - test for checking .match with 4 params
7415:
7416: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
7417: 247_windows1251.txt: - test for "transcode file from utf-8 to
7418: $request:charset during loading if the BOM code is detected"
7419:
7420: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
7421: $request:charset during loading if the BOM code is detected ( new
7422: feature: #98 )
7423:
7424: 2010-08-05 misha
7425:
7426: * src/classes/image.C: - ^image.replace now can accept only 2
7427: params. in this case the whole image is affected ( new feature:
7428: #95 )
7429:
7430: 2010-08-04 misha
7431:
7432: * tests/246.html: - test tor ^hash._at[] was added
7433:
7434: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
7435: #53 )
7436:
7437: * src/include/pa_hash.h: - methods for accessing the first and the
7438: last values of ordered hash were added (first_value and
7439: last_value)
7440:
7441: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
7442: (similar to others file's methods):
7443: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
7444: #68 )
7445:
7446: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
7447:
7448: 2010-08-01 moko
7449:
7450: * src/classes/op.C: to correctly process $result[] in code, called
7451: from ^process
7452:
7453: * tests/245.html: $result in ^process[] test added
7454:
7455: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
7456: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
7457: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
7458: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
7459: caller, self) op_call(VMethodFrame &frame, bool constructing)
7460: removed, construct(class,method) added
7461:
7462: * tests/results/: 192.processed, 244.processed: request::construct
7463: added
7464:
7465: * tests/: 244.html, 245.html, results/244.processed,
7466: results/245.processed: object creation exceptions and ^process
7467: tests added
7468:
7469: 2010-07-28 misha
7470:
7471: * tests/make_tests.cmd: - win32 EOLs
7472:
7473: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
7474: tests on Win32 were added (The system timezone should be GMT+3)
7475:
7476: 2010-07-26 misha
7477:
7478: * tests/: 212.html, results/212.processed: - sizes were removed
7479: mecause they could be different on different OSs
7480:
7481: * tests/065.html: - make it "win32 friendly"
7482:
7483: 2010-07-25 misha
7484:
7485: * src/main/compile.y: - all EOLs between methods are removed during
7486: compilation ( new feature: #47 )
7487:
7488: * tests/results/149.processed: - prepare tests to trim trailing
7489: methods' EOLs
7490:
7491: * tests/149.html: - prepare tests to trim trailing methods' EOLs
7492:
7493: * tests/: results/006.processed, results/014.processed, 006.html,
7494: 014.html, 022.html: - prepare tests to trim trailing methods'
7495: EOLs
7496:
7497: * tests/: 059.html, 071.html, 149.html, results/059.processed,
7498: results/071.processed, results/022.processed: - prepare tests to
7499: trim trailing methods' EOLs
7500:
7501: * tests/: results/073.processed, results/109.processed,
7502: results/142.processed, results/144.processed,
7503: results/149.processed, 073.html, 096.html, 109.html, 142.html,
7504: 144.html: - prepare tests to trim trailing methods' EOLs
7505:
7506: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
7507: 149.html, 152.html, results/096.processed, results/107.processed,
7508: results/109.processed, results/142.processed,
7509: results/144.processed: - prepare tests to trim trailing methods'
7510: EOLs
7511:
7512: 2010-07-24 moko
7513:
7514: * tests/results/: 156.processed, 224.processed: fix for #54 changed
7515: the hash order in this test
7516:
7517: * tests/014.html: to check hash order, hash no is longer sorted
7518: before print
7519:
7520: * src/include/pa_hash.h: hash copy constructor now keeps order
7521: (bugfix: #54)
7522:
7523: 2010-07-23 moko
7524:
7525: * tests/results/224.processed: @auto[] is no longer inherited
7526:
7527: * src/types/pa_vstateless_class.C, tests/227.html,
7528: tests/results/227.processed: @auto[] is no longer inherited
7529: (bugfix: #57)
7530:
7531: 2010-07-22 misha
7532:
7533: * src/classes/table.C: - don't skip comment lines during
7534: table::load if encloser or separator is set as '#' ( new feature:
7535: #30 )
7536:
7537: * src/targets/cgi/parser3.C: - don't run as cgi if
7538: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
7539: #12 )
7540:
7541: * src/classes/file.C: - set PARSER_VARSION env before external
7542: script executing
7543:
7544: 2010-07-13 misha
7545:
7546: * tests/058.html: - test for suppressing @border was added - test
7547: for user attribute was added
7548:
7549: * tests/results/186.processed: unescaping from \uXXXX
7550:
7551: * tests/186.html: unescaping from \uXXXX
7552:
7553: * tests/: 239.html, results/239.processed: method call type
7554:
7555: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
7556: $junction_method.CLASS_NAME (+CLASS)
7557:
7558: 2010-07-07 misha
7559:
7560: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
7561: *nix
7562:
7563: 2010-07-05 misha
7564:
7565: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7566: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7567: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7568: comment strings "options must be hash", "options must be hash,
7569: not code" and "called with invalid option" were replaced by
7570: constatns - exception comment string "invalid option passed" was
7571: replaced by "called with invalid option" (now in different
7572: methods are the same exception comment string)
7573:
7574: * src/include/pa_exception.h: - more exception strings were defined
7575:
7576: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7577: types/pa_vstateless_class.h: - now we can define possible
7578: method's call type ( new feature: #5 ) 1.
7579: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7580: methods 2. @static:method[params] (only static keyword could be
7581: used here) -- for specified methods
7582:
7583: * src/main/pa_common.C: - junction points should not be deleted on
7584: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7585: cleanup
7586:
7587: 2010-07-03 misha
7588:
7589: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7590: results/158.processed, results/160.processed,
7591: results/161.processed, results/162.processed,
7592: results/163.processed: - prepare tests to trim trailing methods'
7593: EOLs
7594:
7595: * tests/results/169.processed: - prepare tests to trim trailing
7596: methods' EOLs
7597:
7598: * tests/results/: 168.processed, 169.processed: - prepare tests to
7599: trim trailing methods' EOLs
7600:
7601: * tests/: results/170.processed, results/167.processed,
7602: results/168.processed, results/169.processed, 167.html, 168.html,
7603: 169.html: - prepare tests to trim trailing methods' EOLs
7604:
7605: * tests/: results/170.processed, results/171.processed,
7606: results/172.processed, results/173.processed,
7607: results/174.processed, results/175.processed, 170.html, 171.html,
7608: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7609: trailing methods' EOLs
7610:
7611: * tests/: results/176.processed, results/180.processed,
7612: results/184.processed, results/185.processed,
7613: results/191.processed, results/192.processed,
7614: results/196.processed, results/197.processed,
7615: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7616: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7617: to trim trailing methods' EOLs
7618:
7619: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7620: results/199.processed, results/208.processed,
7621: results/209.processed, results/213.processed,
7622: results/214.processed: - prepare tests to trim trailing methods'
7623: EOLs
7624:
7625: 2010-06-29 misha
7626:
7627: * tests/: 220.html, 218.html, results/218.processed,
7628: results/215.processed, results/217.processed, 215.html, 217.html:
7629: - prepare tests to trim trailing methods' EOLs
7630:
7631: * tests/: results/224.processed, 224.html, 223.html,
7632: results/223.processed, results/220.processed: - prepare tests to
7633: trim trailing methods' EOLs
7634:
7635: * tests/results/: 226.processed, 230.processed: - prepare tests to
7636: trim trailing methods' EOLs
7637:
7638: * tests/: 229.html, results/229.processed: - prepare tests to trim
7639: trailing methods' EOLs
7640:
7641: * tests/: 232.html, 235.html, results/232.processed,
7642: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7643: results/226.processed, results/227.processed,
7644: results/228.processed, results/230.processed: - prepare tests to
7645: trim trailing methods' EOLs
7646:
7647: 2010-06-16 moko
7648:
7649: * tests/: 229.html, results/229.processed: elseif now supported in
7650: ^if
7651:
7652: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7653:
7654: 2010-06-03 misha
7655:
7656: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7657: instead of memcopy for overlaped regions
7658:
7659: 2010-05-25 misha
7660:
7661: * src/main/pa_common.C: - wanring about unused vars was removed
7662:
7663: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7664: get_method_filename was moved to execute.C
7665:
7666: 2010-05-23 misha
7667:
7668: * src/main/pa_request.C: - more accurate detection of method's file
7669:
7670: 2010-05-22 misha
7671:
7672: * src/classes/reflection.C: - bugfix: core during detection of
7673: .file if filespec isn't detected successfully
7674:
7675: 2010-05-20 misha
7676:
7677: * src/main/pa_request.C: - fix in get_method_filename
7678:
7679: * src/include/pa_request.h: - new feature: #24 -- searching
7680: included file in @USE/^use is changed. if its filespec doesn't
7681: start from '/' it will be searched in caller file directory
7682:
7683: * src/classes/reflection.C: - ^reflection:method_info returns file
7684: where the method is defined
7685:
7686: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
7687: classes/op.C: - new feature: #24 -- searching included file in
7688: @USE/^use is changed. if its filespec doesn't start from '/' it
7689: will be searched in caller file directory
7690:
7691: * src/: classes/file.C, include/pa_common.h: - method lastposafter
7692: is moved to pa_common.h
7693:
7694: 2010-05-18 misha
7695:
7696: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
7697: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
7698: cookie parser decode \uXXXX as well as %uXXXX
7699:
7700: 2010-05-17 misha
7701:
7702: * src/classes/curl.C: beauty: - unused param is removed in method
7703: _curl_version_action - some spaces were removed or replaced by
7704: tabs
7705:
7706: * src/classes/table.C: - bugfix: #72 core with empty value during
7707: ^table.hash[...;name_of_the_last_column][$.type[string]]
7708:
7709: 2010-05-16 misha
7710:
7711: * src/classes/curl.C: new: #61 more curl options were added
7712: (contributed by Sumo)
7713:
7714: 2010-04-29 pretender
7715:
7716: * src/main/pa_string.C: fixes #63 Split result from empty string
7717: now empty string.
7718:
7719: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
7720: string type.
7721:
7722: 2010-04-28 pretender
7723:
7724: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
7725: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
7726: macrodefinition removed
7727:
7728: 2010-04-19 pretender
7729:
7730: * src/main/execute.C: fixes #60 Stacktrace now contains info for
7731: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
7732:
7733: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
7734: fixes #64 Now file.missing exception generates in unsafe mode to.
7735:
7736: * src/classes/file.C: fixes #48 Now not throw "not save environment
7737: variable" exception in grpunlim version.
7738:
7739: 2010-04-05 misha
7740:
7741: * src/classes/string.C: - new feature: 4th param was added to
7742: match. if specified its value is returned in case of nothing was
7743: found
7744:
7745: 2010-04-01 misha
7746:
7747: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
7748: multiple execution of /a/b/auto.p
7749:
7750: 2010-03-19 misha
7751:
7752: * src/main/execute.C: - core in $table1.$table2 was fixed
7753:
7754: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
7755:
7756: 2010-01-27 misha
7757:
7758: * src/main/pa_common.C: - bugfix: there are no excaption.type if
7759: trying to open file by path /existing-file/non-exixting-file
7760:
7761: 2010-01-26 misha
7762:
7763: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
7764: was added (returns file)
7765:
7766: 2009-12-22 misha
7767:
7768: * src/classes/curl.C: - method 'option' was renamed to 'options' -
7769: now parser doesn't have class curl if it was built without it
7770:
7771: 2009-12-15 misha
7772:
7773: * configure.in: - little cheat with curl include dir was added
7774:
7775: 2009-12-05 misha
7776:
7777: * src/classes/curl.C: - some fixes
7778:
7779: 2009-12-04 misha
7780:
7781: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
7782: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
7783: buildall-with-xml, buildall-without-xml, configure.in: - curl
7784: class was added
7785:
7786: * src/include/pa_hash.h: - hash-iterator was added
7787:
7788: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
7789: was added to pcre
7790:
7791: 2009-11-27 misha
7792:
7793: * src/classes/image.C: - don't add @border attribute to output of
7794: ^image.html[] if it was specified by user with empty value
7795:
7796: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
7797: root element and we are trying to access .documentElement
7798:
7799: 2009-11-11 misha
7800:
7801: * src/classes/table.C: - in ^table.flip[] look at number of columns
7802: instead of number of items in first row for named tables
7803:
7804: 2009-11-10 misha
7805:
7806: * operators.txt: - info about hash-options in ^file::create was
7807: added
7808:
7809: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
7810: added
7811:
7812: 2009-11-09 misha
7813:
7814: * buildall-with-xml: - moving to libxml 2.7.6
7815:
7816: * tests/236.html: - tests for comparations cords with functions
7817: were added
7818:
7819: * src/include/pa_string.h: - optimisation: cacheing of cstr was
7820: added
7821:
7822: * src/main/pa_http.C: - little optimisation
7823:
7824: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
7825: GPF mallocs + stringstream (table.save)
7826:
7827: * src/classes/file.C: - file::create now accepts 4th param: options
7828: with $.charset
7829:
7830: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
7831: bug in cord (comparation cords with functions was buggy)
7832:
7833: 2009-11-06 misha
7834:
7835: * src/main/pa_string.C: - bugfix: calculation string.length
7836: sometimes was buggy
7837:
7838: * src/classes/string.C: - bugfix: Temp_value_element wasn't
7839: destroyed if exception occured during match/replace
7840:
7841: * src/: main/pa_charset.C, include/pa_charset.h: - method
7842: lengthUTF8Char was added
7843:
7844: * src/classes/op.C: - clean tainting lang was added for user's
7845: usage
7846:
7847: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
7848: fixed: checkouts are required after GC_MALLOC
7849:
7850: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
7851:
7852: * operators.txt: - actually, there is no ^untaint[xml] in
7853: file::create
7854:
7855: 2009-10-15 misha
7856:
7857: * tests/: 235.html, 235_attach.txt: - tests for preparing email
7858: were added
7859:
7860: * tests/234.html: - more tests for checking ^taint[uri] escaping
7861: were added
7862:
7863: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
7864: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
7865: hacking: for dealing with transcoding+^taint[uri]
7866: transcode_and_untaint was replaced by untaint_and_transcode
7867:
7868: 2009-10-13 misha
7869:
7870: * tests/: 121.html, results/121.processed: - test transcoding +
7871: url-escaping now
7872:
7873: * tests/results/auto.p: - more helpers' methods were added
7874:
7875: * src/main/pa_globals.C: - die instead of abort
7876:
7877: 2009-10-06 misha
7878:
7879: * src/main/pa_common.C: - don't allocate memory during
7880: capitalization if input string is already capitalized
7881:
7882: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
7883:
7884: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
7885: use format function because it calls malloc
7886:
7887: * src/include/pa_common.h: - more capitalized headers were added
7888:
7889: * src/main/pa_common.C: - in safe mode clear executable bits during
7890: file writing
7891:
7892: 2009-10-05 misha
7893:
7894: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
7895:
7896: 2009-10-03 misha
7897:
7898: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
7899: ^img.text[] & ^img.length[] can work in utf-8 now
7900:
7901: * src/: include/pa_charset.h, main/pa_charset.C: - class
7902: UTF8_string_iterator was added
7903:
7904: * src/classes/image.C: - respect utf-8 when calculate alphabet
7905: length
7906:
7907: * src/classes/mail.C: - check from before get message.cstr
7908:
7909: 2009-10-02 misha
7910:
7911: * tests/233.html: - test for image.font, image.length, image.text
7912: with text in utf-8 were added
7913:
7914: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
7915:
7916: * buildall-with-xml, buildall-without-xml: - comment about gc
7917: version for freebsd 4 was added
7918:
7919: 2009-10-01 misha
7920:
7921: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
7922: terminator) - read_pipe were slightly optimized
7923:
7924: 2009-09-28 misha
7925:
7926: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
7927: removed
7928:
7929: * src/types/pa_vmail.C: - forgot about space after ':'
7930:
7931: * src/types/pa_vmail.C: - escape filenames while preparing mail
7932: body - small simplifications
7933:
7934: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
7935: inout params like pa_base64
7936:
7937: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
7938: option $.debug-print(1) was added to mail:send - changes for
7939: using uue_encode which uses less memory
7940:
7941: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7942:
7943: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7944: memory now
7945:
7946: 2009-09-26 misha
7947:
7948: * src/types/pa_vmail.C: - default encoding now is base64
7949:
7950: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7951:
7952: 2009-09-25 misha
7953:
7954: * src/types/pa_vmail.C: - capitalization of headers was added to
7955: sending mail as well
7956:
7957: * buildall-with-xml: - catalog package was removed from libxml
7958:
7959: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7960: win32 absolute path
7961:
7962: * src/include/pa_common.h: - one more capitalized header was added
7963:
7964: 2009-09-22 misha
7965:
7966: * INSTALL: - comment about building just httpd binary while
7967: building apache module was added
7968:
7969: 2009-09-21 misha
7970:
7971: * buildall-with-xml: - moving to the latest versions of xml libs:
7972: libxml 2.7.4 and libxslt 1.1.25
7973:
7974: 2009-09-19 misha
7975:
7976: * tests/231.html: - test for encoding cookie in win-1251
7977:
7978: 2009-09-18 misha
7979:
7980: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7981: object] were added
7982:
7983: * operators.txt: - info about method ^reflection:fields[class or
7984: object] was added
7985:
7986: * src/classes/reflection.C: - method ^reflection:fields[class or
7987: object] was added
7988:
7989: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7990: methods get_fields were added
7991:
7992: * tests/232.html: - tests for @GET[name]
7993:
7994: * src/classes/table.C: - some changes in handling hash-options for
7995: creare, join and locate
7996:
7997: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7998: defined with option: the type of requested value
7999:
8000: 2009-09-17 misha
8001:
8002: * tests/212.html: - tests for .pattern and .options were added
8003:
8004: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
8005: $regex.options were added
8006:
8007: 2009-09-11 misha
8008:
8009: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
8010: rewrited. it checks not just one case of sending cookies during
8011: file::load[http], but also sending headers and fields (including
8012: files)
8013:
8014: 2009-09-10 misha
8015:
8016: * src/main/untaint.C: - workaround in file-spec lang for old Macs
8017: was removed => now parser can open files with Russian 'r' in
8018: filename
8019:
8020: * src/main/untaint.C: - bugfix: client charset whould be analized
8021: while escaping cookies but now source charset
8022:
8023: * src/main/pa_http.C: - bugfix: the values of http headers didn't
8024: ^tainted[uri] so it was possible to make request with incorrect
8025: http header
8026:
8027: * src/main/pa_http.C: - capitalization of http headers during
8028: file::load[http was slightly changes - bugfix: all headers which
8029: parser sends during file::load[http should be transcoded and only
8030: then escaped
8031:
8032: * src/main/untaint.C: - a bit more comments were added
8033:
8034: * src/classes/: file.C, string.C: - types where changes (minus 2
8035: warnings)
8036:
8037: * src/include/pa_common.h: - 2 capitalized strings for making http
8038: headers during file::load[http were added
8039:
8040: 2009-09-08 misha
8041:
8042: * operators.txt: - changes in file.save and string.save were added
8043:
8044: * tests/: 230.html, 230.txt: - tests for checking options in
8045: file.save and string.save were added
8046:
8047: * src/main/pa_request.C: - http headers names, which are passed to
8048: SAPI::add_header_attribute are lowercased now (it'll be
8049: capitalized in that method)
8050:
8051: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
8052: classes/string.C: - file_write accepts Request_charsets and asked
8053: charset and cound transcode content before writing - string.save
8054: and file.save have option $.charset now
8055:
8056: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
8057: classes/xdoc.C: - file_write accepts Request_charsets and asked
8058: charset and cound transcode content before writing
8059:
8060: * src/include/pa_exception.h: - new exception comment string was
8061: defined
8062:
8063: 2009-09-07 misha
8064:
8065: * src/main/compile.y: - grammar $name\ name stops now for regex
8066: sub-pattern\s
8067:
8068: 2009-09-04 misha
8069:
8070: * src/main/pa_http.C: - capitalization of http headers during
8071: file::load[http was implemented
8072:
8073: 2009-09-03 misha
8074:
8075: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
8076: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
8077: types/pa_vmail.C, targets/cgi/parser3.C,
8078: targets/isapi/parser3isapi.C: - back to storing response http
8079: headers in lowercase - capitalize them during output
8080:
8081: 2009-08-31 misha
8082:
8083: * src/classes/table.C: - allow call with any brackets (it could be
8084: useful in methods with explict result declaration)
8085:
8086: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
8087: correctly if $request:charset==koi8-r
8088:
8089: 2009-08-30 misha
8090:
8091: * src/: include/pa_common.h, main/pa_request.C: - http headers were
8092: changed: content-type => Content-type and so on
8093:
8094: * src/classes/file.C, src/include/pa_common.h,
8095: src/include/pa_request.h, src/main/pa_http.C,
8096: src/main/pa_request.C, src/types/pa_vcookie.C,
8097: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
8098: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
8099: tests/results/002.processed, tests/results/003.processed,
8100: tests/results/004.processed, tests/results/005.processed,
8101: tests/results/006.processed, tests/results/007.processed,
8102: tests/results/008.processed, tests/results/009.processed,
8103: tests/results/010.processed, tests/results/011.processed,
8104: tests/results/012.processed, tests/results/013.processed,
8105: tests/results/014.processed, tests/results/015.processed,
8106: tests/results/016.processed, tests/results/017.processed,
8107: tests/results/018.processed, tests/results/019.processed,
8108: tests/results/020.processed, tests/results/021.processed,
8109: tests/results/022.processed, tests/results/023.processed,
8110: tests/results/024.processed, tests/results/025.processed,
8111: tests/results/026.processed, tests/results/027.processed,
8112: tests/results/028.processed, tests/results/029.processed,
8113: tests/results/030.processed, tests/results/031.processed,
8114: tests/results/032.processed, tests/results/033.processed,
8115: tests/results/034.processed, tests/results/035.processed,
8116: tests/results/036.processed, tests/results/037.processed,
8117: tests/results/038.processed, tests/results/039.processed,
8118: tests/results/040.processed, tests/results/041.processed,
8119: tests/results/042.processed, tests/results/043.processed,
8120: tests/results/044.processed, tests/results/045.processed,
8121: tests/results/046.processed, tests/results/047.processed,
8122: tests/results/048.processed, tests/results/049.processed,
8123: tests/results/050.processed, tests/results/051.processed,
8124: tests/results/052.processed, tests/results/053.processed,
8125: tests/results/054.processed, tests/results/055.processed,
8126: tests/results/056.processed, tests/results/057.processed,
8127: tests/results/058.processed, tests/results/059.processed,
8128: tests/results/060.processed, tests/results/061.processed,
8129: tests/results/062.processed, tests/results/063.processed,
8130: tests/results/064.processed, tests/results/065.processed,
8131: tests/results/066.processed, tests/results/067.processed,
8132: tests/results/068.processed, tests/results/069.processed,
8133: tests/results/070.processed, tests/results/071.processed,
8134: tests/results/072.processed, tests/results/073.processed,
8135: tests/results/074.processed, tests/results/075.processed,
8136: tests/results/076.processed, tests/results/077.processed,
8137: tests/results/078.processed, tests/results/079.processed,
8138: tests/results/080.processed, tests/results/081.processed,
8139: tests/results/082.processed, tests/results/083.processed,
8140: tests/results/084.processed, tests/results/085.processed,
8141: tests/results/086.processed, tests/results/087.processed,
8142: tests/results/088.processed, tests/results/089.processed,
8143: tests/results/090.processed, tests/results/091.processed,
8144: tests/results/092.processed, tests/results/093.processed,
8145: tests/results/094.processed, tests/results/095.processed,
8146: tests/results/096.processed, tests/results/097.processed,
8147: tests/results/098.processed, tests/results/099.processed,
8148: tests/results/100.processed, tests/results/101.processed,
8149: tests/results/102.processed, tests/results/103.processed,
8150: tests/results/104.processed, tests/results/105.processed,
8151: tests/results/106.processed, tests/results/107.processed,
8152: tests/results/108.processed, tests/results/109.processed,
8153: tests/results/110.processed, tests/results/111.processed,
8154: tests/results/112.processed, tests/results/113.processed,
8155: tests/results/114.processed, tests/results/115.processed,
8156: tests/results/116.processed, tests/results/117.processed,
8157: tests/results/118.processed, tests/results/119.processed,
8158: tests/results/120.processed, tests/results/121.processed,
8159: tests/results/122.processed, tests/results/123.processed,
8160: tests/results/124.processed, tests/results/125.processed,
8161: tests/results/126.processed, tests/results/127.processed,
8162: tests/results/128.processed, tests/results/129.processed,
8163: tests/results/130.processed, tests/results/131.processed,
8164: tests/results/132.processed, tests/results/133.processed,
8165: tests/results/134.processed, tests/results/135.processed,
8166: tests/results/136.processed, tests/results/138.processed,
8167: tests/results/139.processed, tests/results/140.processed,
8168: tests/results/141.processed, tests/results/142.processed,
8169: tests/results/143.processed, tests/results/144.processed,
8170: tests/results/145.processed, tests/results/146.processed,
8171: tests/results/147.processed, tests/results/148.processed,
8172: tests/results/149.processed, tests/results/150.processed,
8173: tests/results/151.processed, tests/results/152.processed,
8174: tests/results/153.processed, tests/results/154.processed,
8175: tests/results/155.processed, tests/results/156.processed,
8176: tests/results/157.processed, tests/results/158.processed,
8177: tests/results/159.processed, tests/results/160.processed,
8178: tests/results/161.processed, tests/results/162.processed,
8179: tests/results/163.processed, tests/results/164.processed,
8180: tests/results/165.processed, tests/results/166.processed,
8181: tests/results/167.processed, tests/results/168.processed,
8182: tests/results/169.processed, tests/results/170.processed,
8183: tests/results/171.processed, tests/results/172.processed,
8184: tests/results/173.processed, tests/results/174.processed,
8185: tests/results/175.processed, tests/results/176.processed,
8186: tests/results/177.processed, tests/results/178.processed,
8187: tests/results/179.processed, tests/results/180.processed,
8188: tests/results/181.processed, tests/results/182.processed,
8189: tests/results/183.processed, tests/results/184.processed,
8190: tests/results/185.processed, tests/results/186.processed,
8191: tests/results/187.processed, tests/results/188.processed,
8192: tests/results/189.processed, tests/results/190.processed,
8193: tests/results/191.processed, tests/results/192.processed,
8194: tests/results/193.processed, tests/results/194.processed,
8195: tests/results/195.processed, tests/results/196.processed,
8196: tests/results/197.processed, tests/results/198.processed,
8197: tests/results/199.processed, tests/results/200.processed,
8198: tests/results/201.processed, tests/results/202.processed,
8199: tests/results/203.processed, tests/results/204.processed,
8200: tests/results/205.processed, tests/results/206.processed,
8201: tests/results/207.processed, tests/results/208.processed,
8202: tests/results/209.processed, tests/results/210.processed,
8203: tests/results/211.processed, tests/results/212.processed,
8204: tests/results/213.processed, tests/results/214.processed,
8205: tests/results/215.processed, tests/results/216.processed,
8206: tests/results/217.processed, tests/results/218.processed,
8207: tests/results/219.processed, tests/results/220.processed,
8208: tests/results/221.processed, tests/results/222.processed,
8209: tests/results/223.processed, tests/results/224.processed,
8210: tests/results/225.processed, tests/results/226.processed,
8211: tests/results/227.processed, tests/results/228.processed,
8212: tests/results/229.processed: - http headers were changed:
8213: content-type => Content-type and so on
8214:
8215: 2009-08-27 misha
8216:
8217: * src/: main/pa_random.C, include/pa_random.h,
8218: targets/cgi/parser3.C: - year was updated :)
8219:
8220: 2009-08-26 misha
8221:
8222: * tests/: 224.html, 224.p: - test for creating of parser object
8223: using constructor without params - little bugfix in test
8224:
8225: * src/main/compile_tools.h: - bugfix: should't call autouse while
8226: checking existed class while processing partial option
8227:
8228: * src/classes/reflection.C: - bugfix: core when creating object
8229: with reflection and constructor doesn't have params
8230:
8231: 2009-08-24 misha
8232:
8233: * tests/229.html: - tests for checking the number of parameters
8234: were added
8235:
8236: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
8237: number of method's parameters wasn't checked correctly (the bug
8238: was introduced in 3.4.0)
8239:
8240: 2009-08-22 misha
8241:
8242: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
8243: transcoded, but tainted pieces are escaped only when
8244: content-type==url-encoding
8245:
8246: * tests/228.html: - test for checking
8247: ^file::load[http://...;$.body[]]
8248:
8249: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
8250: post charset was too early (charsets is empty at this moment)
8251:
8252: 2009-08-21 misha
8253:
8254: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
8255: main/untaint.C: - some fixes with transcode+untaint
8256:
8257: 2009-08-15 misha
8258:
8259: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
8260: was increaced to 100 (was 50)
8261:
8262: * tests/227.html: - test for checking overriding properties in
8263: static classes was added
8264:
8265: * tests/: 226.html, 226.p: - test for @autoload[] was added
8266:
8267: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
8268: main/execute.C, main/pa_request.C, classes/reflection.C: -
8269: autouse was implemented
8270:
8271: 2009-08-14 misha
8272:
8273: * src/classes/reflection.C: - outdated checkout was removed
8274:
8275: * src/classes/reflection.C: - optimization - method ^dynamical was
8276: added.
8277:
8278: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
8279: types/pa_vstateless_class.h, main/execute.C: - optimization
8280:
8281: * src/types/pa_vclass.C: - exception if base on sytem class
8282:
8283: 2009-08-12 misha
8284:
8285: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
8286: pa_vstateless_class.h: - little optimisation
8287:
8288: 2009-08-11 misha
8289:
8290: * tests/224.html: - method_params => method_info - checking for
8291: $.inherited
8292:
8293: * src/classes/reflection.C, operators.txt: - method method_params
8294: was renamed to method_info and now it returns class name, if
8295: method was defined in ancestor
8296:
8297: * tests/225.html: - tests for cheching properties in hierarhical
8298: classes were added
8299:
8300: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
8301: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8302: main/compile.y, main/execute.C, classes/classes.C: - problems
8303: with properties in new classes implementation were fixed
8304:
8305: 2009-08-10 misha
8306:
8307: * src/main/execute.C: - now constructor shouldn't be defined in
8308: class. it could be defined in parent.
8309:
8310: 2009-08-09 misha
8311:
8312: * src/classes/reflection.C: - ^reflection:methods doesn't return
8313: base's methods
8314:
8315: 2009-08-08 misha
8316:
8317: * src/: classes/classes.h, classes/date.C, classes/file.C,
8318: classes/form.C, classes/hash.C, classes/hashfile.C,
8319: classes/image.C, classes/mail.C, classes/op.C,
8320: classes/reflection.C, classes/regex.C, classes/string.C,
8321: classes/table.C, classes/xdoc.C, classes/xnode.C,
8322: classes/xnode.h, include/pa_hash.h, main/execute.C,
8323: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
8324: types/pa_method.h, types/pa_property.h, types/pa_value.C,
8325: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8326: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8327: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
8328: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
8329: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
8330: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
8331: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
8332: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
8333: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
8334: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8335: types/pa_vresponse.C, types/pa_vresponse.h,
8336: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8337: types/pa_vstateless_object.h, types/pa_vstatus.C,
8338: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
8339: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
8340: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
8341: types/pa_wwrapper.h, types/types.vcproj: - new classes
8342: implementation
8343:
8344: * buildall-with-xml, buildall-without-xml: - gc has a bug if
8345: USE_MUNMAP is used. so it is disabled as a workaround.
8346:
8347: 2009-08-05 misha
8348:
8349: * src/: main/pa_common.C, include/pa_common.h: - not needed
8350: parameter was removed
8351:
8352: * src/main/pa_http.C: - bugfix: error was during detecting
8353: content-type of file which was loaded by http
8354:
8355: 2009-08-01 misha
8356:
8357: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
8358: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
8359: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
8360: can't be disabled with defines any longer
8361:
8362: 2009-07-29 misha
8363:
8364: * src/classes/reflection.C, tests/results/224.processed: - for
8365: native methods with any call type now returned empty call_type
8366: value
8367:
8368: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8369: classes/table.C, include/pa_hash.h, include/pa_request.h,
8370: main/pa_request.C: - break in cycles was optimized
8371:
8372: * INSTALL: - more defines were described
8373:
8374: 2009-07-28 misha
8375:
8376: * operators.txt: - some changes in information about reflection
8377: class
8378:
8379: * tests/: 224.html, 224.p: - tests for reflection class
8380:
8381: * src/classes/reflection.C: - some bugs were fixed, method classes
8382: was added, refactoring
8383:
8384: 2009-07-26 misha
8385:
8386: * src/classes/classes.vcproj: - reflection class wass added to
8387: project
8388:
8389: * operators.txt: - information about reflection class was added
8390:
8391: * src/classes/reflection.C: - class was redesigned
8392:
8393: 2009-07-24 misha
8394:
8395: * src/classes/: Makefile.am, reflection.C: - class reflection was
8396: added
8397:
8398: * src/types/pa_vstateless_class.h: - method for reflection method's
8399: in classes was added
8400:
8401: 2009-07-22 misha
8402:
8403: * src/main/compile_tools.h: - bugfix: $object.$var was
8404: over-optimized. it failed if $object1.$object2.field
8405:
8406: 2009-07-16 misha
8407:
8408: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
8409: lib/cord/cordxtra.c, lib/cord/include/cord.h,
8410: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
8411: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
8412: one more arg: length of cord
8413:
8414: 2009-07-15 misha
8415:
8416: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
8417: tainted in ^file::load[http://...;$.cookies[]]
8418:
8419: * src/classes/: op.C, regex.C, string.C: - new string with
8420: exception was used
8421:
8422: * src/include/pa_exception.h: - new string with exception was added
8423:
8424: * tests/223.html: - test for checking cookie-encoding during
8425: ^file::load[http was added
8426:
8427: * tests/: 221.html, 222.html: - tests for checking type of
8428: $table.fields.field were added
8429:
8430: * src/types/pa_vtable.C: - not used var decl was removed
8431:
8432: * src/include/pa_string.h: - use cached string length in Body::mid.
8433: it improves speed of match with brackets in pattern
8434:
8435: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
8436: outside
8437:
8438: 2009-07-14 misha
8439:
8440: * src/types/pa_vtable.C: - $table.fields.a return string even if
8441: column is empty (sometime returned void) - $table.fields was
8442: added for nameless tables
8443:
8444: * src/targets/cgi/getopt.c: - one warning resolved
8445:
8446: * src/main/pa_string.C: - potentian bug fixed
8447:
8448: * src/classes/op.C: - small optimization in taint/untaint
8449:
8450: 2009-07-13 misha
8451:
8452: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
8453: added
8454:
8455: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
8456: souldn't add the attribut to output
8457:
8458: 2009-07-11 misha
8459:
8460: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8461: stack size was increaced to 2MB (default=1MB)
8462:
8463: 2009-07-08 misha
8464:
8465: * src/main/pa_string.C: - link to UTF-8 description was added
8466:
8467: * src/include/pa_hash.h: - hash keeps element's order in more
8468: places (ex: ._keys[])
8469:
8470: * tests/220.html: - test for checking order of elements in hash in
8471: foreach was added
8472:
8473: * tests/172.html: - small changes in printing hash
8474:
8475: * tests/129.html: - small changes in printing hash
8476:
8477: * src/: include/pa_common.h, include/pa_hash.h,
8478: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
8479: types/pa_vmethod_frame.h: - hash now keeps order of elements
8480:
8481: * tests/014.html: - small changes in printing hash
8482:
8483: 2009-07-07 misha
8484:
8485: * src/classes/op.C: - new taint language "parser-code" was added
8486:
8487: * tests/219.html: - test for auto untaint parser code in process
8488: was added
8489:
8490: * src/classes/op.C: - tainted pieces in body of process are
8491: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
8492:
8493: * src/: include/pa_string.h, main/untaint.C: - new language
8494: L_PARSER_CODE for auto-untaint in process was added
8495:
8496: * src/: classes/file.C, classes/hash.C, classes/image.C,
8497: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
8498: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
8499: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
8500: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
8501: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
8502: code cleanup
8503:
8504: 2009-07-06 misha
8505:
8506: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
8507: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
8508: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8509:
8510: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
8511: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
8512: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
8513: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
8514: should be used
8515:
8516: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
8517: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
8518: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
8519: untaint_cstr[m] should be used
8520:
8521: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
8522: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8523:
8524: * tests/218.html: - test for checking automatic file-spec-taint was
8525: added
8526:
8527: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
8528: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
8529: classes/file.C, classes/hash.C, classes/image.C,
8530: classes/string.C, classes/table.C, classes/void.C,
8531: classes/xdoc.C: - optimizations and simplification of
8532: string.cstr(...)
8533:
8534: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
8535: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
8536: - optimizations and simplification of string.cstr(...)
8537:
8538: 2009-07-04 misha
8539:
8540: * tests/217.html: - test for recursion detection was added
8541:
8542: * src/: types/types.vcproj, main/main.vcproj,
8543: classes/classes.vcproj, targets/cgi/parser3.vcproj,
8544: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
8545: from .vcproj
8546:
8547: * src/types/pa_wwrapper.h: - dynamic_cast was removed
8548:
8549: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
8550: uploading files and case-insensitive http-method were added
8551:
8552: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
8553: tainted pattern in ^file:list[] was added
8554:
8555: 2009-07-03 misha
8556:
8557: * src/: classes/classes.vcproj, main/main.vcproj,
8558: types/types.vcproj, targets/cgi/parser3.vcproj,
8559: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
8560: for dynamic_cast) - little options changes
8561:
8562: * src/main/pa_http.C: - file::load[http works now with uploading
8563: files _and_ changing $.charset
8564:
8565: 2009-06-29 misha
8566:
8567: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8568: while creating pattern
8569:
8570: 2009-06-25 misha
8571:
8572: * src/classes/image.C, operators.txt: - options' names for
8573: ^image.font were changed to $.space, $.width and $spacing -
8574: default space width now == gif's width
8575:
8576: 2009-06-24 misha
8577:
8578: * tests/215.html: - tests for $file.mode were added
8579:
8580: * operators.txt: - added info about $file.mode and changes in
8581: ^image.font[
8582:
8583: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8584: param now could be omited - third param now could be hash (with
8585: all widths options: $.space-width, $.letter-width) - it's
8586: possible to specify tracking ($.letter-space)
8587:
8588: * src/classes/file.C: - file objects now could have mode field
8589: (text|binary)
8590:
8591: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8592:
8593: 2009-06-23 misha
8594:
8595: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8596: trim can work with utf-8 chars now
8597:
8598: 2009-06-20 misha
8599:
8600: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8601: was implemented
8602:
8603: * src/classes/table.C: - string length cacheing was implemented
8604:
8605: * src/include/pa_string.h: - string length cacheing was implemented
8606:
8607: 2009-06-17 misha
8608:
8609: * src/main/execute.C: - value param was removed from
8610: WContext::WContext
8611:
8612: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8613: pa_wwrapper.h: - value param was removed from WContext::WContext
8614: - field wcontext was removed from VCodeFrame (using fparent
8615: instead)
8616:
8617: * tests/214.html: - test with hash copying
8618:
8619: 2009-06-16 misha
8620:
8621: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8622: strings doesn't work in expression anymore
8623:
8624: * src/main/execute.C: - less calls for get_constructing() - little
8625: refactoring
8626:
8627: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8628: include/pa_request.h: - less calls for get_constructing()
8629:
8630: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8631: introduced with OPTIMIZE_SINGLE_STRING optimization
8632:
8633: 2009-06-14 misha
8634:
8635: * src/: classes/date.C, classes/file.C, classes/hash.C,
8636: classes/hashfile.C, classes/image.C, classes/regex.C,
8637: classes/table.C, classes/xdoc.C, classes/xnode.h,
8638: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8639: types/pa_vstateless_class.h, main/execute.C: - create object for
8640: storing object's fields only for parser objects
8641:
8642: 2009-06-13 misha
8643:
8644: * buildall-with-xml, buildall-without-xml: - new option was added
8645: for building GC (it slightly reduces memory usage)
8646:
8647: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8648: single string write
8649:
8650: * src/main/execute.C: - bytecode optimization of ^class:constructor
8651: - optimization of single string write
8652:
8653: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8654: - bytecode optimization of ^class:constructor
8655:
8656: 2009-06-09 misha
8657:
8658: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8659: main (better compatibility)
8660:
8661: 2009-06-08 misha
8662:
8663: * src/main/compile.y: - I've forgot to commit it :(
8664:
8665: 2009-06-07 misha
8666:
8667: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
8668: WITH_READ and WITH_ROOT
8669:
8670: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8671: execute.C: - more optimizations for WITH_SELF, WITH_READ and
8672: WITH_ROOT - little refactoring
8673:
8674: 2009-06-06 misha
8675:
8676: * tests/213.html: - tests for 3rd match string-param were added
8677:
8678: * src/classes/string.C: - 3rd match param could be string now
8679:
8680: * src/main/: compile.y, compile_tools.h: - much more bytecode's
8681: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
8682: GET_OBJECT_ELEMENT
8683:
8684: 2009-06-05 misha
8685:
8686: * src/main/pa_http.C: - bugfix: content-length was not calculated
8687: if $.body was specified
8688:
8689: 2009-06-04 misha
8690:
8691: * src/classes/op.C: - optimizing write_assign_lang in connect
8692:
8693: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
8694:
8695: * src/main/execute.C: - little refactoring - optimizing
8696: write_assign_lang in taint/untaint
8697:
8698: * src/include/pa_opcode.h: - little refactoring
8699:
8700: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
8701: main/compile_tools.h, main/execute.C: - optimizations for
8702: $self.field, ^self.method, $self.field[...] and $self.field(...)
8703: were added
8704:
8705: 2009-06-03 misha
8706:
8707: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
8708:
8709: 2009-06-02 misha
8710:
8711: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
8712: include/pa_opcode.h: - refactoring in last optimizations
8713: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
8714: now but code is much easy and it is ready for further
8715: improvements.
8716:
8717: 2009-05-27 misha
8718:
8719: * src/: types/pa_junction.h, types/pa_vjunction.C,
8720: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
8721: changed in destructing junctions
8722:
8723: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
8724: String:Body
8725:
8726: 2009-05-26 misha
8727:
8728: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
8729: one method detect_charset was deleted - bug was fixed in this
8730: method (error while detecting charset in content_type withot last
8731: ';')
8732:
8733: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
8734: once
8735:
8736: 2009-05-25 misha
8737:
8738: * src/classes/file.C: - bugfix: file::exec didn't work after
8739: optimizing of helper_length
8740:
8741: 2009-05-24 misha
8742:
8743: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
8744: were added - little refactoring
8745:
8746: * src/main/execute.C: - core while printing in debug log
8747: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
8748: optimisations were added
8749:
8750: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
8751: were added
8752:
8753: 2009-05-23 misha
8754:
8755: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
8756: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
8757: CORD_cat optimization
8758:
8759: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
8760: - call constr optimisation under separate define now
8761:
8762: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
8763: in $b should be string, not void
8764:
8765: * src/main/compile.y: - little fix for rem-cut optimisation
8766:
8767: * src/: include/pa_opcode.h, main/compile_tools.C,
8768: main/compile_tools.h, main/execute.C: - optimisations for
8769: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
8770:
8771: * INSTALL: - description of some #defined were added
8772:
8773: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
8774: before 1st access (memory usage is reduced if don't access to
8775: .text field)
8776:
8777: * src/include/pa_array.h: - array grows step now not static (it
8778: reduces numbers of reallocs)
8779:
8780: 2009-05-20 misha
8781:
8782: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
8783: $.b(2), $c[d] and $.e[f] was added
8784:
8785: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8786: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
8787: $.e[f] was added
8788:
8789: * src/main/execute.C: - debug printing moved in defines
8790:
8791: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
8792: and little refactoring for OP_GET_OBJECT_ELEMENT +
8793: OP_GET_OBJECT_VAR_ELEMENT optimisation
8794:
8795: 2009-05-19 misha
8796:
8797: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8798: execute.C: - $a.$b & ^a.$b bytecode optimisation
8799:
8800: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
8801: ^a.$b optimisation)
8802:
8803: * src/main/compile.y: - compiler now generate new opcodes:
8804: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
8805: ^a.b - compiler now cut off ^rem{ with all content ; any number
8806: of params }
8807:
8808: * src/main/execute.C: - code for handle new opcodes
8809: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
8810:
8811: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
8812: added for LA2V and LA2S
8813:
8814: * src/include/pa_opcode.h: - new defines which can be used for
8815: disable some bytecode optimisation and new opcodes were added
8816:
8817: 2009-05-17 misha
8818:
8819: * src/lib/cord/cordxtra.c: - bugfix.
8820:
8821: * tests/212.html: - .size[] and .study_size[] were added to tests
8822:
8823: * operators.txt: - info about regex class was added
8824:
8825: * tests/212.html: - tests for regex class were added
8826:
8827: 2009-05-16 misha
8828:
8829: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
8830: gc7.1
8831:
8832: * tests/022.html: - test for ^file:list[path;] (empty second param)
8833: was added
8834:
8835: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
8836: param) should work
8837:
8838: 2009-05-15 misha
8839:
8840: * src/classes/table.C: - automatically disable stringstream usage
8841: on freebsd4
8842:
8843: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
8844: scope
8845:
8846: * tests/211.html: - test with different types of access to hash was
8847: added
8848:
8849: * tests/210.html: - test which checks for loosing tainting in
8850: hash's keys was added
8851:
8852: * tests/208.html: - some parser work added. or stime == 0 %-)
8853:
8854: * src/lib/cord/cordbscs.c: - little hack was added to cord
8855:
8856: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
8857:
8858: * src/include/pa_version.h, configure.in: - moko have made a lot of
8859: optimisations for increacing version number more dramatically :)
8860:
8861: * src/classes/date.C: - little refactoring: use constructor which
8862: accepts formated string
8863:
8864: * src/: include/pa_string.h, main/pa_string.C: - String constructor
8865: which can print formatted string was added
8866:
8867: 2009-05-14 misha
8868:
8869: * src/include/pa_string.h: - type was fixed
8870:
8871: * src/: classes/hashfile.C, classes/op.C,
8872: include/pa_cache_managers.h, include/pa_charset.h,
8873: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
8874: include/pa_request.h, include/pa_sql_driver_manager.h,
8875: include/pa_string.h, include/pa_stylesheet_manager.h,
8876: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
8877: main/pa_charsets.C, main/pa_string.C,
8878: main/pa_stylesheet_connection.C, types/pa_value.h,
8879: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8880: types/pa_vobject.C, types/pa_vstateless_class.C,
8881: types/pa_vstateless_class.h: - hash_code caching was implemented
8882: (seaches should be faster now)
8883:
8884: * src/: classes/file.C, classes/hash.C, classes/image.C,
8885: classes/string.C, classes/table.C, include/pa_string.h,
8886: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
8887: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
8888: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
8889: types/pa_vrequest.C: - String constructors don't have that stupid
8890: true/false param which means 'tainted'. they accept lang instead.
8891:
8892: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
8893: with OPTIMIZE_RESULT
8894:
8895: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
8896: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
8897:
8898: 2009-05-13 misha
8899:
8900: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
8901: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
8902: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8903: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
8904: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
8905: main/pa_common.C, main/pa_request.C, main/pa_string.C,
8906: include/pa_string.h, classes/date.C, classes/file.C,
8907: classes/hash.C, classes/image.C, classes/string.C,
8908: classes/table.C, classes/xdoc.C: - result optimisation -
8909: helper_length parameter removed from string constructors
8910:
8911: 2009-05-11 misha
8912:
8913: * tests/209.html: - tests for ^hash::create[hash] were added
8914:
8915: * tests/208.html: - tests for $status:rusage, $status:memory,
8916: ^memory:compact[] were added
8917:
8918: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
8919: log10 were added
8920:
8921: * tests/206.html: - test for try with finally was added
8922:
8923: 2009-05-10 misha
8924:
8925: * tests/205.html: - test for ^file::create[...] was added
8926:
8927: * tests/204.html: - test for ^response:clear[] was added
8928:
8929: * tests/038.html: - tests for trigonometric functions were added
8930:
8931: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
8932: added - more tests for .add, .sub, .union, .intersects and
8933: .intersections
8934:
8935: * tests/065.html: - test for ^file:dirname was added
8936:
8937: * tests/030.html: - test for $cookie:fields was added
8938:
8939: * tests/203.html: - test for ^h._keys[column name] was added
8940:
8941: * tests/201.html: - tests for .trim were added
8942:
8943: * tests/202.html: - tests for last-day,
8944: date:calendar[type](YYYY;MM;DD) were added
8945:
8946: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8947: .offset[type](N) were added
8948:
8949: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8950: and .pos[c](N) were added
8951:
8952: * tests/141.html: - test for math:sha1 was added
8953:
8954: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8955:
8956: 2009-05-09 misha
8957:
8958: * src/main/compile.y: - rollback
8959:
8960: 2009-05-05 misha
8961:
8962: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8963: replaced by is_empty()
8964:
8965: * src/: include/pa_string.h, main/pa_charset.C: - little
8966: optimisation: somewhere length() was replaced by is_empty()
8967:
8968: * src/classes/table.C: - little optimisation: somewhere length()
8969: was replaced by is_empty()
8970:
8971: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8972: classes/op.C, classes/table.C, main/pa_exception.C: - little
8973: optimisation: somewhere length() was replaced by is_empty()
8974:
8975: 2009-05-04 misha
8976:
8977: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8978: types/pa_vstateless_class.h, main/execute.C,
8979: include/pa_request.h, classes/hash.C, classes/op.C,
8980: classes/table.C: - more optimisations were added: some operators
8981: don't switch write context anylonger
8982:
8983: 2009-05-01 misha
8984:
8985: * src/main/compile.y: - slightly more opcode optimisations for
8986: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8987:
8988: * src/main/execute.C: - simplifying process for getters
8989:
8990: 2009-04-30 misha
8991:
8992: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8993:
8994: * tests/results/199.processed: - test for checking $result into
8995: ^rem was added
8996:
8997: * tests/199.html: - test for checking $result into ^rem was added
8998:
8999: * tests/: 022.html, 096.html: - þsort after :list was asses (on
9000: some OS it returns list in different order)
9001:
9002: * src/: include/pa_array.h, include/pa_request.h,
9003: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
9004: changes in stack impl - get_element() optimisation: 3rd param
9005: removed - bugfix: problems with reading empty input param -
9006: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
9007:
9008: * tests/results/198.processed: - test for reading empty local var
9009: was added
9010:
9011: * tests/198.html: - test for reading empty local var was added
9012:
9013: 2009-04-29 misha
9014:
9015: * src/main/compile.y: - bugfix: couldn't compile because
9016: OP_VALUE__GET_ELEMENT should be unde #ifdef
9017:
9018: * src/: include/pa_array.h, include/pa_opcode.h,
9019: include/pa_request.h, main/compile.y, main/execute.C,
9020: main/pa_request.C, types/pa_vmethod_frame.C,
9021: types/pa_vmethod_frame.h: - we can work without opcode
9022: OP_STORE_PARAM, so it was removed
9023:
9024: 2009-04-28 misha
9025:
9026: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
9027: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
9028: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
9029: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
9030: 4.
9031: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
9032:
9033: * src/main/compile_tools.h: - new stuff for op-codes optimisation
9034:
9035: * src/: main/pa_string.C, classes/string.C: - !length() =>
9036: is_empty()
9037:
9038: 2009-04-27 misha
9039:
9040: * src/types/pa_vregex.h: - back explicit vars initialisation
9041:
9042: 2009-04-24 misha
9043:
9044: * src/classes/string.C: - ups. typo fixed
9045:
9046: * src/main/execute.C: - more replacements '*new VBool' to
9047: 'VBool::get' - checks for ^break[], ^continue[] and
9048: parser.interrupted were optimised
9049:
9050: * src/classes/string.C: - number of params.count() calls was
9051: slightly reduced
9052:
9053: 2009-04-23 misha
9054:
9055: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9056: make it x64 friendly
9057:
9058: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9059: parser is x64 friendly now
9060:
9061: 2009-04-22 misha
9062:
9063: * src/types/pa_vhashfile.C: - coder friendly exception about
9064: exceeding record size was added
9065:
9066: * src/classes/file.C: - use vregex object instead of direct calls
9067: methods from pcre lib
9068:
9069: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
9070: classes/string.C: - use vregex object instead of direct calls
9071: methods from pcre lib
9072:
9073: * src/: include/pa_common.h, main/pa_common.C: - method
9074: print_pcre_exec_error_text was moved to class vregex
9075:
9076: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
9077: was added
9078:
9079: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
9080: - class vregex was added
9081:
9082: 2009-04-21 misha
9083:
9084: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
9085:
9086: * src/: types/pa_junction.h, types/pa_value.C,
9087: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
9088: types/pa_wcontext.h, main/execute.C, classes/op.C: -
9089: junction-optimisation (destructors)
9090:
9091: * src/include/pa_array.h: - free under if now
9092:
9093: 2009-04-19 misha
9094:
9095: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
9096:
9097: 2009-04-18 misha
9098:
9099: * src/include/pa_version.h:
9100: :q :
9101:
9102: CV:
9103: ----------------------------------------------------------------------
9104:
9105: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
9106: refactoring
9107:
9108: * src/: include/pa_array.h, include/pa_hash.h,
9109: types/pa_vmethod_frame.h: - destructors under #ifdef now
9110:
9111: * src/include/pa_memory.h: - define for using destructors was added
9112:
9113: * src/: types/pa_method.h, types/pa_vstateless_class.C,
9114: main/execute.C: - some junctions will be cached now
9115:
9116: * src/include/pa_hash.h: - hash destructor frees pairs now
9117:
9118: * src/include/pa_array.h: - inline was added to destructor
9119:
9120: * src/types/pa_method.h: - comment was changed
9121:
9122: 2009-04-17 misha
9123:
9124: * src/: include/pa_array.h, include/pa_hash.h,
9125: types/pa_vmethod_frame.h: - destructors were added
9126:
9127: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
9128: renamed to always_use_result
9129:
9130: * src/main/: compile.y, compile_tools.h: - rollback changes in
9131: compiler: full backward compatibility is better
9132:
9133: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
9134: result in var's hash
9135:
9136: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9137: optimisation in method_frame
9138:
9139: * src/include/pa_array.h: - optimisation in array (allocate
9140: elements only when needed)
9141:
9142: * src/types/pa_vresponse.C: - check for $response:headers field
9143: before looking at custom fields
9144:
9145: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
9146: not needed to check existance var with name 'result' in var's
9147: hash
9148:
9149: * src/main/compile.y: - compiler was changed: now it detects
9150: writings to $result and set flag writo_to_result in method
9151:
9152: * src/classes/string.C: - little optimisation: no needed to write
9153: number with lang
9154:
9155: * src/main/pa_charset.C: - methods readChar and skipChar which is
9156: used for read utf8-strings were renamed - is_escaped was renamed
9157: to isEscaped (to the same name convention)
9158:
9159: * src/: types/pa_method.h, main/compile_tools.h: - flag
9160: write_to_result added. compiler get this info from code.
9161:
9162: 2009-04-16 misha
9163:
9164: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
9165: String only before 1st write
9166:
9167: * src/include/pa_string.h: - not needed template removed
9168:
9169: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
9170: types/pa_vjunction.C, types/pa_vproperty.C,
9171: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
9172: main/pa_request.C, classes/bool.C, classes/double.C,
9173: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
9174: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
9175: bool objects)
9176:
9177: 2009-04-15 misha
9178:
9179: * src/lib/cord/cordxtra.c: - more optimisation
9180:
9181: * src/: include/pa_string.h, main/untaint.C: - String::append
9182: optimisation
9183:
9184: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
9185: then get and can sometime be used)
9186:
9187: * src/main/pa_string.C: - String::length optimisation
9188:
9189: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
9190: these methods read different strings
9191:
9192: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9193: fresult_initial_void removed + some optimisation - if $result
9194: defined we don't write to context anymore
9195:
9196: * src/main/pa_charset.C: - readChar => skipChar (in this place we
9197: need just skip char)
9198:
9199: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9200: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
9201: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
9202:
9203: * src/types/pa_vvoid.h: - added get() method for retreave one
9204: instance
9205:
9206: 2009-04-11 misha
9207:
9208: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
9209:
9210: * tests/197.html: - test for parser://test in xml was added
9211:
9212: * src/classes/string.C: - small optimisation
9213:
9214: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
9215: optimisation
9216:
9217: 2009-04-10 misha
9218:
9219: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
9220: to pcre-7.8
9221:
9222: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
9223:
9224: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
9225: added
9226:
9227: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
9228: $request:CLASS_NAME were added
9229:
9230: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
9231: were added
9232:
9233: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
9234: $env:CLASS_NAME were added
9235:
9236: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
9237: '@todo' now
9238:
9239: * src/targets/cgi/parser3.C: - size_t -> int for calming down
9240: compirer
9241:
9242: * src/main/pa_string.C: - little code cleanup
9243:
9244: * src/main/pa_common.C: - describe one more UTF-8 related error
9245: during PCRE compile/execute
9246:
9247: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
9248: normalizing todo-comments: '@todo' now
9249:
9250: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
9251:
9252: * src/main/pa_charset.C: - type changed for making compiler happy
9253:
9254: 2009-03-10 misha
9255:
9256: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
9257: in main()
9258:
9259: 2009-02-01 misha
9260:
9261: * src/main/pa_http.C: - bugfix: double CRLF before the end of
9262: boundary
9263:
9264: 2009-01-25 misha
9265:
9266: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
9267:
9268: * src/classes/file.C: - more changes for parsing different number
9269: of params for file::load
9270:
9271: * tests/193.html: - tests for exception while base64-decode binary
9272: to string was added
9273:
9274: * tests/192.html: - tests for file::load with different number of
9275: options
9276:
9277: * src/classes/math.C: - ups. forgot '+1'
9278:
9279: * src/: classes/table.C, classes/file.C, include/pa_common.h,
9280: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
9281: main/pa_http.C: - ^file::load[...;http://...;] now can post files
9282: (new option $.encode[multipart-form/data] should be specified) -
9283: $.method[] option for file::load now is not case-sensitive
9284:
9285: * src/: include/pa_string.h, main/untaint.C: - for file post the
9286: new taint language L_FILE_POST was added
9287:
9288: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
9289: main/main.vcproj, classes/math.C, include/Makefile.am: - some
9290: stuff was moved to separate files
9291:
9292: 2009-01-23 misha
9293:
9294: * src/classes/math.C: - little optimisation in ^math:sha1[] -
9295: spaces to tabs were converted
9296:
9297: 2009-01-12 misha
9298:
9299: * src/main/pa_http.C: - value of $.method[] option force uppercased
9300: now
9301:
9302: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
9303: types/pa_vform.C, types/pa_vmail.C: - some constants changed
9304: their names
9305:
9306: * src/main/pa_common.C: - changes in formating
9307:
9308: * src/: classes/file.C, main/pa_http.C: - some constants changed
9309: their names
9310:
9311: * src/include/pa_http.h: - some spaces were converted to tabs
9312:
9313: * src/include/pa_common.h: - some constants changed their names
9314:
9315: * src/classes/file.C: - fixed 4-th paramether for file::load -
9316: little code rewriting
9317:
9318: * src/types/pa_vfile.C: - little code rewriting
9319:
9320: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
9321: types/pa_value.h: - some formating changes
9322:
9323: * src/include/pa_common.h: - some formating spaces transformed to
9324: tabs
9325:
9326: * src/classes/string.C: - exception while base64-decode binary to a
9327: string
9328:
9329: 2009-01-11 misha
9330:
9331: * configure.in: - version changed to 3.3.1b
9332:
9333: 2008-09-05 misha
9334:
9335: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
9336: release_3_3_0 on 2008-09-05 10:59:35 +0000
9337:
9338: 2008-09-04 misha
9339:
9340: * tests/: 130.html, 131.html: - these exceptions not typeless
9341: anymore
9342:
9343: * src/classes/op.C: - exception with 'invalid taint language' not
9344: typeless anylonger
9345:
9346: * src/classes/image.C: - some exceptions while operations with
9347: image not typeless anymore
9348:
9349: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9350: main/pa_exec.C, main/pa_http.C: - some exceptions while
9351: operations with files not typeless anymore
9352:
9353: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9354: types/pa_vdate.h: - exceptions while checking date range not
9355: typeless anymore
9356:
9357: * src/include/pa_exception.h: - exception type string for invalid
9358: date range was added
9359:
9360: 2008-09-03 misha
9361:
9362: * src/: classes/file.C, main/pa_string.C: - exception while pce
9363: operations not typeless anymore
9364:
9365: * src/include/pa_exception.h: - exception type for pce operations
9366: was added
9367:
9368: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
9369: and .CLASS_NAME insite classes
9370:
9371: * src/classes/table.C: - don't save table header whiile
9372: ^table.save[append;filename] if file exists
9373:
9374: 2008-09-02 misha
9375:
9376: * src/main/compile.y, src/main/compile_tools.h,
9377: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
9378: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
9379: renamed to partial and it login changed: we must mark class as
9380: partial for allow their modifications in future.
9381:
9382: 2008-08-29 misha
9383:
9384: * tests/results/022.processed: - testing taint[regex] in mask for
9385: file:list
9386:
9387: * tests/022.html: - testing taint[regex] in mask for file:list
9388:
9389: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
9390: for file:list was added
9391:
9392: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
9393: file:list
9394:
9395: 2008-08-26 misha
9396:
9397: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
9398: last derived object
9399:
9400: * src/classes/image.C: - many strings "image.format" replaced by
9401: IMAGE_FORMAT constant string - handle GPS info while parse exif -
9402: understand some more exif tags
9403:
9404: * src/include/pa_exception.h: - string "image.format" was added
9405:
9406: 2008-08-21 misha
9407:
9408: * src/: main/pa_string.C, classes/file.C: - use method for print
9409: pcre_exec text error
9410:
9411: * src/main/pa_common.C: - method for print pcre_exec text error was
9412: added
9413:
9414: * src/include/pa_common.h: - method declaration for print pcre_exec
9415: text error was added
9416:
9417: 2008-08-19 misha
9418:
9419: * src/main/execute.C: - bugfix: opcodes must be in separate
9420: namespace while debug execution as well
9421:
9422: * tests/: 015.html, results/015.processed: - test for escaping some
9423: parser chars was added
9424:
9425: 2008-08-18 misha
9426:
9427: * tests/: 190.html, 190.p, results/190.processed: - test for
9428: $caller.self.field + default getter in one class was added
9429:
9430: * tests/: 189.html, results/189.processed: - test for
9431: ^date::create[date object]
9432:
9433: * tests/: 188.html, results/188.processed: - tests for match with
9434: UTF-8 strings
9435:
9436: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
9437: ^string.match[]
9438:
9439: * ChangeLog: - parser 3.3.0 beta13
9440:
9441: 2008-08-15 misha
9442:
1.116 moko 9443: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
9444: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
9445: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
9446: dftables.c: - old PCRE files removed
1.95 moko 9447:
9448: * src/lib/pcre/config.h: - configuration for PCRE library
9449:
9450: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9451: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
9452:
9453: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
9454: library and set flag UTF8 if $request:charset is UTF-8
9455:
9456: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
9457: include/pa_config_fixed.h: - moved to new PCRE library
9458:
9459: * src/: main/main.vcproj, types/types.vcproj,
9460: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
9461: win32\pcre instead of parser3\src\lib\pcre
9462:
9463: * src/: include/pa_opcode.h, include/pa_operation.h,
9464: main/compile.C, main/compile.y, main/compile_tools.C,
9465: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
9466: opcodes were moved to separate namespace
9467:
9468: 2008-08-14 misha
9469:
9470: * src/types/pa_vstateless_class.C: - newline at the end missed
9471:
9472: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
9473: tainting
9474:
9475: 2008-08-11 misha
9476:
9477: * tests/: 187.html, 187.p, results/187.processed: - tests for
9478: $caller.self, $caller.self.field and $caller.self.field[value]
9479: were added
9480:
9481: * src/types/pa_vmethod_frame.h: - still need to check 'self'
9482: runtime as well (for $caller.self)
9483:
9484: 2008-07-25 misha
9485:
9486: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
9487: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
9488: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
9489: tests with international characters
9490:
9491: 2008-07-23 misha
9492:
9493: * src/main/pa_http.C: - escape $cookies as %uXXXX while
9494: file::load[...;http://
9495:
9496: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
9497: now everywhere in separate namespace
9498:
9499: * src/types/pa_vmethod_frame.h: - looking for caller before looking
9500: for vars
9501:
9502: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
9503: can be escaped by '^'
9504:
9505: 2008-07-22 misha
9506:
9507: * src/classes/string.C, tests/186.html: - names changes:
9508: escape=>js-escape, unescape=>js-unescape
9509:
9510: 2008-07-21 misha
9511:
9512: * tests/results/186.processed: - test for string escape/unescape
9513:
9514: * tests/186.html: - test for string escape/unescape
9515:
9516: * src/classes/string.C: - string has escape and unescape methods
9517: now
9518:
9519: * src/: include/pa_string.h, main/pa_string.C: - escape method was
9520: added
9521:
9522: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
9523: method-layers added (with different params)
9524:
9525: 2008-07-18 misha
9526:
9527: * tests/results/185.processed: - test for ^str.pos[substr](offset)
9528: was added
9529:
9530: * tests/185.html: - test for ^str.pos[sub](offset) added
9531:
9532: * src/classes/string.C, src/classes/void.C, operators.txt: -
9533: ^string.pos[substr](offset) -- 2nd param accepted now
9534:
9535: * src/main/pa_string.C: - .pos works fine with offset for utf-8
9536: strings
9537:
9538: 2008-07-17 misha
9539:
9540: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9541: helper length added for mid for small optimisation
9542:
9543: 2008-07-16 misha
9544:
9545: * tests/: 185.html, results/185.processed: - tests for
9546: length/left/right/mid/pos with utf-8 strings
9547:
9548: * src/classes/string.C: - left/right/mid/length/pos works fine for
9549: utf-8 strings
9550:
9551: * src/main/untaint.C: - comments removed
9552:
9553: * src/: include/pa_string.h, main/pa_string.C,
9554: include/pa_charset.h, main/pa_charset.C: - methods for working
9555: with pos/mid for strings in utf-8 were added
9556:
9557: 2008-07-15 misha
9558:
9559: * tests/: 184.html, results/184.processed: - test for case body as
9560: expression: $var(^switch(1){^case(1)(true)..})
9561:
9562: * src/classes/op.C: - case body can be expression now:
9563: $var(^switch(1){^case(1)(true)..})
9564:
9565: * tests/: results/183.processed, 183.html: - added test for testing
9566: new cookie encoding (%uXXXX)
9567:
9568: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9569: decoding for backward compatibility they decoded from %XX in
9570: request:charset too
9571:
9572: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9573: - cookie class now decode cookies before first access after last
9574: request:charset changing (as form class).
9575:
9576: * src/main/pa_charset.C: - added method escape for escaping cookies
9577: as %uXXXX - before transcode calculate required space for dest
9578: string. it reduce mem usage for transcode
9579:
9580: * src/include/pa_charset.h: - added method escape for escaping
9581: cookies as %uXXXX
9582:
9583: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9584: was added. will used for escaping cookies as %uXXXX
9585:
9586: * src/include/pa_common.h: - escape method has new option for skip
9587: converting '+' to a space char
9588:
9589: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9590: transcode - escape method has new option for skip converting '+'
9591: to a space char
9592:
9593: 2008-07-08 misha
9594:
9595: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9596: (no UE if more then 1 case matches anylonger) - optimization:
9597: doing searching.as_string() || searching.as_double() only once
9598:
9599: 2008-07-04 misha
9600:
9601: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9602: now ^date::create[date object] works
9603:
9604: * src/classes/string.C: - left and right added as aliases for start
9605: and end in ^string.trim[]
9606:
9607: 2008-07-03 misha
9608:
9609: * src/classes/file.C: - allow $.limit for file::sql as well
9610:
9611: * src/classes/file.C: - allow $.offset option for file::sql - force
9612: send limit=1 to query for use sql specifics authomatically
9613:
9614: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9615: if $.limit value if empty. autoconvert it as everywere
9616:
9617: 2008-07-02 misha
9618:
9619: * configure.in: - time to change version number to 3.3.0 %-)
9620:
9621: * src/include/pa_version.h: - time to change version number to
9622: 3.3.0 %-)
9623:
9624: 2008-06-26 misha
9625:
9626: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9627: $.limit(0) fixes
9628:
9629: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9630: - $.limit(0) fixes
9631:
9632: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9633: new API)
9634:
9635: * src/: include/pa_sql_driver_manager.h,
9636: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9637: classes/op.C: - document_root added
9638:
9639: * src/main/compile.tab.C: - error message was changed
9640:
9641: 2008-06-25 misha
9642:
9643: * src/main/compile.y: - error message was changed
9644:
9645: 2008-06-24 misha
9646:
9647: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9648:
9649: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9650: tests for @OPTIONS\nappend
9651:
9652: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9653:
9654: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9655:
9656: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9657:
9658: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9659: compile.y
9660:
9661: 2008-06-17 misha
9662:
9663: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9664: compilation: ^if(default){true. it's incorrect. must be
9665: exception}
9666:
9667: 2008-06-16 misha
9668:
9669: * tests/: 181.ent, 181.html, results/181.processed: - test for
9670: checking external reference loading with 'http://localhost'
9671: prefix while creating xdoc
9672:
9673: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
9674: ^math:long2ip[] and ^math:ip2long[]
9675:
9676: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
9677: added which use scalar stateless class method when user object
9678: used in scalar context - use get_scalar_value when user object
9679: requested in scalar context
9680:
9681: * src/main/pa_common.C: - size must be int but not size_t or we
9682: can't compare with 0 sprintf result
9683:
9684: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9685: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
9686: with internal switch between local/global vars
9687:
9688: * src/types/pa_vclass.C: - register scalar if method @GET[] was
9689: specified
9690:
9691: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
9692: pa_vstateless_object.h: - stateless class and object now has
9693: private scalar field and getter/setter for working with it
9694:
9695: * src/classes/math.C: - methods math:long2ip & math:ip2long were
9696: moved to inet static class
9697:
9698: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
9699: class added (^inet:aton[IP], ^inet:ntoa(number))
9700:
9701: * tests/: 180.html, results/180.processed: - tests for
9702: ^math:long2ip(long) and ^math:ip2long[IP]
9703:
9704: * src/classes/math.C: - ^math:ip2long[IP] added
9705:
9706: 2008-06-11 misha
9707:
9708: * src/main/pa_xml_io.C: - use file_read_text again because of we
9709: need cut BOM code and remove DOS newline chars. but don't
9710: transcode it anyway.
9711:
9712: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
9713: main/pa_http.C: - option for disable transcoding while file_read
9714: and file_read_text added
9715:
9716: 2008-06-10 misha
9717:
9718: * tests/: 179.html, 179.p, results/179.processed: - test for many
9719: classes in 1 file
9720:
9721: * src/main/: compile.C, compile_tools.h: - compile return list of
9722: classes now.
9723:
9724: * src/main/: compile.y, compile.tab.C: - compile return list of
9725: classes now. internals.
9726:
9727: * src/main/pa_request.C: - compile return list of classes now. try
9728: call @conf and @auto for each returned class
9729:
9730: * src/include/pa_request.h: - compile return list of classes now
9731:
9732: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
9733: return list of classes when compile buf)
9734:
9735: 2008-06-07 misha
9736:
9737: * src/main/pa_request.C: - constructing VRequest object with 3rd
9738: param -- form
9739:
9740: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
9741: 3rd param: form. needed for get post_charset
9742:
9743: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
9744: added
9745:
9746: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
9747: types/pa_vform.C, types/pa_vform.h: - some polish
9748:
9749: 2008-06-06 misha
9750:
9751: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
9752: charset and decode chars from it but not from response:charset
9753:
9754: * src/main/pa_http.C: - detect_charset moved out of here
9755:
9756: * src/: include/pa_common.h, main/pa_common.C: - more helpers
9757: methods moved here - unescape_chars accepn one charset now
9758:
9759: * src/main/pa_http.C: - new constants used - don't allow
9760: $.content-type in ^file::load[;http://;$.method[POST]] - add
9761: charset info while ^file::load[;http://;$.method[POST]] - option
9762: $.omit-post-charset(true) added to ^file::load[;http://] for
9763: disabling charset during post
9764:
9765: * src/types/pa_vform.C: - new constants used
9766:
9767: * src/include/pa_common.h: - some constants were added
9768:
9769: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
9770: instead of StrEqNc
9771:
9772: * src/main/pa_common.C: - new method for caseless search
9773: c-substring in c-string - use isxdigit instead of is_hex_digit
9774:
9775: * src/include/pa_common.h: - new method for caseless search
9776: c-substring in c-string
9777:
9778: 2008-06-05 misha
9779:
9780: * tests/results/178.processed: - test for testing default getter
9781:
9782: * tests/178.html: - test for testing default getter
9783:
9784: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
9785: for test for testing default getter
9786:
9787: * src/main/execute.C: - default getter soul
9788:
9789: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
9790: requested objects' field not found
9791:
9792: * src/types/pa_vclass.C: - register default getter if defined - get
9793: default getter if requested field not found
9794:
9795: * src/types/pa_vstateless_object.h: - method get_default_getter was
9796: added
9797:
9798: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9799: pointer to default getter and methods for get/set it were added
9800:
9801: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
9802: auto_name field (for default getter)
9803:
9804: 2008-06-04 misha
9805:
9806: * src/main/pa_xml_io.C: - load external xml in binary mode (no
9807: transcoding, no cutting BOM code, no fixing line breaks) and get
9808: it to libxml "as is"
9809:
9810: 2008-06-03 misha
9811:
9812: * src/main/pa_common.C: - use store_Char instead of
9813: transcodeCharFromUTF8
9814:
9815: * src/: include/pa_charset.h, main/pa_charset.C: - method
9816: store_Char added, transcodeCharFromUTF8 -- removed
9817:
9818: 2008-06-02 misha
9819:
9820: * tests/: results/177.processed, 177.html: - test for checking
9821: .[acm]date after local ^file::load[] was added
9822:
9823: * tests/: results/176.processed, 176.html: - test for checking
9824: @OPTION\locals + @method[vars][locals] added
9825:
9826: * tests/results/auto.p: - CLASS_PATH specified for checking use
9827:
9828: 2008-05-30 misha
9829:
9830: * src/main/: compile.y, compile.tab.C: - changes in compiler:
9831: @OPTION\nlocals + @method[vars][;locals;] were added
9832:
9833: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
9834: moved to separate method op_code - switch from VMethodFrame to
9835: VMethodFrameGlobal + VMethodFrameLocal
9836:
9837: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
9838: was moved to separate method op_code
9839:
9840: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
9841: VMethodFrame now
9842:
9843: * src/types/pa_vstateless_class.h: - stateless class have bool flag
9844: all_vars_local as well
9845:
9846: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
9847: pa_vmethod_frame_local.h, Makefile.am: - who children for
9848: VMethodFrame were added: one (global) works as VMethodFrame
9849: before and second (local) write all vars in self vars scope
9850:
9851: * src/types/pa_method.h: - method has bool flag all_vars_local now
9852:
9853: 2008-05-29 misha
9854:
9855: * tests/: 129.html, results/129.processed: - more tests for
9856: ^table.hash[]
9857:
9858: * src/classes/hash.C: - ^hash::sql has a new option:
9859: $.type[hash|string|table] as ^table.hash[] one.
9860:
9861: * src/classes/op.C: - ^try has 3rd param now: finally code which
9862: executed anyway after try or catch section
9863:
9864: 2008-05-27 misha
9865:
9866: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
9867: must not fail if $.distinct(1) wasn't specified
9868:
9869: 2008-05-26 misha
9870:
9871: * src/classes/op.C: - allow ^throw[my type]
9872:
9873: 2008-05-22 misha
9874:
9875: * configure.in, configure: - version number updated to 3.2.4b
9876:
9877: * src/classes/: op.C, string.C: - trim format string before
9878: eval/format
9879:
9880: * tests/: results/175.processed, 175.html: - more tests for
9881: different format strings in .format[]
9882:
9883: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
9884: as well (not only %XX)
9885:
9886: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
9887: charset specified - checks for format before print number
9888: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
9889: (instead of tabs) removed
9890:
9891: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
9892: charset specified
9893:
9894: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
9895: char in requested charset from utf code was added
9896:
9897: 2008-05-19 misha
9898:
9899: * tests/: 174.html, results/174.processed: - test for
9900: ^hashfile.cleanup[] added
9901:
9902: * src/classes/hashfile.C: - optimization: don't create any key or
9903: value variable if it's name weren't specified
9904: (^hf.foreach[;v]{...})
9905:
9906: 2008-05-16 misha
9907:
9908: * src/classes/hash.C: - optimization: don't create any key variable
9909: if variable name wasn't specified (^h.foreach[;v]{...})
9910:
9911: 2008-05-15 misha
9912:
9913: * src/classes/op.C: - small changes
9914:
9915: * src/classes/hashfile.C: - code reformating (as hash.foreach)
9916:
9917: * src/classes/hash.C: - calculate var_context once before foreach
9918:
9919: 2008-05-14 misha
9920:
9921: * src/classes/hashfile.C: - incorrect vars context calculation for
9922: ^hashfile.foreach[;]{} fixed
9923:
9924: * src/classes/: hash.C, table.C: - little optimisation
9925:
9926: * src/classes/file.C: - bugfix: double absolute path while loading
9927: file
9928:
9929: * tests/: 174.html, results/174.processed: - tests for hashfile
9930: were added
9931:
9932: * buildall-with-xml: - moving to libxslt 1.1.24
9933:
9934: 2008-04-30 misha
9935:
9936: * src/classes/file.C: - stat file while loading (local only) so
9937: .adate, .mdate and .cdate available without additional ::stat
9938:
9939: 2008-04-28 misha
9940:
9941: * src/classes/file.C: - $.name and $.content-type available for
9942: stated file
9943:
9944: 2008-04-14 misha
9945:
9946: * src/targets/cgi/parser3.C: - new year in copyright %-)
9947:
9948: * src/include/pa_version.h: - new version number in head
9949:
9950: 2008-04-10 misha
9951:
9952: * tests/: 080.html, results/080.processed: - cut '0' from
9953: exponential part because of on diff OS it differ (20 or 020 for
9954: ex)
9955:
9956: * tests/: 119.html, results/119.processed: - check for encoding
9957: while creating xdoc
9958:
9959: 2008-04-09 misha
9960:
9961: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9962:
9963: * src/main/pa_common.C: - comment added
9964:
9965: * src/classes/date.C: - little refactoring
9966:
9967: 2008-04-07 misha
9968:
9969: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9970: style of ^table.save[]: prepare one big string and sabe it at
9971: once. it's safe on freebsd 4.x but use much more memory.
9972:
9973: * buildall-with-xml, buildall-without-xml: - option
9974: --disable-stringstream added (under comment. use it on freebsd
9975: 4.x)
9976:
9977: 2008-02-22 misha
9978:
9979: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9980: specified together in file::load[;http] - get back transcoding
9981: $.body[] in file::load[;http]
9982:
9983: 2008-02-21 misha
9984:
9985: * src/classes/date.C: - ^date.gmt-string[] was added
9986:
9987: * src/types/pa_value.C: - method for output date in RFC 822 format
9988: moved to pa_common.h
9989:
9990: * src/include/pa_common.h: - method for output date in RFC 822
9991: format moved here from pa_value.C
9992:
9993: * src/types/pa_vmail.C: - fixed core in sending mail with
9994: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9995:
9996: 2008-02-20 misha
9997:
9998: * src/main/pa_http.C: - transcode $.headers before escaping into
9999: specified charset while ^file::load[...;http://...] (L_URI
10000: instead of L_HTTP_HEADER) - $.cookies param available in
10001: ^file::load[;http://...] now (but we don't parse set-cookies from
10002: response yet) (cookies not transcoded as common $cookies)
10003:
10004: 2008-02-19 misha
10005:
10006: * src/main/pa_request.C: - rollback: we mustn't force taint
10007: $response:field values because in this case
10008: $response:locateion[http://...] don't works.
10009:
10010: 2008-02-15 misha
10011:
10012: * src/classes/op.C: - little refactoring
10013:
10014: * src/main/pa_http.C: - taint names of $.headers for load[;http
10015:
10016: * src/main/pa_request.C: - force taint values of $response:field
10017:
10018: 2008-02-14 misha
10019:
10020: * src/main/pa_request.C: - $response:field transcoded to
10021: $response:charset before escaping now
10022:
10023: * src/main/pa_http.C: - some outdated comments removed
10024:
10025: * src/classes/date.C: - lastdat -> last-day
10026:
10027: * src/classes/date.C: - ^date:lastday(year;month) and
10028: ^date.lastday[] were added - little code refactoring - comments
10029: changes
10030:
10031: * tests/: 159.html, results/159.processed: - test for number of
10032: days in February
10033:
10034: * src/types/pa_value.C: - fixes in code formatting
10035:
10036: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
10037: and comments
10038:
10039: 2008-02-13 misha
10040:
10041: * src/main/pa_common.C: - bugfix for february at leap year
10042:
10043: 2008-01-28 misha
10044:
10045: * tests/: 160.html, results/160.processed: - more test for cache
10046: added
10047:
10048: * src/classes/op.C: - bugfix: cache body executed twice if contains
10049: unhandled exception
10050:
10051: 2008-01-25 misha
10052:
10053: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
10054: bug when hashfile became inavailable after memory:compact)
10055:
10056: * src/lib/sdbm/apr_strings.C: - +arp_malloc
10057:
10058: 2008-01-22 misha
10059:
10060: * src/classes/table.C: - little refactiring and exception texts
10061: changes in method ^table.hash[]
10062:
10063: * src/types/pa_vcookie.C: - link to cookie specification changed
10064:
10065: 2008-01-21 misha
10066:
10067: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
10068: file::exec/cgi
10069:
10070: * src/classes/file.C: - bugfix: core while processing headers if
10071: executed cgi script don't return content
10072:
10073: 2008-01-18 misha
10074:
10075: * buildall-with-xml: - move to libxml2 version 2.6.31
10076:
10077: * src/include/pa_version.h, configure.in: - version number updated
10078: to '3.2.3b'
10079:
10080: 2007-12-28 misha
10081:
10082: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
10083: hash.contains
10084:
10085: 2007-12-27 misha
10086:
10087: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10088: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
10089: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
10090: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
10091: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10092: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
10093: src/targets/cgi/parser3.vcproj,
10094: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
10095: back to VS2003 because of Apache 1.3 module can't work if it was
10096: built in VS 2005. with cgi all file so VS2003 project files can
10097: be easy converted to the new format.
10098:
10099: 2007-12-04 misha
10100:
10101: * src/types/pa_vcode_frame.h: - changes in comment
10102:
10103: 2007-11-29 misha
10104:
10105: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
10106: intercept strings any longer
10107:
10108: * tests/: 173.html, results/173.processed: - tests for
10109: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
10110: but not in main code frame
10111:
10112: * tests/: 172.html, results/172.processed: - more tests for pass
10113: objects from code frames
10114:
10115: 2007-11-27 misha
10116:
10117: * tests/: 152.html, results/152.processed: - tests for converting
10118: strings 'true'/'false' to bool were added
10119:
10120: * tests/152.html: - added checks for converting strings
10121: 'true'/'false' to bool
10122:
10123: * src/classes/string.C: - ^srting.bool[] now can convert to bool
10124: not only strings with numbers but with values 'true'/'false' as
10125: well
10126:
10127: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
10128: for parser3.log increased
10129:
10130: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
10131:
10132: * src/include/pa_common.h: - remove_crlf return cstring size now
10133:
10134: * src/include/pa_types.h: - constant with buffer size for
10135: parser3.log added
10136:
10137: 2007-11-16 misha
10138:
10139: * tests/cat.sh: - script for tests for file::exec/cgi
10140:
10141: * tests/171.html: - tests for file::exec/cgi
10142:
10143: * tests/results/171.processed: - tests results for file::exec/cgi
10144:
10145: 2007-11-15 misha
10146:
10147: * src/main/pa_exec.C: - fixed incorrect exec code for unix
10148:
10149: * src/classes/file.C: - .body must be set before analyzing cgi
10150: headers
10151:
10152: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
10153: only if exec/cgi return anything.
10154:
10155: 2007-11-14 misha
10156:
10157: * operators.txt: - info about new text|binary option for
10158: file::exec/cgi was added
10159:
10160: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
10161: ^file:exec[[text|binary];script;...]
10162:
10163: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
10164: classes/string.C, classes/table.C: - more text strings moved to
10165: the one place
10166:
10167: 2007-11-09 misha
10168:
10169: * src/types/pa_vrequest.C: - $request:argv must be taint
10170:
10171: * ChangeLog: - $request:argv [patch from Sumo]
10172:
10173: * operators.txt: - $request:argv
10174:
10175: * src/: include/pa_request_info.h, types/pa_vrequest.C,
10176: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
10177:
10178: 2007-10-25 misha
10179:
10180: * buildall-with-xml, buildall-without-xml: - options preparations
10181: for ./configure rewrited
10182:
10183: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
10184: error occure in unhandled_exception finally fixed
10185:
10186: 2007-10-23 misha
10187:
10188: * tests/: 170.html, results/170.processed: - test for
10189: @method[][result]
10190:
10191: * operators.txt: - added info about node.prefix and
10192: node.namespaceURI
10193:
10194: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
10195:
10196: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
10197: added for node and attribute
10198:
10199: 2007-10-22 misha
10200:
10201: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
10202:
10203: * src/main/pa_request.C: - added const content-transfer-encoding
10204:
10205: * src/include/pa_request.h: - added const content-transfer-encoding
10206: - ups. constants must be in lowercase (for search)
10207:
10208: * src/types/pa_vmail.C: - more constants used -
10209: content-transfer-encoding: 8bit added
10210:
10211: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
10212:
10213: * src/include/pa_request.h: - more constants
10214:
10215: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
10216: ommit anymore if $.content-disposition was specified - little
10217: refactoring
10218:
10219: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
10220:
10221: 2007-10-17 misha
10222:
10223: * operators.txt: - info about
10224: table::create[nameless]{data}[>options<] was added
10225:
10226: * src/main/: compile.tab.C, compile.y: - if error occure while
10227: compile method don't put this method in methods table anymore.
10228: in other case the parser coredumped if @unhandled_exception
10229: method can't be compiled because of parser.compile error.
10230:
10231: * src/main/execute.C: - little code reformating
10232:
10233: * src/main/pa_request.C: - little code reformating - comment
10234: changed
10235:
10236: 2007-10-16 misha
10237:
10238: * tests/: 035.html, results/035.processed: - tests
10239: table::create[]{}[options] added
10240:
10241: * src/classes/table.C: - table::create[]{} now accept 3rd param:
10242: options (only $.seperator[] yet)
10243:
10244: 2007-10-10 misha
10245:
10246: * src/classes/table.C: - some contstants moved to pa_common.h -
10247: some code changes
10248:
10249: 2007-10-02 misha
10250:
10251: * src/main/pa_uue.C: - memory usage during uuencode reduced more
10252: then three time as much. but base64 encoding method still use
10253: less memory anyway.
10254:
10255: 2007-09-17 misha
10256:
10257: * operators.txt: - added info about $cookie:fields
10258:
10259: * src/types/pa_vcookie.C: - $cookie:fields available now
10260:
10261: * src/classes/hash.C: - some stuff for use with .for_each moved to
10262: common
10263:
10264: * src/include/pa_common.h: - some stuff for use with .for_each
10265: moved here
10266:
10267: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
10268:
10269: 2007-09-14 misha
10270:
10271: * buildall-with-xml: - new xml libs again =)
10272:
10273: 2007-08-28 misha
10274:
10275: * operators.txt: - texts about ^table.columns[[column name]] and
10276: ^string.split[...][v][column name] were added
10277:
10278: * tests/: 168.html, 169.html, results/168.processed,
10279: results/169.processed: - tests for ^table.columns[[column name]]
10280: and ^string.split[...][v][column name] were added
10281:
10282: * src/classes/table.C: - new option ^table.columns[[column name]]
10283: was added
10284:
10285: * src/classes/string.C: - new option ^string.split[...;v;[column
10286: name]]
10287:
10288: * src/include/pa_exception.h: - error text message for
10289: ^hash._keys[], ^table.columns[] and ^string.split[]
10290:
10291: 2007-08-27 misha
10292:
10293: * src/main/untaint.C: - try to fix coredump on unix if print to
10294: body ^taint[sql][something] outside of connect
10295:
10296: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
10297: outside of connect
10298:
10299: * buildall-with-xml, buildall-without-xml: - strip parser3 was
10300: added (commented by default)
10301:
10302: 2007-08-20 misha
10303:
10304: * operators.txt: - comment about new method ^node.hasAttributes[]
10305: was added
10306:
10307: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
10308: duplicated exception text strings were removed
10309:
10310: * src/include/pa_exception.h: - more exception text strings moved
10311: here
10312:
10313: * src/classes/table.C: - some duplicate exceptions' text strings
10314: removed
10315:
10316: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
10317: xdoc.C, xnode.C: - some duplicate exceptions' text strings
10318: removed
10319:
10320: * src/include/pa_exception.h: - some exception text strings movet
10321: to pa_exception
10322:
10323: * tests/: 149.html, results/149.processed: - test for
10324: ^xnode.hasAttributes[] was added - some code changes
10325:
10326: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
10327: added
10328:
10329: 2007-08-17 misha
10330:
10331: * tests/: results/006.processed, results/059.processed, 006.html,
10332: 059.html: - more tests for match
10333:
10334: * tests/: 129.html, results/129.processed: - tests for
10335: ^table.hash[...][$.type[string|hash|table]] added
10336:
10337: * src/targets/cgi/parser3.C: - little syntax changes
10338:
10339: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
10340: syntax changes
10341:
10342: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
10343: messages in parser3.log switched off by default. If someone
10344: really still need it: use $SIGPIPE(1)
10345:
10346: 2007-08-08 misha
10347:
10348: * buildall-with-xml, buildall-without-xml: - remove libs source
10349: files by default since now
10350:
10351: 2007-08-07 misha
10352:
10353: * buildall-without-xml: - some option syntax changes
10354:
10355: * buildall-with-xml: - compile libxml2 without http support - some
10356: option syntax changes
10357:
10358: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
10359:
10360: 2007-08-06 misha
10361:
10362: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
10363:
10364: * tests/: 160.html, results/160.processed: - cache test was
10365: rewrited
10366:
10367: 2007-07-06 misha
10368:
10369: * tests/: 153.html, results/153.processed: - added test for
10370: ^math:sha1[string]
10371:
10372: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
10373: transcoded
10374:
10375: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
10376: were added
10377:
10378: 2007-06-28 misha
10379:
10380: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
10381: some incorrect chars
10382:
10383: 2007-06-19 misha
10384:
10385: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
10386: were moved on top because of gcc 4 had a problems during
10387: building.
10388:
10389: 2007-06-18 misha
10390:
10391: * tests/results/019.processed: - new image commited
10392:
10393: 2007-06-09 misha
10394:
10395: * src/classes/: op.C, table.C: - in while and table.select method
10396: as_expression used now
10397:
10398: * src/types/pa_vmethod_frame.h: - method as_expression was added
10399:
10400: 2007-06-08 misha
10401:
10402: * tests/: 166.html, results/166.processed: - test for
10403: ^match[...][n]
10404:
10405: * tests/: 165.html, results/165.processed: - tests for loops
10406:
10407: * src/lib/cord/include/private/cord_pos.h: - back to origin value
10408: because of no speed/memory optimisation but some proglems with
10409: long cycles occure
10410:
10411: 2007-06-06 misha
10412:
10413: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
10414: ^table.select(true) and ^table.select(1) didn't works because of
10415: awaiting junction-param only. fixed.
10416:
10417: 2007-05-24 misha
10418:
10419: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
10420: with 0.5 secs interval
10421:
10422: * src/classes/op.C: - cache was rewrited. I hope it works with
10423: locking system now on unix
10424:
10425: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
10426: system locks which wait till other threads release it but try get
10427: lock, if fail wait 1 sec and make 10 attempts.
10428:
10429: * src/include/pa_os.h: - consts for blocking locks + some comments
10430: were added
10431:
10432: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
10433: opening files
10434:
10435: * src/classes/table.C: - changes in includes. if unclude <sstream>
10436: after our classes on unix it can't be build
10437:
10438: * src/types/pa_vhashfile.C: - not needed code removed
10439:
10440: 2007-05-23 misha
10441:
10442: * src/: classes/file.C, classes/op.C, main/pa_common.C,
10443: include/pa_common.h: - cosmetic changes
10444:
10445: 2007-05-18 misha
10446:
10447: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
10448: often. it's give some speed increasing
10449:
10450: * tests/results/160.processed: - returned time corrected
10451:
10452: * tests/160.html: - time increased because on unix 1 mean nothing
10453: :(
10454:
10455: * operators.txt: - added info about ^hash.contain[key]
10456:
10457: * src/classes/hash.C: - added ^hash.contain[key]
10458:
10459: * src/include/pa_hash.h: - added method for checking key exists in
10460: hash
10461:
10462: 2007-05-07 misha
10463:
10464: * src/include/pa_string.h: - was compilation error during build on
10465: freebsd4
10466:
10467: 2007-05-03 misha
10468:
10469: * src/classes/table.C: - option $.type[hash|string|table] was added
10470: for ^table.hash[]
10471:
10472: * src/classes/file.C: - comment removed
10473:
10474: 2007-04-26 misha
10475:
10476: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
10477: real files doesn't opened in place anymore
10478:
10479: 2007-04-24 misha
10480:
10481: * src/classes/math.C: - I thought one more time and remove lg(N) :)
10482:
10483: * src/include/pa_exception.h: "static" removed
10484:
10485: 2007-04-23 misha
10486:
10487: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
10488:
10489: * src/classes/math.C: added: - ^math:ln(N) (the same as
10490: ^math:log(N)) - ^math:lg(N)
10491:
10492: * tests/: 097.html, results/097.processed: - charsets converstion
10493: during ^file::load[text;http://...] added
10494:
10495: * tests/: 164.html, results/164.processed: - check for set expires
10496: as a date
10497:
10498: * tests/: 164.html, results/164.processed: - test for hashfile
10499:
10500: * src/classes/hashfile.C: - little comment changes
10501:
10502: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
10503: access
10504:
10505: * src/: classes/date.C, classes/double.C, classes/file.C,
10506: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
10507: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
10508: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
10509: classes/xnode.h, include/pa_request.h, main/execute.C,
10510: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10511: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
10512: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
10513: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
10514: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
10515: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
10516: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10517: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
10518: "parser.runtime" strings were removed
10519:
10520: * src/classes/hashfile.C: - with .clear[] called files_delete()
10521: now.
10522:
10523: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
10524:
10525: * src/include/pa_exception.h: - string constant with
10526: "parser.runtime" text was added
10527:
10528: 2007-04-20 misha
10529:
10530: * operators.txt: - some comments changing
10531:
10532: * operators.txt: - added info about .^hashfile.release[],
10533: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
10534:
10535: * configure: =cheching for unsetenv
10536:
10537: * src/classes/hashfile.C: - ^hashfile.cleanup[],
10538: ^hashfile.release[] were added
10539:
10540: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
10541: ^string.match[][] understand new option now: return number of
10542: matches but not table wit results
10543:
10544: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
10545: reopen now
10546:
10547: * src/classes/op.C: - bug. must be false
10548:
10549: * configure.in: - checking for unsetenv was added
10550:
10551: * src/types/pa_vform.C: - some comments
10552:
10553: 2007-04-18 misha
10554:
10555: * buildall-with-xml: moving to libxml2-2.6.28
10556:
10557: * buildall-with-xml, buildall-without-xml: added commented lines
10558: with --disable-safe-mode option
10559:
10560: * operators.txt: - info about $form:files
10561:
10562: 2007-04-17 misha
10563:
10564: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10565: $form:files was added
10566:
10567: * tests/: 163.html, results/163.processed: removing auto format
10568:
10569: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10570:
10571: 2007-04-16 misha
10572:
10573: * tests/: 163.html, results/163.processed: - test for .int[],
10574: floor, round, ceiling and .format[]
10575:
10576: * src/classes/file.C: - little optimization for getting args in
10577: exec/cgi
10578:
10579: 2007-04-13 misha
10580:
10581: * src/classes/file.C: - arguments for file::exec/cgi can be
10582: specified now as s table with one column
10583:
10584: 2007-03-27 misha
10585:
10586: * tests/: 162.html, results/162.processed: - test for
10587: ^table.select(^condition[$t])
10588:
10589: * tests/results/auto.p: - load windows-1251 charset for some tests
10590:
10591: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10592:
10593: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10594: 161_windows1251.txt: - added test for
10595: ^file::load[text;/local/file.txt;$.charset[...]]
10596:
10597: * tests/: results/013.processed, 013.html: - added test for
10598: checking $._default value while hash modifications
10599:
10600: * tests/: 160.html, results/160.processed: - add test for
10601: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10602:
10603: 2007-03-22 misha
10604:
10605: * src/include/pa_common.h: - "charset" string defined for
10606: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10607:
10608: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10609: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10610: added - not needed transcodes were removed from
10611: ^file::load[...;http://...]
10612:
10613: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10614: added
10615:
10616: * src/classes/date.C: - date.week was fixed
10617:
10618: * operators.txt: - added info about date.weekyear
10619:
10620: * tests/: 159.html, results/159.processed: - tests for date.week
10621: and date.weekyear added
10622:
10623: 2007-03-15 misha
10624:
10625: * src/classes/table.C: - enclose column numbers for nameless tables
10626: as well
10627:
10628: 2007-03-14 misha
10629:
10630: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10631:
10632: * src/classes/table.C: - table.save optimization: now required much
10633: less memory
10634:
10635: 2007-03-13 misha
10636:
10637: * tests/results/: 158.processed, 158.processes: - tests for
10638: table.save/table.load
10639:
10640: * tests/: 158.html, results/158.processes: - tests for
10641: table.save/table.load
10642:
10643: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10644:
10645: * buildall-with-xml: - pattern needed now for building
10646:
10647: * tests/results/097.processed: - added test results for xdoc::load
10648: & xdoc::load[http://...]
10649:
10650: * tests/097.html: - added test for xdoc::load
10651:
10652: 2007-03-12 misha
10653:
10654: * tests/: 107.html, results/107.processed: - added test for xpath
10655: '//man'
10656:
10657: 2007-03-01 misha
10658:
10659: * tests/: 097.html, results/097.processed: - added test for
10660: creating xdoc from file
10661:
10662: * tests/: results/157.processed, 157.html: - added test for
10663: file:move
10664:
10665: 2007-02-28 misha
10666:
10667: * src/classes/xdoc.C: - another attempt
10668:
10669: * src/classes/xdoc.C: - roll back last changes for a while
10670:
10671: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
10672:
10673: * src/classes/file.C: - under lock we create non-exist dir anyway
10674:
10675: * tests/results/099.processed: - ever send content-disposition to
10676: client with file
10677:
10678: * tests/157.html: + test for file:copy
10679:
10680: 2007-02-26 misha
10681:
10682: * src/classes/file.C: - some similar strings moved to #define
10683: instead of to be copy/pasted many times
10684:
10685: * src/types/pa_vfile.h: - class name string ("file") moved to
10686: #define
10687:
10688: 2007-02-20 misha
10689:
10690: * configure.in: - added some strings for sqlite detection
10691:
10692: 2007-02-19 misha
10693:
10694: * operators.txt: - some comments changes
10695:
10696: * buildall-with-xml, buildall-without-xml: - some modifications
10697:
10698: 2007-02-17 misha
10699:
10700: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
10701:
10702: * src/main/pa_request.C: - damn, i forgot to commit it while I
10703: change console behaviour
10704:
10705: 2007-02-12 misha
10706:
10707: * src/targets/cgi/parser3.C: - don't print headers if
10708: $console:line[data] was used during cgi execution.
10709:
10710: * src/types/pa_vconsole.h: - console class have bool flag now which
10711: marked as 'true' if class was used.
10712:
10713: * tests/: 152.html, results/152.processed: - more types was added
10714: to test 152
10715:
10716: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
10717: adding 'bool' (^if($image){} caused exception)
10718:
10719: 2007-02-09 misha
10720:
10721: * tests/: 152.html, results/152.processed: - test alightly updated
10722:
10723: * tests/: 152.html, results/152.processed: - test rewrited
10724:
10725: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
10726: bugfix. I broke xdoc & xnode in expression
10727:
10728: 2007-02-08 misha
10729:
10730: * tests/: 152.html, results/152.processed: - add test for checking
10731: 'def' for void, string, bool, int & double
10732:
10733: 2007-02-07 misha
10734:
10735: * operators.txt: - ^file:base64[filespec] was added
10736:
10737: * tests/results/153.processed: - result test for
10738: ^file:base64[filespec] was updated
10739:
10740: * tests/153.html: - test for ^file:base64[filespec] was added
10741:
10742: * src/types/pa_vconsole.h: - little optimization
10743:
10744: * src/classes/file.C: - ^file:base64[filespec]
10745:
10746: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
10747:
10748: * src/include/pa_common.h: - declarations for
10749: ^file:base64[filespec]
10750:
10751: * src/types/pa_vcookie.C: - little optimization
10752:
10753: 2007-02-06 misha
10754:
10755: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
10756: were temporary commented
10757:
10758: * src/types/pa_vbool.h: - bugfix
10759:
10760: * tests/156.html: - added test for bool cookie
10761:
10762: * src/types/pa_vcookie.h: - not needed string "cookie" removed
10763:
10764: * tests/: 155.html, results/155.processed: - added test for check
10765: $.encloser[] option for table save/load
10766:
10767: * tests/: 153.html, 154.html, todo.txt: - two more tests added
10768:
10769: 2007-02-05 misha
10770:
10771: * tests/results/152.processed: - newline at the end was missed
10772:
10773: * tests/results/141.processed: - math:md5 must be lowercased
10774:
10775: * src/targets/cgi/parser3.C: - 2007 in help ;)
10776:
10777: 2007-02-03 misha
10778:
10779: * tests/results/: 150.processed, 151.processed, 152.processed: -
10780: test for bool added and some content length fixes
10781:
10782: * tests/152.html: - test for bool added
10783:
10784: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
10785:
10786: * operators.txt: - info bool class was added
10787:
1.116 moko 10788: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 10789: classes/classes.vcproj, classes/double.C, classes/int.C,
10790: classes/string.C, classes/void.C, classes/xnode.C,
10791: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
10792: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
10793: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
10794: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10795: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
10796: types/types.vcproj: - bool class was added
10797:
10798: * src/main/pa_request.C: - fix
10799:
10800: 2007-01-18 misha
10801:
10802: * src/: main/pa_string.C, classes/string.C: - return table during
10803: ^string.match[][] even if no matched found.
10804:
10805: 2006-12-20 misha
10806:
10807: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
10808: http://www.parser.ru/forum/?id=55598 ]
10809:
10810: 2006-12-19 misha
10811:
10812: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
10813: details: http://www.parser.ru/forum/?id=52359
10814:
10815: * src/main/pa_request.C: - always set content-disposition for
10816: $response:body[hash here]. more details:
10817: http://www.parser.ru/forum/?id=52130
10818:
10819: 2006-12-07 misha
10820:
10821: * operators.txt: - added info about bool params in cookie set
10822:
10823: * src/types/pa_vcookie.C: - bool param in cookies available now
10824: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
10825: ]
10826:
10827: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
10828: was added
10829:
10830: 2006-12-02 misha
10831:
10832: * src/classes/file.C: - file_block_read used instead of native read
10833:
10834: * src/main/pa_common.C: - added file_block_read with read error
10835: detection - file_block_read used instead of native read
10836:
10837: * src/include/pa_common.h: - added file_block_read declaration
10838:
10839: 2006-12-01 misha
10840:
10841: * operators.txt: - info about $var.CLASS_NAME was added
10842:
10843: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10844: $var.CLASS_NAME added
10845:
10846: * operators.txt: - added info about ^file:copy[]
10847:
10848: * src/classes/file.C: - ^file:copy[from;fo] was added
10849:
10850: 2006-11-20 misha
10851:
10852: * src/classes/date.C: - bug fix :)
10853:
10854: 2006-11-17 misha
10855:
10856: * src/include/pa_common.h: - array in crc32 calculation was changed
10857: to static
10858:
10859: * src/main/pa_common.C: - little optimization in getMonthDays -
10860: small changes in crc32 calculation
10861:
10862: * src/classes/date.C: - not needed code was removed
10863:
10864: 2006-11-16 misha
10865:
10866: * src/types/pa_vmail.C: - fix missed brakes
10867:
10868: * src/types/pa_vmail.C: - mail:send now set content-type:
10869: multipart/related instead of multipart/mixed if file have
10870: $.content-id[]
10871:
10872: 2006-11-15 misha
10873:
10874: * src/types/pa_vdouble.h: abs -> fabs
10875:
10876: 2006-11-14 misha
10877:
10878: * operators.txt: - added info about ^file.md5[] and
10879: ^file:md5[file-name]
10880:
10881: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
10882: added
10883:
10884: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
10885: FILE_BUFFER_SIZE
10886:
10887: * src/classes/math.C: - hex_string was moved to pa_common.h
10888:
10889: * src/include/pa_common.h: - hex_string was moved from math.C -
10890: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
10891:
10892: * src/types/pa_vdouble.h: - incorrect frac detection with negative
10893: values was fixed
10894:
10895: 2006-11-13 misha
10896:
10897: * operators.txt: - added info about ^math:crc32[string],
10898: ^file:crc32[file-name] & ^file.crc32[]
10899:
10900: * src/classes/math.C: - added ^math:crc32[string]
10901:
10902: * src/classes/file.C: - some comments were changed - added
10903: ^file:crc32[file-name] and ^file.crc32[]
10904:
10905: * src/: include/pa_common.h, main/pa_common.C: - some functions for
10906: crc32 calculation added
10907:
10908: 2006-11-03 misha
10909:
10910: * src/include/pa_array.h: - not needed variable removed
10911:
10912: * tests/: 150.html, 151.html, results/150.processed,
10913: results/151.processed: - 2 tests were added
10914:
10915: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
10916: with $.reverse(1) were fixed
10917:
10918: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
10919: query converted to $.charset during ^file::load[http://...]
10920:
10921: 2006-11-02 misha
10922:
10923: * src/include/pa_table.h: ups. forget '=' char
10924:
10925: * src/include/pa_table.h: - one more fix in
10926: .locate[...][$.reverse(1)]
10927:
10928: 2006-11-01 misha
10929:
10930: * src/classes/math.C: - bug fix, details:
10931: http://www.parser.ru/forum/?id=53360
10932:
10933: * src/include/pa_table.h: - bug fix during ^table.locate( condition
10934: false for all records )[$.reverse(1)]
10935:
10936: * src/main/pa_http.C: - second param for this mid method is length
10937: but not end_index so this method has error and can't detect
10938: charsets in next content-types: Content-type: text/html;
10939: charset="windows-1251" Content-type: text/html;
10940: charset="windows-1251"; Content-type: text/html;
10941: charset=windows-1251;
10942:
10943: only Content-type: text/html; charset=windows-1251 was fine
10944:
10945: 2006-10-31 misha
10946:
10947: * src/classes/file.C: - empty args in file::exec removed now
10948:
10949: 2006-09-03 paf
10950:
10951: * src/classes/file.C: proper tainting of
10952: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10953:
10954: 2006-06-09 paf
10955:
10956: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10957:
10958: * src/classes/table.C: formatting
10959:
10960: * src/classes/table.C: incorporated patch from misha: Sent:
10961: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10962: ignoring string options for ^table.save[]
10963:
10964: * src/classes/hash.C: incorporated patch from misha Sent:
10965: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10966: $hash._default disappear while
10967:
10968: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10969: $.format[!uue|!base64] << new base64 option. default uue ] ]
10970:
10971: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10972: PM Subject: patch for base64 in ^mail:send[] %-)
10973:
10974: 2006-04-09 paf
10975:
10976: * src/main/compile.tab.C: ` change compiled
10977:
10978: * gnu.vcproj, operators.txt, parser3.sln,
10979: src/classes/classes.vcproj, src/classes/file.C,
10980: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10981: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10982: src/classes/xnode.C, src/include/pa_array.h,
10983: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10984: src/include/pa_memory.h, src/include/pa_request.h,
10985: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10986: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10987: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10988: src/lib/pcre/pcre_dftables.vcproj,
10989: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10990: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10991: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10992: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10993: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10994: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10995: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10996: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10997: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10998: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10999: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11000: src/types/pa_value.h, src/types/pa_vcookie.C,
11001: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
11002: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11003: src/types/pa_vstatus.C, src/types/types.vcproj,
11004: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
11005: ^menu, ^hash/hashfile.foreach
11006:
11007: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
11008: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
11009: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
11010: src/classes/xnode.C, src/include/pa_array.h,
11011: src/include/pa_config_fixed.h, src/include/pa_dir.h,
11012: src/include/pa_memory.h, src/include/pa_request.h,
11013: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
11014: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
11015: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
11016: src/lib/pcre/pcre_dftables.vcproj,
11017: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
11018: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
11019: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
11020: src/main/pa_cache_managers.C, src/main/pa_charset.C,
11021: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
11022: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
11023: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
11024: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
11025: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
11026: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
11027: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11028: src/types/pa_value.h, src/types/pa_vcookie.C,
11029: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11030: src/types/pa_vstatus.C, src/types/types.vcproj,
11031: tests/descript.ion: ! switched to VS2005 (projects and
11032: object<info explicitly typed>.for_each(, info)) +
11033: $response:field[] setting void means removing + grammar $name`
11034: name stops now, for mysql `$field` + started ^break[]
11035: ^continue[], in ^for. TODO: to other iterators (while, menu,
11036: foreach) + all log messages += [uri=, method=, cl=]
11037:
11038: * buildall-with-xml: merged . ftp paths update
11039:
11040: * buildall-with-xml: . ftp paths update
11041:
11042: 2006-03-04 paf
11043:
11044: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
11045: checks++ [thanks to Igor Zinkovsky for detailed report]
11046:
11047: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
11048: Igor Zinkovsky for detailed report]
11049:
11050: 2006-03-01 paf
11051:
11052: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11053: \n to ' ' in
11054:
11055: 2006-02-18 paf
11056:
11057: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11058: \n to ' ' in
11059:
11060: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
11061:
11062: 2006-02-03 paf
11063:
11064: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
11065: base64
11066:
11067: * src/main/pa_common.C: ! bugfix: decoding from base64
11068:
11069: 2006-01-20 paf
11070:
11071: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11072: economy fix
11073:
11074: * src/classes/: table.C: merged from HEAD ! bugfix
11075: ^table.save[$.encloser-s now handled properly
11076:
11077: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
11078: handled properly
11079:
11080: 2006-01-19 paf
11081:
11082: * buildall-with-xml, buildall-without-xml: merged from HEAD !
11083: libgc:USE_MUNMAP activates merging of free memory blocks which
11084: helps a lot in our case: after transform we want
11085: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
11086:
11087: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11088: economy fix
11089:
11090: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
11091: activates merging of free memory blocks which helps a lot in our
11092: case: after transform we want CORD(main.result)->cstr[big
11093: malloc]->transcode[big malloc]
11094:
11095: 2006-01-17 paf
11096:
11097: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
11098: before reading them. got rid of reallocs = became quicker and
11099: less fragmentated
11100:
11101: 2005-12-29 paf
11102:
1.116 moko 11103: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
11104: configure, configure.in, src/include/pa_version.h,
11105: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 11106: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
11107: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
11108: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
11109: src/lib/ltdl/missing: . merged from 3.2.1
11110:
1.116 moko 11111: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
11112: packaged when 'make dist', so do configure companion files in
11113: src/lib/ltdl
11114:
11115: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
11116: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
11117: missing: . now config_auto.h is created with configure [were
11118: constant]
1.95 moko 11119:
11120: * INSTALL: . references to documentation and some clarification
11121:
11122: * buildall-with-xml, buildall-without-xml: . farawell doc
11123: indication
11124:
1.116 moko 11125: * Makefile.am: . dist+=buildall*
1.95 moko 11126:
11127: 2005-12-28 paf
11128:
11129: * configure: . 3.2.1
11130:
11131: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
11132: simplify build process, see INSTALL
11133:
11134: 2005-12-26 paf
11135:
11136: * configure: ver
11137:
11138: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
11139: version
11140:
11141: 2005-12-21 paf
11142:
11143: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
11144: compiled with bison 1.875b, it reports unexpected token names
11145:
11146: 2005-12-19 paf
11147:
11148: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
11149: holds a link to xmlNode to prevent premature gc(xmlNode)
11150:
11151: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
11152: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11153: src/main/main.vcproj, src/main/pa_globals.C,
11154: src/targets/cgi/parser3.vcproj,
11155: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
11156: configure, configure.in, src/include/pa_version.h: . killing
11157: gdome [what a relief]
11158:
11159: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
11160: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
11161: run_parser.sh, results/001.processed, results/002.processed,
11162: results/003.processed, results/004.processed,
11163: results/005.processed, results/006.processed,
11164: results/008.processed, results/009.processed,
11165: results/010.processed, results/011.processed,
11166: results/012.processed, results/013.processed,
11167: results/014.processed, results/015.processed,
11168: results/016.processed, results/017.processed,
11169: results/018.processed, results/020.processed,
11170: results/021.processed, results/022.processed,
11171: results/023.processed, results/024.processed,
11172: results/025.processed, results/026.processed,
11173: results/027.processed, results/028.processed,
11174: results/029.processed, results/030.processed,
11175: results/031.processed, results/032.processed,
11176: results/033.processed, results/034.processed,
11177: results/035.processed, results/036.processed,
11178: results/037.processed, results/038.processed,
11179: results/039.processed, results/040.processed,
11180: results/041.processed, results/042.processed,
11181: results/043.processed, results/044.processed,
11182: results/045.processed, results/046.processed,
11183: results/047.processed, results/048.processed,
11184: results/049.processed, results/050.processed,
11185: results/051.processed, results/052.processed,
11186: results/053.processed, results/054.processed,
11187: results/055.processed, results/056.processed,
11188: results/057.processed, results/058.processed,
11189: results/059.processed, results/060.processed,
11190: results/061.processed, results/062.processed,
11191: results/063.processed, results/064.processed,
11192: results/065.processed, results/066.processed,
11193: results/067.processed, results/068.processed,
11194: results/069.processed, results/070.processed,
11195: results/071.processed, results/072.processed,
11196: results/073.processed, results/074.processed,
11197: results/075.processed, results/076.processed,
11198: results/077.processed, results/078.processed,
11199: results/079.processed, results/080.processed,
11200: results/081.processed, results/082.processed,
11201: results/083.processed, results/084.processed,
11202: results/085.processed, results/086.processed,
11203: results/087.processed, results/088.processed,
11204: results/089.processed, results/090.processed,
11205: results/091.processed, results/092.processed,
11206: results/093.processed, results/094.processed,
11207: results/095.processed, results/096.processed,
11208: results/097.processed, results/099.processed,
11209: results/100.processed, results/101.processed,
11210: results/102.processed, results/104.processed,
11211: results/105.processed, results/106.processed,
11212: results/107.processed, results/108.processed,
11213: results/109.processed, results/110.processed,
11214: results/111.processed, results/112.processed,
11215: results/113.processed, results/114.processed,
11216: results/115.processed, results/117.processed,
11217: results/119.processed, results/120.processed,
11218: results/121.processed, results/122.processed,
11219: results/123.processed, results/124.processed,
11220: results/125.processed, results/126.processed,
11221: results/127.processed, results/128.processed,
11222: results/129.processed, results/130.processed,
11223: results/131.processed, results/132.processed,
11224: results/133.processed, results/134.processed,
11225: results/135.processed, results/136.processed,
11226: results/138.processed, results/139.processed,
11227: results/140.processed, results/141.processed,
11228: results/142.processed, results/143.processed,
11229: results/144.processed, results/145.processed,
11230: results/146.processed, results/147.processed,
11231: results/148.processed, results/149.processed, results/auto.p: .
11232: now works if we turn off default auto.p
11233:
1.116 moko 11234: * configure: . makes
1.95 moko 11235:
11236: * src/types/pa_vxnode.C: . less warnings
11237:
11238: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
11239: tests/145.html, tests/149.html, tests/descript.ion,
11240: tests/outputs/d.cmd, tests/results/142.processed,
11241: tests/results/143.processed, tests/results/144.processed,
11242: tests/results/145.processed, tests/results/146.processed,
11243: tests/results/147.processed, tests/results/148.processed,
11244: tests/results/149.processed: . removed .nodeValue from all node
11245: types other than 5 (grabbed piece from gdome)
11246:
11247: * tests/: 137.html, results/137.processed: . not handled this case
11248: yet. code does not hang from inserting parent into child,
11249: considering thing minor issue -- nodes are removed from source
11250: anyway, don't know why shold that be an error after all
11251:
11252: * src/targets/cgi/parser3.C: . style
11253:
11254: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
11255: xdoc too [were barking "not element"]
11256:
11257: 2005-12-16 paf
11258:
11259: * tests/: 146.html, 147.html, 148.html: . more tests
11260:
11261: * src/classes/xnode.C: . also bark on possible errors
11262:
11263: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
11264: props
11265:
11266: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
11267: main/compile.y: merged from HEAD ! fixed overoptimized
11268: ^call(false) case. (confused it with ^call[] case)
11269:
11270: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
11271: ^call(false) case. (confused it with ^call[] case)
11272:
11273: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
11274:
11275: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
11276: results/001.processed, results/002.processed,
11277: results/003.processed, results/004.processed,
11278: results/005.processed, results/006.processed,
11279: results/008.processed, results/009.processed,
11280: results/010.processed, results/011.processed,
11281: results/012.processed, results/013.processed,
11282: results/014.processed, results/015.processed,
11283: results/016.processed, results/017.processed,
11284: results/018.processed, results/019.processed,
11285: results/020.processed, results/021.processed,
11286: results/022.processed, results/023.processed,
11287: results/024.processed, results/025.processed,
11288: results/026.processed, results/027.processed,
11289: results/028.processed, results/029.processed,
11290: results/030.processed, results/031.processed,
11291: results/032.processed, results/033.processed,
11292: results/034.processed, results/035.processed,
11293: results/036.processed, results/037.processed,
11294: results/038.processed, results/039.processed,
11295: results/040.processed, results/041.processed,
11296: results/042.processed, results/043.processed,
11297: results/044.processed, results/045.processed,
11298: results/046.processed, results/047.processed,
11299: results/048.processed, results/049.processed,
11300: results/050.processed, results/051.processed,
11301: results/052.processed, results/053.processed,
11302: results/054.processed, results/055.processed,
11303: results/056.processed, results/057.processed,
11304: results/058.processed, results/059.processed,
11305: results/060.processed, results/061.processed,
11306: results/062.processed, results/063.processed,
11307: results/064.processed, results/065.processed,
11308: results/066.processed, results/067.processed,
11309: results/068.processed, results/069.processed,
11310: results/070.processed, results/071.processed,
11311: results/072.processed, results/073.processed,
11312: results/074.processed, results/075.processed,
11313: results/076.processed, results/077.processed,
11314: results/078.processed, results/079.processed,
11315: results/080.processed, results/081.processed,
11316: results/082.processed, results/083.processed,
11317: results/084.processed, results/085.processed,
11318: results/086.processed, results/087.processed,
11319: results/088.processed, results/089.processed,
11320: results/090.processed, results/091.processed,
11321: results/092.processed, results/093.processed,
11322: results/094.processed, results/095.processed,
11323: results/096.processed, results/097.processed,
11324: results/099.processed, results/101.processed,
11325: results/102.processed, results/104.processed,
11326: results/105.processed, results/106.processed,
11327: results/107.processed, results/108.processed,
11328: results/109.processed, results/110.processed,
11329: results/111.processed, results/112.processed,
11330: results/113.processed, results/114.processed,
11331: results/115.processed, results/116.processed,
11332: results/117.processed, results/118.processed,
11333: results/119.processed, results/120.processed,
11334: results/121.processed, results/122.processed,
11335: results/123.processed, results/124.processed,
11336: results/125.processed, results/126.processed,
11337: results/127.processed, results/128.processed,
11338: results/129.processed, results/130.processed,
11339: results/131.processed, results/132.processed,
11340: results/133.processed, results/134.processed,
11341: results/135.processed, results/136.processed,
11342: results/137.processed, results/138.processed,
11343: results/139.processed, results/140.processed,
11344: results/141.processed: . refreshed old tests, made them work
11345: without auto.p (in utf8) . things noted: . gif got encoded
11346: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11347: some strange year)
11348:
11349: * INSTALL: . revived linux libgc fix
11350:
11351: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11352: glib/gdome in INSTALL and patches]
11353:
11354: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11355: include/pa_charset.h, include/pa_config_includes.h,
11356: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
11357: include/pa_xml_exception.h, lib/cord/Makefile.am,
11358: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
11359: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
11360: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
11361: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
11362: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
11363: types/pa_vxnode.h: . started killing gdome
11364:
11365: 2005-12-13 paf
11366:
11367: * src/main/: pa_request.C: merged from HEAD ! when code in
11368: @unhandled_exception thrown another exception, print correct
11369: origin (earlier code in catch of exception inside of
11370: @unhandled_exception grabbed parent_frame(original_exception)
11371: origin and printed it, instead of true origin)
11372:
11373: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
11374: another exception, print correct origin (earlier code in catch of
11375: exception inside of @unhandled_exception grabbed
11376: parent_frame(original_exception) origin and printed it, instead
11377: of true origin)
11378:
11379: 2005-12-09 paf
11380:
11381: * INSTALL: . updated INSTALL doc to work around linux stack base
11382: detection problem, due to change in gc6.4 code
11383:
11384: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
11385: ignored in ^string.matched :(
11386:
11387: * src/main/pa_string.C: ! regex tainting were ignored in
11388: ^string.matched :(
11389:
11390: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
11391: src/include/pa_config_fixed.h, src/include/pa_version.h,
11392: src/main/compile.y, src/main/compile_tools.h,
11393: src/main/pa_charset.C, src/main/pa_common.C,
11394: src/main/pa_globals.C, src/main/pa_string.C,
11395: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
11396: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
11397:
11398: 2005-12-08 paf
11399:
11400: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
11401: 500 chars now handled OK [were wrapped on 500th char according to
11402: rfc, but sendmail failed to unwrap it properly]
11403:
11404: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
11405: handled OK [were wrapped on 500th char according to rfc, but
11406: sendmail failed to unwrap it properly]
11407:
11408: * src/targets/isapi/parser3isapi.C: . less warnings
11409:
11410: * src/targets/isapi/parser3isapi.C: . undone some strange change
11411: since 3.1.5
11412:
11413: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
11414: link fixes
11415:
11416: * src/: classes/date.C, include/pa_config_fixed.h,
11417: main/compile.tab.C, main/compile.y, main/compile_tools.h,
11418: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
11419: main/pa_string.C, targets/cgi/getopt.c: . less warnings
11420:
11421: * src/include/pa_config_fixed.h: . removed outdated string origins
11422: [in current storage scheme there's no place for them. someday we
11423: can add third CORD to store origins and special version of parser
11424: which stores origins there [separate binary]]
11425:
11426: 2005-12-07 paf
11427:
11428: * src/targets/isapi/parser3isapi.C: . now links in release mode
11429:
11430: * src/include/pa_version.h: makefiles
11431:
11432: * src/include/pa_version.h: . not beta
11433:
11434: * configure, configure.in, src/include/pa_version.h: not beta
11435:
11436: 2005-12-06 paf
11437:
11438: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
11439: [some details here http://i2/tasks/edit/?id=4869912143891354460]
11440: decided to undo the change ^call[$void] passes void. now it will
11441: pass empty string again.
11442:
11443: * src/main/: compile.tab.C, compile.y: . version readded
11444:
11445: * src/classes/op.C: . in this version there is no ^switch[$nothing]
11446: = ^switch[void] problem
11447:
11448: 2005-12-01 paf
11449:
11450: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
11451: caused ^case[string] to be coerced to double since searching
11452: value were not string (it was vvoid)
11453:
11454: * src/classes/op.C: . bugfix ^switch[$void_value] caused
11455: ^case[string] to be coerced to double since searching value were
11456: not string (it was vvoid)
11457:
11458: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
11459: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
11460:
11461: 2005-11-30 paf
11462:
11463: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
11464: win32 must putenv("TZ="), on unix works only putenv("TZ")
11465:
11466: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
11467: putenv("TZ="), on unix works only putenv("TZ")
11468:
11469: * INSTALL: . xml libs versions updated
11470:
11471: * src/main/pa_globals.C: //20051130 trying to remove this, author
11472: claims that fixed a lot there // 20040920 for now both
11473: workarounds needed. wait for new libxml/xsl versions
11474:
11475: 2005-11-28 paf
11476:
11477: * src/classes/table.C: merged from HEAD: ! nameless table has
11478: columns==0
11479:
11480: * src/classes/table.C: ! nameless table has columns==0
11481:
11482: * src/main/pa_http.C: merged from HEAD: ! status line check made
11483: earlier [was totally wrong]
11484:
11485: * src/main/pa_http.C: ! status line check made earlier [was totally
11486: wrong]
11487:
11488: 2005-11-25 paf
11489:
11490: * src/include/pa_array.h: -this reduces speed(table::load) strange.
11491: undoing for now...
11492:
11493: * src/include/pa_version.h: -this reduces speed(table::load),
11494: strange. undoing
11495:
11496: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
11497:
11498: * src/classes/op.C: + ^while(){}[SEPARATOR]
11499:
11500: * src/include/pa_array.h: + optimistics added: all arrays (table
11501: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
11502: this speeds things up and saves memory a LOT! (not noticed
11503: negative effect on syntetic tests, future will tell...)
11504:
11505: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
11506: changed gc_malloc implementation, which obscured profiling
11507:
11508: * src/classes/table.C: merged from HEAD: + optimized
11509: table::load/sql, now row ArrayString-s allocated with
11510: columns.count() elements and don't always grow from
11511: count=3[realloc,realloc]
11512:
11513: * src/classes/table.C: + optimized table::load/sql, now row
11514: ArrayString-s allocated with columns.count() elements and don't
11515: always grow from count=3[realloc,realloc]
11516:
11517: * src/classes/table.C: merged from HEAD: . ^table.save unused
11518: buffer after save
11519:
11520: * src/classes/table.C: . ^table.save unused buffer after save
11521:
11522: 2005-11-24 paf
11523:
11524: * configure.in: . merged glib2-config patch
11525:
11526: * configure.in: + trying to find glib2-config
11527:
11528: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11529: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
11530: file/dir_readable to simple file/dir_exist, this would help in
11531: situations "class not found because .p file has bad rights" << in
11532: that case error would be explicit "access denied to 'this' file"
11533:
1.116 moko 11534: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 11535:
11536: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11537: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
11538: to simple file/dir_exist, this would help in situations "class
11539: not found because .p file has bad rights" << in that case error
11540: would be explicit "access denied to 'this' file"
11541:
11542: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
11543: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11544: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
11545: ^file::exec/cgi[script;$.charset[changed]
11546: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11547: encoded in $.charset charset
11548:
11549: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
11550: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11551: encoded in $.charset charset
11552:
11553: * src/: include/Makefile.am, include/pa_common.h,
11554: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11555: main/pa_common.C, main/pa_http.C: . extracted http:// into
11556: separate file [preparation for
11557: ^file::cgi[script;$.form[$.field1[]
11558:
11559: 2005-11-22 paf
11560:
11561: * src/: include/pa_version.h, main/compile.tab.C: makefiles
11562:
11563: * acinclude.m4, configure.in: . merged underquting fixes
11564:
1.116 moko 11565: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11566:
11567: * src/classes/op.C: . overmerged a little
11568:
11569: * src/main/compile.tab.C: Makefile
11570:
11571: * src/main/: pa_common.C: . less gcc warnings
11572:
11573: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11574: now reports original exception if we have no old cache
11575:
11576: * src/classes/op.C: + $exception.handled[cache] now reports
11577: original exception if we have no old cache
11578:
11579: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11580: from HEAD: + ^taint/untaint[regex] << escapes these:
11581: \^$.[]|()?*+{}
11582:
11583: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11584: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11585:
11586: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11587: getenv-ed variable, which does not work both on win32&unix.
11588: copied old TZ value now
11589:
11590: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11591: stored pointer to getenv-ed variable, which does not work both on
11592: win32&unix. copied old TZ value now
11593:
11594: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11595: getenv-ed variable, which does not work both on win32&unix.
11596: copied old TZ value now
11597:
11598: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11599: access to internal hash
11600:
11601: * src/types/pa_vresponse.C: + $response:headers access to internal
11602: hash
11603:
11604: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11605: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11606: isapi] this reduces number of "GC Warning: Repeated allocation of
11607: very large block" messages to only important onces
11608:
11609: * src/targets/isapi/parser3isapi.C: +
11610: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11611: isapi] this reduces number of "GC Warning: Repeated allocation of
11612: very large block" messages to only important onces
11613:
11614: * src/classes/string.C: merged from HEAD: + removed limitation on
11615: ^string/int/double:sql{}[$.default[({param style})] ]
11616:
11617: * src/classes/string.C: + removed limitation on
11618: ^string/int/double:sql{}[$.default[({param style})] ]
11619:
11620: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11621: with ?params or $.form option" limitation
11622:
11623: * src/main/pa_common.C: + removed "use either uri with ?params or
11624: $.form option" limitation
11625:
11626: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11627: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11628: ^file::base64[encoded] decode
11629:
11630: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11631: main/pa_common.C: + ^file.base64[] encode +
11632: ^file::base64[encoded] decode
11633:
11634: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11635: ^string:base64[encoded] decode
11636:
11637: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11638: ^string:base64[in] encode + ^string.base64[] decode
11639:
11640: 2005-11-21 paf
11641:
11642: * src/classes/file.C: + merged from HEAD:
11643: ^file::create[text;file.xml;^untaint[xml]{data}]
11644:
11645: * src/classes/file.C: +
11646: ^file::create[text;file.xml;^untaint[xml]{data}]
11647:
11648: * src/main/pa_request.C: ! merged: $response:body[file] now
11649: differes from :download, it does not return content-disposition
11650: at all now [previusely it returned valueless content-disposition]
11651:
11652: * src/main/pa_request.C: ! $response:body[file] now differes from
11653: :download, it does not return content-disposition at all now
11654: [previusely it returned valueless content-disposition]
11655:
11656: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11657: literals, reverted to just vvod, recreating empty array with each
11658: void_value token. that's absolutely needed, since that array
11659: grows
11660:
11661: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11662: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11663: types/pa_vmethod_frame.h: + merged: expression literals:
11664: true/false. ^format[$.indent(true)]
11665:
11666: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11667: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11668: types/pa_vmethod_frame.h: + expression literals: true/false.
11669: ^format[$.indent(true)]
11670:
11671: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11672: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11673: i386-pc-win32)"
11674:
11675: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11676: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11677: i386-pc-win32)"
11678:
11679: 2005-11-18 paf
11680:
11681: * src/classes/: double.C, int.C: ! ^int/double:sql{select
11682: null}[$.default(123)] will now return default value
11683:
11684: * src/classes/op.C: + merged ^cache[] << returns current cache
11685: expiration time
11686:
11687: * src/classes/op.C: + ^cache[] << returns current cache expiration
11688: time
11689:
11690: * src/classes/table.C: ! merged ^table::create[not'nameless';
11691: failed << Exception.problem_source pointed to local var!
11692:
11693: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
11694: Exception.problem_source pointed to local var!
11695:
11696: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
11697: now loads VFile.ptr!=0, so such files can be saved now
11698:
11699: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
11700: loads VFile.ptr!=0, so such files can be saved now
11701:
11702: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
11703: only . and .. now removed from list [were removed all .*]
11704:
11705: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
11706: .. now removed from list [were removed all .*]
11707:
11708: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
11709: open error now checked, were not :( [stole that piece from apache
11710: 1.3 sources]
11711:
11712: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
11713: checked, were not :( [stole that piece from apache 1.3 sources]
11714:
11715: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
11716: untainting of @main result if returned by $result or
11717: $response:body
11718:
11719: * src/main/pa_request.C: ! ensured proper untainting of @main
11720: result if returned by $result or $response:body
11721:
11722: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
11723: issue: now tries to guess content-length and allocates one big
11724: piece if possible [regretfully gc_realloc works as malloc+free,
11725: leaving lots of holes behind]
11726:
11727: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
11728: fixed file load memory issue: now tries to guess content-length
11729: and allocates one big piece if possible [regretfully gc_realloc
11730: works as malloc+free, leaving lots of holes behind]
11731:
11732: 2005-11-16 paf
11733:
11734: * src/: include/pa_common.h, classes/file.C, classes/table.C,
11735: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
11736: table::save with enclosers now doubles them: "->"" !
11737: table::save/load do not remove elements from options hash
11738:
11739: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
11740: [were overoptimized ^if(double_literal), compiler confused
11741: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11742:
11743: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
11744: [were overoptimized ^if(double_literal), compiler confused
11745: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11746:
11747: * src/: classes/file.C, classes/table.C, include/pa_common.h,
11748: main/pa_common.C: ! table::save with enclosers now doubles them:
11749: "->"" ! table::save/load do not remove elements from options hash
11750:
11751: 2005-11-03 paf
11752:
1.116 moko 11753: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
11754: compilation, not all makefiles liked that
1.95 moko 11755:
11756: 2005-08-30 paf
11757:
11758: * src/classes/op.C: merge . speedup check of [DEFAULT]
11759:
11760: * src/classes/op.C: . speedup check of [DEFAULT]
11761:
11762: 2005-08-26 paf
11763:
11764: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
11765:
11766: * src/: classes/date.C, types/pa_vdate.h: + date.week
11767:
11768: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
11769: complains about bad!=nameless
11770:
11771: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
11772: about bad!=nameless
11773:
11774: * src/classes/: hash.C, string.C, table.C, void.C: merged !
11775: optional options were allowed to be empty. were checked
11776: if(is_string), changed to !defined||is_string to allow void
11777:
11778: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
11779: classes/string.C, classes/table.C, classes/void.C: ! optional
11780: options were allowed to be empty. were checked if(is_string),
11781: changed to !defined||is_string to allow void
11782:
11783: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
11784: as_junction where they needed as_int/double, so failed with
11785: recent "(const) now no junction" optimization
11786:
11787: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
11788: merged ! many classes/* used as_junction where they needed
11789: as_int/double, so failed with recent "(const) now no junction"
11790: optimization
11791:
11792: * src/: classes/double.C, classes/int.C, classes/math.C,
11793: classes/op.C, classes/string.C, classes/table.C,
11794: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
11795: used as_junction where they needed as_int/double, so failed with
11796: recent "(const) now no junction" optimization
11797:
11798: 2005-08-24 paf
11799:
11800: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
11801: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
11802: stripped it
11803:
11804: 2005-08-09 paf
11805:
11806: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11807: not cleared
11808:
11809: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11810: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11811: classes/hashfile.C, classes/image.C, classes/int.C,
11812: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11813: classes/response.C, classes/string.C, classes/table.C,
11814: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11815: include/pa_array.h, include/pa_cache_managers.h,
11816: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11817: include/pa_config_fixed.h, include/pa_config_includes.h,
11818: include/pa_dictionary.h, include/pa_dir.h,
11819: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11820: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11821: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11822: include/pa_request_charsets.h, include/pa_request_info.h,
11823: include/pa_sapi.h, include/pa_socks.h,
11824: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11825: include/pa_stack.h, include/pa_string.h,
11826: include/pa_stylesheet_connection.h,
11827: include/pa_stylesheet_manager.h, include/pa_table.h,
11828: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11829: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11830: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11831: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11832: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11833: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11834: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11835: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11836: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11837: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11838: main/pa_sql_driver_manager.C, main/pa_string.C,
11839: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11840: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11841: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11842: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11843: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11844: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
11845: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
11846: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11847: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11848: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
11849: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
11850: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
11851: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11852: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
11853: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
11854: types/pa_vmemory.h, types/pa_vmethod_frame.C,
11855: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11856: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
11857: types/pa_vresponse.C, types/pa_vresponse.h,
11858: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11859: types/pa_vstateless_object.h, types/pa_vstatus.C,
11860: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11861: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11862: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11863: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11864: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
11865:
11866: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11867: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
11868: speedup consequent checks in vmethod_frame
11869:
11870: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11871: not cleared
11872:
11873: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
11874: params: 50 max (were 10)
11875:
11876: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
11877: params: 50 max (were 10)
11878:
11879: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11880: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
11881: pa_wcontext.h: + ^call[$void] param inside now is void (were:
11882: empty string) ! simplified (double) speedup consequent checks in
11883: vmethod_frame
11884:
11885: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
11886: optimized constants in expressions vstring->vdouble + optimized
11887: ^call(vdouble), no junction creation, no calls later
11888:
11889: 2005-08-08 paf
11890:
11891: * src/main/: compile.tab.C, compile.y, compile_tools.C,
11892: compile_tools.h: merged + optimized constants in expressions
11893: vstring->vdouble + optimized ^call(vdouble), no junction
11894: creation, no calls later
11895:
11896: * src/types/pa_vdouble.h: merged . double values without fractional
11897: part now default printed as %.0f instead of %g
11898:
11899: * src/types/pa_vdouble.h: . double values without fractional part
11900: now default printed as %.0f instead of %g
11901:
11902: * src/classes/hashfile.C: . merged ! second hashfile::open would
11903: cause an exception
11904:
11905: * src/classes/hashfile.C: ! second hashfile::open would cause an
11906: exception
11907:
11908: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
11909: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11910: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11911: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11912: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
11913: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11914: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11915: types/pa_vresponse.h, types/pa_vstateless_class.C,
11916: types/pa_vstateless_object.h, types/pa_vvoid.h,
11917: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11918: merged VJunction(new Junction) optimization from 3.1.4
11919:
11920: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
11921: types/pa_vstateless_class.C: + optimized new VJunction(new
11922: Junction(params)) to new VJunction(params), thousands of mallocs
11923: removed
11924:
11925: 2005-08-05 paf
11926:
11927: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
11928: types/pa_vdouble.h, types/pa_vmethod_frame.C,
11929: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
11930: creation, no calls later
11931:
11932: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11933: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11934: classes/hashfile.C, classes/image.C, classes/int.C,
11935: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11936: classes/response.C, classes/string.C, classes/table.C,
11937: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11938: include/pa_array.h, include/pa_cache_managers.h,
11939: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11940: include/pa_config_fixed.h, include/pa_config_includes.h,
11941: include/pa_dictionary.h, include/pa_dir.h,
11942: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11943: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11944: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11945: include/pa_request_charsets.h, include/pa_request_info.h,
11946: include/pa_sapi.h, include/pa_socks.h,
11947: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11948: include/pa_stack.h, include/pa_string.h,
11949: include/pa_stylesheet_connection.h,
11950: include/pa_stylesheet_manager.h, include/pa_table.h,
11951: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11952: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11953: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11954: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11955: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11956: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11957: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11958: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11959: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11960: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11961: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11962: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11963: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11964: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11965: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11966: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11967: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11968: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11969: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11970: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11971: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11972: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11973: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11974: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11975: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11976: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11977: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11978: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11979: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11980: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11981: types/pa_vstateless_object.h, types/pa_vstatus.C,
11982: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11983: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11984: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11985: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11986: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11987:
11988: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11989: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11990: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11991: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11992: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11993: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11994: optimized constants in expressions vstring->vdouble
11995:
11996: 2005-07-29 paf
11997:
11998: * src/types/pa_vclass.C: . shaped up error messages a bit
11999:
12000: * src/types/pa_vclass.C: + property getter can now be overridden
12001:
12002: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
12003: bug fix: static parent fields were not replaced in case
12004: $derived:field[put] + property setter can now be overridden
12005:
12006: 2005-07-28 paf
12007:
12008: * configure, configure.in, src/classes/classes.h,
12009: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
12010: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
12011: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
12012: src/classes/xnode.h, src/include/pa_hash.h,
12013: src/include/pa_version.h, src/main/execute.C,
1.116 moko 12014: src/types/Makefile.am, src/types/pa_method.h,
12015: src/types/pa_value.h, src/types/pa_vclass.C,
12016: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
12017: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
12018: src/types/pa_vcookie.h, src/types/pa_vhash.h,
12019: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
12020: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
12021: src/types/pa_vobject.C, src/types/pa_vobject.h,
12022: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
12023: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
12024: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
12025: src/types/pa_vstateless_class.h,
1.95 moko 12026: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
12027: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12028: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
12029: dynamic_fields_join
12030:
12031: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
12032: classes/xnode.C, include/pa_hash.h, main/execute.C,
12033: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12034: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12035: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12036: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12037: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12038: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12039: types/pa_vresponse.h, types/pa_vstateless_object.h,
12040: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
12041: types/pa_wwrapper.h: ! restored put_element('replace' param), and
12042: restored its checks in vobject.put_element->static fields |
12043: dynamic properties
12044:
12045: 2005-07-27 paf
12046:
12047: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
12048: is some old code containing @set_name $name
12049:
12050: * src/types/pa_vobject.h: . fixed warning
12051:
12052: * configure, configure.in, src/include/pa_version.h,
1.116 moko 12053: src/types/Makefile.am: 3.2.0beta started
1.95 moko 12054:
12055: * src/: classes/xnode.C, include/pa_hash.h,
12056: types/pa_vstateless_class.C: ! new asserts were all false.
12057: regretfully reverted them all to checks
12058:
12059: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12060: classes/op.C, main/execute.C, types/pa_method.h,
12061: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12062: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12063: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12064: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12065: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12066: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12067: types/pa_vstateless_object.h, types/pa_vvoid.h,
12068: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12069: joined_dynamic_fields: removed unused param from put_method
12070: (returned to 3 params)
12071:
12072: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
12073: joined_dynamic_fields: dynamic get/set works with overriding
12074: props [alpha2]
12075:
12076: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
12077: works [alfa]
12078:
12079: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12080: classes/op.C, include/pa_hash.h, main/execute.C,
12081: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12082: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12083: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12084: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12085: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12086: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12087: types/pa_vresponse.h, types/pa_vstateless_class.C,
12088: types/pa_vstateless_object.h, types/pa_vvoid.h,
12089: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12090: joined_dynamic_fields: just compiled
12091:
12092: * src/: classes/date.C, classes/file.C, classes/hash.C,
12093: classes/hashfile.C, classes/image.C, classes/table.C,
12094: classes/xdoc.C, classes/xnode.h, main/execute.C,
12095: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
12096: types/pa_vstateless_class.h: joined_dynamic_fields: started
12097:
12098: * src/types/pa_vobject.C: . object setters [only started, does not
12099: work yet]
12100:
12101: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
12102: object setters [only started, does not work yet]
12103:
12104: 2005-07-26 paf
12105:
12106: * src/: include/pa_request.h, main/execute.C: . properties: set
12107: works [alpha2]. for classes. todo: for objects
12108:
12109: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
12110: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12111: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12112: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12113: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12114: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12115: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12116: types/pa_vstateless_object.h, types/pa_vvoid.h,
12117: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
12118: properties: set works [alpha1]
12119:
12120: 2005-07-25 paf
12121:
12122: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
12123: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
12124: properties: started, get works [alpha1, other approach]
12125:
12126: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
12127: properties: started, get works [alpha2]
12128:
12129: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
12130: pa_vstateless_class.h: . properties: started, get works [alpha]
12131:
12132: 2005-07-15 paf
12133:
12134: * src/: classes/classes.h, classes/op.C, main/execute.C,
12135: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
12136: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
12137: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
12138: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12139: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
12140: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
12141: types/pa_vresponse.C, types/pa_vresponse.h,
12142: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12143: types/pa_vstateless_object.h, types/pa_vvoid.h,
12144: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
12145: types/pa_wwrapper.h, types/types.vcproj: + started property
12146: [getters work but think of changing them too to precaching]
12147:
12148: 2005-07-08 paf
12149:
12150: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
12151: gpf
12152:
12153: 2005-06-28 paf
12154:
12155: * src/: classes/file.C, main/untaint.C: ! string invariant violated
12156: in passing empty strings to file::exec/cgi environment
12157:
12158: 2005-06-06 paf
12159:
12160: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
12161: ^table:sql ^hash:sql now DO process $.bind option
12162:
12163: 2005-05-24 paf
12164:
12165: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
12166: $.limit] now work again [support was broken in 3.1.4]
12167:
12168: * src/: main/pa_string.C, classes/op.C: . steps toward removing
12169: ALL_INTERIOR_POINTERS
12170:
12171: 2005-05-12 paf
12172:
12173: * configure: 3.1.5beta
12174:
12175: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
12176:
12177: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
12178: $.limit] now work again [support was broken in 3.1.4]
12179:
12180: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
12181: line-width [was refusing to fill if line-width >1, thanks to
12182: Seras <seras@pinxit.lt> for repro case
12183:
12184: 2005-04-25 paf
12185:
12186: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
12187: correctly
12188:
12189: 2005-04-19 paf
12190:
12191: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
12192: in VString violating invariant!!
12193:
12194: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
12195: getenv("TZ")==null
12196:
12197: 2005-04-08 paf
12198:
12199: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
12200: bugfix: when there is no char in charset one byte produces 6
12201: (ÿ <<max). increased buffer size!
12202:
12203: 2005-03-23 paf
12204:
12205: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
12206: ^date.sql-string now takes TZ into account
12207:
12208: 2005-03-16 paf
12209:
12210: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
12211: gcc 3.4
12212:
12213: * src/types/pa_vhash.C: . warning about eof eol
12214:
12215: 2005-02-17 paf
12216:
12217: * operators.txt, src/classes/op.C: + operator ^sleep(double
12218: seconds)
12219:
12220: 2005-02-02 paf
12221:
12222: * src/classes/xnode.C: beauty: removed needless includes
12223:
12224: 2005-01-31 paf
12225:
12226: * src/types/pa_vmail.C: change: $.partX now always 1... change:
12227: $.partNoNumber now alias to $.part1
12228:
12229: * src/types/pa_vmail.C: change: incoming letter part contains
12230: "content-disposition" header with any value? now considering that
12231: part to be "file#" [for text/plain text/html were $.text#
12232: $.html#]
12233:
12234: * INSTALL: updatet to latest working versions available
12235:
12236: 2005-01-20 paf
12237:
12238: * configure.in, src/include/pa_version.h: version
12239:
12240: 2005-01-19 paf
12241:
1.116 moko 12242: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
12243: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
12244: couple warnings in parser3.C
1.95 moko 12245:
12246: 2004-12-23 paf
12247:
12248: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
12249:
12250: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
12251: dir to directory of script (when shbang used), not to directory
12252: of its interpreter
12253:
12254: * src/include/pa_version.h: compiled on win32...
12255:
12256: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
12257: we need more hspace
12258:
12259: * configure, configure.in, src/include/pa_version.h: configured
12260: host to pa_version. will be displayed everywhere
12261:
12262: * src/main/pa_request.C: new: @unhandled_exception can prevent
12263: exception from being logged by setting $exception.handled(1)
12264:
12265: * operators.txt, src/classes/file.C: change:
12266: ^file::sql{query}[[options]] options: $.name[file name]
12267: $.content-type[application/what]
12268:
12269: * src/: include/pa_common.h, main/pa_common.C,
12270: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
12271: new file
12272:
12273: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
12274: bugfix: table->hash now regards _default
12275:
12276: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
12277: created by accessing $name_of_method it acquired bad self=closest
12278: methodframe; instead of proper self (current class)
12279:
12280: * src/types/pa_vhashfile.C: bugfix: reading empty string from
12281: hashfile produced bad cord
12282:
12283: 2004-12-10 paf
12284:
12285: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
12286: subsequent failures though defined in .h
12287:
12288: * src/main/pa_common.C: comment on volatile
12289:
12290: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
12291: alarm function were not used since the beginning due to stupid
12292: error [setsigjmp were not checked in configure.in]
12293:
12294: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
12295: unix too
12296:
12297: * src/main/pa_common.C: http: exception status of send/recv errors
12298: change to most probable http.timeout
12299:
12300: * src/main/pa_common.C: win32: http connection $.timeout option now
12301: works [setsockopt on send/receive]
12302:
12303: 2004-12-08 paf
12304:
12305: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
12306: cstr-ed knowing mail charset, and untainting uri lang now knows
12307: proper charset
12308:
12309: 2004-11-24 paf
12310:
12311: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
12312:
12313: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
12314: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
12315:
12316: 2004-11-12 paf
12317:
12318: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
12319: [since 3.0.4]
12320:
12321: 2004-11-09 paf
12322:
12323: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
12324: writes basics to c:\parser3.log
12325:
12326: 2004-10-21 paf
12327:
12328: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
12329: tainted strings [were returning clean onces]
12330:
12331: 2004-10-15 paf
12332:
12333: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
12334: cycles(i=1; i=2), which was wrong, now does ONE
12335:
12336: 2004-10-12 paf
12337:
12338: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
12339:
12340: 2004-10-07 paf
12341:
12342: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
12343: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
12344: release asserts
12345:
12346: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12347: String.dump() to stdout in detailed form [were String.v() in
12348: short form]
12349:
12350: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12351: \t\r\n as @#| and truncates long char sequences less
12352:
12353: 2004-10-06 paf
12354:
12355: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
12356: win32 beauty: socket errors properly decoded
12357:
12358: 2004-10-05 paf
12359:
12360: * src/: include/pa_request.h, main/pa_request.C: bugfix:
12361: request::configure_user/admin done always, even if no
12362: file-to-process useful in @unhandled_exception [say, if they
12363: would want to mail by SMTP something]
12364:
12365: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
12366: now performed prior to file loading [and @auto executing] thus
12367: making $cookie:value available in @auto and in
12368: @unhandled_exception when IIS is configured to run interpreter
12369: even if no file exist
12370:
12371: 2004-09-20 paf
12372:
12373: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
12374: somewhere where it should have called xmlMalloc and it calls
12375: xmlFree when it should have not called it. inserted two
12376: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
12377: xmlFree just ignored. put away a testcase, maybe someday libxml
12378: author would fix all that. until that day: we have SLOW garbage
12379: collecting when many xml objects are alive hint: do
12380: ^memory:compact[] before xdoc::create
12381:
12382: 2004-09-17 paf
12383:
12384: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
12385: error from 3.0.8 version]
12386:
12387: 2004-09-14 paf
12388:
12389: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
12390: part bugfix: hashfile.foreach iterated only part if hashfile were
12391: modified inside
12392:
12393: 2004-09-13 paf
12394:
12395: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
12396: [were as octal]
12397:
12398: * src/types/pa_vhashfile.C: beauty: not reproduced
12399: $hashfile.key[$novalue] bug [reported by motorin], inserted
12400: safety-check
12401:
12402: * src/types/pa_vhashfile.C: change: empty keys now error in parser
12403: [not something obscure from sdbm lib]
12404:
12405: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
12406: = strerror now returnes something and we can properly report that
12407: to client
12408:
12409: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
12410: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
12411:
12412: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12413: [tainted as-is] this helps //[space][newline] to remain as-is and
12414: not be unnecessary optimized away [ruining javascript]
12415:
12416: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12417: [tainted as-is]
12418:
12419: * src/classes/mail.C: bugfix: typo error
12420:
12421: 2004-09-09 paf
12422:
12423: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
12424: separators bugfix: loads header with endings \r\n\r\n and \n\n
12425: (bloody yandex.server)
12426:
12427: 2004-09-06 paf
12428:
12429: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
12430: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
12431: encoded
12432:
12433: 2004-09-01 paf
12434:
12435: * src/types/pa_vmail.C: change: multipart/mixed changed to
12436: multipart/related outlook express have no problems showing
12437: unrelated attachments. todo: someday figure out a way of
12438: multipart/mixed multipart/related text/html
12439: image/xxx application/octet-stream << true attachments
12440:
12441: * src/types/pa_vmail.C: new:
12442: ^mail:send[$.file[$.content-disposition can be overriden new:
12443: empty mail header fields removed from letter
12444:
12445: * src/: classes/mail.C, include/pa_config_fixed.h,
12446: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
12447: ^mail:send[ $.file[ $.any[header]
12448:
12449: 2004-08-30 paf
12450:
12451: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
12452: warnings
12453:
12454: * src/main/pa_common.C: beauty: do not bother with charset
12455: detection when ^file::load[binary
12456:
12457: 2004-08-27 paf
12458:
12459: * src/main/pa_common.C: hack: for yandex.server http server
12460:
12461: 2004-08-18 paf
12462:
12463: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
12464: possibly-chunked response
12465:
12466: 2004-08-17 paf
12467:
12468: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12469: $f.content-type now = that of http response
12470:
12471: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12472: $f.content-type now = that of http response
12473:
12474: 2004-07-30 paf
12475:
12476: * src/: include/pa_request.h, main/pa_request.C,
12477: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
12478: win32: system&parser exceptions in release mode reported properly
12479: parser exception in exception handler WERE mistakenly reported as
12480: system exception, without details [in apache & isapi] +some
12481: beauty in exception text
12482:
12483: * src/: include/pa_exception.h, main/pa_request.C,
12484: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
12485: release mode reported properly parser exception in exception
12486: handler WERE mistakenly reported as system exception, without
12487: details
12488:
12489: * src/main/execute.C: beauty: simplified system exception handling
12490:
12491: 2004-07-29 paf
12492:
12493: * src/classes/table.C: bugfix:
12494: ^table.save[export.csv;$.separator[^;]] now works fine [separator
12495: were ignored, and \t used unconditionally]
12496:
12497: * src/types/Makefile.am: added vhash.c
12498:
12499: 2004-07-28 paf
12500:
12501: * src/: classes/date.C, classes/image.C, classes/math.C,
12502: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
12503: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
12504: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
12505: failed on russian letters
12506:
12507: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
12508: bugfix: isspace((unsigned char)c) everywhere. failed on russian
12509: letters
12510:
12511: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
12512: as 'currentDirectory' parameter to CreateProcess
12513:
12514: 2004-07-27 paf
12515:
12516: * src/targets/cgi/parser3.vcproj: beauty: win32:
12517: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
12518: from release somewhere [to help searching for unhandled system
12519: exceptions]
12520:
12521: * src/types/pa_vdate.h: check: for invalid datetime after temporary
12522: TZ shift
12523:
12524: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
12525: but also in ctor
12526:
12527: 2004-07-26 paf
12528:
12529: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
12530: src/main/pa_request.C, src/types/pa_vfile.h,
12531: src/types/pa_vhash.C, src/types/pa_vhash.h,
12532: src/types/types.vcproj: new: $response:body/download[
12533: $.file[name on disk] $.name[of file for user]
12534: $.mdate[date of last-modified. default from directory] ]
12535:
12536: * src/classes/file.C: moving file:send somewhere else..
12537:
12538: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
12539: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
12540: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
12541: $response:download[ $.filename[filename] $.option[] ,, ]
12542:
12543: * src/classes/file.C: beauty: invalid mode thoroughly reported
12544:
12545: 2004-07-21 paf
12546:
12547: * src/types/pa_vmail.C: bugfix: too long header values now splitted
12548: to several lines
12549:
12550: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
12551:
12552: note: ms outlook[!express] shows only first 255 characters of
12553: subject
12554:
12555: 2004-07-15 paf
12556:
12557: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
12558: off]
12559:
12560: 2004-07-14 paf
12561:
12562: * src/classes/table.C: bugfix: $.bind values now got untainted
12563: according to lang [were: as-is]
12564:
12565: 2004-07-07 paf
12566:
12567: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12568: checked that
12569:
12570: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12571: now untainted according to their languages. were: as-is.
12572: EVERYWHERE
12573:
12574: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12575: environment string now untainted according to their languages.
12576: were: as-is. EVERYWHERE
12577:
12578: * src/main/pa_exec.C: bufix: on unix environment string now
12579: untainted according to their languages. were: as-is. on win32:
12580: ok
12581:
12582: * parser3.vssscc: ...would not go unnoticed
12583:
12584: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12585: fails. in case on input appears nonutf, those bytes will be
12586: printed in %HH form. that can be easily decoded/recovered.
12587:
12588: this form is quite noticable, and hopefully would not go noticed
12589:
12590: 2004-07-06 paf
12591:
12592: * src/main/pa_exec.C: bufix: on unix environment string now
12593: untainted according to their languages. were: as-is. on win32:
12594: ok
12595:
12596: 2004-07-01 paf
12597:
12598: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12599: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12600: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12601: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12602: main/main.vcproj, targets/cgi/parser3.vcproj,
12603: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12604: option: global optimization ON
12605:
12606: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12607: to do xdoc::create{invalid chars} standard disables chars less
12608: then \x20, except tab, cr, lf.
12609:
12610: changed tainting so that those become '!'
12611:
12612: 2004-06-25 paf
12613:
12614: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12615: int on odd address [prev bugfix failed due to superwize
12616: optimizer, which turned memcpy into same 'ld' asm command]
12617:
12618: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12619: int on odd address
12620:
12621: 2004-06-22 paf
12622:
12623: * src/sql/pa_sql_driver.h: note: about possible optimization
12624:
12625: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12626: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12627: src/include/pa_config_includes.h: new: ^void:sql{call
12628: paf(:a)}[ $.bind[ $.a[2]
12629: ] ] output variables work. todo: check in out
12630: variables
12631:
12632: 2004-06-18 paf
12633:
12634: * src/: classes/file.C, classes/hash.C, classes/string.C,
12635: classes/table.C, classes/void.C, include/pa_globals.h,
12636: include/pa_sql_connection.h, main/compile.tab.C,
12637: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12638: $.bind[ $.a[2] ]
12639: ] input variables work. todo:output
12640:
12641: * src/targets/cgi/parser3.C: bugfix: iis specific
12642: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12643: /_bug.html?404;http://hpsv/test/
12644: --------------------------------------------------------------------------------
12645: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12646: --------------------------------------------------------------------------------
12647: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12648:
12649: 2004-06-16 paf
12650:
12651: * src/targets/cgi/parser3.C: new: iis specific
12652: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12653: $request:query
12654: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12655: $form:fields IIS-STATUS="404"
12656: IIS-DOCUMENT="http://server/_bug.html" f="v"
12657:
12658: todo: isapi too
12659:
12660: 2004-05-26 paf
12661:
12662: * src/include/pa_version.h: 3.1.3
12663:
12664: * operators.txt: beauty: removed outdated level 'table'
12665:
12666: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
12667:
12668: * src/main/pa_string.C: beauty: removed 3 warnings
12669:
12670: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
12671: classes/op.C: beauty: removed outdated level 'table'
12672:
12673: 2004-05-25 paf
12674:
12675: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
12676: implementation. mistery: how anything worked
12677:
12678: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
12679: changed, it is now safe to use url if pointers to it are stored
12680: to gc mem
12681:
12682: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
12683: unknown errors reported and not cause SIGSEGV now
12684:
12685: 2004-05-24 paf
12686:
12687: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12688: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
12689: less memory: CORD_chars_block originally intended to ... it was
12690: good that CORD_chars_block were not used: it consumes more memory
12691: [and, might be slow too] undoing that. [and removed that func so
12692: that it would not confuse parser developer in future]
12693:
12694: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
12695: less memory: CORD_chars_block originally intended to
12696: speedup/reduce mem usage were forgotten, and were used stupid
12697: CORD_chars
12698:
12699: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
12700:
12701: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
12702: BIGENDIAN processors space-conserving mech failed, causing
12703: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
12704: (1|2|3));
12705:
12706: 2004-05-14 paf
12707:
12708: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
12709: bugfix: void now has vfile value, and $response:body[] works OK
12710:
12711: 2004-05-12 paf
12712:
12713: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
12714: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
12715: sources to use is_defined() {return as_bool();} along VBool
12716:
12717: 2004-05-11 paf
12718:
12719: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
12720: referencing to local objects
12721:
12722: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
12723: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
12724: left intact
12725:
12726: 2004-04-15 paf
12727:
12728: * src/classes/date.C: merged: beauty: unused var removed
12729:
12730: * src/classes/date.C: beauty: unused var removed
12731:
12732: * src/include/: pa_exec.h: bugfix: interface without pointer
12733: provoked bug
12734:
12735: 2004-04-09 paf
12736:
12737: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
12738:
12739: * src/types/pa_vform.C: bugfix: form:imap were incorrect
12740:
12741: 2004-04-08 paf
12742:
12743: * src/classes/date.C: new: ^date::create[y-m-d
12744: h-M-s>>.milliseconds<<] now allowed, ignored so far
12745:
12746: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
12747:
12748: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
12749: to consult default catalog [usually, that file belongs to other
12750: user/group]
12751:
12752: 2004-04-06 paf
12753:
12754: * src/main/pa_common.C: beauty: gcc warning removed
12755:
12756: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
12757: accept that trick, trying other
12758:
12759: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
12760: explicit result problem
12761:
12762: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
12763: explicit result problem
12764:
12765: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
12766: explicit result problem
12767:
12768: * operators.txt, src/classes/string.C: new: ^string.append[string]
12769:
12770: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
12771: main/execute.C: attempt_check_call_in_explicit_result_mode:
12772: failed
12773:
12774: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12775: http://i.p.a.ddress gethostbyaddr added [on some platforms
12776: gethostbyname failed with such 'domains'] now checked properly,
12777: were: needless reverse/forward dns lookup
12778:
12779: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12780: http://i.p.a.ddress gethostbyaddr added [on some platforms
12781: gethostbyname failed with such 'domains'] now checked properly,
12782: were: needless reverse/forward dns lookup
12783:
12784: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
12785: @method[][result] means "no string output here" moved to lexical
12786: level [on grammar level it were too difficult]
12787:
12788: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
12789: src/main/compile.y, src/main/compile_tools.h,
12790: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
12791: @method[][result] means "no string output here", implemented part
12792: of that idea: compiler throws away string literal generation
12793: code. and barks nonwhitespace chars
12794:
12795: * operators.txt: truth: removed comment about $ORIGIN
12796:
12797: 2004-04-05 paf
12798:
12799: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
12800: src/include/pa_version.h, src/main/pa_common.C,
12801: src/targets/isapi/parser3isapi.C: merged with 3.1.3
12802:
12803: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
12804: Konstantin Tomashevitch [mailto:konst@design.ru]
12805:
12806: * src/doc/html2chm.cmd: beauty: no need in bg here
12807:
12808: * src/doc/sources2html.cmd: beauty: same window, in bg it
12809: interfered with FAR console
12810:
12811: * configure, configure.in: 3.1.3
12812:
12813: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
12814:
12815: * src/main/pa_common.C: removed warning
12816:
12817: * src/include/pa_version.h: 3.1.3
12818:
12819: 2004-04-02 paf
12820:
12821: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
12822:
12823: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
12824: allows to specify where to put parser log file
12825:
12826: 2004-04-01 paf
12827:
12828: * src/classes/table.C: bugfix: bugfix: table::load last line
12829: without tab and enter were ignored
12830:
12831: * src/: include/pa_cache_managers.h, include/pa_globals.h,
12832: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
12833: main/pa_socks.C, targets/cgi/parser3.C,
12834: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
12835: bugfix: sql connections now are disconnected
12836:
12837: 2004-03-30 paf
12838:
12839: * src/classes/table.C: bugfix: table::load last line without tab
12840: and enter were ignored
12841:
12842: * src/classes/table.C: bufix: if last table lines were commented,
12843: gpfed
12844:
12845: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
12846: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
12847: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
12848: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
12849: doc/methoded.dox, doc/object.dox, doc/string.dox,
12850: doc/targets.dox, doc/value.dox, include/pa_version.h,
12851: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
12852: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
12853: bugfixes from 3.1.2, changed version to 3.1.3beta
12854:
12855: 2004-03-29 paf
12856:
12857: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
12858: causes gpf
12859:
12860: * src/doc/: ClassExample1.dox, ClassExample2.dox,
12861: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
12862: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
12863: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
12864: value.dox: translated to english
12865:
12866: 2004-03-25 paf
12867:
12868: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
12869: parser3project dependency removed
12870:
12871: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
12872: bugfix: refused to compile without xml
12873:
12874: * src/types/pa_vform.C: beauty: removed warning
12875:
12876: * src/classes/classes.vcproj: merged bugfix: now all compiles in
12877: any folder [removed last ;) folder dependency]
12878:
12879: * src/classes/classes.vcproj: bugfix: now all compiles in any
12880: folder [removed last ;) folder dependency]
12881:
12882: * src/include/pa_version.h: release
12883:
12884: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
12885:
12886: * src/classes/table.C: beauty: comment& more meaningful error
12887: message
12888:
12889: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
12890: $.hash[$.column_value1(true) ... ] [were producing some strang
12891: thing]
12892:
12893: 2004-03-23 paf
12894:
12895: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
12896: and http status line parsing checked number of columns in table
12897: [user reported an assert]
12898:
12899: * operators.txt: example: on hashfile
12900:
12901: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
12902: bugfix: junction reattach now actually reattaches a junction to
12903: new wcontext [were only assigning it to junction, which caused
12904: junction tracking to loose junction, and it's context were not
12905: killed, and it tried to process in invalid context, gpf]
12906:
12907: * src/targets/cgi/parser3.C: debug helper added
12908:
12909: 2004-03-19 paf
12910:
12911: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
12912: "type(type)" in braces
12913:
12914: 2004-03-10 paf
12915:
12916: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
12917: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12918: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
12919: solution to search-in-namespaces problem:
12920: $xdoc.search-namespaces.x[http://pif.design.ru/]
12921: $nodes[^xdoc.select[//x:second]]
12922:
12923: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
12924: expression][[NAMESPACES HASH]] allows to search for info in
12925: namespaces
12926:
12927: $nodes[^xdoc.select[//x:second][
12928: $.x[http://pif.design.ru/] ]]
12929:
12930: 2004-03-09 paf
12931:
12932: * operators.txt, src/main/pa_common.C: new:
12933: ^file::load[...][options] $.form[
12934: !$.field1[string]
12935: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
12936: ] !$.body[string]
12937:
12938: GET ?here notGET(POST, HEAD, others) in content-type:
12939: application/x-www-form-urlencoded
12940:
12941: todo: upload files ability
12942:
12943: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12944: properly, done
12945:
12946: 2004-03-05 paf
12947:
12948: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12949: GET/POST $.form[$.fields started, not tested yet
12950: todo:$.field[table] for multiple values
12951:
12952: * operators.txt: new: http:// options $.user $.password basic
12953: authorization
12954:
12955: * src/main/pa_common.C: beauty: link to rtf added
12956:
12957: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12958: new: http:// options $.user $.password basic authorization
12959:
12960: * src/main/pa_common.C: beauty: removed needless vars
12961:
12962: * operators.txt: new: pgsql option [like that recently added to
12963: oracle driver] ClientCharset=parser-charset <<
12964: charset in which parser thinks client works
12965:
12966: * operators.txt: new: odbc option [like that recently added to
12967: oracle driver] ClientCharset=parser-charset <<
12968: charset in which parser thinks client works
12969:
12970: * src/sql/pa_sql_driver.h: beauty: important warning added
12971:
12972: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12973: char!
12974:
12975: * etc/parser3.charsets/windows-1251.cfg: typo
12976:
12977: 2004-03-04 paf
12978:
12979: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12980: cached, sql transcoding now goes faster
12981:
12982: * operators.txt: new: mysql option [like that recently added to
12983: oracle driver] ClientCharset=parser-charset <<
12984: charset in which parser thinks client works
12985:
12986: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12987: typo error
12988:
12989: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12990: chars commented
12991:
12992: 2004-03-03 paf
12993:
12994: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12995: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12996:
12997: 2004-03-02 paf
12998:
12999: * operators.txt: new[update typo]: !^void.left(n)
13000: nothing !^void.right(n) nothing !^void.mid(p[;n])
13001: nothing
13002:
13003: * operators.txt, src/classes/void.C: new: !^void.left(n)
13004: nothing !^void.right(n) nothing !^void.pos(p[;n])
13005: nothing
13006:
13007: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
13008: ^file::sql[[name_to_become_$.name]]{} query result must be one
13009: row with columns: first: data second: file name third:
13010: content-type
13011:
13012: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
13013: ^connect gets properly escaped string, which can be passed to
13014: request now this for mysql only. it's up to parser sql driver to
13015: fix zeros properly
13016:
13017: * INSTALL: note: added on building apache with this option:
13018: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
13019:
13020: 2004-03-01 paf
13021:
13022: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
13023: extension memory:compact befor processingrequest
13024:
13025: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
13026: call sole column of result
13027:
13028: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
13029: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
13030: pixel color
13031:
13032: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
13033: beauty: image -- less checks [were ugly impl]
13034:
13035: * src/classes/string.C: bugfix: ^string.left/right/mid with
13036: negative values now considered bad
13037:
13038: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
13039:
13040: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
13041: options now have unified defaults [after transform
13042: indent/omit-xml-declaration/standalone 'default' erroreously
13043: meant 'true']
13044:
13045: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
13046: added [on some platforms gethostbyname failed with such
13047: 'domains']
13048:
13049: * src/include/pa_config_auto.h.in: no select check, no define
13050:
13051: * src/classes/string.C: feature: ^string.trim both parameters may
13052: be empty-strings, meaning kind=both chars=whitespaces
13053:
13054: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
13055: exist
13056:
13057: * src/classes/string.C: check: trim 'chars' must not be empty,
13058: exception if it is
13059:
13060: * src/classes/string.C: changed: ^string.trim [] << both,
13061: whitespaces [start|both|end] << kind, whitespaces
13062: [start|both|end;chars] full
13063:
13064: 2004-02-27 paf
13065:
13066: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
13067: method: ^string.trim[start|both|end[;chars]] default
13068: 'chars' -- whitespace chars finished
13069:
13070: * operators.txt, src/classes/string.C, src/include/pa_string.h,
13071: src/main/pa_string.C: new method:
13072: ^string.trim[start|both|end[;chars]] default 'chars' --
13073: whitespace chars started, only start works
13074:
13075: * src/main/compile.C: bugfix: line numbers after
13076: ^process{}[$.line(-10]] can be negative, allowed to print they as
13077: signed
13078:
13079: * src/main/untaint.C: speed: there's no \n chars in output
13080: [normally], so no need to optimize them they could be retrived
13081: from databases, though. but 1. should be replaced 2. if not
13082: optimized, no harm done
13083:
13084: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
13085: ^file::exec/cgi could return invalid status & zombie child can
13086: remain for short period until process exists [very bad in
13087: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
13088:
13089: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
13090: malicious SMTP server to attack as by returning too long status
13091: responses http://i2/tasks/edit/?id=4629448401140924947
13092:
13093: 2004-02-26 paf
13094:
13095: * operators.txt: feature: ^process...{CODE}[now has options] which
13096: are $.main[to what to rename @main] $.file[file,
13097: from which (user says) goes that CODE] $.lineno(line
13098: number in that file, where CODE starts. may be negative)
13099:
13100: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13101: src/main/compile.C, src/main/compile_tools.h,
13102: src/main/pa_request.C: feature: ^process...{CODE}[now has
13103: options] which are $.main[to what to rename @main]
13104: $.file[file, from which (user says) goes that CODE]
13105: $.lineno(line number in that file, where CODE starts. may be
13106: negative)
13107:
13108: 2004-02-25 paf
13109:
1.116 moko 13110: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
13111: old @charsetsdir@ recently erased from configure.in]
1.95 moko 13112:
13113: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
13114: produces hash of column=>1
13115:
13116: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
13117: with incomplete errno constants set
13118:
13119: 2004-02-24 paf
13120:
13121: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
13122: "man select"
13123:
13124: * src/main/pa_os.C: beauty: <0 better then ==-1
13125:
13126: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
13127:
13128: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
13129:
1.116 moko 13130: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 13131:
13132: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
13133: unix: steps to work on unix [extracted 'to']
13134:
13135: * src/classes/mail.C: smtp on unix: steps to work on unix
13136:
13137: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
13138:
1.116 moko 13139: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
13140: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
13141: unix [testing on solaris]
1.95 moko 13142:
13143: 2004-02-20 paf
13144:
13145: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
13146: pointing that out
13147:
13148: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
13149: fixed again [same solution, mistanenly removed one line]
13150:
13151: 2004-02-19 paf
13152:
13153: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
13154: date::create from bad datetime in spring daylightsaving hole now
13155: OK for all platforms [on some platforms it failed]
13156:
13157: * src/classes/: date.C, image.C: beauty: date::create[bad date time
13158: in daylightsaving hole] now throws error
13159:
13160: * src/classes/date.C: comment: mistake fixed
13161:
13162: 2004-02-18 paf
13163:
13164: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
13165: now renderes in $request:charset, but in header puts
13166: $response:charset todo: make that default only so that coder
13167: could override that
13168:
13169: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
13170: turns off omit-xml-declaration
13171:
13172: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
13173: /.xsl for sample
13174:
13175: 2004-02-17 paf
13176:
13177: * src/classes/xdoc.C: beauty: needless helper class removed
13178:
13179: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
13180: copied extra time
13181:
13182: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
13183: part of libxml
13184:
13185: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
13186: libxml to do the work] <xsl:output method="html"
13187: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
13188: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
13189: />
13190:
13191: * src/classes/xdoc.C: beauty: no <meta ... charset generated
13192:
13193: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
13194: caused assertion
13195:
13196: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
13197: could hang. now such add does nothing, sub clears $hash
13198:
13199: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
13200: not made quoted-printable
13201:
13202: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
13203: string invariant
13204:
13205: 2004-02-16 paf
13206:
13207: * src/main/pa_globals.C: bugfix: xml errors copy from library now
13208: cleared [were not cleared properly]
13209:
13210: 2004-02-13 paf
13211:
1.116 moko 13212: * src/include/pa_version.h: prerelease
1.95 moko 13213:
13214: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
13215: used, introducing dependencies timestamp check
13216:
13217: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13218: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
13219: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
13220: .xsl.stamp now not used, introducing dependencies timestamp check
13221:
1.150 moko 13222: * configure.in: auto.p: @conf made relative
1.95 moko 13223:
13224: 2004-02-12 paf
13225:
13226: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
13227: ruined empty <input type=file> submits. parser thought there were
13228: nameless empty file and $form:field got value of type 'file'
13229:
13230: * INSTALL: --without-threads
13231:
13232: * src/include/pa_sapi.h: 2004
13233:
13234: 2004-02-11 paf
13235:
13236: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13237: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13238: classes/hashfile.C, classes/image.C, classes/int.C,
13239: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13240: classes/response.C, classes/string.C, classes/table.C,
13241: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13242: include/pa_array.h, include/pa_cache_managers.h,
13243: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13244: include/pa_config_fixed.h, include/pa_config_includes.h,
13245: include/pa_dictionary.h, include/pa_dir.h,
13246: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
13247: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
13248: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
13249: include/pa_request_charsets.h, include/pa_request_info.h,
13250: include/pa_socks.h, include/pa_sql_connection.h,
13251: include/pa_sql_driver_manager.h, include/pa_stack.h,
13252: include/pa_string.h, include/pa_stylesheet_connection.h,
13253: include/pa_stylesheet_manager.h, include/pa_table.h,
13254: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13255: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
13256: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
13257: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
13258: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
13259: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
13260: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13261: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
13262: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
13263: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
13264: main/pa_sql_driver_manager.C, main/pa_string.C,
13265: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
13266: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
13267: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13268: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
13269: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13270: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13271: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
13272: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
13273: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
13274: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13275: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
13276: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13277: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13278: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13279: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13280: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13281: types/pa_vresponse.h, types/pa_vstateless_class.C,
13282: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13283: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13284: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13285: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13286: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13287: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
13288:
13289: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
13290: debug version of gc.dll
13291:
13292: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13293: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
13294: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
13295: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
13296: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
13297: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
13298: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
13299: processes
13300:
13301: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
13302: main/pa_globals.C, targets/cgi/parser3.vcproj,
13303: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
13304: changes to reflect libxml xsl new folders
13305:
13306: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13307: lib/smtp/smtp.vcproj, main/main.vcproj,
13308: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
13309: to reflect libxml xsl new folders
13310:
13311: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13312: lib/smtp/smtp.vcproj, main/main.vcproj,
13313: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
13314: types/types.vcproj: started changes to reflect libxml xsl new
13315: folders
13316:
13317: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
13318: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
13319: src/main/compile.tab.C, src/main/main.vcproj,
13320: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
13321: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13322: started changes to reflect libxml xsl new folders
13323:
13324: 2004-02-10 paf
13325:
13326: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
13327: compile. recommened latest libxml up to date
13328:
13329: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
13330: pattern compilation errors", on which spent 4 hours worktime. use
13331: versions higher than that. recommended now latest up to date
13332:
13333: 2004-02-06 paf
13334:
13335: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
13336: beauty: unified destructing style
13337:
13338: * src/main/untaint.C: beauty: removed old def/ifdef
13339:
13340: * src/main/untaint.C: beauty: coredump @unknown untaint language
13341: now
13342:
13343: 2004-02-03 paf
13344:
13345: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13346: targets/isapi/parser3isapi.C, types/pa_value.C,
13347: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13348: then %ld/%lu
13349:
13350: * src/main/pa_common.C: typo: %l -> %u
13351:
13352: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13353: in attributes or documents-results of transform now not xx;
13354:
13355: * src/classes/xnode.C: memleaks found: not fixed yet. todo
13356:
13357: * src/main/pa_charset.C: bugfix: forgot to undo some
13358:
13359: * src/main/pa_charset.C: beauty: uncomment
13360: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
13361: libraries
13362:
13363: 2004-02-02 paf
13364:
13365: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
13366: $cookie:example[ $.value[value] $.path[/there/] ]
13367:
13368: $cookie:example[ $.value[] $.expires[session]
13369: $.path[/there/] $.domain[test.com] ]
13370:
13371: * src/types/pa_vform.C: bugfix: empty values with
13372: enctype=multipart/form-data now produce entries in $form:tables
13373: <form method=post enctype=multipart/form-data> <input type=hidden
13374: name=a> <input type=hidden name=b>
13375:
13376: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
13377: <hr> <pre>$request:body
13378:
13379: 2004-01-30 paf
13380:
13381: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
13382: or documents-results of transform now not xx;
13383:
13384: * src/classes/date.C: bugfix: ^date::create[invalid fields now
13385: produce exception.
13386:
13387: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
13388: bugfix: ^date::create[invalid fields now produce exception.
13389:
13390: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
13391: year] now produces exception. todo: check other fields
13392:
13393: 2004-01-29 paf
13394:
13395: * src/include/pa_memory.h: typo error
13396:
13397: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
13398: more byte then specified, then zeroed it << useless and
13399: potentially harmful(could gpf)
13400:
13401: 2004-01-22 paf
13402:
13403: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
13404:
13405: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
13406: optimization
13407:
13408: * src/main/untaint.C: bugfix: whitespace now optimized properly
13409: [were bug: ^taint[1 & 2]="1 &2"
13410:
13411: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
13412: errors
13413:
13414: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
13415: overflow
13416:
13417: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
13418: error-reporting code * in parser-error reporting code [when no
13419: @unhandled_exception defined]
13420:
13421: fixed in one place: my *snprintf override
13422:
13423: 2004-01-13 paf
13424:
13425: * operators.txt: typo erro
13426:
13427: 2003-12-25 paf
13428:
13429: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
13430: garbled [pieces after zero bytes were removed]
13431:
13432: 2003-12-22 paf
13433:
1.116 moko 13434: * src/include/Makefile.am: bugfix: removed from dist:
13435: src/include/pa_config_auto.h which were configured for
1.95 moko 13436: make-dist-platform and badly updated proper config file in target
13437: [when .tar used for updating existing source tree]
13438:
13439: * ChangeLog, operators.txt, src/classes/op.C,
13440: src/include/pa_sql_connection.h,
13441: src/include/pa_sql_driver_manager.h,
13442: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
13443: feature: sql introducing ability to transcode charsets
13444:
13445: 2003-12-19 paf
13446:
13447: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
13448: error message
13449:
13450: * src/main/pa_charset.C: bugfix: memory for charsethandler
13451: structure for libxml now allocated properly
13452:
13453: 2003-12-17 paf
13454:
13455: * src/types/pa_vfile.C: beauty: removed outdated cast
13456:
13457: * src/main/pa_common.C: bugfix: empty http response caused gpf
13458:
13459: * src/include/pa_string.h: bugfix: removed too strong a assert
13460:
13461: * src/main/pa_globals.C: bugfix: removed false warning [warning:
13462: unreported xmlGenericErrors]
13463:
13464: 2003-12-15 paf
13465:
13466: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
13467: works}
13468:
13469: 2003-12-11 paf
13470:
13471: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
13472: id
13473: !$status:tid thread id
13474:
13475: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13476: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
13477: bugfix(solaris): removed dependency on object initialization
13478: order [one more place]
13479:
13480: * src/: classes/file.C, classes/mail.C, classes/op.C,
13481: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
13482: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
13483: understand that
13484:
13485: * src/: classes/file.C, classes/mail.C, classes/op.C,
13486: classes/xdoc.C, include/pa_cache_managers.h,
13487: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13488: include/pa_stylesheet_manager.h, main/pa_request.C,
13489: main/pa_stylesheet_manager.C, types/pa_vimage.C,
13490: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
13491: ctor call [relying on implicit String::Body(cstr) call]
13492:
13493: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
13494: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
13495: object initialization order [two places]
13496:
13497: 2003-12-10 paf
13498:
13499: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
13500: << time now ok
13501:
13502: * operators.txt, src/main/pa_sql_driver_manager.C,
13503: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
13504: operational
13505:
13506: * ChangeLog, operators.txt, src/classes/xdoc.C,
13507: src/include/pa_charset.h, src/include/pa_sql_connection.h,
13508: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
13509: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
13510: back operational
13511:
13512: 2003-12-02 paf
13513:
13514: * src/types/pa_vmail.C: bugfix:
13515: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
13516: as-is forced]
13517:
13518: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
13519: exceptions out of libxml callbacks: reimplemented error handling
13520: of http://localhost, parser://method and safemode check callbacks
13521:
13522: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
13523: [merged from HEAD]
13524:
13525: * src/classes/image.C: nothing: comment removed
13526:
13527: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
13528: addresses to int
13529:
13530: 2003-12-01 paf
13531:
13532: * src/main/pa_xml_io.C: bugfix: typo
13533:
13534: * src/main/pa_globals.C: bugfix: win32: compile prob
13535:
13536: * src/classes/xdoc.C: bugfix: typo
13537:
13538: * src/main/pa_xml_io.C: todo: safe mode check not to throw
13539: exception
13540:
13541: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
13542:
13543: 2003-11-28 paf
13544:
13545: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
13546: all xml documents read
13547:
13548: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
13549:
13550: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13551: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
13552: replaced original open mech of xdoc::create & co to use libxml
13553: open, so that this would work for root document todo: safe mode
13554: checks to libxml: ideally to some 1 point
13555:
13556: * src/main/pa_xml_io.C: comment
13557:
13558: * operators.txt, src/main/pa_xml_io.C: leading / in
13559: http://parser[abscent params]
13560:
13561: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
13562: works. todo: maybe replace original open mech of xdoc::create &
13563: co to use libxml open, so that this would work for root document
13564:
13565: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13566: "parser://method/params/here"> <test> &test^; </test> }]
13567:
13568: ^taint[^xdoc.string[]]
13569:
13570: @method[param] <!ENTITY test
13571: "test-entity-value+$form:user+$param!">
13572:
13573: 2003-11-27 paf
13574:
13575: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13576:
13577: * src/classes/date.C: bugfix: typo error
13578:
13579: 2003-11-26 paf
13580:
13581: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13582: src/main/Makefile.am, src/main/main.vcproj,
13583: src/main/pa_globals.C, src/main/pa_request.C,
13584: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13585: xml errors to hash<thread_id,error> reorganization: xml io moved
13586: to pa_xml_io.C/h
13587:
13588: * src/types/pa_value.h: warnings: --
13589:
13590: 2003-11-25 paf
13591:
13592: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13593: whatever)
13594:
13595: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13596: a, (c?x:y, z)
13597:
13598: * src/main/untaint.C: bugfix: consequences of not reading this
13599: comment: CORD_pos_chars_left /* Number of characters in cache.
13600: <= 0 ==> none */
13601:
13602: * src/include/pa_array.h: removed needless checks
13603:
13604: 2003-11-24 paf
13605:
13606: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13607: removed limit: now $form:xxx can be accessed anytime, even in
13608: @auto/conf [and request/response:charset still can be changed
13609: anytime]
13610:
13611: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13612: now not transcodes response body
13613:
13614: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13615: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13616: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13617: $xdoc.firstChild.firstChild.nodeValue[different]
13618: ^taint[^xdoc.string[]]
13619:
13620: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13621: workaround: static Hash::allocates -> static Hash_allocates
13622:
13623: 2003-11-21 paf
13624:
1.116 moko 13625: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13626: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13627: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13628:
13629: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13630:
13631: * src/classes/mail.C: bugfix: typo
13632:
13633: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13634: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13635: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13636: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13637: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13638: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13639:
13640: * src/main/pa_exec.C: bug in safe mode
13641:
13642: * src/include/Makefile.am: pa_xml_exception.h
13643:
13644: * src/targets/isapi/parser3isapi.C: more warnings --
13645:
13646: 2003-11-20 paf
13647:
13648: * src/: classes/math.C, classes/op.C, classes/string.C,
13649: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13650: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13651: --
13652:
13653: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13654: more warnings --
13655:
13656: * src/classes/xdoc.C: more warnings --
13657:
13658: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13659:
13660: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13661: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13662:
13663: * src/: classes/date.C, classes/file.C, classes/hash.C,
13664: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13665: classes/table.C, include/pa_cache_managers.h,
13666: include/pa_stylesheet_connection.h, main/pa_request.C,
13667: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
13668: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
13669: --
13670:
13671: * src/main/: execute.C, pa_request.C: old forgotten todo: when
13672: can't report problem (undefined @unhandled_exception) problem
13673: source string were not reported
13674:
13675: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13676: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13677: classes/hashfile.C, classes/image.C, classes/int.C,
13678: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13679: classes/response.C, classes/string.C, classes/table.C,
13680: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13681: include/pa_array.h, include/pa_cache_managers.h,
13682: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13683: include/pa_config_fixed.h, include/pa_dictionary.h,
13684: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
13685: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
13686: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
13687: include/pa_request.h, include/pa_request_charsets.h,
13688: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
13689: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13690: include/pa_stack.h, include/pa_string.h,
13691: include/pa_stylesheet_connection.h,
13692: include/pa_stylesheet_manager.h, include/pa_table.h,
13693: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13694: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13695: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
13696: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13697: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
13698: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
13699: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
13700: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
13701: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13702: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13703: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
13704: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13705: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
13706: targets/isapi/parser3isapi.C, types/pa_junction.h,
13707: types/pa_method.h, types/pa_value.C, types/pa_value.h,
13708: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
13709: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
13710: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13711: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13712: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13713: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
13714: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13715: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13716: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13717: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13718: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13719: types/pa_vresponse.h, types/pa_vstateless_class.C,
13720: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13721: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13722: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13723: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13724: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13725: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
13726: const IDENT
13727:
13728: * src/: include/pa_array.h, include/pa_pool.h,
13729: include/pa_request.h, include/pa_string.h, include/pa_table.h,
13730: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
13731: types/pa_wcontext.h: more warnings --
13732:
13733: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
13734: classes/file.C, classes/hash.C, classes/hashfile.C,
13735: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13736: classes/memory.C, classes/op.C, classes/string.C,
13737: classes/table.C, classes/xdoc.C, classes/xnode.C,
13738: include/pa_config_includes.h, include/pa_operation.h,
13739: include/pa_sql_connection.h, include/pa_table.h,
13740: include/pa_types.h, lib/ltdl/config_fixed.h,
13741: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
13742: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
13743: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
13744: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
13745: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
13746: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
13747: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
13748: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
13749: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
13750: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
13751: types/pa_vmail.C, types/pa_vobject.C,
13752: types/pa_vstateless_class.h, types/pa_vtable.C,
13753: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13754: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
13755: on all projects (except libltdl=off & libsdbm=level3) found
13756: several unitialized vars
13757:
13758: 2003-11-19 paf
13759:
13760: * src/classes/op.C: more ansi C++ comp
13761:
13762: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13763: src/main/pa_request.C: ^cache[...]{body}{catch block with
13764: $exception.handled[cache] meaning "get expired cache, if any.
13765: else error"}
13766:
13767: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
13768: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
13769: ^cache[...]{body}{catch code with $exception.cache field}
13770:
13771: 2003-11-12 paf
13772:
13773: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
13774: [copy/paste bug]
13775:
13776: 2003-11-11 paf
13777:
13778: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
13779: failed]
13780:
13781: 2003-11-10 paf
13782:
13783: * src/types/pa_vconsole.h: flush
13784:
13785: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
13786: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
13787: read/write [for nntp]
13788:
13789: * operators.txt: mysql: transaction support: ?autocommit=0
13790:
13791: * operators.txt: comment: updated
13792:
13793: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
13794: serialize version and exipire now removes entries
13795:
13796: * operators.txt: ^hashfile.delete[] removes files altogether [and
13797: dir, if could]
13798:
13799: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
13800: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
13801: removes files altogether [and dir, if could]
13802:
13803: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
13804: nonexistent pair. .c coded that that was error. fixed
13805:
13806: * src/types/pa_vhashfile.C: sdbm: exception type change to
13807: file.access [regretfull can't split it to different exceptions
13808: without modifying sdbm source wich would prefer not to]
13809:
13810: 2003-11-07 paf
13811:
13812: * src/: classes/date.C, classes/file.C, classes/hash.C,
13813: classes/hashfile.C, classes/image.C, classes/table.C,
13814: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
13815: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
13816: main/execute.C, main/main.vcproj, main/pa_pool.C,
13817: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
13818: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
13819: types/pa_vstateless_class.h: resurrected: pool idea. now only for
13820: destructing objects at request processing end
13821:
13822: 2003-11-06 paf
13823:
13824: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
13825: updates
13826:
13827: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
13828: to include sdbm
13829:
1.116 moko 13830: * src/include/: pa_config_includes.h, pa_version.h: our
13831: replacements of max& co only for cpp
1.95 moko 13832:
13833: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
13834: upper dir, .am updated
13835:
13836: * tests/todo.txt: hashfile: done
13837:
13838: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
13839: expiration [time in value. todo: move time to key]
13840:
13841: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
13842:
13843: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
13844: to do that in foreach, no errors, but surely wrong]
13845:
13846: * operators.txt, src/types/pa_vhashfile.C,
13847: src/types/pa_vhashfile.h: hashfile: clear and proper locking
13848:
13849: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
13850: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
13851: foreach
13852:
13853: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
13854: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
13855:
13856: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
13857: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
13858:
13859: * src/: include/pa_memory.h, targets/cgi/parser3.C,
13860: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13861: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
13862: get/put [raw]
13863:
13864: * src/: classes/op.C, main/pa_os.C: just linked
13865:
13866: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
13867: XmlException changes
13868:
13869: * src/: include/pa_charset.h, include/pa_globals.h,
13870: include/pa_stylesheet_connection.h, main/pa_exception.C:
13871: XmlException changes
13872:
13873: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
13874:
13875: * src/: include/pa_common.h, include/pa_exception.h,
13876: main/main.vcproj, main/pa_common.C, include/pa_os.h,
13877: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
13878: main/pa_xml_exception.C: locking move to pa_os [along with
13879: pa_sleep] apr-impl locking done
13880:
13881: * configure, configure.in, operators.txt, parser3.sln,
13882: src/classes/classes.vcproj, src/classes/hashfile.C,
13883: src/classes/xdoc.C, src/include/pa_config_fixed.h,
13884: src/include/pa_exception.h, src/include/pa_globals.h,
13885: src/include/pa_memory.h, src/include/pa_version.h,
13886: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
13887: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
13888: src/main/compile.tab.C, src/main/main.vcproj,
13889: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
13890: src/types/Makefile.am, src/types/pa_vhash.C,
13891: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
13892: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
13893: again with sdbm from apache
13894:
13895: 2003-11-05 paf
13896:
13897: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13898: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
13899: \parser3project dir anymore
13900:
13901: * src/main/pa_charset.C: bugfix: had broken binary search [copied
13902: thoughtlessly from xalan]
13903:
13904: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
13905: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
13906: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
13907:
13908: * src/main/helpers/CaseFolding.txt:
13909: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
13910:
13911: 2003-11-04 paf
13912:
13913: * operators.txt: comment: ^mail:send[$.options[
13914:
13915: * src/classes/table.C: compiled on unix
13916:
1.116 moko 13917: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 13918:
13919: * src/classes/mail.C: compiled on unix
13920:
13921: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
13922: src/types/pa_vmail.h: !^mail:send[
13923: $.options[unix: string to append to sendmail command
13924: line]
13925:
13926: * operators.txt, src/classes/table.C, src/main/pa_string.C,
13927: tests/todo.txt: ^table.save[... $.separator[^#09]
13928: $.encloser["] <nothing> by default
13929:
13930: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
13931: !$.separator[^#09] !$.encloser["] <nothing> by
13932: default
13933:
13934: 2003-11-03 paf
13935:
13936: * operators.txt, src/classes/table.C, src/main/pa_common.C:
13937: ^table::load[; options: !$.column-separator[^#09]
13938: !$.column-encloser["]
13939:
13940: * operators.txt, src/include/pa_config_fixed.h,
13941: src/types/pa_vrequest.C: $request:document-root
13942:
13943: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13944: [already included into uri=xxx]
13945:
13946: * operators.txt, src/classes/image.C, tests/todo.txt:
13947: ^image.gif[filename] for $response:download
13948:
13949: * src/classes/date.C: minor precaution
13950:
13951: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13952: !^date.unix-timestamp[]
13953:
13954: 2003-10-30 paf
13955:
13956: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13957: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13958:
13959: * src/classes/: date.C, image.C: improvement diagnostics:
13960: $now[^date::create[$undefined]] now is error
13961:
13962: * src/main/pa_common.C: read errors would now be reported 'actually
13963: read -1 bytes'
13964:
13965: 2003-10-24 paf
13966:
13967: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13968: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13969: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13970: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13971:
13972: 2003-10-22 paf
13973:
13974: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13975:
13976: 2003-10-21 paf
13977:
13978: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13979: fixed: string.match[g] without <'> option produced columns with
13980: NULL's, which gpf'ed at table.save time
13981:
13982: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13983: recoursion' message with intensive throw-catches fixed: incorrect
13984: name and line (one name upper then needed) in error message about
13985: problems inside try block
13986:
13987: 2003-10-10 paf
13988:
13989: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13990: check offset argument for validity did that in String::Body::pos
13991: myself http://i2/tasks/edit/?id=4577425257580789777
13992:
13993: 2003-10-07 paf
13994:
13995: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13996: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13997:
13998: 2003-10-03 paf
13999:
14000: * parser3.sln, src/include/pa_dictionary.h,
14001: src/main/pa_dictionary.C, src/main/pa_string.C,
14002: src/targets/cgi/parser3.vcproj: dictionary optimized by
14003: precalculating cstr&length
14004:
14005: 2003-10-02 paf
14006:
14007: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14008: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
14009: main/pa_stylesheet_manager.C: bugfix: ^throw context were
14010: saved/restored incompletely http://www.parser.ru/forum/?id=21484
14011:
14012: 2003-09-30 paf
14013:
14014: * src/main/pa_string.C: string::replace bug fix [were ignoring
14015: occurrances after lang-mismatched
14016:
14017: 2003-09-29 paf
14018:
14019: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
14020: helper
14021:
14022: * src/main/pa_string.C: string::serialize bug fix with
14023: zero-terminator
14024:
14025: * src/classes/table.C: ^nameless_table.save column row now has no
14026: \t at the end
14027:
14028: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
14029: @postprocess now takes $response:body/download
14030:
14031: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
14032: error message
14033:
14034: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
14035:
14036: * src/classes/table.C: bugfix: flip: must produce nameless
14037: http://i2/tasks/edit/?id=4573405524674081244
14038:
14039: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
14040: main/helpers/simple_folding.pl: utf-8 upper/lower
14041:
14042: * src/main/pa_common.C: bugfix: utf signature were not ignored due
14043: to typo error http://i2/tasks/edit/?id=4573354650786434584
14044:
14045: 2003-09-26 paf
14046:
14047: * src/main/untaint.C: removed needless field
14048:
14049: * src/main/untaint.C: removed needless const
14050:
14051: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
14052: String.for_each bug fixed [omited one-char cases]
14053:
14054: * src/include/pa_stack.h: bugfix: before collecting garbage,
14055: runtime-executor stack were cleared... BADLY
14056:
14057: * src/main/pa_string.C: ^stirng.replace code used old
14058: param-convention on langs.append, fixed that search fo the like,
14059: found none
14060:
14061: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
14062: string::serialize/deserialize implemented Language enum assigned
14063: meaningful letters [more convinient for debugging. read warning
14064: before adding/changing anything]
14065:
14066: 2003-09-25 paf
14067:
14068: * src/: include/pa_string.h, include/pa_version.h,
14069: main/pa_string.C, main/untaint.C: templates and anonymous unions
14070: differences on unix
14071:
14072: * parser3.sln, src/classes/file.C, src/classes/image.C,
14073: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
14074: src/classes/xdoc.C, src/classes/xnode.C,
14075: src/include/pa_cache_managers.h, src/include/pa_charset.h,
14076: src/include/pa_charsets.h, src/include/pa_common.h,
14077: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
14078: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
14079: src/include/pa_table.h, src/lib/cord/cordbscs.c,
14080: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
14081: src/lib/cord/include/cord.h, src/main/compile.tab.C,
14082: src/main/compile_tools.h, src/main/pa_charset.C,
14083: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
14084: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14085: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
14086: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
14087: src/types/pa_vmail.C, src/types/pa_vmath.C,
14088: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
14089: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
14090:
14091: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
14092: functions aligned to that of eeparser3 look
14093:
14094: * src/lib/cord/cordprnt.c: removed warnings
14095:
14096: 2003-09-24 paf
14097:
14098: * src/: classes/file.C, classes/image.C, classes/mail.C,
14099: classes/op.C, classes/xdoc.C, classes/xnode.C,
14100: include/pa_cache_managers.h, include/pa_charset.h,
14101: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
14102: include/pa_sql_driver_manager.h, include/pa_string.h,
14103: include/pa_stylesheet_manager.h, include/pa_table.h,
14104: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
14105: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
14106: main/pa_sql_driver_manager.C, main/pa_string.C,
14107: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
14108: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
14109: types/pa_vstateless_class.h, types/pa_vstatus.C,
14110: types/pa_vxnode.C: v() functions of String::Body,
14111: String::Languages and String itself StringBody->String::Body
14112:
14113: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14114: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
14115: never optimized anything. todo: somehow speed up harder cases:
14116: concatenationA+concatenationB when last block of A and first of B
14117: contain same letters
14118:
14119: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14120: lib/cord/include/cord.h: langs: speed up by joining adjucent
14121: blocks of same char [CORD_append_block]
14122:
14123: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14124: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
14125: save space by extending blocks when appending block with c ==
14126: lastblock.c
14127:
14128: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
14129: working yet :( but more working &understood :)
14130:
14131: * src/: classes/table.C, include/pa_string.h,
14132: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
14133:
14134: 2003-09-23 paf
14135:
14136: * src/main/untaint.C: $a[ok!] $a works!
14137:
14138: * src/main/untaint.C: something even more works :)
14139:
14140: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
14141: something more works :)
14142:
14143: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14144: lib/cord/cordxtra.c: something already works :)
14145:
14146: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
14147: serialize&deserialize
14148:
14149: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
14150: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
14151: main/untaint.C: main idea implemented, details left
14152:
14153: 2003-09-22 paf
14154:
14155: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
14156:
14157: * src/classes/xnode.C: copy/paste comment bugfix
14158:
14159: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
14160: allocator returns 0, just die.
14161: http://i2/tasks/edit/?id=4570798492410259445
14162:
14163: * src/classes/xdoc.C: copy/paste comment bugfix
14164:
14165: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
14166: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
14167: xnode: getAttributeNS setAttributeNS removeAttributeNS
14168: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
14169:
14170: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
14171: chars due to bitwise operation signed-char error]
14172:
14173: 2003-09-19 paf
14174:
14175: * src/types/pa_wcontext.C: output message: more practical
14176: suggestion
14177:
14178: * src/main/pa_common.C, operators.txt: merged
14179: $f[^file::load[binary;http://...]] $f.tables
14180:
14181: 2003-09-02 paf
14182:
14183: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
14184: flush stdout without referencing 'stdout' symbol. to hell with
14185: non-ansi libraries without 'stdout' symbol
14186:
14187: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
14188: unix (users reported problems with some old libc)
14189:
14190: * src/types/pa_vdate.h: forgot initializer
14191:
14192: 2003-09-01 paf
14193:
14194: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
14195: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
14196: zone]
14197:
14198: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
14199:
14200: 2003-08-19 paf
14201:
14202: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
14203: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
14204: simplified a little
14205:
14206: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
14207: [lost fix from 3.0.8]
14208:
14209: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
14210: visible here }
14211:
14212: bug fix
14213:
14214: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
14215:
14216: * src/main/compile.tab.C: initialized couple of variables about
14217: which user reported runtime problems when parser were compiled
14218: with VC7, warning level4. study shows that later in bison
14219: they've fixed that. would migrate to latest bison someday
14220:
14221: * src/types/pa_vmail.C: turned off recoding in gmime (were still
14222: recoding headers)
14223:
14224: * src/types/pa_vmail.C: works as before, same charset problems:
14225: gmime recodes to UTF-8 only headers, not body. so not recoding
14226: anything for now
14227:
14228: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
14229: problems with body
14230:
14231: * src/types/pa_vmail.C: mail_receive just compiled
14232:
14233: 2003-08-18 paf
14234:
14235: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
14236: main/main.vcproj, types/types.vcproj: win32: continued process
14237: detaching from \parser3project directory
14238:
14239: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
14240: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
14241: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
14242: src/lib/pcre/pcre_dftables.dsp,
14243: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
14244: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
14245: src/types/types.dsp: moved to MSVC 7
14246:
14247: * gnu.vcproj.vspscc, parser3.vssscc,
14248: src/classes/classes.vcproj.vspscc,
14249: src/lib/cord/cord.vcproj.vspscc,
14250: src/lib/ltdl/libltdl.vcproj.vspscc,
14251: src/lib/md5/md5.vcproj.vspscc,
14252: src/lib/pcre/pcre_dftables.vcproj.vspscc,
14253: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
14254: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
14255: src/targets/isapi/parser3isapi.vcproj.vspscc,
14256: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
14257: moved to MSVC 7
14258:
14259: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
14260: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
14261: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
14262: src/lib/pcre/pcre_dftables.vcproj,
14263: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
14264: src/targets/cgi/parser3.vcproj,
14265: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
14266: new VS project files
14267:
14268: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
14269: .NET to detect Jalindi Igloo capabilities.
14270:
14271: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 14272: src/classes/classes.awk, src/doc/footer.htm,
14273: src/include/pa_config_fixed.h, src/include/pa_version.h,
14274: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 14275: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
14276: src/types/pa_vmail.C: merged 3.1.0 latest changes
14277:
14278: 2003-08-15 paf
14279:
14280: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14281: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
14282:
14283: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14284: non-ascii <yyy> now encoded correctly
14285:
14286: 2003-07-29 paf
14287:
1.116 moko 14288: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
14289: dist
1.95 moko 14290:
14291: * src/types/pa_vmail.C: just started --with-mail-receive
14292:
14293: 2003-07-28 paf
14294:
1.116 moko 14295: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
14296: dependence in src/classes, src/lib/gc now in dist
1.95 moko 14297:
14298: * src/main/pa_string.C: ^cache bug fix [were not working at all]
14299:
14300: 2003-07-25 paf
14301:
14302: * src/doc/footer.htm: year
14303:
14304: 2003-07-24 paf
14305:
14306: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
14307: fix
14308:
14309: * src/include/pa_version.h: release
14310:
1.116 moko 14311: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 14312:
14313: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
14314: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
14315: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
14316: getting rid of win32xml pseudo project
14317:
14318: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
14319:
1.116 moko 14320: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
14321: configure.in, operators.txt, parser3.dsw,
1.95 moko 14322: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 14323: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 14324: src/classes/classes.C, src/classes/classes.awk,
14325: src/classes/classes.dsp, src/classes/classes.h,
14326: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14327: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14328: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14329: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14330: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14331: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14332: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
14333: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 14334: src/include/pa_array.h, src/include/pa_cache_managers.h,
14335: src/include/pa_charset.h, src/include/pa_charsets.h,
14336: src/include/pa_common.h, src/include/pa_config_auto.h.in,
14337: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
14338: src/include/pa_dictionary.h, src/include/pa_dir.h,
14339: src/include/pa_exception.h, src/include/pa_exec.h,
14340: src/include/pa_globals.h, src/include/pa_hash.h,
14341: src/include/pa_memory.h, src/include/pa_opcode.h,
14342: src/include/pa_operation.h, src/include/pa_pool.h,
14343: src/include/pa_pragma_pack_begin.h,
1.95 moko 14344: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
14345: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14346: src/include/pa_sapi.h, src/include/pa_socks.h,
14347: src/include/pa_sql_connection.h,
14348: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14349: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14350: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14351: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14352: src/include/pa_uue.h, src/lib/Makefile.am,
14353: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14354: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14355: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
14356: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 14357: src/lib/cord/include/ec.h,
14358: src/lib/cord/include/private/Makefile.am,
14359: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 14360: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
14361: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 14362: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 14363: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
14364: src/main/compile_tools.C, src/main/compile_tools.h,
14365: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
14366: src/main/pa_cache_managers.C, src/main/pa_charset.C,
14367: src/main/pa_charsets.C, src/main/pa_common.C,
14368: src/main/pa_dictionary.C, src/main/pa_dir.C,
14369: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 14370: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
14371: src/main/pa_request.C, src/main/pa_socks.C,
14372: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14373: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 14374: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
14375: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
14376: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
14377: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
14378: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
14379: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
14380: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 14381: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
14382: src/targets/isapi/parser3isapi.dsp,
14383: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 14384: src/types/pa_junction.h, src/types/pa_method.h,
14385: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 14386: src/types/pa_vclass.C, src/types/pa_vclass.h,
14387: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14388: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14389: src/types/pa_vdouble.h, src/types/pa_venv.h,
14390: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14391: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14392: src/types/pa_vimage.C, src/types/pa_vimage.h,
14393: src/types/pa_vint.h, src/types/pa_vjunction.h,
14394: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
14395: src/types/pa_vmath.h, src/types/pa_vmemory.h,
14396: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14397: src/types/pa_vobject.C, src/types/pa_vobject.h,
14398: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14399: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14400: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14401: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14402: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14403: src/types/pa_vstring.h, src/types/pa_vtable.C,
14404: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14405: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14406: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14407: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14408: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
14409: HEAD
14410:
14411: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
14412: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
14413: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
14414: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
14415: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
14416: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
14417: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
14418: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
14419: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
14420: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
14421: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
14422: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
14423: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
14424: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
14425: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
14426: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
14427: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
14428: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
14429: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
14430: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
14431: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14432: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
14433: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
14434: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
14435: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
14436: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
14437: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
14438: outputs/create-dir, results/001.processed, results/002.processed,
14439: results/003.processed, results/004.processed,
14440: results/005.processed, results/006.processed,
14441: results/007.processed, results/008.processed,
14442: results/009.processed, results/010.processed,
14443: results/011.processed, results/012.processed,
14444: results/013.processed, results/014.processed,
14445: results/015.processed, results/016.processed,
14446: results/017.processed, results/018.processed,
14447: results/019.processed, results/020.processed,
14448: results/021.processed, results/022.processed,
14449: results/023.processed, results/024.processed,
14450: results/025.processed, results/026.processed,
14451: results/027.processed, results/028.processed,
14452: results/029.processed, results/030.processed,
14453: results/031.processed, results/032.processed,
14454: results/033.processed, results/034.processed,
14455: results/035.processed, results/036.processed,
14456: results/037.processed, results/038.processed,
14457: results/039.processed, results/040.processed,
14458: results/041.processed, results/042.processed,
14459: results/043.processed, results/044.processed,
14460: results/045.processed, results/046.processed,
14461: results/047.processed, results/048.processed,
14462: results/049.processed, results/050.processed,
14463: results/051.processed, results/052.processed,
14464: results/053.processed, results/054.processed,
14465: results/055.processed, results/056.processed,
14466: results/057.processed, results/058.processed,
14467: results/059.processed, results/060.processed,
14468: results/061.processed, results/062.processed,
14469: results/063.processed, results/064.processed,
14470: results/065.processed, results/066.processed,
14471: results/067.processed, results/068.processed,
14472: results/069.processed, results/070.processed,
14473: results/071.processed, results/072.processed,
14474: results/073.processed, results/074.processed,
14475: results/075.processed, results/076.processed,
14476: results/077.processed, results/078.processed,
14477: results/079.processed, results/080.processed,
14478: results/081.processed, results/082.processed,
14479: results/083.processed, results/084.processed,
14480: results/085.processed, results/086.processed,
14481: results/087.processed, results/088.processed,
14482: results/089.processed, results/090.processed,
14483: results/091.processed, results/092.processed,
14484: results/093.processed, results/094.processed,
14485: results/095.processed, results/096.processed,
14486: results/097.processed, results/098.processed,
14487: results/099.processed, results/100.processed,
14488: results/101.processed, results/102.processed,
14489: results/103.processed, results/104.processed,
14490: results/105.processed, results/106.processed,
14491: results/107.processed, results/108.processed,
14492: results/109.processed, results/110.processed,
14493: results/111.processed, results/112.processed,
14494: results/113.processed, results/114.processed,
14495: results/115.processed, results/116.processed,
14496: results/117.processed, results/118.processed,
14497: results/119.processed, results/120.processed,
14498: results/121.processed, results/122.processed,
14499: results/123.processed, results/124.processed,
14500: results/125.processed, results/126.processed,
14501: results/127.processed, results/128.processed,
14502: results/129.processed, results/130.processed,
14503: results/131.processed, results/132.processed,
14504: results/133.processed, results/134.processed,
14505: results/135.processed, results/136.processed,
14506: results/137.processed, results/138.processed,
14507: results/139.processed, results/140.processed,
14508: results/141.processed: merged(copied) to HEAD from template_gc
14509:
14510: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
14511: towards \parser3project not having to be in root
14512:
14513: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
14514: module compiled [were minor unnecessary changes in lib/md5
14515: interface]
14516:
14517: * src/include/pa_version.h: release
14518:
14519: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
14520:
14521: * src/classes/math.C: merged uuid bugfix
14522:
14523: * tests/: 141.html, results/141.processed: fixed bug with
14524: too-small-a-buffer
14525:
14526: * src/classes/math.C: uuid bugfix
14527:
14528: * tests/: 141.html, Makefile, results/005.processed,
14529: results/030.processed, results/075.processed,
14530: results/078.processed: to reflect date format change (were -
14531: become ' ')
14532:
14533: * src/classes/math.C: uuid bugfix
14534:
14535: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
14536: debug/release changes
14537:
14538: * src/lib/md5/pa_md5c.c: PA_ -> pa_
14539:
14540: 2003-07-23 paf
14541:
14542: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14543: renamed a little [to move to comman naming conv]
14544:
1.116 moko 14545: * src/targets/Makefile.am: apache13 splitted to simplify apache
14546: build
1.95 moko 14547:
14548: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
14549: main/pa_request.C, main/pa_sql_driver_manager.C,
14550: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
14551: stack top_index() fixed
14552:
14553: * src/main/pa_globals.C: minor style changes
14554:
14555: * src/: classes/op.C, include/pa_sql_connection.h: connection
14556: closing/caching fixed [connections were not closed/put to cache]
14557:
14558: 2003-07-22 paf
14559:
14560: * INSTALL: gc part updated stightly
14561:
14562: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
14563: new sapi interface
14564:
14565: * src/classes/file.C: comment on OS
14566:
14567: * src/main/pa_string.C: removed reduntant invariant check [there is
14568: one deeper in cord lib]
14569:
14570: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14571:
14572: * src/main/pa_memory.C: out of memory is no longer coredump
14573:
14574: * INSTALL: disable-threads adviced
14575:
14576: 2003-07-21 paf
14577:
1.116 moko 14578: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14579:
14580: * src/classes/file.C: file::exec/cgi environment variables now must
14581: be UPPERCASE and A-Z 0-9 _-
14582:
14583: * src/classes/file.C: env passing fixed
14584:
14585: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14586:
14587: * src/main/pa_common.C: http:// CRLF now
14588:
14589: 2003-07-02 paf
14590:
14591: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14592: fields to reflect their real meaning
14593:
14594: 2003-06-27 paf
14595:
14596: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14597: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14598: file::exec/cgi .charset
14599:
14600: 2003-06-26 paf
14601:
14602: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14603: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14604: src/classes/table.C: fixed several uninitialized local
14605: structures. notably ^hash.foreach now inserts delimiters
14606: properly [were inserting it before first body]
14607:
14608: 2003-06-24 paf
14609:
14610: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14611:
14612: 2003-06-20 paf
14613:
14614: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14615: src/main/pa_globals.C: introducing
14616: $f[^file::load[binary;http://...]] $f.tables
14617:
14618: 2003-06-06 paf
14619:
14620: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14621: table. [were method lookup: inconsistent]
14622:
14623: 2003-06-02 paf
14624:
14625: * src/include/pa_memory.h: empty string clone fixed to return
14626: writable memory
14627:
14628: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14629: were not appended] which violated string invariant
14630:
14631: 2003-05-30 paf
14632:
14633: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14634: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14635:
14636: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14637: GMT ; RFC 822, updated by RFC 1123
14638:
14639: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14640: targets/isapi/parser3isapi.C: initialized request_info properly
14641:
14642: * src/classes/xnode.C: found minor bug, commended for future
14643:
14644: 2003-05-28 paf
14645:
14646: * src/classes/form.C: request_info.content_length can't be <0,
14647: size_t for some time
14648:
14649: 2003-05-26 paf
14650:
14651: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14652: forgotten <0 changed to !=STRING_NOT_FOUND
14653:
14654: * src/classes/math.C: merged ffffu from HEAD
14655:
14656: 2003-05-11 paf
14657:
14658: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14659:
14660: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14661: premature doc free. transformed document had xmlDoc reference
14662: stored to non-gc-memory (libgdome) added holding-reference
14663:
14664: 2003-04-29 paf
14665:
14666: * src/main/pa_globals.C: started digging on double free. on win32
14667: found that that's perfectly normal.
14668:
14669: 2003-04-25 paf
14670:
14671: * src/classes/table.C: table.join bug fix [bad limit check]
14672:
14673: * src/classes/math.C: merged from HEAD: simpiler hash_string
14674:
14675: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
14676: print anything. changed to quicker and simplier code
14677:
14678: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
14679: strict a check]
14680:
14681: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
14682:
14683: 2003-04-24 paf
14684:
14685: * src/include/pa_table.h: too strict assert loosened
14686:
14687: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
14688: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
14689: report
14690:
14691: 2003-04-21 paf
14692:
1.116 moko 14693: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 14694:
14695: * src/main/pa_globals.C: pcre memory management changed to use GC
14696: memory
14697:
14698: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
14699: xmlMallocAtomic [author agreed to my suggestion], used that
14700:
14701: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
14702:
14703: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
14704: types/pa_vmail.C: attributed_meaning_to_string added
14705: L_UNSPECIFIED piece which was sortof OK, but violated string
14706: invariant [assertion barked on that] changed to L_PASS_APPEND,
14707: made that param obligatory
14708:
14709: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
14710: fixed [assert helped]
14711:
14712: * src/include/pa_string.h: assert added [looking for bug]
14713:
14714: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
14715: names on Win32 considered disk-global
14716:
14717: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
14718: considered disk-global
14719:
14720: 2003-04-18 paf
14721:
14722: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
14723: filenames
14724:
14725: * src/main/untaint.C: enabled '~' letter in filenames
14726:
14727: 2003-04-16 paf
14728:
14729: * src/classes/file.C: small bug introduced in autoptr times fixed
14730:
14731: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
14732: HEAD
14733:
1.116 moko 14734: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 14735:
14736: 2003-04-15 paf
14737:
14738: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14739: src/lib/md5/pa_md5c.c, tests/141.html,
14740: tests/results/141.processed: merged from head ^math:uuid[]
14741: ^math:uid64[] ^math:md5[string]
14742:
14743: test added: 141.html
14744:
14745: * operators.txt, src/classes/math.C: ^math:uid64[]
14746:
14747: * src/classes/math.C: ^math:uuid[]
14748:
14749: * operators.txt, src/classes/math.C: ^math:uuid[]
14750:
14751: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14752: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
14753:
14754: * operators.txt, src/classes/file.C, src/include/pa_common.h,
14755: src/include/pa_config_fixed.h, src/main/pa_common.C:
14756: ^file::load[mode;name; $.offset $.limit
14757:
14758: 2003-04-14 paf
14759:
14760: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14761: started ^math:md5
14762:
14763: * src/classes/table.C, src/include/pa_array.h,
14764: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
14765: tests/results/140.processed: table $.reverse option works in
14766: create&co table $.distinct[tables] bug fix merged
14767:
14768: * src/: classes/table.C, include/pa_table.h: table
14769: $.distinct[tables] bug fixed
14770:
14771: * src/classes/table.C: more warnings
14772:
14773: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
14774: removed checks in table::set_current, moved them back to
14775: table::locate implemented table::create/join ñ $.reverse
14776:
14777: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
14778: removed checks in table::set_current, moved them back to
14779: table::locate
14780:
14781: 2003-04-11 paf
14782:
14783: * operators.txt, src/classes/date.C, src/classes/table.C,
14784: src/include/pa_array.h, src/include/pa_common.h,
14785: src/include/pa_config_includes.h, src/include/pa_string.h,
14786: src/include/pa_table.h, src/main/pa_request.C,
14787: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14788: src/main/pa_table.C: merged from HEAD from
14789: before_append_array_limit_sense_change to
14790: after_append_array_limit_sense_change
14791:
14792: * src/classes/table.C: typo
14793:
14794: * operators.txt, src/classes/date.C, src/classes/table.C,
14795: src/include/pa_array.h, src/include/pa_common.h,
14796: src/include/pa_config_includes.h, src/include/pa_globals.h,
14797: src/include/pa_table.h, src/main/pa_array.C,
14798: src/main/pa_globals.C, src/main/pa_request.C,
14799: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14800: src/main/pa_table.C: append_array_limit_sense_change locate
14801: accepts options same as create new option: $.reverse(1) [do not
14802: work in table::create]
14803:
14804: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
14805: (stat xxx,
14806:
14807: * src/classes/: table.C: typo
14808:
14809: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
14810: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
14811: results/130.processed, results/131.processed,
14812: results/132.processed, results/133.processed,
14813: results/134.processed, results/135.processed,
14814: results/136.processed, results/137.processed,
14815: results/138.processed, results/139.processed: added few mustfail
14816: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
14817: date/time 132.html mustfail: access to junction outside of
14818: context 133.html mustfail: access to junction outside of context,
14819: case version 134.html mustfail: hash: adding a key inside of
14820: foreach 135.html mustfail: modifying system class 136.html
14821: mustfail: $.name outside of $hash[here] 137.html mustfail:
14822: appendChild without import 138.html mustfail: invalid encoding
14823: inside of xml 139.html mustfail: bad XPath
14824:
14825: * operators.txt, src/classes/table.C, tests/084.html,
14826: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
14827: tests/129.html, tests/results/125.processed,
14828: tests/results/126.processed, tests/results/127.processed,
14829: tests/results/128.processed, tests/results/129.processed: merged
14830: from HEAD ^table.hash[key][$.distinct[tables]]
14831:
14832: maked appropriate tests [changed one old nonconforming]
14833:
14834: * operators.txt, src/classes/table.C:
14835: ^table.hash[key][$.distinct[tables]]
14836:
14837: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14838: merged fix for found very old xml (dom) bug: were passing
14839: domString objects and later ERROREOUSLY freed them
14840:
14841: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
14842: src/main/pa_charset.C: re-added libgdome patch. regretfully
14843: libgdome bug can not be worked around
14844:
14845: 2003-04-10 paf
14846:
14847: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14848: found very old xml (dom) bug: were passing domString objects and
14849: later ERROREOUSLY freed them
14850:
14851: * src/doc/string.dox, src/include/pa_memory.h,
14852: src/include/pa_string.h, src/lib/cord/cordbscs.c,
14853: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
14854: tests/123.html, tests/124.html, tests/results/001.processed,
14855: tests/results/002.processed, tests/results/003.processed,
14856: tests/results/004.processed, tests/results/005.processed,
14857: tests/results/006.processed, tests/results/008.processed,
14858: tests/results/009.processed, tests/results/010.processed,
14859: tests/results/011.processed, tests/results/012.processed,
14860: tests/results/013.processed, tests/results/014.processed,
14861: tests/results/015.processed, tests/results/016.processed,
14862: tests/results/017.processed, tests/results/018.processed,
14863: tests/results/020.processed, tests/results/021.processed,
14864: tests/results/022.processed, tests/results/023.processed,
14865: tests/results/024.processed, tests/results/025.processed,
14866: tests/results/026.processed, tests/results/027.processed,
14867: tests/results/028.processed, tests/results/029.processed,
14868: tests/results/030.processed, tests/results/031.processed,
14869: tests/results/032.processed, tests/results/033.processed,
14870: tests/results/034.processed, tests/results/035.processed,
14871: tests/results/036.processed, tests/results/037.processed,
14872: tests/results/038.processed, tests/results/039.processed,
14873: tests/results/040.processed, tests/results/041.processed,
14874: tests/results/042.processed, tests/results/043.processed,
14875: tests/results/044.processed, tests/results/045.processed,
14876: tests/results/046.processed, tests/results/047.processed,
14877: tests/results/048.processed, tests/results/049.processed,
14878: tests/results/050.processed, tests/results/051.processed,
14879: tests/results/052.processed, tests/results/053.processed,
14880: tests/results/054.processed, tests/results/055.processed,
14881: tests/results/056.processed, tests/results/057.processed,
14882: tests/results/058.processed, tests/results/059.processed,
14883: tests/results/060.processed, tests/results/061.processed,
14884: tests/results/062.processed, tests/results/063.processed,
14885: tests/results/064.processed, tests/results/065.processed,
14886: tests/results/066.processed, tests/results/067.processed,
14887: tests/results/068.processed, tests/results/069.processed,
14888: tests/results/070.processed, tests/results/071.processed,
14889: tests/results/072.processed, tests/results/073.processed,
14890: tests/results/074.processed, tests/results/075.processed,
14891: tests/results/076.processed, tests/results/077.processed,
14892: tests/results/078.processed, tests/results/079.processed,
14893: tests/results/080.processed, tests/results/081.processed,
14894: tests/results/082.processed, tests/results/083.processed,
14895: tests/results/084.processed, tests/results/085.processed,
14896: tests/results/086.processed, tests/results/087.processed,
14897: tests/results/088.processed, tests/results/089.processed,
14898: tests/results/090.processed, tests/results/091.processed,
14899: tests/results/092.processed, tests/results/093.processed,
14900: tests/results/094.processed, tests/results/095.processed,
14901: tests/results/096.processed, tests/results/097.processed,
14902: tests/results/101.processed, tests/results/102.processed,
14903: tests/results/104.processed, tests/results/105.processed,
14904: tests/results/106.processed, tests/results/107.processed,
14905: tests/results/108.processed, tests/results/109.processed,
14906: tests/results/110.processed, tests/results/111.processed,
14907: tests/results/112.processed, tests/results/113.processed,
14908: tests/results/114.processed, tests/results/115.processed,
14909: tests/results/116.processed, tests/results/117.processed,
14910: tests/results/118.processed, tests/results/119.processed,
14911: tests/results/120.processed, tests/results/121.processed,
14912: tests/results/122.processed, tests/results/123.processed,
14913: tests/results/124.processed: new convention: char* never 0.
14914: assert in cord on that
14915:
14916: * src/main/pa_charset.C: couple more asserts
14917:
14918: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
14919: speedup
14920:
14921: * src/main/pa_charset.C: couple assertions on fantastic situations
14922: added [may be those is the case now?]
14923:
14924: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14925: that's memory from gc_malloc, not from g_malloc :(, but would
14926: hope]
14927:
14928: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14929: that's memory from gc_malloc, not from g_malloc :(, but would
14930: hope]
14931:
14932: * src/main/pa_charset.C: checked custom malloc for returning 0
14933:
14934: 2003-04-09 paf
14935:
14936: * src/classes/date.C: merged ^date.roll changes
14937:
14938: * src/classes/date.C: ^date.roll bug fix
14939:
14940: * src/classes/date.C: ^date.roll now throws less errors: month
14941: shifts handles end of month situation by reducing day number
14942: hour-hole shift reduces hour to recover
14943:
14944: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14945: Sort by function time
14946:
14947: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14948: http:// $.charset[] param done
14949:
14950: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14951: added [after volatile fix. passes on win&intel-solaris]
14952:
14953: 2003-04-08 paf
14954:
14955: * src/: classes/file.C, classes/op.C, classes/table.C,
14956: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14957: include/pa_common.h, include/pa_request_charsets.h,
14958: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14959: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14960: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14961: types/pa_vresponse.C: started http:// $.charset[] param and
14962: http response charset detection just compiled. todo:test
14963:
14964: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14965:
14966: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14967: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14968: types/pa_vmail.C: changed transcode param converntion along with
14969: string creating convention -- all strings are zero-terminated,
14970: this allowed to fix one remaining String("123", 2) case
14971:
14972: * src/: classes/date.C, classes/file.C, classes/hash.C,
14973: classes/op.C, classes/string.C, classes/table.C,
14974: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14975: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14976: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14977: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14978: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14979: violated String::invariant. started fixing [not compiled now]
14980:
14981: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14982: main/compile.tab.C, main/compile.y, main/pa_string.C,
14983: main/untaint.C, targets/cgi/parser3.C: number of string style
14984: improvements & optimizations
14985:
14986: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14987: :(]
14988:
14989: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14990: [for it's a pointer really]
14991:
14992: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14993: 'n' param. worked that around
14994:
14995: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14996: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14997: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14998: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14999: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
15000:
15001: Thanks for the bug report and patch.
15002:
15003: I hadn't looked at this code in a while. Reading it now, it
15004: seems to me that the tests should also be ">= MAX_DEPTH" to
15005: comply with the invariant, though that may not matter a lot. I
15006: changed that, too.
15007:
15008: Hans
15009:
15010: 2003-04-07 paf
15011:
15012: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
15013: merged from head:safe mode error message now includes numbers
15014:
15015: * src/main/execute.C: n-th attempt to make a=a work with double.
15016: problem: as_double returns it's result in fp-register compiler
15017: optimizes access to that register after b->as_double, and just
15018: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15019: from memory. _SAME_ double values do not match here. when
15020: forced to REload fp-register, values do match.
15021:
15022: tried to make them volatile.
15023:
15024: * src/main/execute.C: n-th attempt to make a=a work with double.
15025: problem: as_double returns it's result in fp-register compiler
15026: optimizes access to that register after b->as_double, and just
15027: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15028: from memory. _SAME_ double values do not match here. when
15029: forced to REload fp-register, values do match.
15030:
15031: tried to make them volatile.
15032:
15033: * src/types/pa_vobject.h: small style change
15034:
15035: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
15036:
15037: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
15038: mode error message now includes numbers
15039:
15040: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
15041: now causes death
15042:
15043: 2003-04-04 paf
15044:
15045: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
15046: incorportated pa_exec patch by From: "Victor Fedoseev"
15047: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
15048: Sent: Thursday, January 23, 2003 9:14 AM
15049:
15050: huge speedup on ^file::cgi with big result
15051:
15052: * src/classes/table.C: sort table with 0 rows bug fixed
15053:
15054: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
15055: fix http://i2/tasks/edit/?id=4493701604654042676
15056:
15057: @main[] $with_default[ $.a[1] $._default[default from
15058: with_default] ] ^show[$with_default]
15059:
15060: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15061: =$to_add_to.xxx=<br>
15062:
15063: ^show[$to_add_to]
15064:
15065: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15066: ^show[$cloned]
15067:
15068: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15069:
15070: } <hr>
15071:
15072: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
15073: http://i2/tasks/edit/?id=4493701604654042676
15074:
15075: @main[] $with_default[ $.a[1] $._default[default from
15076: with_default] ] ^show[$with_default]
15077:
15078: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15079: =$to_add_to.xxx=<br>
15080:
15081: ^show[$to_add_to]
15082:
15083: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15084: ^show[$cloned]
15085:
15086: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15087:
15088: } <hr>
15089:
15090: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
15091: http://i2/tasks/edit/?id=4507350336410850921
15092:
15093: * src/classes/xdoc.C: memory allocation func bugfix
15094: http://i2/tasks/edit/?id=4499303470368629745
15095:
15096: * src/classes/math.C: allowed random 1...
15097:
15098: * src/classes/math.C: allowed random 0..
15099:
15100: * src/main/pa_globals.C: exif mem leak
15101: http://i2/tasks/edit/?id=4480590323629807263
15102:
15103: * src/: classes/classes.dsp, main/main.dsp,
15104: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
15105: fix http://i2/tasks/edit/?id=4493946731322521294
15106: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
15107:
15108: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15109: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
15110: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
15111: links to xml libs made relative, no need to unpack parser3project
15112: to /parser3project.
15113:
15114: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
15115: column more precise - tab handling bug fixed
15116:
15117: * src/main/: compile.tab.C, compile.y: more understandable error
15118: message in case @CLASS with more then one line inside
15119:
15120: * src/targets/cgi/parser3.C: more understandable error message in
15121: case of errors in @unhandled_exception
15122:
15123: 2003-04-03 paf
15124:
15125: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
15126: src/main/compile.tab.C, src/main/compile.y,
15127: src/main/compile_tools.C, src/main/compile_tools.h,
15128: src/main/execute.C, src/main/pa_request.C: debug info format
15129: simplified, now it's: OP_VALUE Operation::Origin << here value*
15130:
15131: higher limits: file number (max: 255) line number (max:
15132: 64535) column number (max: 255)
15133:
15134: * src/classes/math.C: top limit
15135:
15136: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
15137: precise parse error position in case of
15138:
15139: ^bug ]
15140:
15141: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
15142: changed to realities, and passed [bug fixed]
15143:
15144: * src/: classes/op.C, include/pa_request.h, main/compile.C,
15145: main/compile.tab.C, main/compile.y, main/compile_tools.C,
15146: main/compile_tools.h, main/pa_request.C: introducing
15147: ^process...[main-method-alias]
15148:
15149: * src/: classes/date.C, classes/image.C, classes/op.C,
15150: classes/string.C, classes/table.C, classes/xdoc.C,
15151: types/pa_vmethod_frame.h: MethodParams& now [methods without
15152: params receive zero reference, but they are expected not to look
15153: there]
15154:
15155: * operators.txt, src/classes/date.C, src/classes/double.C,
15156: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
15157: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15158: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
15159: src/classes/string.C, src/classes/table.C, src/classes/void.C,
15160: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
15161: src/main/execute.C, src/types/pa_method.h: MethodParams& now
15162: [methods without params receive zero reference, but they are
15163: expected not to look there]
15164:
15165: * operators.txt, src/classes/op.C, src/include/pa_request.h,
15166: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
15167: ^process...[filename] useful for better error reporting
15168: [file/line/col]
15169:
15170: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
15171: types/pa_vstring.h: slightly improved error messages text: 1. is
15172: '%s', it 2. method undefined in case of ^void[]
15173:
15174: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15175: include/pa_types.h, main/execute.C, main/pa_request.C: exception
15176: handling done. now we have error columns todo: test it
15177:
15178: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
15179: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
15180:
15181: this makes life easier: were: bad stack order -- were in
15182: exception catch unwind order, which didn't match execution order
15183:
15184: @main[] ^try{ ^first[] }{ ^throw[c;3] }
15185:
15186: @first[] ^throw[a;1]
15187:
15188: showed throw a first throw b try
15189:
15190: which is no good
15191:
15192: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15193: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
15194: trace reset after handled exception [old bug fixed]
15195:
15196: * src/main/: compile.tab.C, compile.y: parse position old bug
15197: fixed. position reporting made precise [both, in parse erros and
15198: runtime errors]
15199:
15200: 2003-04-02 paf
15201:
15202: * src/: include/pa_operation.h, include/pa_request.h,
15203: main/compile.C, main/compile.tab.C, main/compile.y,
15204: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15205: main/pa_exception.C, main/pa_request.C: debug info: started
15206: using. todo:complete
15207:
15208: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
15209: main/compile.C, main/compile.tab.C, main/compile.y,
15210: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15211: main/pa_request.C: prepared debug info todo:use it
15212:
15213: * src/include/pa_operation.h: strange mistake fixed: forgot to
15214: return Operation class->union after switching from autoptrs.
15215:
15216: * tests/: Makefile, results/108.processed, results/117.processed:
15217: meta considered OK [it's up to coder now to remove it not needed]
15218:
15219: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
15220: Dictionary constructor when moved to gc]
15221:
15222: * src/main/pa_common.C: uncommented http:// file loading
15223:
15224: * src/include/pa_array.h, src/main/execute.C,
15225: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
15226: fix [gdGrowingBuf]
15227:
15228: * configure.in, src/lib/Makefile.am: removed patches
15229:
15230: * configure, src/include/pa_config_auto.h.in,
15231: src/main/pa_charset.C: --enable-assertions autoconf-ed
15232:
15233: * src/main/pa_common.C: uncommented http:// file loading
15234:
15235: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
15236: xdoc::create/load
15237:
15238: * src/: classes/form.C, classes/hash.C, classes/image.C,
15239: classes/string.C, classes/table.C, classes/void.C,
15240: include/pa_common.h, main/pa_common.C, main/pa_request.C,
15241: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
15242: String::String(str,helper_length) are checked. found/fixed one
15243: place: $request:body now zero-terminated,
15244:
15245: * src/: classes/op.C, classes/table.C, include/pa_request.h,
15246: main/compile_tools.C, main/execute.C, types/pa_value.h,
15247: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
15248: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15249: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
15250: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
15251: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
15252: types/pa_vxnode.h: more locally scoped vars in execute (more
15253: easily optimizable)
15254:
15255: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
15256: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
15257:
15258: * src/: include/pa_array.h, include/pa_stack.h,
15259: include/pa_string.h, main/compile_tools.C, main/main.dsp,
15260: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
15261: become assertion iterator in methodframe filler
15262:
15263: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
15264: targets/cgi/parser3.C: array::get/put inlined
15265:
15266: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
15267: gc_substitute_memory_management_functions +installed CORD_oom
15268: function
15269:
15270: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
15271: src/include/pa_config_includes.h, src/include/pa_string.h,
15272: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
15273: src/targets/cgi/parser3.C: converted debug hacks to ANSI
15274: assertions started configure.in --enable-assertions
15275:
15276: 2003-04-01 paf
15277:
15278: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
15279: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
15280: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
15281: gdome uses glib memory, and stores last pointer to xmlDoc there,
15282: gc misses that and collects valid memory fixed by remembering
15283: xmlDoc from dom object in xdoc. todo: do something with
15284: premature free of xdoc with xnodes/node values referring into it
15285:
15286: * src/classes/: mail.C: typo fix
15287:
15288: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
15289: changes
15290:
15291: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
15292: main/pa_memory.C: moved memory debugging to global level: to
15293: pa_gc_malloc
15294:
15295: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
15296: debugging showed no errors. todo: debug parser memory
15297:
15298: * src/targets/cgi/: parser3.C, parser3.dsp: more build
15299: configurations
15300:
15301: * src/: classes/classes.dsp, include/pa_config_fixed.h,
15302: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
15303: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
15304: types/types.dsp: prepared xml-static configuration
15305:
15306: 2003-03-31 paf
15307:
15308: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
15309: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
15310: xml lib memory debugging, simple checks failed: it seems that
15311: library does realloc(bad ptr), and recording those ptrs in heap
15312: [for debugging] was bad: heap situation changes = everything
15313: works fine
15314:
15315: * src/: main/pa_charset.C, include/pa_charset.h: worked around
15316: xmlRegisterCharEncodingHandler limitation [currently imposed
15317: limit of 10 user-defined charsets]
15318:
15319: 2003-03-28 paf
15320:
15321: * src/main/execute.C: execution stack copied to local register
15322: variable, removed lots [~2e7) of memory accesses
15323:
15324: 2003-03-27 paf
15325:
15326: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
15327: works in debug, but fails in release todo: fix that
15328:
15329: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
15330: targets/cgi/parser3.C: forgot to merge XML memory funcs
15331: replacement from gc branch
15332:
15333: * src/main/pa_exec.C: introducing append_help_length [radical
15334: improvement here]
15335:
15336: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
15337: 'not recommened' in gc.h, on win32 noticed no difference]
15338:
15339: * src/include/pa_array.h: returned checked array get [were disabled
15340: for debugging] result:not slower [don't understand that, it were
15341: INLINED] todo: find out a way of inlining it!
15342:
15343: * src/: include/pa_string.h, lib/gc/include/gc.h,
15344: lib/gc/include/gc_fake.h, main/compile.tab.C,
15345: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15346: convention changed: all resulting strings are zero-terminated
15347:
15348: * src/: classes/date.C, classes/file.C, classes/hash.C,
15349: classes/string.C, classes/table.C, classes/void.C,
15350: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15351: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15352: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15353: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15354: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15355: types/pa_vfile.C, types/pa_vmail.C: introducing
15356: append_help_length [radical improvement here]
15357:
15358: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
15359: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
15360: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
15361: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
15362: even slower
15363:
15364: * src/: classes/string.C, classes/table.C, include/pa_array.h,
15365: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
15366: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
15367: clients of &get(): most to use non-ref version, some[in tight
15368: places] to get_unchecked_ref
15369:
15370: * src/doc/memory.dox: forgot to add
15371:
15372: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
15373: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
15374: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
15375: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
15376: main/compile.y, main/compile_tools.C, main/compile_tools.h,
15377: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
15378: targets/cgi/parser3.dsp, types/pa_vmail.C,
15379: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
15380: T>>&<< removed after Stack::pop wiping removed [moved to separate
15381: func] other Array & removed
15382:
15383: 2003-03-26 paf
15384:
15385: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
15386: classes/table.C, include/pa_array.h, include/pa_charset.h,
15387: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
15388: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15389: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
15390: main/main.dsp, main/pa_charset.C, main/pa_common.C,
15391: main/pa_exec.C, main/pa_sql_driver_manager.C,
15392: main/pa_stylesheet_manager.C, main/pa_table.C,
15393: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15394: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
15395: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
15396: pre-evaluated .count() in some places
15397:
15398: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15399: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
15400: types/types.dsp: .dsp profiling updated
15401:
15402: * src/: classes/classes.dsp, lib/cord/cord.dsp,
15403: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
15404: targets/cgi/parser3.dsp, types/types.dsp: started profiling
15405:
15406: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
15407: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
15408: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
15409: use lib/gc,lib/cord
15410:
1.116 moko 15411: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
15412: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 15413: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
15414: src/include/pa_config_includes.h, src/include/pa_request.h,
15415: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15416: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 15417: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 15418: src/lib/cord/include/Makefile.am,
1.116 moko 15419: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
15420: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
15421: src/targets/cgi/Makefile.am, src/types/Makefile.am,
15422: src/types/pa_vclass.h, src/types/pa_vcookie.h,
15423: src/types/pa_vform.h, src/types/pa_vhash.h,
15424: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
15425: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
15426: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
15427: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
15428: funcs ported pa_exec
1.95 moko 15429:
15430: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
15431:
15432: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
15433: bundled gc includes
15434:
15435: * src/: classes/op.C, include/pa_array.h,
15436: include/pa_sql_connection.h, include/pa_string.h,
15437: include/pa_version.h, main/compile.tab.C, main/compile.y,
15438: main/execute.C, main/pa_common.C, main/pa_exception.C,
15439: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
15440: targets/cgi/parser3.dsp: a number of bugfixes [while testing
15441: first real site (aval)]
15442:
15443: 2003-03-25 paf
15444:
15445: * operators.txt, src/main/pa_sql_driver_manager.C,
15446: src/types/pa_vstatus.C: $status.memory used free since_compact
15447: process
15448:
15449: * src/: include/pa_sql_connection.h, main/pa_globals.C,
15450: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
15451:
15452: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
15453:
15454: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
15455: src/types/pa_value.h, src/types/pa_vfile.h,
15456: src/types/pa_vobject.C, src/types/pa_vobject.h,
15457: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
15458: tests/results/121.processed: untaint.C L_URI
15459:
15460: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
15461: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
15462: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
15463: src/types/pa_vmemory.h: ^memory:compact[]
15464:
15465: * tests/results/109.processed: it was a bug in parser. updated 109
15466: test result
15467:
15468: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
15469:
15470: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
15471: tests/results/107.processed: fixed dom language [values are now
15472: considered tainted. it was a bug in parser. updated 107 test
15473: result
15474:
15475: * src/classes/xdoc.C: fixed transform params
15476:
15477: * src/: include/pa_stylesheet_manager.h,
15478: main/pa_stylesheet_manager.C: fixed stylesheet caching
15479:
15480: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
15481: overloads for structure handling
15482:
15483: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
15484: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
15485: StringBody(0) ambiguilty, introducting static
15486: StringBody::Format(int)
15487:
15488: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
15489: linked
15490:
15491: * src/types/pa_vxdoc.C: vxdoc compiled
15492:
15493: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
15494: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
15495: finalizers isntalled
15496:
15497: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
15498: doc/exception.dox, doc/index.dox, include/pa_charset.h,
15499: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15500: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
15501: compiled todo: xnode.C / finalizers
15502:
15503: * src/doc/string.dox: updated: new string internals
15504:
15505: 2003-03-24 paf
15506:
15507: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15508: include/pa_charset.h, include/pa_config_fixed.h,
15509: include/pa_request.h, include/pa_stylesheet_connection.h,
15510: include/pa_stylesheet_manager.h, main/pa_charset.C,
15511: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
15512: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
15513: types/pa_vxnode.h: started XML
15514:
15515: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
15516:
15517: * src/: classes/file.C, classes/image.C, classes/mail.C,
15518: include/pa_string.h, main/pa_common.C,
15519: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
15520:
15521: * src/: classes/file.C, classes/image.C, classes/mail.C,
15522: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
15523: main/pa_request.C, main/pa_sql_driver_manager.C,
15524: types/pa_vimage.h: size_t pos everywhere checks changed to check
15525: for eq STRING_NOT_FOUND
15526:
15527: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
15528: optimize bit implemented
15529:
15530: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15531: String::ArrayFragment::append_positions fixed
15532:
15533: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
15534: String::this_starts fixed
15535:
15536: * src/main/pa_string.C, tests/Makefile: string::pos fixed
15537:
15538: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
15539: hashcode implemented fully, including per-char callback [it can
15540: be - substr CORD node]
15541:
15542: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
15543: rewritten to rewalloc with 100byte buf ahead
15544:
15545: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
15546: src/include/pa_string.h, src/main/compile.tab.C,
15547: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
15548: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
15549: CORD_ec [bad] would rewrite as realloc now
15550:
15551: * src/: classes/date.C, classes/file.C, classes/form.C,
15552: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
15553: include/pa_cache_managers.h, include/pa_charsets.h,
15554: include/pa_common.h, include/pa_request.h,
15555: include/pa_sql_driver_manager.h, include/pa_table.h,
15556: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
15557: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
15558: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
15559: types/pa_vmail.C, types/pa_vmethod_frame.C,
15560: types/pa_vstateless_class.h: 2*2 worked :)
15561:
15562: * parser3.dsw, src/classes/date.C, src/classes/file.C,
15563: src/include/pa_exec.h, src/include/pa_string.h,
15564: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15565: passed OK
15566:
15567: * src/: classes/hash.C, classes/string.C, classes/table.C,
15568: types/pa_value.C: all linked todo: debug
15569:
15570: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15571: types/pa_vstateless_class.C: all compiled. todo:link
15572:
15573: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15574:
15575: * src/types/pa_vtable.C: pa_vtable.C compiled
15576:
15577: * src/types/pa_vstring.C: pa_vstring.C compiled
15578:
15579: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15580:
15581: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15582: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15583: pa_vstateless_class.C, pa_vstateless_class.h:
15584: pa_vstateless_class.C compiled
15585:
15586: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15587: types/pa_vmath.C: pa_vmail.C compiled
15588:
15589: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15590:
15591: * src/types/pa_vform.C: pa_vform.C compiled
15592:
15593: * src/types/pa_vfile.C: pa_vfile.C compiled
15594:
15595: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15596: pa_vstateless_class.C: pa_vcookie.C compiled
15597:
15598: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15599: types/pa_vhash.h: pa_value.C compiled
15600:
15601: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15602: classes.lib main.lib compiled
15603:
15604: * src/classes/void.C: void.C compiled
15605:
15606: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15607: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15608: compiled
15609:
15610: * src/: classes/string.C, include/pa_request.h,
15611: include/pa_string.h, main/pa_string.C: string.C compiled
15612:
15613: * src/: classes/op.C, classes/string.C, classes/table.C,
15614: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15615: main/pa_request.C, main/pa_string.C: op.C compiled
15616:
15617: * src/classes/: math.C, op.C: math.C compiled
15618:
15619: * src/: classes/mail.C, classes/string.C, classes/table.C,
15620: types/pa_vmail.h: mail.C compiled
15621:
15622: * src/classes/: int.C, table.C: int.C compiled
15623:
15624: * src/: classes/hash.C, classes/image.C, classes/string.C,
15625: classes/table.C, include/pa_memory.h, include/pa_string.h,
15626: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15627: compiled
15628:
15629: * src/: classes/hash.C, classes/string.C, classes/table.C,
15630: classes/void.C, classes/xdoc.C, include/pa_request.h,
15631: include/pa_sql_connection.h: hash.C compiled
15632:
15633: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15634: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15635: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15636: classes/math.C, classes/op.C, classes/response.C,
15637: classes/string.C, classes/table.C, classes/void.C,
15638: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15639: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15640: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15641: file.C table.C compiled
15642:
15643: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15644: main/untaint.C: main.lib compiled
15645:
15646: 2003-03-21 paf
15647:
15648: * src/: classes/op.C, include/pa_cache_managers.h,
15649: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15650: include/pa_stylesheet_manager.h, main/pa_exception.C,
15651: main/pa_globals.C, main/pa_sql_driver_manager.C,
15652: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15653: compiled
15654:
15655: * src/: classes/hash.C, classes/image.C, classes/op.C,
15656: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15657: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15658: main/compile.C, main/pa_common.C, main/pa_request.C,
15659: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15660: pa_request.C compiled
15661:
15662: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15663: include/pa_request.h, main/execute.C, main/pa_request.C,
15664: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15665: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
15666: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15667: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
15668: compiled
15669:
15670: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
15671: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
15672: on unix
15673:
15674: * src/: include/pa_charset.h, include/pa_charsets.h,
15675: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
15676: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
15677: pa_charsets.C compiled
15678:
15679: * src/: classes/image.C, classes/mail.C, classes/op.C,
15680: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
15681: main/compile.y, main/execute.C, main/pa_common.C,
15682: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
15683: types/pa_vcode_frame.h, types/pa_vimage.h,
15684: types/pa_vmethod_frame.h: execute.C compiled
15685:
15686: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15687: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15688: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15689: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
15690: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15691: include/pa_cache_managers.h, include/pa_charsets.h,
15692: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
15693: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
15694: include/pa_sql_driver_manager.h, include/pa_string.h,
15695: include/pa_stylesheet_connection.h,
15696: include/pa_stylesheet_manager.h, include/pa_table.h,
15697: main/compile.C, main/compile.tab.C, main/compile.y,
15698: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15699: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15700: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
15701: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
15702: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15703: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
15704: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
15705: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15706: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15707: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15708: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15709: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15710: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15711: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15712: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15713: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15714: types/pa_vresponse.h, types/pa_vstateless_class.C,
15715: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15716: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15717: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15718: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15719: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15720: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
15721: [C++ CORD wrapper]
15722:
15723: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
15724:
15725: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
15726: $file::exec/cgi[script; $.charset[this is script's charset]
15727:
15728: command line, env values, input got transcoded before call
15729: stdout, stderr got transcoded after call
15730:
15731: * src/classes/file.C: ^file::exec/cgi now does not pass post data
15732: by default. use: ^file::exec[...;$.stdin[$request.body]
15733:
15734: * src/main/pa_common.C: } typo bug fix
15735:
15736: * src/main/pa_common.C: } typo bug fix
15737:
15738: 2003-03-20 paf
15739:
15740: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
15741: main/untaint.C: cord bug fix, but still errors todo: clear out
15742:
15743: * src/include/pa_string.h: more tests
15744:
15745: * src/main/pa_string.C: string.pos fixed
15746:
1.116 moko 15747: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
15748: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
15749: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
15750: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
15751: replaces
1.95 moko 15752:
15753: * src/: classes/image.C, include/pa_dictionary.h,
15754: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15755: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
15756: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
15757: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
15758:
15759: * src/include/pa_string.h: warning
15760:
15761: * src/include/pa_string.h: this_starts fixed
15762:
15763: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
15764: new String ctor & append params convention
15765:
15766: * src/: classes/file.C, classes/hash.C, classes/image.C,
15767: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
15768: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
15769: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
15770: main/pa_exception.C, main/pa_exec.C,
15771: main/pa_sql_driver_manager.C, main/pa_string.C,
15772: main/pa_stylesheet_manager.C, main/untaint.C,
15773: targets/isapi/parser3isapi.C, types/pa_vimage.C,
15774: types/pa_vmail.C: more tests OK
15775:
15776: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
15777: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
15778: gc/exit runned OK
15779:
15780: * src/types/pa_vmail.C: another naming problem: should not name
15781: vars like that: unpredictable close caused problems with later
15782: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
15783: descriptors missing on startup: stdin; Bad file number
15784:
15785: todo: find out why so many filters(stream) here. probably wrong?
15786:
15787: * src/: include/pa_dictionary.h, include/pa_string.h,
15788: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
15789: main/untaint.C: test compiled
15790:
15791: * src/: classes/image.C, classes/mail.C, classes/math.C,
15792: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
15793: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
15794: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
15795: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
15796: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15797: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
15798: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
15799: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
15800: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
15801:
15802: * parser3.dsw, src/classes/file.C, src/classes/image.C,
15803: src/classes/op.C, src/classes/string.C, src/classes/table.C,
15804: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
15805: src/include/pa_memory.h, src/include/pa_request.h,
15806: src/include/pa_request_charsets.h,
15807: src/include/pa_sql_connection.h, src/include/pa_string.h,
15808: src/main/compile.tab.C, src/main/execute.C,
15809: src/main/pa_charset.C, src/main/pa_common.C,
15810: src/main/pa_exception.C, src/main/pa_exec.C,
15811: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15812: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
15813: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
15814: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
15815: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15816: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
15817: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15818: src/types/pa_vobject.C, src/types/pa_vresponse.C,
15819: src/types/pa_vstatus.C, src/types/pa_vstring.C,
15820: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15821: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
15822: pa_common.C [done, without http for now]
15823:
15824: 2003-03-19 paf
15825:
15826: * src/: classes/date.C, classes/form.C, classes/hash.C,
15827: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
15828: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
15829: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
15830: include/pa_string.h, include/pa_table.h, main/compile.C,
15831: main/compile_tools.C, main/execute.C, main/pa_charset.C,
15832: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
15833: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
15834: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15835: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
15836: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
15837: types/pa_vstateless_class.h, types/pa_vtable.C,
15838: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
15839: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15840: types/pa_wwrapper.h: started test
15841:
1.116 moko 15842: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
15843: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 15844:
15845: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
15846: include/pa_string.h, main/pa_string.C: string compiled todo: test
15847: it
15848:
15849: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
15850: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
15851: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
15852: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
15853: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
15854: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
15855: types/pa_vmethod_frame.h, types/types.dsp: string
15856: reimplementation with cord+array<fragment>: 70%
15857:
15858: 2003-03-18 paf
15859:
15860: * src/: classes/date.C, classes/file.C, classes/form.C,
15861: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
15862: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
15863: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
15864: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
15865: can ignore lang in cmp and pos really, but would
15866: split properly!
15867:
15868: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
15869: cord part made parser/src/lib: it's not compiled into libgc by
15870: default
15871:
15872: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
15873: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15874: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15875: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15876: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15877: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15878: src/classes/xnode.C, src/classes/xnode.h,
15879: src/include/Makefile.am, src/include/pa_cache_managers.h,
15880: src/include/pa_charset.h, src/include/pa_charsets.h,
15881: src/include/pa_common.h, src/include/pa_dictionary.h,
15882: src/include/pa_exception.h, src/include/pa_exec.h,
15883: src/include/pa_globals.h, src/include/pa_hash.h,
15884: src/include/pa_memory.h, src/include/pa_pool.h,
15885: src/include/pa_request.h, src/include/pa_request_charsets.h,
15886: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
15887: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15888: src/include/pa_stylesheet_connection.h,
15889: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
15890: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
15891: src/main/compile.C, src/main/compile.tab.C,
15892: src/main/compile_tools.C, src/main/compile_tools.h,
15893: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
15894: src/main/pa_charsets.C, src/main/pa_common.C,
15895: src/main/pa_dictionary.C, src/main/pa_exception.C,
15896: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
15897: src/main/pa_pool.C, src/main/pa_request.C,
15898: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15899: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
15900: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
15901: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
15902: src/types/pa_junction.h, src/types/pa_method.h,
15903: src/types/pa_value.C, src/types/pa_value.h,
15904: src/types/pa_vclass.C, src/types/pa_vclass.h,
15905: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15906: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15907: src/types/pa_vdouble.h, src/types/pa_venv.h,
15908: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15909: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15910: src/types/pa_vimage.C, src/types/pa_vimage.h,
15911: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
15912: src/types/pa_vmath.C, src/types/pa_vmath.h,
15913: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15914: src/types/pa_vobject.C, src/types/pa_vobject.h,
15915: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15916: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15917: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15918: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15919: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15920: src/types/pa_vstring.h, src/types/pa_vtable.C,
15921: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15922: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15923: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15924: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15925: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
15926: gc: PA_Object done lots of replacements also
15927:
15928: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
15929: gc logging
15930:
15931: 2003-03-17 paf
15932:
15933: * src/: classes/date.C, classes/file.C, classes/form.C,
15934: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
15935: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
15936: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15937: include/pa_string.h, include/pa_types.h, main/compile.C,
15938: main/compile.tab.C, main/execute.C, main/pa_charset.C,
15939: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
15940: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15941: main/pa_sql_driver_manager.C, main/pa_string.C,
15942: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15943: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15944: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15945: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15946: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15947: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15948: types/pa_vxnode.h: libgc attempt
15949:
15950: 2003-03-13 paf
15951:
15952: * src/: include/pa_sql_driver_manager.h,
15953: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15954: called
15955:
15956: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15957: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15958: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15959: types/pa_value.h, types/pa_vobject.h,
15960: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15961: set_base, set_derived simplified [counter leaks fixed]
15962:
15963: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15964: src/types/types.dsp: incorporated status class patch From:
15965: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15966: 2003 8:14 AM
15967:
15968: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15969: Win32 specific: QuotaPeakNonPagedPoolUsage
15970: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15971:
15972: 2003-03-12 paf
15973:
1.116 moko 15974: * configure, configure.in, src/lib/ltdl/configure,
15975: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15976: lib/ltdl/Makefile now created by /configure.in only [were by
15977: lib/ltdl/configure.in OVERWRITE]
15978:
1.116 moko 15979: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15980: linkage fixed for g++ 3.2.2
1.95 moko 15981:
15982: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15983: on using privately declared class [fixed]
15984:
15985: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15986: 3.2 rightliy complained on using privately declared class [fixed]
15987:
15988: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15989: sigpipe before request constructor now causes death
15990:
15991: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15992: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15993: not cause exception in exception handler
15994:
1.116 moko 15995: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15996: now default links libstdc++ statically. that can be overriden by
15997: --with-dynamic-stdcpp
1.95 moko 15998:
15999: 2003-03-11 paf
16000:
16001: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
16002: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
16003: necessity of libstdc++
16004:
16005: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16006:
16007: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16008:
16009: 2003-03-08 paf
16010:
16011: * tests/Makefile: make install & co
16012:
16013: * src/: include/pa_request.h, classes/op.C: removing
16014: vclass,object.h -> pa_request.h dependency
16015:
16016: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
16017: main/pa_request.C: removing vform,response,cookie.h ->
16018: pa_request.h dependency
16019:
16020: * src/include/pa_request.h: removing vmail.h -> pa_request.h
16021: dependency [testing...]
16022:
16023: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
16024: return 0; fixed
16025:
16026: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
16027: types/pa_vmail.h: vmail.C received just compiled [not tested]
16028:
16029: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
16030:
16031: * src/main/pa_request.C: forgotten: ifdef XML
16032:
16033: * src/main/pa_request.C: forgotten: ifdef XML
16034:
16035: * src/targets/cgi/parser3.C: todo: move to latest xml version on
16036: win32 and run memleak tests again
16037:
16038: * src/targets/cgi/parser3.C: charsets: see some strange things with
16039: old xml lib-- it's internal memory handling has faults
16040:
16041: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
16042: problems when transcode from charset A to A.
16043:
16044: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
16045: todo: still problems when transcode from charset A to A.
16046:
16047: * src/: classes/hash.C, classes/mail.C, classes/string.C,
16048: classes/table.C, include/pa_array.h,
16049: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
16050: started full-scale-site-test [~ http://parser.ru sources]
16051:
16052: some fixes
16053:
16054: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
16055: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
16056: 117.html, 118.html, 119.html, 120.html, results/109.processed,
16057: results/110.processed, results/111.processed,
16058: results/112.processed, results/113.processed,
16059: results/114.processed, results/115.processed,
16060: results/116.processed, results/117.processed,
16061: results/118.processed, results/119.processed,
16062: results/120.processed: xml: tests 109 dom create/show 110 xpath
16063: selectSingle 111 xdoc.create from tainted & 112
16064: xdoc.create/output with russian attr value 113 xpath
16065: selectString/Number 114 dom attributes.count 115 xpath selectBool
16066: 116 output media-type change 117 transform by dom stylesheet 118
16067: empty transform result 119 dom setAttribute 120 nbsp letter
16068: output
16069:
16070: =END OF PREPARED XML TESTS=
16071:
16072: 2003-03-07 paf
16073:
16074: * src/classes/xdoc.C, src/include/pa_charset.h,
16075: src/include/pa_stylesheet_connection.h, tests/108.html,
16076: tests/108.xsl, tests/results/108.processed: xml: test 108
16077: transform with params [bugs fixed]
16078:
16079: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
16080: from copy/paste bug
16081:
16082: * src/classes/xdoc.C, src/include/pa_charset.h,
16083: src/include/pa_request.h, src/main/execute.C,
16084: src/main/pa_charset.C, src/main/pa_exception.C,
16085: src/main/pa_globals.C, src/main/pa_request.C,
16086: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16087: src/types/pa_vxnode.C, tests/107.html,
16088: tests/results/107.processed: xml: test: 107 bug fixes
16089:
16090: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16091: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16092: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
16093:
16094: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
16095: string
16096:
16097: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
16098: mem alloc functions used for different cases [libxml, libxsl]
16099:
16100: * src/classes/classes.C: fixed: prevent system classes from
16101: modification to lock ALL the classes, not only directly used
16102:
16103: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
16104: linked
16105:
16106: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
16107:
16108: 2003-03-06 paf
16109:
16110: * src/classes/xdoc.C: xdoc.C 50%
16111:
16112: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
16113: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
16114: main/pa_globals.C, main/pa_request.C,
16115: main/pa_stylesheet_manager.C: xnode.C compiled
16116:
16117: * src/: include/pa_stylesheet_connection.h,
16118: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
16119: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
16120:
16121: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
16122: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
16123: xml: stylesheet&manager STARTED
16124:
16125: * src/: include/pa_globals.h, main/pa_charset.C,
16126: main/pa_exception.C, main/pa_globals.C: xml: exceptions
16127:
16128: * src/: include/pa_charset.h, include/pa_config_fixed.h,
16129: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
16130: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
16131: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
16132: charsets
16133:
16134: * tests/023.html: in some cases it rounded up badly. postponing
16135: solution of that problem, making more simple test
16136:
16137: * tests/: 058_paf2000.png, results/058.processed: .png added with
16138: -kb now
16139:
16140: * src/: include/pa_charset.h, include/pa_charsets.h,
16141: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
16142: moved to charsets.C
16143:
16144: 2003-03-05 paf
16145:
16146: * src/classes/string.C, src/include/pa_string.h,
16147: src/main/pa_string.C, tests/105.html,
16148: tests/results/105.processed: String::match bug fixed
16149:
16150: * src/classes/op.C, src/main/main.dsp, tests/104.html,
16151: tests/results/104.processed: ^bpt operator added [does int3 in
16152: debug build on win32]
16153:
16154: * tests/: 057.html, results/057.processed: test bug fixed
16155:
1.116 moko 16156: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 16157:
16158: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
16159: missing
16160:
1.116 moko 16161: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
16162: forgotten files added to Makes
1.95 moko 16163:
16164: * ltmain.sh: ltmain.sh added
16165:
16166: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16167: change undone ;(
16168:
16169: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16170: made static
16171:
16172: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 16173: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
16174: todo:make linker happy
1.95 moko 16175:
16176: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
16177: env param made optional
16178:
16179: 2003-03-04 paf
16180:
16181: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
16182: types/pa_vimage.h: number of gcc compiler bugs fixed
16183:
16184: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
16185: results/103.processed: tests: 103 image.copy transparence test
16186:
16187: * src/main/execute.C, tests/101.html, tests/102.html,
16188: tests/results/101.processed, tests/results/102.processed: tests:
16189: 101 method/variable name conflict test 102 form fields change
16190: should not not change anything [bug fix]
16191:
16192: * tests/: 057.html, 099.html, 100.html, results/057.processed,
16193: results/099.processed, results/100.processed: tests: 57 date
16194: create 2002: added 99,100 response:body/download
16195:
16196: * src/classes/image.C, tests/098.html, tests/098font.gif,
16197: tests/results/098.processed: test: 98 image font text [bug fixed]
16198:
16199: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
16200: tests/results/097.processed: test: 97 file::load http:// [bugs
16201: fixed]
16202:
16203: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
16204: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
16205: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
16206: image EXIF [bug fixed]
16207:
16208: * src/classes/table.C, src/main/execute.C, tests/061.dat,
16209: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
16210: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
16211: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
16212: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
16213: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
16214: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
16215: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
16216: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
16217: tests/094.html, tests/095.html, tests/results/061.processed,
16218: tests/results/062.processed, tests/results/063.processed,
16219: tests/results/064.processed, tests/results/065.processed,
16220: tests/results/066.processed, tests/results/067.processed,
16221: tests/results/068.processed, tests/results/069.processed,
16222: tests/results/070.processed, tests/results/071.processed,
16223: tests/results/072.processed, tests/results/073.processed,
16224: tests/results/074.processed, tests/results/075.processed,
16225: tests/results/076.processed, tests/results/077.processed,
16226: tests/results/078.processed, tests/results/080.processed,
16227: tests/results/081.processed, tests/results/082.processed,
16228: tests/results/083.processed, tests/results/084.processed,
16229: tests/results/085.processed, tests/results/086.processed,
16230: tests/results/087.processed, tests/results/088.processed,
16231: tests/results/089.processed, tests/results/090.processed,
16232: tests/results/091.processed, tests/results/092.processed,
16233: tests/results/093.processed, tests/results/094.processed,
16234: tests/results/095.processed, tests/079.html,
16235: tests/results/079.processed: tests: 61 file::stat size 62
16236: string->int autoconvert 63 double .int,dec,div,mul 64 date
16237: compare 65 file: basename,justname,justext 66 math:crypt 67
16238: string.match simple on long 68 string.match normalized simple on
16239: long 69 string.int 70 file::stat content-type 71 table.join 72
16240: hash parameter conditional pass 73 date daylightsaving,yearday 74
16241: date arithmetics 75 response date values/attributes 76 string.pos
16242: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
16243: with local 80 scientific numeric literal in string autoconvert 81
16244: xor: logical and numerical 82 for delims 83 menu delims 84
16245: table.hash distinct 85 long string replace 86 throw+catch
16246: current language preserve 87 bit shifts 88 junction tests +
16247: $caller test 89 hash.foreach selfmodification 90 int/void to int
16248: 91 $caller test 92 junction is + def junction tests 93 $caller
16249: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
16250:
16251: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
16252: fixed] 60 string eq string [bug fixed]
16253:
16254: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
16255: 058.html, 058_paf2000.png, 059.html, 060.html,
16256: results/053.processed, results/054.processed,
16257: results/055.processed, results/056.processed,
16258: results/057.processed, results/058.processed,
16259: results/059.processed, results/060.processed: test: 53
16260: string.replace 54 junctions 55 table.hash 56 call indirect 57
16261: date.create[string] 58 image.measure[png]
16262:
16263: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
16264: outputs/051.processed, results/052.processed: test: 52
16265: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
16266: task: fix that
16267:
16268: 2003-03-03 paf
16269:
16270: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
16271: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
16272: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
16273: outputs/049.processed, outputs/050.processed,
16274: outputs/051.processed, results/001.processed,
16275: results/002.processed, results/003.processed,
16276: results/005.processed, results/006.processed,
16277: results/008.processed, results/009.processed,
16278: results/011.processed, results/012.processed,
16279: results/013.processed, results/014.processed,
16280: results/015.processed, results/016.processed,
16281: results/017.processed, results/020.processed,
16282: results/021.processed, results/022.processed,
16283: results/024.processed, results/025.processed,
16284: results/026.processed, results/027.processed,
16285: results/028.processed, results/029.processed,
16286: results/030.processed, results/031.processed,
16287: results/049.processed, results/050.processed,
16288: results/051.processed, results/043.processed,
16289: results/044.processed, results/045.processed,
16290: results/046.processed, results/047.processed,
16291: results/048.processed: tests: 43,44,45 date rolls 46
16292: autoevaluating junction 47 table.select 48 name with subvar 49
16293: hash-creating switch 50 process 51 started parent/child, works as
16294: it were but it were NOT GOOD, created separate task to fix that
16295:
16296: * tests/: 042.html, results/042.processed: test: 42
16297: exception.handled
16298:
16299: * tests/: 041.html, results/041.processed: test: 41 table.locate by
16300: expression
16301:
16302: * tests/: 040.html, results/040.processed: test: 39 method result
16303: of type table 40 method param junction auto evaluate
16304:
16305: * tests/: 039.html, results/039.processed: test: 37 method result
16306: of type table
16307:
16308: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
16309: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
16310: tests/038.html, tests/results/033.processed,
16311: tests/results/034.processed, tests/results/035.processed,
16312: tests/results/036.processed, tests/results/037.processed,
16313: tests/results/038.processed: tests: 33 string.replace 34
16314: string.upper 35 table created 36 local/global vars with juntions
16315: 37 table clone 38 math PI & number formatting
16316:
16317: math class registring typo fixed
16318:
16319: * src/classes/op.C, src/include/pa_request.h,
16320: src/include/pa_string.h, src/main/execute.C,
16321: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
16322: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
16323: tests/032.html, tests/results/032.processed: uchar changed to
16324: String_UL in all places [was not everywhere] untaint test: 032
16325:
16326: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
16327: tests/results/004.processed, tests/parser-cygwin.sh,
16328: tests/parser-unix.sh: removed -H command line key, now testing
16329: using .sh file with SERVER_SOFTWARE=xxx
16330:
16331: 2003-02-26 paf
16332:
16333: * src/main/execute.C, src/types/pa_vstateless_class.h,
16334: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
16335: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
16336: tests/results/024.processed, tests/results/025.processed,
16337: tests/results/026.processed, tests/results/027.processed,
16338: tests/results/028.processed, tests/results/029.processed,
16339: tests/results/030.processed, tests/results/031.processed: fixed
16340: bug with name_cstr mutable CharPtr more tests
16341:
16342: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
16343: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
16344: << abort. die now just exits
16345:
16346: * src/classes/classes.awk, src/classes/classes.h,
16347: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16348: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16349: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16350: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16351: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16352: src/classes/xnode.C, src/include/pa_memory.h,
16353: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16354: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16355: src/types/pa_vform.C, tests/015.html, tests/016.html,
16356: tests/017.html, tests/018.html, tests/019.html,
16357: tests/019paf2001.gif, tests/020.html, tests/021.html,
16358: tests/022.html, tests/023.html, tests/022_dir/a.html,
16359: tests/022_dir/b.txt, tests/022_dir/c.htm,
16360: tests/results/015.processed, tests/results/016.processed,
16361: tests/results/017.processed, tests/results/018.processed,
16362: tests/results/019.processed, tests/results/020.processed,
16363: tests/results/021.processed, tests/results/022.processed,
16364: tests/results/023.processed: methoded_array now contains all Mxxx
16365: classes SAPI::get_env now returns info on pool more tests
16366:
16367: * src/include/pa_array.h, src/include/pa_hash.h,
16368: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
16369: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
16370: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
16371: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
16372: tests/014.html, tests/Makefile, tests/outputs/create-dir,
16373: tests/results/001.processed, tests/results/002.processed,
16374: tests/results/003.processed, tests/results/004.processed,
16375: tests/results/005.processed, tests/results/006.processed,
16376: tests/results/007.processed, tests/results/008.processed,
16377: tests/results/009.processed, tests/results/010.processed,
16378: tests/results/011.processed, tests/results/012.processed,
16379: tests/results/013.processed, tests/results/014.processed: hash
16380: cloning fixed
16381:
16382: 2003-02-25 paf
16383:
16384: * src/main/pa_common.C: typo fixed
16385:
16386: 2003-02-24 paf
16387:
16388: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
16389: [one remained]
16390:
16391: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
16392: [should have been get_string(&pool)] todo: check other such calls
16393:
16394: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
16395: test10, bad lookups
16396:
16397: xxx* xxx=smartptr.get(); << is bad style, after ";" original
16398: object got destructed, and xxx points to sky
16399:
16400: * ChangeLog, src/classes/string.C: match bug fixed
16401:
16402: * src/types/pa_vmail.C: body [text/html] transcoded to
16403: $.charset[specified] now
16404:
16405: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16406: which failed to handle sigsetjmp+throw: crashed inside of
16407: pre-throw code. rewritten simplier [though duplicating
16408: closesocket code]
16409:
16410: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16411: which failed to handle sigsetjmp+throw: crashed inside of
16412: pre-throw code. rewritten simplier [though duplicating
16413: closesocket code]
16414:
16415: 2003-02-21 paf
16416:
16417: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
16418: $cookie:name[$.expires[date << can be now]]
16419:
16420: written makefile with regression tests [raw]
16421:
16422: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
16423: tests' only [it's not forcing CGI mode now] now use -H to output
16424: CGI header when parser used in command line [useful for tests
16425: also]
16426:
16427: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
16428: switches on CGI mode, and is used in regression tests
16429:
16430: * src/: include/pa_request.h, main/pa_request.C,
16431: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
16432: fixed
16433:
16434: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
16435: handling pa_*
16436:
16437: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
16438: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
16439: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
16440: memory handling files
16441:
16442: * src/main/pa_array.C: pool::format_integer terminator fixed
16443:
16444: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
16445: compiles OK test to show benefits of free
16446:
16447: * src/: classes/file.C, classes/image.C, classes/mail.C,
16448: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
16449: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16450: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
16451: use pool [as the one in ^process]
16452:
16453: * src/classes/op.C: fixed process. sould now check for all cstr's
16454: -- some must use pool [as the one in ^process]
16455:
16456: 2003-02-20 paf
16457:
16458: * src/: classes/date.C, classes/double.C, classes/file.C,
16459: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16460: classes/math.C, classes/op.C, classes/response.C,
16461: classes/string.C, classes/table.C, classes/void.C,
16462: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
16463: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
16464: string cmp fixed
16465:
16466: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
16467: values passed OK now
16468:
16469: 2003-02-19 paf
16470:
16471: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
16472: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
16473: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
16474: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
16475: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
16476: all remaning leaks resulted from pooled::malloc calls [excluding
16477: in gd -- planning complete rewrite extremely ugly code]
16478:
16479: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
16480: files
16481:
16482: 2003-02-17 paf
16483:
16484: * src/: classes/date.C, classes/double.C, classes/file.C,
16485: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16486: classes/response.C, classes/string.C, classes/table.C,
16487: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
16488: include/pa_stylesheet_connection.h,
16489: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
16490: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16491: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
16492: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
16493: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
16494: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
16495: of unitialized simple-typed field
16496:
16497: * src/: classes/classes.C, classes/classes.h, main/execute.C,
16498: main/pa_charset.C, main/pa_request.C: another bug of unitialized
16499: simple-typed field fixed. todo: find&kill all like that one
16500:
16501: * src/: main/execute.C, targets/cgi/pa_pool.C,
16502: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
16503: debug output fixed
16504:
16505: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
16506: main/pa_request.C: stack-stored items need extra .ref to prevent
16507: object_ptr from delete[them]
16508:
16509: * src/: classes/date.C, classes/op.C, classes/table.C,
16510: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
16511: include/pa_charset.h, main/Makefile.am, main/main.dsp,
16512: main/pa_charset.C, main/pa_common.C,
16513: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16514: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16515: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
16516: calls
16517:
16518: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
16519: couple mem leaks rusulted from old pooled::malloc usage.
16520: todo:find more like those
16521:
16522: * src/main/: compile.C, compile_tools.C: 2*2!
16523:
16524: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
16525: stackItem fixed [there were no string on stack before]
16526:
16527: * src/: main/execute.C, main/pa_request.C,
16528: types/pa_vmethod_frame.C: first letters out OK
16529:
16530: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
16531: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
16532: main/pa_string.C, main/untaint.C, types/pa_value.h,
16533: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
16534: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
16535: type not initialized with zeros :( while class fields of class
16536: types initialized with default constructors. learn C++
16537:
16538: * src/: classes/classes.awk, classes/double.C, classes/file.C,
16539: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
16540: classes/math.C, classes/xdoc.C, classes/xnode.C,
16541: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
16542: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
16543:
16544: 2003-02-14 paf
16545:
16546: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
16547: 13 link errors
16548:
16549: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
16550: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
16551: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16552: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
16553: errors :)
16554:
16555: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
16556: classes/hash.C, classes/mail.C, classes/op.C,
16557: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
16558: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
16559: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
16560: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
16561:
16562: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
16563: classes/table.C, include/pa_common.h, include/pa_globals.h,
16564: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16565: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16566: types/pa_vint.h, types/types.dsp: op compiled
16567:
16568: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16569: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16570: main/untaint.C, types/pa_vtable.h: string, response compiled
16571:
16572: 2003-02-07 paf
16573:
16574: * src/: classes/table.C, types/pa_vtable.h: table compiled
16575:
16576: 2003-02-06 paf
16577:
16578: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16579: mail compiled
16580:
16581: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16582: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16583: types/pa_vfile.h, types/pa_vimage.h: image compiled
16584:
16585: * src/classes/: file.C, form.C: form compiled
16586:
16587: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16588: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16589: types/pa_vfile.C, types/pa_vfile.h: file compiled
16590:
16591: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16592: types/pa_vmath.h: math compiled [win32]
16593:
16594: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16595: types/pa_vstring.h: hash compiled
16596:
16597: 2003-02-04 paf
16598:
16599: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16600: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16601: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16602: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16603: types/pa_vhash.h: hash 50% compiled
16604:
16605: * src/: classes/date.C, classes/file.C, classes/hash.C,
16606: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16607: classes/string.C, classes/table.C, classes/xdoc.C,
16608: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16609: main/pa_string.C: date compiled
16610:
16611: * src/classes/: classes.dsp, double.C: double compiled
16612:
16613: * src/: classes/date.C, classes/double.C, classes/file.C,
16614: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16615: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16616: classes/string.C, classes/table.C, classes/void.C,
16617: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16618: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16619: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16620: compiled
16621:
16622: * src/: classes/date.C, classes/double.C, classes/file.C,
16623: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16624: classes/math.C, classes/op.C, classes/response.C,
16625: classes/string.C, classes/table.C, classes/void.C,
16626: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16627: types/pa_vvoid.h: void compiled :)
16628:
16629: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16630: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16631: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16632: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16633: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16634: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16635: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16636: types/pa_vresponse.C, types/pa_vstateless_class.C,
16637: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16638: types/pa_wcontext.C, types/types.dsp: removed stupid
16639: value_includes.h
16640:
16641: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16642: trying to remove stupid value_includes.h
16643:
16644: * src/main/pa_exec.C: pa_exec compiled on win32
16645:
16646: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16647:
16648: * src/: include/pa_globals.h, include/pa_request.h,
16649: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16650: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16651: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16652: types/pa_vrequest.C, types/pa_vstateless_class.C,
16653: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16654:
16655: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16656: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16657: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16658:
16659: * src/: include/pa_array.h, include/pa_config_includes.h,
16660: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16661: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16662: compiled
16663:
16664: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16665: name conflicts)
16666:
16667: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
16668: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
16669: yelds "virtual memory exhausted" while trying to compile
16670: execute.C [eating up to 127MB]
16671:
16672: 2003-02-03 paf
16673:
16674: * src/: include/pa_config_includes.h, include/pa_hash.h,
16675: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
16676: main/pa_common.C, types/pa_value.C, types/pa_value.h,
16677: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
16678: types/pa_vint.h, types/pa_vjunction.h,
16679: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
16680: started gcc compiling pa_common compiled
16681:
16682: * src/: include/pa_exception.h, include/pa_pool.h,
16683: main/pa_exception.C: exception gcc change #1
16684:
1.116 moko 16685: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
16686: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 16687:
16688: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
16689:
16690: * src/types/pa_vtable.C: vtable compiled
16691:
16692: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
16693:
16694: * src/: include/pa_cache_managers.h, main/pa_request.C,
16695: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
16696:
16697: * src/types/pa_vstateless_class.C: vstateless_class compiled
16698:
16699: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
16700:
16701: * src/types/pa_vrequest.C: vrequest compiled
16702:
16703: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
16704: pa_vobject.C, pa_vobject.h: vobject compiled
16705:
16706: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
16707: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16708: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
16709: compiled
16710:
16711: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
16712:
16713: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
16714: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
16715: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
16716: compiled
16717:
16718: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16719: main.lib - 0 error(s), 0 warning(s)
16720:
16721: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16722: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
16723:
16724: 2003-01-31 paf
16725:
16726: * src/: include/pa_array.h, include/pa_operation.h,
16727: include/pa_request.h, main/execute.C, main/main.dsp,
16728: types/pa_vjunction.h: started last file from main library:
16729: execute
16730:
16731: * src/: include/pa_request.h, include/pa_sapi.h,
16732: main/compile.tab.C, main/compile.y, main/compile_tools.h,
16733: main/pa_request.C, targets/cgi/parser3.C,
16734: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
16735: types/pa_vhash.h: pa_request compiled
16736:
16737: * src/: classes/op.C, classes/string.C, include/pa_common.h,
16738: include/pa_globals.h, include/pa_request.h,
16739: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
16740: main/execute.C, main/main.dsp, main/pa_common.C,
16741: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16742: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
16743: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
16744: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
16745: types/types.dsp: most pa_request compiled
16746:
16747: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16748: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16749: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16750: classes/op.C, classes/response.C, classes/string.C,
16751: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16752: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16753: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16754: include/pa_config_fixed.h, include/pa_config_includes.h,
16755: include/pa_dictionary.h, include/pa_dir.h,
16756: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16757: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
16758: include/pa_pool.h, include/pa_request.h,
16759: include/pa_request_charsets.h, include/pa_request_info.h,
16760: include/pa_sapi.h, include/pa_socks.h,
16761: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16762: include/pa_stack.h, include/pa_string.h,
16763: include/pa_stylesheet_connection.h,
16764: include/pa_stylesheet_manager.h, include/pa_table.h,
16765: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16766: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16767: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
16768: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
16769: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16770: main/compile.C, main/compile.tab.C, main/compile.y,
16771: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16772: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
16773: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16774: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16775: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16776: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16777: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16778: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
16779: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
16780: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16781: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16782: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16783: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
16784: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
16785: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16786: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16787: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16788: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16789: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16790: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16791: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16792: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16793: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16794: types/pa_vresponse.h, types/pa_vstateless_class.C,
16795: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16796: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16797: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16798: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16799: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16800: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
16801:
16802: * ChangeLog, src/classes/classes.h, src/classes/op.C,
16803: src/include/pa_cache_managers.h, src/include/pa_charset.h,
16804: src/include/pa_charsets.h, src/include/pa_common.h,
16805: src/include/pa_dictionary.h, src/include/pa_exception.h,
16806: src/include/pa_exec.h, src/include/pa_pool.h,
16807: src/include/pa_request.h, src/include/pa_sapi.h,
16808: src/include/pa_sql_connection.h,
16809: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16810: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
16811: src/main/compile.tab.C, src/main/compile_tools.C,
16812: src/main/compile_tools.h, src/main/main.dsp,
16813: src/main/pa_charset.C, src/main/pa_charsets.C,
16814: src/main/pa_common.C, src/main/pa_dictionary.C,
16815: src/main/pa_exception.C, src/main/pa_exec.C,
16816: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16817: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
16818: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
16819: src/types/pa_vclass.h, src/types/pa_vcookie.C,
16820: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16821: src/types/pa_vdouble.h, src/types/pa_venv.h,
16822: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
16823: src/types/pa_vhash.h, src/types/pa_vimage.C,
16824: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
16825: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
16826: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16827: src/types/pa_vobject.C, src/types/pa_vobject.h,
16828: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16829: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16830: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16831: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
16832: src/types/pa_vstring.h, src/types/pa_vtable.h,
16833: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
16834: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
16835: died, long live StringPtr
16836:
16837: 2003-01-30 paf
16838:
16839: * src/: include/pa_charset.h, include/pa_request.h,
16840: include/pa_sql_driver_manager.h, main/compile.tab.C,
16841: main/compile.y, main/compile_tools.h, main/pa_request.C,
16842: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
16843:
16844: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
16845: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
16846: types/pa_vhash.h, types/pa_vmethod_frame.h,
16847: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16848: types/types.dsp: vstateless_class compiled
16849:
16850: * src/main/compile.C: compile compiled
16851:
16852: * src/: include/pa_array.h, include/pa_operation.h,
16853: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
16854: main/pa_table.C: compile_tools compiled
16855:
16856: * src/: include/pa_operation.h, main/compile.y,
16857: main/compile_tools.C, main/compile_tools.h: started
16858: compile_tools. vagues ideas of how to free compiled code
16859:
16860: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
16861: main/main.dsp, types/pa_value.C, types/pa_value.h,
16862: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
16863: compiled
16864:
16865: 2003-01-29 paf
16866:
16867: * src/: include/pa_globals.h, include/pa_request.h,
16868: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16869: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
16870: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
16871: compiled
16872:
16873: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
16874: now
16875:
16876: * src/: include/pa_array.h, include/pa_exception.h,
16877: include/pa_pool.h, main/pa_exception.C: gd compiled
16878:
16879: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
16880: compiled
16881:
16882: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16883: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
16884: types/pa_vfile.h: vfile compiled
16885:
16886: * src/: include/pa_common.h, include/pa_globals.h,
16887: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
16888: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
16889: types/pa_vform.C, types/pa_vform.h: vcookie compiled
16890:
16891: * src/: include/pa_exception.h, main/pa_cache_managers.C,
16892: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
16893: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
16894: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16895: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
16896:
16897: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
16898: main/main.dsp, main/untaint.C: more compiled
16899:
16900: * src/: include/pa_charsets.h, include/pa_request.h,
16901: include/pa_request_info.h, include/pa_string.h,
16902: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
16903: types/pa_vresponse.h: vrequest compiled
16904:
16905: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
16906: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
16907: pa_vresponse.h, pa_wcontext.h: vrequest compiled
16908:
16909: * src/: classes/classes.h, include/pa_charset.h,
16910: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
16911: include/pa_request.h, include/pa_string.h, main/main.dsp,
16912: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
16913: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
16914: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
16915: types/pa_vrequest.C, types/pa_vrequest.h,
16916: types/pa_vstateless_class.h, types/pa_vstring.h,
16917: types/pa_vvoid.h: vrequest,vdouble,vint compiled
16918:
16919: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
16920: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16921: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
16922: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
16923: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16924: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
16925: types/pa_vobject.h, types/pa_vstateless_class.h,
16926: types/pa_vstateless_object.h, types/pa_vstatus.h,
16927: types/pa_vstring.h, types/types.dsp: vmath compiled
16928:
16929: 2003-01-28 paf
16930:
16931: * src/: classes/classes.h, classes/date.C, classes/file.C,
16932: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
16933: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
16934: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
16935: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
16936: compile_tools
16937:
16938: * src/: include/pa_charset.h, include/pa_exception.h,
16939: include/pa_request.h, include/pa_string.h, main/untaint.C:
16940: untaint compiled
16941:
16942: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16943: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16944: more compiled. struck with string::store_to needing to know
16945: source/client charsets
16946:
16947: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16948: types/pa_vfile.h: uue compiled
16949:
16950: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16951: table compiled
16952:
16953: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16954: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16955:
16956: * src/: include/pa_charset.h, main/pa_charset.C,
16957: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16958: introduced]
16959:
16960: * src/: classes/date.C, include/pa_charset.h,
16961: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16962: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16963: pa_charsets compiled
16964:
16965: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16966: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16967:
16968: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16969: common compiled
16970:
16971: * src/: include/pa_charsets.h, main/pa_charsets.C,
16972: main/pa_sql_driver_manager.C: pa_charsets compiled
16973:
16974: * src/: include/pa_array.h, include/pa_charset.h,
16975: include/pa_charsets.h, include/pa_pool.h,
16976: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16977: include/pa_stack.h, include/pa_string.h,
16978: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16979: sql_driver_manager compiled
16980:
16981: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16982: letter i with two dots added to koi, all ukranian letters added
16983: to win1251.
16984:
16985: typographic simbol 0xb9 deleted from win1251 [strange one & were
16986: abscent from koi]
16987:
16988: 2003-01-27 paf
16989:
16990: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16991: include/pa_sql_driver_manager.h, include/pa_string.h,
16992: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16993: sql/pa_sql_driver.h: paused on sql_manager
16994:
16995: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16996: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16997: include/pa_stack.h, main/pa_sql_driver_manager.C,
16998: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16999:
17000: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
17001: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17002: include/pa_table.h, main/pa_sql_driver_manager.C,
17003: main/pa_table.C: table compiled
17004:
17005: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
17006: cache_managers compiled
17007:
17008: * src/: include/pa_array.h, include/pa_charset.h,
17009: include/pa_pool.h, main/pa_charset.C: charset compiled
17010:
17011: * src/: include/pa_pool.h, main/pa_common.C: common compiled
17012:
17013: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
17014: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17015: main/pa_string.C, types/pa_value.C, types/pa_value.h,
17016: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
17017: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
17018:
17019: 2003-01-24 paf
17020:
17021: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
17022: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
17023: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17024: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
17025: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
17026: types/pa_vint.h, types/pa_vjunction.h,
17027: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17028: types/pa_vstatus.h, types/pa_vstring.h: more patched
17029:
17030: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
17031: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
17032: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
17033: main/pa_string.C, main/pa_table.C: string compiled
17034:
17035: * src/: include/pa_array.h, include/pa_common.h,
17036: include/pa_dictionary.h, include/pa_exception.h,
17037: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
17038: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
17039: main/pa_string.C: dictionary compiled
17040:
17041: 2003-01-23 paf
17042:
17043: * src/: include/pa_array.h, include/pa_common.h,
17044: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
17045: include/pa_request.h, include/pa_string.h, main/pa_common.C,
17046: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
17047: types/pa_value.h: resurrected pool in new sense: now it's
17048: factory, producing&accounting memory chunks for read[autofree]
17049: buffers
17050:
17051: * src/: include/pa_array.h, include/pa_exception.h,
17052: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
17053: main/pa_exception.C, main/pa_table.C: table compiled
17054:
17055: * src/: classes/image.C, classes/op.C, include/pa_array.h,
17056: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
17057: include/pa_pool.h, include/pa_pragma_pack_begin.h,
17058: include/pa_pragma_pack_end.h, include/pa_sapi.h,
17059: include/pa_string.h, include/pa_table.h, include/pa_types.h,
17060: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
17061: main/pa_table.C: aint that easy
17062:
17063: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
17064: main/main.dsp: continued with Hash
17065:
17066: * src/main/pa_common.C: connect_string allocated on heap[wes on
17067: stack] now. and exception can be reported OK now [can be reported
17068: outside of pro c with that stack]
17069:
17070: 2003-01-22 paf
17071:
17072: * src/: include/pa_array.h, include/pa_charset.h,
17073: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
17074: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
17075: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
17076: base: contains references_count. auto_ptr template calls
17077: add_ref/release
17078:
17079: 2003-01-21 paf
17080:
17081: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17082: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17083: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17084: classes/op.C, classes/response.C, classes/string.C,
17085: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17086: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17087: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17088: include/pa_config_fixed.h, include/pa_config_includes.h,
17089: include/pa_dictionary.h, include/pa_dir.h,
17090: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17091: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17092: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17093: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17094: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17095: include/pa_stack.h, include/pa_string.h,
17096: include/pa_stylesheet_connection.h,
17097: include/pa_stylesheet_manager.h, include/pa_table.h,
17098: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17099: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
17100: lib/pcre/pcre_parser_ctype.c, main/compile.C,
17101: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17102: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
17103: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17104: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17105: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
17106: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17107: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17108: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
17109: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
17110: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
17111: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17112: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17113: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
17114: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
17115: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17116: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
17117: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17118: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
17119: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
17120: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17121: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17122: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17123: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17124: types/pa_vstateless_object.h, types/pa_vstatus.C,
17125: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
17126: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17127: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17128: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
17129: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
17130: 2002->2003
17131:
17132: 2003-01-16 paf
17133:
17134: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
17135: src/main/pa_globals.C: http:// introducing $.any-status(1)
17136:
17137: * operators.txt, src/include/pa_config_fixed.h,
17138: src/main/pa_common.C: http request now return status. and not
17139: fail on status!=200
17140:
17141: 2003-01-15 paf
17142:
17143: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
17144:
17145: 2003-01-14 paf
17146:
17147: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
17148: mkinstalldirs: removed some ancient files [they in / really]
17149:
17150: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
17151: regretfully needed patch in two places. in config_fixed.h made
17152: stubs for lib to compile in MSVC
17153:
17154: 2003-01-13 paf
17155:
17156: * config.guess, config.sub, ltmain.sh: removed last piece of
17157: configure.in(libtool) hacks
17158:
1.116 moko 17159: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 17160: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
17161: ltdl.h: moved to latest libtool (1.4.3)
17162:
17163: 2003-01-10 paf
17164:
17165: * src/lib/ltdl/: configure, configure.in: PROG_NM
17166:
17167: * src/main/pa_globals.C: moved to latest xml lib versions, changed
17168: patches. libxml2 >= 2.5.1
17169: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
17170: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
17171: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17172:
17173: * INSTALL: moved to latest versions of xml libs libxml2 >=
17174: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
17175: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
17176: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17177:
17178: 2003-01-09 paf
17179:
17180: * INSTALL: xml,xslt,gdome lib urls updated
17181:
17182: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 17183: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 17184: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 17185: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
17186: 1.7.2
1.95 moko 17187:
17188: * depcomp: moving to automake 1.7.2
17189:
17190: 2002-12-27 paf
17191:
17192: * src/include/pa_version.h: 0007
17193:
17194: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
17195: outdated parts, made links to language docs
17196:
17197: * src/include/pa_config_auto.h.in: comment
17198:
17199: 2002-12-26 paf
17200:
17201: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
17202: not contain trailing / fixed.
17203:
17204: * INSTALL: changing SAFE_MODE politics
17205:
17206: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
17207:
17208: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
17209:
17210: 2002-12-25 paf
17211:
17212: * src/main/pa_globals.C: optimized-xml
17213:
17214: * src/main/pa_globals.C: optimized-as-is
17215:
17216: 2002-12-24 paf
17217:
17218: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
17219: fixed [were really called with zero size when .html?a=&b=]
17220:
17221: * src/classes/mail.C: $MAIL in @conf now invalid when configured
17222: with --with-sendmail
17223:
17224: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
17225: fixed]
17226:
17227: 2002-12-23 paf
17228:
17229: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
17230: ignoring parameters & were storing only string with default
17231: expires
17232:
17233: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
17234: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
17235: December 23, 2002 4:22 AM Subject: bug â
17236: Charset::transcode_buf2xchar
17237:
17238: 2002-12-20 paf
17239:
17240: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
17241: non-cgi [script] runs
17242:
17243: 2002-12-19 paf
17244:
17245: * INSTALL: --without-iconv recommended [it crashes on some systems
17246: [tested on elik]] moreover, it's not needed there [parser
17247: registers charsets itself]
17248:
17249: * INSTALL: --without-iconv recommended [it crashes on some systems
17250: [tested on elik]]
17251:
17252: * operators.txt, src/include/pa_globals.h,
17253: src/include/pa_request.h, src/main/pa_globals.C,
17254: src/main/pa_request.C: $response:download
17255:
17256: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
17257: compiler [win32]].
17258:
17259: 2002-12-18 paf
17260:
17261: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
17262:
17263: 2002-12-17 paf
17264:
17265: * src/targets/cgi/parser3.C: merged die&iis changes
17266:
17267: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
17268: to exit(1) 2. more flexible iilegal call check
17269:
17270: 2002-12-16 paf
17271:
17272: * ltmain.sh: some automakes silly insist on having this handy
17273:
17274: * src/main/untaint.C: filespec russian small 'r' changed to latin
17275: 'p' bug fix
17276:
17277: 2002-12-15 paf
17278:
17279: * src/main/untaint.C: filespec russian small 'r' changed to latin
17280: 'p'
17281:
17282: * configure.in, src/include/pa_config_auto.h.in,
17283: src/main/compile.C, src/main/pa_common.C: merged small changes
17284: from branch 6 to HEAD
17285:
17286: * src/main/compile.C: removed warning
17287:
17288: * src/main/pa_common.C: ftruncate having checked
17289:
17290: * configure.in, src/include/pa_version.h: new version
17291:
17292: 2002-12-14 paf
17293:
17294: * src/classes/table.C: removed unnecessary code
17295:
17296: * src/sql/pa_sql_driver.h: exception type fixed
17297:
17298: 2002-12-09 paf
17299:
17300: * src/types/pa_vvoid.h: $void.store[now] error
17301:
17302: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17303:
17304: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
17305: tries to write core dump
17306:
17307: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17308:
17309: * src/: classes/hash.C, classes/string.C, classes/table.C,
17310: classes/void.C, main/pa_sql_driver_manager.C,
17311: sql/pa_sql_driver.h: changed exception handling mech in sql
17312: handlers #2
17313:
17314: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
17315: exception handling mech in sql handlers
17316:
17317: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
17318: handlers
17319:
17320: * src/: classes/hash.C, classes/string.C, classes/table.C,
17321: classes/void.C, main/pa_sql_driver_manager.C,
17322: sql/pa_sql_driver.h: changed exception handling mech in sql
17323: handlers
17324:
1.116 moko 17325: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
17326: to write makefile which used libtool to install things, which is
17327: not needed
1.95 moko 17328:
17329: 2002-12-06 paf
17330:
17331: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
17332: $hash.fields -- pseudo field to make 'hash' more like 'table'
17333:
17334: 2002-12-05 paf
17335:
17336: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
17337: cc/bcc OK now
17338:
17339: * src/main/untaint.C: mail header closed properly
17340:
17341: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
17342: header ',' allowed. still bugs in smtp [only one receiptient
17343: works, cc, bcc ignored now, and MAILED ;)]
17344:
17345: [strncpy killed, memnchr used]
17346:
17347: * src/main/pa_table.C: table-copy now current=0
17348:
17349: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17350: lowlevel proc
17351:
17352: * src/targets/cgi/parser3.C: more checks on
17353: http://domain/parser.cgi start [maybe some getenv returns "",
17354: checked that now
17355:
17356: * src/targets/cgi/parser3.C: more checks on
17357: http://domain/parser.cgi start [maybe some getenv returns "",
17358: checked that now
17359:
17360: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
17361: out-of-mem errors reached log]
17362:
17363: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
17364: mail:send MIME-Version default
17365:
17366: * src/main/main.dsp: pa_version included into main.dsp
17367:
17368: 2002-12-04 paf
17369:
17370: * src/types/pa_vform.C: $form:field string value cut by premature 0
17371:
17372: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
17373: lib/libltdl -> lib/ltdl Win32 changes. s
17374:
17375: * src/classes/classes.awk: more strict *.C$
17376:
17377: * gnu.dsp: restored
17378:
1.116 moko 17379: * configure.in, gnu.dsp, src/lib/Makefile.am,
17380: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
17381: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
17382: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
17383: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
17384: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
17385: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
17386: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
17387: now created with /configure, not ltdl/configure, so it does have
17388: no problems with automake. ltdl/configure
17389: AC_OUTPUT(Makefile<<removed)
1.95 moko 17390:
17391: 2002-12-02 paf
17392:
17393: * operators.txt: removed outdated status:db
17394:
17395: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
17396: src/main/pa_common.C, src/main/pa_request.C,
17397: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
17398: tainted parts becomes http-header
17399:
17400: 2002-11-29 paf
17401:
17402: * src/classes/date.C, src/classes/image.C, operators.txt: exif
17403: dates now objects of type date
17404:
17405: * src/classes/image.C: file.seek removed [it were used in image.C
17406: only, and for parser user this means that jpeg image has bad
17407: size in fragment's header] now used image.format
17408:
17409: * src/: include/pa_common.h, main/pa_common.C,
17410: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
17411: now handled exactly like $response:header values. e.g. can be
17412: hash [can have subattributes] & contain date values.
17413:
17414: * src/main/pa_common.C: http:// param values lang forced URI
17415:
17416: * src/main/pa_common.C: http:// tainted partes now %xx
17417:
17418: 2002-11-28 paf
17419:
17420: * operators.txt: http.timeout
17421:
17422: * src/classes/image.C: ^image.length now counts interchar space.
17423: plus space after last char
17424:
17425: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
17426:
17427: * src/classes/image.C: ^image.font width measurer now scans full
17428: height [were -1]
17429:
17430: * configure.in: stopped double libltdl/Makefile generation
17431:
17432: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
17433: chars [one top horizontal line of 1pixel height were missing]
17434:
17435: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
17436: 'false' to go into (Hash *) parameter
17437:
17438: 2002-11-27 paf
17439:
17440: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
17441: types/pa_vmail.C: response:body[file] if file nows it's name now
17442: returns content-disposition: >>attachment<<
17443:
17444: * src/classes/image.C: ^image.font << bad font file-size now
17445: properly reported
17446:
17447: 2002-11-26 paf
17448:
17449: * src/main/pa_request.C: fixed lang in reponse header
17450:
17451: * src/main/pa_common.C: utf8 prefix ignored @read text
17452:
17453: * operators.txt, src/main/pa_common.C: http:// response status!=200
17454: made exception: http.status with source=bad status#
17455:
17456: 2002-11-25 paf
17457:
17458: * configure.in, src/classes/image.C,
17459: src/include/pa_config_auto.h.in,
17460: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 17461: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
17462: const void related probs fixed
1.95 moko 17463:
17464: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
17465:
17466: $file[^file::load[http://there]] $file.SERVER
17467:
17468: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
17469: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
17470: http options [invalid onces now reported] made default
17471: user-agent: paf
17472:
17473: * operators.txt, src/classes/file.C, src/classes/table.C,
17474: src/classes/xdoc.C, src/include/pa_common.h,
17475: src/include/pa_globals.h, src/main/pa_common.C,
17476: src/main/pa_globals.C, src/main/pa_request.C,
17477: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
17478: now understand http:// prefix and additional params, sample:
17479: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
17480: $.USER-AGENT[parser3] ]]
17481:
17482: 2002-11-22 paf
17483:
17484: * src/classes/image.C, src/include/pa_globals.h,
17485: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
17486: src/types/pa_vimage.h, operators.txt: $image.exif support
17487: $image.exif.DateTime & co
17488:
17489: 2002-11-21 paf
17490:
17491: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
17492: _PASS_APPENDED)
17493:
17494: * src/classes/image.C: jpeg size measure fixed: were badly skipping
17495: EXIF information [were big block and it's size were considered
17496: negative :(]
17497:
17498: * operators.txt, src/classes/image.C, src/include/pa_common.h,
17499: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
17500: internals rewritten. no there's reader.seek, and all's ready for
17501: EXIF extraction [now we fail to measure files with EXIF info]
17502:
17503: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
17504: O_TRUNC truncates even exclusevely write-locked file [thanks to
17505: Igor Milyakov <virtan@rotabanner.com> for discovering]
17506:
17507: 2002-11-20 paf
17508:
17509: * src/targets/cgi/parser3.C: logging @signal += query_string
17510:
17511: * configure.in, src/include/pa_config_auto.h.in,
17512: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
17513: comment
17514:
17515: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
17516:
17517: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17518: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
17519: currently processed document SIGPIPE >> interrupts request
17520: processing [exception = DB rollback]
17521:
17522: * src/main/pa_exec.C: comment
17523:
17524: * src/main/pa_exec.C: pa_exec: data written only if size>0
17525:
17526: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
17527: << disable HTTP-POST repassing
17528:
17529: * src/: include/pa_config_fixed.h, main/pa_common.C,
17530: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
17531: pipe read errors now checked
17532:
17533: 2002-11-19 paf
17534:
17535: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
17536: CGI: Illegal call
17537:
17538: 2002-11-01 paf
17539:
17540: * src/main/execute.C: comment
17541:
17542: 2002-10-31 paf
17543:
17544: * src/main/execute.C: found out why, checked that for now. todo:
17545: find out a way for that user could do that
17546:
17547: * src/types/pa_vstateless_object.h: object put replaces static
17548: parent if any
17549:
17550: * src/types/pa_vobject.C: object put replaces static parent if any
17551:
17552: * src/: classes/form.C, classes/mail.C, classes/op.C,
17553: classes/xnode.h, main/compile.tab.C, main/execute.C,
17554: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17555: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17556: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17557: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17558: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17559: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17560: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17561: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17562: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17563: types/pa_vstateless_object.h, types/pa_vstatus.C,
17564: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17565: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17566: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17567: types/pa_wwrapper.h: static fix merged
17568:
17569: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17570: $virtual_fields in dynamic, but one can reach derived
17571: static[class] variable from base
17572:
17573: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17574: types/pa_vobject.C, types/pa_vobject.h,
17575: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17576: statics, left $virtual_fields in dynamic
17577:
17578: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17579: one can't remember derivates in base class: there's so many of
17580: them. also there can be no virtual method calls in static
17581: classes
17582:
17583: * src/: classes/form.C, classes/mail.C, classes/op.C,
17584: classes/xnode.h, main/execute.C, main/pa_request.C,
17585: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17586: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17587: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17588: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17589: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17590: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17591: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17592: types/pa_vresponse.C, types/pa_vresponse.h,
17593: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17594: types/pa_vstateless_object.h, types/pa_vstatus.C,
17595: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17596: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17597: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17598: types/pa_wwrapper.h: static call $self fixed
17599:
17600: * src/main/execute.C: comment
17601:
17602: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17603: ^process[$caller.self]{...} now compiles to last derived object
17604: part of that 'self'
17605:
17606: 2002-10-29 paf
17607:
17608: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17609: re-passing [iis to blame]
17610:
17611: * src/classes/string.C: changed string.save to pass current sql
17612: connection to cstr thus one can ^connect[some server]{
17613: $s[insert into table x (x) values (^taint[sql]{value})]
17614: ^s.save[some.sql] } and he'd get in some.sql file code with
17615: properly escaped. [tried in mssql->mysql export->import of
17616: binary data]
17617:
17618: 2002-10-25 paf
17619:
17620: * src/types/pa_vresponse.C: case insensitive response user fields
17621: get/put
17622:
17623: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17624: types/pa_vresponse.C: saving for maybe-future
17625:
17626: 2002-10-23 paf
17627:
17628: * operators.txt, src/classes/table.C: ^table.hash{code}...
17629: ^table.hash(expr)...
17630:
17631: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17632:
17633: 2002-10-22 paf
17634:
17635: * src/types/: pa_vform.C, pa_vform.h: removed needless
17636: VForm::Append...(...Value)
17637:
17638: * src/main/execute.C: $.name outside of $name[...] checked
17639:
17640: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17641: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17642:
17643: 2002-10-21 paf
17644:
17645: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17646: $form:qtail $form:imap.x/y
17647:
17648: * operators.txt, src/types/pa_vform.C: $form:nameless =
17649: "?value&...", "...&value&...", "...&value"
17650:
17651: * operators.txt, src/types/pa_vform.C: $form:image-map
17652:
17653: * operators.txt, src/classes/file.C: /some/page.html:
17654: ^file:fullpath[a.gif] => /some/a.gif
17655:
17656: 2002-10-17 paf
17657:
17658: * src/main/: compile.tab.C, compile.y: operators precedence changed
17659: a little: logical not and bitwise negation precedence made
17660: highest, << and >> bitshits precedence made equal [were << higher
17661: than >>]
17662:
17663: * src/classes/op.C: exception handling fixed [were bad with
17664: contexts]
17665:
17666: 2002-10-16 paf
17667:
17668: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17669: main/pa_request.C: Request::self considered equal to
17670: VMethodFrame::self, and removed, Request::get_self() mapped to
17671: VMethodFrame.self()
17672:
17673: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
17674: $hash in open field now gives old good error meesage
17675:
17676: 2002-10-15 paf
17677:
17678: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
17679: use ^if($junction is junction){was and now true}
17680:
17681: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
17682: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
17683: types/pa_vxnode.C: xml->parser strings now have origin, which
17684: points to place where value left xml library and came to parser:
17685: place of dom field extraction/call
17686:
17687: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
17688: main/compile.tab.C, main/compile.y, main/execute.C,
17689: types/pa_vmethod_frame.h: removed last pieces of old code
17690: allowing $junction.xxx at compile time
17691:
17692: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
17693: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
17694: objects also considered [were only classes]
17695:
17696: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
17697: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
17698: with CLASS self. [ (request&method_frame).self temporarily
17699: changed ]
17700:
17701: * src/classes/: hash.C, op.C: method_frame now always changed, with
17702: no exception to native calls. for&foreach changed to use
17703: method_frame.caller for their var's name context
17704:
17705: * src/: main/execute.C, targets/cgi/parser3.C,
17706: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
17707: compiling to system classes disabled
17708:
17709: * operators.txt, src/classes/op.C:
17710: ^process[$caller.CLASS]{code-string} added
17711:
17712: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
17713: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
17714: src/types/Makefile.am, src/types/pa_vjunction.C,
17715: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
17716: src/types/types.dsp: removed $junction.get $junction.set[]
17717: introducing $caller
17718:
17719: * src/types/pa_value.h: removed outdated comments. doxygen would
17720: find them lower by inheritance tree
17721:
17722: * src/types/pa_vjunction.C: ident
17723:
17724: 2002-10-14 paf
17725:
17726: * src/classes/op.C: process compiles to code's class class
17727:
17728: * src/: classes/form.C, classes/mail.C, classes/op.C,
17729: include/pa_request.h, main/compile.C, main/compile.tab.C,
17730: main/compile.y, main/execute.C, main/pa_request.C,
17731: types/pa_vstateless_class.h: operators now main-class-methods
17732:
17733: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
17734: better stack trace [has "call" & co there]
17735:
17736: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17737: operators @auto now executed in MAIN context
17738:
17739: * src/main/execute.C: operator execution context now = MAIN, not
17740: closest stack frame
17741:
17742: @touchit[] $i[after]
17743:
17744: ----t.html $i[before] << local ^touchit[] $i << now 'before',
17745: were 'after'
17746:
17747: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
17748: 'after'
17749:
17750: * src/main/execute.C: comment
17751:
17752: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
17753: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
17754: action]
17755:
17756: * src/types/pa_vxnode.C: misreplace fixed
17757:
17758: * configure, configure.in, src/include/pa_config_auto.h.in,
17759: src/types/pa_vstatus.C, operators.txt:
17760: $status:rusage.tv_secs/usecs introduced
17761:
17762: 2002-10-09 paf
17763:
17764: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
17765: on empty string [or uses (default)]
17766:
17767: 2002-10-08 paf
17768:
17769: * src/main/untaint.C: mail header quoted printable changed after
17770: RFC reread
17771:
17772: * operators.txt: plan on ^if(method
17773:
17774: * src/types/pa_vxnode.C: misreplace
17775:
17776: 2002-09-24 paf
17777:
1.116 moko 17778: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 17779:
17780: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
17781: mailreceive would compile on freebsd now
17782:
17783: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
17784: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 17785: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
17786: mailreceive would compile on freebsd now
1.95 moko 17787:
17788: * src/: classes/file.C, main/untaint.C: 1. file spec language
17789: changed: now there are only few chars are untainted: * ? ' " < >
17790: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
17791: one should use ^untaint[uri]{...} now]
17792:
17793: 2. $list[^file:list[dir]] now returns simply tainted names in
17794: $list.name, not tainted as filespec
17795:
17796: @russianindex[] #dir with files with russian-lang names
17797: $where[dir]
17798:
17799: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
17800: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
17801:
17802: 2002-09-23 paf
17803:
17804: * src/types/pa_vdouble.h: double->int round added
17805:
17806: * src/classes/date.C: date bug fix, now
17807: round(floatDays*secondsPerDay)
17808:
17809: * src/classes/date.C: date bug fix, now
17810: round(floatDays*secondsPerDay)
17811:
17812: 2002-09-20 paf
17813:
17814: * src/main/execute.C: code junction calls disabled [before: code
17815: was compiled in such a way, that there were no code-junctions in
17816: OP_CALL]
17817:
17818: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
17819:
17820: @badjunctioncallinside[code] ^code[]
17821:
17822: * src/main/: compile.tab.C, compile.y: changed grammer on junction
17823: expanding to include ^junction.method
17824:
17825: * src/main/pa_common.C: -d "DIR/" now true
17826:
17827: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
17828: as internal xdoc encoding, and after decoding attributes set by
17829: dom functions now encoded OK, not as digital entities
17830:
17831: * src/classes/xdoc.C: empty transform result, being taken as file
17832: now returns empty file, not raises stupid error about "stat-ed
17833: file"
17834:
17835: * src/types/pa_vhash.h: hash.foreach modification of existing keys
17836: allowed
17837:
17838: * src/types/types.dsp: introducing $junction.get/put(1) one can
17839: write iterators now:
17840:
17841: ^user-foreach[key;value]{$key=$value<br>}
17842:
17843: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17844: $code.value($i*2) $code }
17845:
17846: * src/main/compile_tools.h: mistype
17847:
1.116 moko 17848: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
17849: thus taking linking options configure changes into account [were:
17850: ignoring]
1.95 moko 17851:
17852: * src/types/: pa_vjunction.C, Makefile.am: introducing
17853: $junction.get/put(1) one can write iterators now:
17854:
17855: ^user-foreach[key;value]{$key=$value<br>}
17856:
17857: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17858: $code.value($i*2) $code }
17859:
17860: * src/: include/pa_opcode.h, include/pa_request.h,
17861: main/compile.tab.C, main/compile.y, main/execute.C,
17862: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
17863: introducing $junction.get/put(1) one can write iterators now:
17864:
17865: ^user-foreach[key;value]{$key=$value<br>}
17866:
17867: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17868: $code.value($i*2) $code }
17869:
17870: 2002-09-19 paf
17871:
1.116 moko 17872: * Makefile.am: new: make commit
1.95 moko 17873:
17874: * aclocal.m4: forced to be older
17875:
17876: 2002-09-18 paf
17877:
17878: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
17879: src/main/compile.y, src/main/execute.C: << >> int shifts
17880:
17881: * src/: include/pa_common.h, include/pa_request.h,
17882: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
17883: - now this - fatal error
17884:
17885: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
17886: that one can pass binary data there
17887:
17888: * src/: classes/date.C, classes/double.C, classes/file.C,
17889: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17890: classes/op.C, classes/response.C, classes/string.C,
17891: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17892: include/pa_request.h: pa_request contexts made privated, plus
17893: get_{self/method_frame} to read. Request_context_saver used in
17894: ^try to save flang too. [were not saved]
17895:
17896: * src/types/pa_vresponse.C: header value chains joined before
17897: output, this should help $.subject[$var $var] from being
17898: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
17899:
17900: 2002-09-17 paf
17901:
17902: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
17903: removed changes, operators executed with calling self. lots of
17904: code with ^include code relies on defined/defining self variables
17905:
17906: $a[1] ^include[print_a.p] print_a.p: $a
17907:
17908: ^include[set_a.p] a=$a set_a.p: $a[1]
17909:
17910: * src/: classes/op.C, main/execute.C, main/pa_request.C,
17911: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
17912: types/pa_vstateless_class.h: operators now executed with MAIN
17913: self. it's for ^include sake, too strong a change
17914:
17915: * src/classes/op.C: made place for ^process to compile it's code to
17916: in case of no self
17917:
17918: * src/main/execute.C: found ancient param to Junction, removed.
17919: allowed passing self to native_code_operators [for ^process to
17920: work, she needs self]
17921:
17922: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
17923: types/pa_vstateless_class.h: found ancient param to Junction,
17924: removed. allowed passing self to native_code_operators [for
17925: ^process to work, she needs self]
17926:
17927: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
17928: types/pa_value.h, types/pa_vmethod_frame.h,
17929: types/pa_vstateless_class.h: allowed Request.self to be 0,
17930: checked that in VMethodFrame get/put and $self.
17931:
17932: * src/classes/: table.C, xdoc.C: table::sql options table::create
17933: copy options options checked, wrong option now fatal error
17934:
17935: * src/main/pa_string.C: string.replace fixed [were missing words on
17936: pieces boundaries]
17937:
1.150 moko 17938: * configure, configure.in: .so now detected [can be .sl on hpux,
17939: .dll on cygwin, .so in other cases)
1.95 moko 17940:
17941: * configure, configure.in: .so now detected [can be .sl on hpux,
17942: .dll on cygwin, .so in other cases)
17943:
17944: * operators.txt, src/classes/hash.C, src/classes/table.C,
17945: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17946: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17947: record taken [were last]
17948:
17949: * src/: classes/hash.C, classes/table.C,
17950: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17951: now errors
17952:
17953: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17954:
17955: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17956: ,2,3]
17957:
17958: 2002-09-16 paf
17959:
17960: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17961: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17962: stdout to be binary. now detected closest header break.
17963:
17964: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17965: closed right
17966:
17967: 2002-09-13 paf
17968:
17969: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17970: src/main/compile_tools.h: (expression #comment)
17971:
17972: (multiline expression #comment line2 #comment )
17973:
17974: (expression #comment with (brackets) comment) << OK
17975:
17976: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17977: bitwise !|| numerical xor now [preparing for expression
17978: #comments]
17979:
17980: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17981: error
17982:
17983: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17984: cheched in pa_socks.C
17985:
1.116 moko 17986: * configure, configure.in, src/include/pa_config_auto.h.in:
17987: HAVE_WINSOCK_H created in configure.in
1.95 moko 17988:
17989: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17990: cookie date now clean [were mistakenly tainted & that worked bad
17991: with opera -- 'happily' that worked OK with msie]
17992:
17993: 2002-09-12 paf
17994:
17995: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17996: VClass get_element now first looks to fields, next to methods &
17997: co todo: the rest reason: more speed
17998:
17999: * src/main/untaint.C: quoted printable encoding stops before
18000: \s*<...>$
18001:
18002: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
18003: stops before <...>$
18004:
18005: 2002-09-11 paf
18006:
18007: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
18008: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
18009: forgot to check users of those funcs. not all were using that
18010: return value convention
18011:
18012: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
18013: windows-1254 added
18014:
18015: 2002-09-10 paf
18016:
18017: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
18018: VCodeFrame parent param were specified badly
18019:
18020: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
18021: WWrapper which used in constructing objects(second param to sql
18022: method) ^...sql{}[$.default{code}] now has parent, wich helps
18023: code in hash to survivi
18024:
18025: * src/: include/pa_request.h, main/execute.C: removed redundant
18026: param to execute [stack said 'thanks']
18027:
18028: * src/: classes/op.C, main/execute.C, types/pa_value.C,
18029: types/pa_value.h, types/pa_vcode_frame.h,
18030: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18031: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
18032: responsibility to wcontext
18033:
18034: * src/classes/file.C: decided not to log exec's with stderr, that
18035: could be warnings, and it's up to scritper to log/show them
18036:
18037: * src/: classes/double.C, main/execute.C: double:sql badly called
18038: write_assign_lang, not write_no_lang, thus doing unnecessary
18039: double/string converstion, which were loosing time&precesion
18040:
18041: * src/: main/pa_charset.C, types/pa_vmail.C:
18042: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
18043: case of unfinished in buffer processing, causing accidental
18044: transcode stop [in case that source enc != utf-8 & there is
18045: incomplete utf-8 sequence at the end of 16000block iside of
18046: libxml lib] tfm readed & code updated
18047:
18048: 2002-09-04 paf
18049:
18050: * configure: makes with sjlj
18051:
18052: * INSTALL, src/include/pa_config_fixed.h,
18053: src/include/pa_sql_connection.h,
18054: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
18055: checked. on win32 it made default
18056:
18057: * src/include/pa_config_auto.h.in: sjlj define
18058:
18059: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
18060: can not work with longjump/throw pair, and one must switch that
18061: on there. todo: detect that automatically]
18062:
18063: * src/types/pa_vxnode.C: removed too strong checks of
18064: xnode.elements. now, for instance, if element does not have any
18065: attributes, $xnode.attributes is void, not error
18066:
18067: 2002-09-02 paf
18068:
18069: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
18070: removed double_result, didn't help
18071:
18072: * src/main/execute.C: double_result made to move that var away from
18073: hungry g++ optimizer (-O2), before: it were optimized and
18074: comparison operators worked badly
18075:
18076: * src/types/pa_vdate.h: removed debug
18077:
1.116 moko 18078: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 18079:
18080: * src/main/execute.C: fixed numeric < & co so that thay now use
18081: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
18082: unknown reason.
18083:
18084: 2002-08-29 paf
18085:
18086: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
18087: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
18088: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
18089: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
18090: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
18091: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
18092: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
18093: [called less frequent, allowed to remove ugly
18094: Junction.change_context-s from many places, switch,
18095: mail:send..html{}, ..] request.root renamed to method_frame [more
18096: easyreading] ancient {...PUSH/POPs...} changed to stack vars
18097: [speed up]
18098:
18099: 2002-08-28 paf
18100:
18101: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
18102: tainted
18103:
18104: * src/types/pa_vcookie.C: fixed cookie delete when
18105: $cookie:name[$.value[]]
18106:
18107: * operators.txt, src/classes/string.C:
18108: ^string.split[delim[;options]]
18109:
18110: 2002-08-27 paf
18111:
1.116 moko 18112: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 18113:
18114: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
18115: delimiter
18116:
18117: * INSTALL: recommended latest gmime 1.0.5
18118:
18119: 2002-08-26 paf
18120:
18121: * configure, configure.in: apache13/hook added to make dist.
18122:
18123: 2002-08-23 paf
18124:
18125: * src/: include/pa_common.h, main/pa_common.C,
18126: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
18127: beside binary [cgi, isapi] not accessible [due to bad rights or
18128: whatever] it's error now
18129:
18130: 2002-08-21 paf
18131:
1.116 moko 18132: * Makefile.am: can use: make happy equals to make update install
1.95 moko 18133:
18134: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18135: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
18136: class". compiled as if here they named base class
18137:
18138: * src/main/pa_string.C: fixed bad language bug, [were wrong string
18139: cloning constructor]
18140:
18141: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
18142:
1.150 moko 18143: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 18144: $mail.received.file.value.content-type fixed
18145:
18146: 2002-08-20 paf
18147:
18148: * src/classes/file.C: fixed language of file:file result
18149:
18150: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
18151: from 3.0.0005
18152:
18153: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
18154:
18155: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
18156: 3.0.0005
18157:
18158: * src/classes/void.C, operators.txt: ^void.length[] = 0
18159:
18160: 2002-08-19 paf
18161:
18162: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
18163: work now
18164:
18165: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
18166: error in xnode, which were not catched in xdoc]
18167:
18168: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
18169: prepared: // validate each document after load/create (?)
18170: //xmlDoValidityCheckingDefaultValue = 1;
18171:
18172: 2002-08-15 paf
18173:
18174: * src/classes/classes.h: write to static var caused useless
18175: Exception, introduced Methoded::put_element wich consumes those
18176:
18177: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
18178: src/types/pa_vcookie.C, src/types/pa_vdate.h,
18179: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
18180: $response:field[date] $response:field[$.xxx[date]]
18181:
18182: * src/: classes/hash.C, classes/string.C, classes/table.C,
18183: classes/void.C, include/pa_sql_connection.h: fixed source of
18184: ^hash::sql{bad}
18185:
18186: * operators.txt: $request:body unprecessed POST request body
18187:
18188: * src/types/pa_vrequest.C: $request:body unprecessed POST request
18189:
18190: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
18191: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
18192:
18193: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
18194: src/include/pa_request.h, src/main/pa_pool.C,
18195: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
18196: $request:body r.post_data now const
18197:
18198: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
18199: classes/xnode.C, main/execute.C, types/pa_value.h,
18200: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
18201: types/pa_vtable.h: instead of type() checking everywhere used
18202: Value.as now user descendants can be used in params.
18203:
18204: VObject::as_*, is_defined now taken from bases. xtable(table)
18205: ^if($xtable) now OK
18206:
18207: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
18208: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
18209: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
18210:
18211: 2002-08-14 paf
18212:
18213: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
18214: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
18215: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18216: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18217: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18218: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
18219: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
18220: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18221: types/pa_vresponse.C, types/pa_vresponse.h,
18222: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18223: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18224: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18225: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18226: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
18227: & VClass
18228:
18229: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
18230:
18231: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
18232: removed fixopt stupidity. on stupid linux use cd /document/root
18233: ../cgi/parser3 script
18234:
18235: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
18236: params, splitting them by space, excluding argv[0], argv[argc-1]
18237:
18238: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
18239: fixopt.h: fixopt now preprocesses command line params, splitting
18240: them by space, excluding argv[0], argv[argc-1]
18241:
18242: * src/targets/cgi/parser3.C: -f config file
18243:
18244: * src/targets/cgi/parser3.C: fixed .log file dir
18245:
18246: 2002-08-13 paf
18247:
18248: * src/types/pa_vobject.C: allow override parent variables, useful
18249: for form descendants [in vobject too, were in vclass]
18250:
18251: * src/types/pa_vclass.C: allow override parent variables, useful
18252: for form descendants
18253:
18254: * src/types/pa_vclass.C: checked: form[vclass]fields can be
18255: overwritten in derived(table)
18256:
18257: * src/: classes/form.C, classes/mail.C, classes/op.C,
18258: classes/xnode.h, include/pa_request.h, main/execute.C,
18259: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
18260: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18261: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
18262: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18263: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
18264: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18265: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
18266: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18267: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18268: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18269: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18270: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18271: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
18272: Value::get_element(..., bool looking_down) [needed to exclude
18273: endless recoursion]
18274:
18275: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
18276: fix bug with put endless recoursion todo: check 'as'
18277:
18278: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
18279: reorganized modules todo: fix bug with put endless recoursion
18280: todo: check 'as'
18281:
18282: * src/types/pa_vobject.h: checked: table fields can be overwritten
18283: in derived(table)
18284:
18285: * src/types/pa_vobject.h: derived classes can have fields of their
18286: own now
18287:
18288: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
18289: fixed error message on using non-created table
18290:
18291: * src/: classes/form.C, classes/hash.C, classes/mail.C,
18292: classes/op.C, classes/xnode.h, include/pa_request.h,
18293: main/compile.C, main/compile.tab.C, main/execute.C,
18294: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18295: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18296: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18297: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18298: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
18299: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18300: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18301: types/pa_vresponse.C, types/pa_vresponse.h,
18302: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18303: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18304: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18305: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18306: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
18307: looking down/up tree todo: fix error message on non-constructed
18308: parents
18309:
18310: 2002-08-12 paf
18311:
18312: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
18313: derived OK
18314:
18315: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
18316: thorough testing
18317:
18318: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
18319: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18320: types/pa_vobject.h, types/pa_vstateless_class.h,
18321: types/pa_vstateless_object.h, types/pa_wcontext.h,
18322: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
18323: ^base:create[] dynamic call rewritten todo: thorough testing
18324:
18325: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
18326: now instantates base class, remembers it and saves child in
18327: parent VObject.get_class now returns last child = downward
18328: virtual calls OK
18329:
18330: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18331: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
18332: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
18333: types/pa_vobject.h, types/pa_vresponse.h,
18334: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18335: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
18336: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
18337: VAliased [redundant], moved $CLASS to VObject only [parser class
18338: instance]
18339:
18340: * src/main/pa_request.C: $response:body[file] content-type check
18341: fixed [were bad when content-type is hash]
18342:
18343: 2002-08-09 paf
18344:
18345: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18346: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18347:
18348: 2002-08-08 paf
18349:
18350: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18351: src/main/pa_globals.C: year column in month calendar [week year]
18352:
18353: * src/main/execute.C: error reporting on object writes to MAIN
18354: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18355:
18356: * operators.txt, src/types/pa_vdate.h: $date.yearday
18357: $date.daylightsaving
18358:
18359: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
18360: use tainted data now. only she must specify the language.
18361:
18362: ^mail:send[ $.from[paf@mail.design.ru]
18363: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
18364: $.text[^taint[uri][ìîñêâà]=] ]
18365:
18366: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
18367: now prints more precise origin
18368:
18369: * src/include/pa_string.h: String::first_char now not fails on
18370: empty strings ^if(-f '') now ok and in 3 other places.
18371:
18372: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
18373: String::first_char now not fails on empty strings ^if(-f '') now
18374: ok and in 3 other places.
18375:
18376: 2002-08-07 paf
18377:
18378: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
18379: fixed
18380:
18381: * src/main/pa_string.C: ^string.mid(0;bad) fixed
18382:
18383: * src/: main/execute.C, types/pa_vcode_frame.h,
18384: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18385: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
18386: mistakenly not completely transparent to object writes.
18387: $hash[^if(1){$hash}] now works
18388:
18389: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
18390: now erasing cache file [there were bad check on that]
18391:
18392: * src/: classes/classes.dsp, classes/table.C,
18393: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
18394: all Debug dirs in .dsp now named 'Debug'
18395:
1.116 moko 18396: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 18397:
18398: * operators.txt, src/classes/mail.C: exception_type email.send
18399:
18400: * operators.txt, src/types/pa_vmail.C: exception_type email.format
18401:
18402: * src/types/pa_vmail.C: mail:send empty email checked
18403:
18404: 2002-08-06 paf
18405:
18406: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18407: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18408: ^table::create[$source;$.options] ^table::join[$source;$.options]
18409:
18410: * operators.txt, src/classes/hash.C, src/classes/string.C,
18411: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
18412: # $.default() }
18413:
18414: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
18415:
18416: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
18417: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
18418: $file.content-type [instead of .mime-type] now works for
18419: file::stat also
18420:
18421: * src/main/pa_request.C: case insensitive mime_type_of
18422:
18423: 2002-08-05 paf
18424:
18425: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
18426:
18427: * src/types/pa_vmail.C: file buffer relocated to parser heap
18428:
18429: * operators.txt: comment on date:calendar week column
18430:
18431: * src/main/pa_common.C: write checked
18432:
18433: * src/main/: pa_common.C: write checked
18434:
18435: * src/classes/date.C: +1 buf size for stupid snprintfs
18436:
18437: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
18438: month calendar week column [ISO 8601 Week Numbers]
18439:
18440: 2002-08-02 paf
18441:
18442: * src/: include/pa_config_fixed.h, main/pa_string.C,
18443: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
18444: DEBUG*
18445:
18446: * configure, configure.in, src/include/pa_version.h: release
18447: 3_0_0005
18448:
18449: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
18450: multipart post fixed
18451:
18452: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
18453: response transcoded source->client only when text/* or simple
18454: onoverridden $response:body
18455:
18456: 2002-08-01 paf
18457:
18458: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18459: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18460: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
18461: classes/op.C, classes/response.C, classes/string.C,
18462: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18463: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
18464: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18465: include/pa_config_fixed.h, include/pa_dictionary.h,
18466: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
18467: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
18468: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
18469: include/pa_socks.h, include/pa_sql_connection.h,
18470: include/pa_sql_driver_manager.h, include/pa_stack.h,
18471: include/pa_string.h, include/pa_stylesheet_connection.h,
18472: include/pa_stylesheet_manager.h, include/pa_table.h,
18473: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18474: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
18475: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
18476: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18477: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
18478: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
18479: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
18480: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
18481: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
18482: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18483: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
18484: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
18485: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
18486: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18487: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18488: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
18489: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
18490: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18491: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
18492: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
18493: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18494: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18495: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
18496: types/pa_vmethod_frame.h, types/pa_vobject.h,
18497: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18498: types/pa_vresponse.h, types/pa_vstateless_class.C,
18499: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18500: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18501: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18502: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18503: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 18504: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 18505:
18506: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
18507: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
18508: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18509: classes/math.C, classes/op.C, classes/response.C,
18510: classes/string.C, classes/table.C, classes/void.C,
18511: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18512: include/pa_array.h, include/pa_cache_managers.h,
18513: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18514: include/pa_config_fixed.h, include/pa_config_includes.h,
18515: include/pa_dictionary.h, include/pa_dir.h,
18516: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18517: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18518: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18519: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18520: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18521: include/pa_stack.h, include/pa_string.h,
18522: include/pa_stylesheet_connection.h,
18523: include/pa_stylesheet_manager.h, include/pa_table.h,
18524: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18525: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
18526: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18527: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
18528: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18529: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
18530: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
18531: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18532: main/pa_sql_driver_manager.C, main/pa_string.C,
18533: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
18534: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18535: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18536: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
18537: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18538: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18539: targets/isapi/pool_storage.h, types/pa_valiased.C,
18540: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
18541: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18542: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
18543: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
18544: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18545: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
18546: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
18547: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18548: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18549: types/pa_vresponse.C, types/pa_vresponse.h,
18550: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18551: types/pa_vstateless_object.h, types/pa_vstatus.C,
18552: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
18553: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18554: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18555: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
18556: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
18557: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
18558: types/Makefile.am: ident.C* removed
18559:
18560: * operators.txt, src/classes/file.C, src/main/pa_request.C:
18561: file:find[/can/do/this/now.txt]
18562:
18563: * src/targets/cgi/parser3.C: usage to stdout now
18564:
18565: 2002-07-31 paf
18566:
18567: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18568:
18569: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18570: default "postmaster"
18571:
18572: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18573: -f postmaster now default sendmail key word "postmaster"
18574: replaced to $.from
18575:
18576: 2002-07-30 paf
18577:
1.116 moko 18578: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18579: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18580:
18581: * src/main/pa_charset.C: comment
18582:
18583: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18584: table, &#decimal;
18585:
18586: * src/main/pa_request.C: comment
18587:
18588: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18589: paragraf]
18590:
18591: 2002-07-11 paf
18592:
18593: * src/main/pa_exec.C: build command line badly added params twice
18594: [and first time without ' ']. double wrong. fixed.
18595:
18596: * src/main/pa_exec.C: invalid .exe caused error message with params
18597: wich parser did not provide = reported badly. fixed that.
18598:
18599: * src/classes/mail.C: $MAIL[ # xxx ]
18600:
18601: now ok
18602:
18603: * operators.txt: plan: sql detailed exception
18604:
18605: 2002-07-01 paf
18606:
18607: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18608: [MForm.configure_admin were called when request.main_class ==0
18609:
18610: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18611:
18612: * src/classes/form.C: content_length type fix
18613:
18614: 2002-06-30 paf
18615:
18616: * src/classes/mail.C: merged from 4
18617:
18618: * src/classes/mail.C: restored $MAIL
18619:
18620: 2002-06-28 paf
18621:
18622: * configure, configure.in: removed paths.h
18623:
1.116 moko 18624: * configure, src/include/pa_version.h,
1.95 moko 18625: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18626: merged, makes updated
18627:
18628: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18629: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18630: src/include/pa_pool.h, src/include/pa_version.h,
18631: src/main/pa_charset.C, src/main/pa_pool.C,
18632: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18633: src/types/pa_vmail.C: merged latest updates to head
18634:
18635: 2002-06-27 paf
18636:
18637: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18638: not error now
18639:
18640: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18641: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18642: src/main/pa_charset.C, src/main/pa_pool.C:
18643: ^xdoc::create[[uri]]... base uri for document being created,
18644: imports and other relative file names would be relative to this
18645: uri default uri=path_translated
18646:
18647: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18648:
18649: 2002-06-26 paf
18650:
18651: * configure, configure.in, src/include/pa_version.h:
18652: release_3_0_0004
18653:
18654: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18655: 0 now
18656:
18657: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18658:
18659: 2002-06-25 paf
18660:
18661: * src/main/pa_string.C: emtpy string, or string of whitespaces
18662: considered bad number now
18663:
18664: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18665: now
18666:
18667: * operators.txt, src/classes/string.C: ^string.normalize [old
18668: name: optimize
18669:
18670: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
18671: library configured
18672:
18673: * src/main/pa_request.C: configure_admin forced if no @conf
18674:
1.150 moko 18675: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
18676: ^math:crypt updated to generate random salt when needed and to
18677: call system crypt() if not $apr1$ prefix
1.95 moko 18678:
18679: 2002-06-24 paf
18680:
18681: * INSTALL: --with-static/shared-mailreceive described
18682:
18683: * src/include/pa_config_fixed.h: ssize_t fixed
18684:
1.116 moko 18685: * configure, configure.in, src/include/pa_config_auto.h.in,
18686: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 18687: src/types/pa_vmail.C: $mail:received makes update
18688:
18689: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
18690: WITH_MAILRECEIVE
18691:
18692: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
18693:
18694: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
18695: option, for $mail:receive
18696:
18697: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
18698: introducting $message:received ^mail:send rewritten with backward
18699: comp
18700:
18701: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18702: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18703: types/types.dsp: win32xml win32mailreceive pseudomodules paths
18704: now
18705:
18706: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
18707: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18708: src/include/pa_request.h, src/include/pa_string.h,
18709: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
18710: src/main/pa_globals.C, src/main/pa_request.C,
18711: src/main/pa_string.C, src/main/pa_uue.C,
18712: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
18713: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
18714: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
18715: uue to separate file introducting $message:received ^mail:send
18716: rewritten with backward comp
18717:
18718: 2002-06-21 paf
18719:
1.116 moko 18720: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
18721: co changes
1.95 moko 18722:
1.116 moko 18723: * configure, configure.in, src/lib/md5/Makefile.am,
18724: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
18725: restructure .in and .am files appropriate changes
1.95 moko 18726:
18727: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
18728: pcre to libs/ added libs/md5 which is linked to non-apache
18729: targets ^math:crypt[password;$apr1$salt]
18730:
18731: * INSTALL, configure.in, operators.txt, parser3.dsw,
18732: src/Makefile.am, src/classes/Makefile.am,
18733: src/classes/classes.dsp, src/classes/math.C,
18734: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 18735: src/lib/pcre/Makefile.am, src/lib/pcre/README,
18736: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
18737: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
18738: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
18739: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
18740: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
18741: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
18742: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 18743: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
18744: src/lib/pcre/pcre_parser_ctype.dsp,
18745: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
18746: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
18747: src/main/compile.tab.C, src/main/main.dsp,
18748: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
18749: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
18750: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
18751: to libs/ added libs/md5 which is linked to non-apache targets
18752: ^math:crypt[password;$apr1$salt]
18753:
18754: 2002-06-20 paf
18755:
1.150 moko 18756: * INSTALL, configure, configure.in, operators.txt,
18757: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
18758: src/include/pa_globals.h, src/include/pa_request.h,
18759: src/main/execute.C, src/main/pa_request.C,
18760: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18761: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
18762: file:justname&co & @auto/conf[filespec
1.95 moko 18763:
18764: * operators.txt, src/classes/file.C:
18765: !^file:dirname[/a/some.tar.gz]=/a
18766: !^file:dirname[/a/b/]=/a
18767: !^file:basename[/a/some.tar.gz]=some.tar.gz
18768: !^file:justname[/a/some.tar.gz]=some.tar
18769: !^file:justext[/a/some.tar.gz]=gz
18770:
18771: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18772: main/pa_request.C, types/pa_vmethod_frame.h: introducing
18773: @conf/auto[filespec]
18774:
1.116 moko 18775: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 18776:
1.150 moko 18777: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 18778: src/include/pa_globals.h, src/targets/cgi/parser3.C,
18779: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
18780:
18781: 2002-06-18 paf
18782:
18783: * configure, configure.in, src/include/pa_version.h: version to
18784: configure.in
18785:
18786: * INSTALL: reflected .conf.dist dir change
18787:
1.150 moko 18788: * Makefile.am, configure, configure.in,
1.116 moko 18789: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 18790: .in & *.am updated
18791:
18792: * src/classes/file.C: strncasecmp
18793:
18794: * src/classes/file.C: strcasecmp
18795:
1.150 moko 18796: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 18797:
18798: * src/classes/file.C: ^file::exec[script;$.bad error case
18799: insensitive check now
18800:
18801: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
18802:
18803: * configure, configure.in, src/include/pa_pool.h,
18804: src/include/pa_types.h: pack configure.in detection simplified.
18805: figured out that gcc on sparc not that stupid as thought
18806: previously: on sparc: when it sees packed class it modifies it's
18807: field-access-code to byte operations [stb, ldub] instead of 4byte
18808: operations [st, lduh] so packed must be all parts of packed
18809: class, i.e. it's parents&fields(classes). for now it's only
18810: String that packed and what was wrong is that it's parent -
18811: Pooled, were not packed. fixed that.
18812:
18813: 2002-06-14 paf
18814:
18815: * operators.txt: more precise xml-to-text options
18816:
18817: * operators.txt, src/types/pa_vxnode.C: xnode
18818: attribute_node.name/value xnode pi.node.data
18819:
18820: 2002-06-12 paf
18821:
1.116 moko 18822: * configure, configure.in, src/targets/cgi/Makefile.am,
18823: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 18824:
18825: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
18826: src/include/pa_globals.h, src/include/pa_request.h,
18827: src/main/compile.tab.C, src/main/pa_globals.C,
18828: src/main/pa_request.C, src/targets/cgi/parser3.C,
18829: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
18830:
18831: * src/classes/mail.C: sendmail -ti [default now]
18832:
18833: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
18834: to be strings. for convinient #ing
18835:
18836: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
18837: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
18838:
18839: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
18840: main/pa_globals.C, main/pa_request.C: @conf
18841:
18842: 2002-06-11 paf
18843:
18844: * src/classes/file.C: check simplified
18845:
18846: * src/: classes/file.C, targets/cgi/parser3.dsp,
18847: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
18848: valid prefix
18849:
18850: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
18851: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
18852: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
18853:
18854: 2002-06-10 paf
18855:
18856: * operators.txt, src/classes/op.C, src/include/pa_common.h,
18857: src/main/pa_common.C: lock failures reported now
18858:
18859: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
18860: string->double @ compile time were not-enough-checking...
18861:
18862: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
18863: autoconvert now ignored
18864:
18865: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
18866: check
18867:
18868: * src/classes/mail.C: mail netscape attachment name fixed. todo:
18869: $response:body content-type:name
18870:
18871: * configure, configure.in: hpux check, nsl link, no socket
18872:
18873: * operators.txt: old merge conflict removed
18874:
18875: * configure, configure.in: pack even address access on sparc&co
18876: arch checked in configure
18877:
18878: * configure, src/include/pa_version.h: makes
18879:
18880: * configure, configure.in, src/include/pa_version.h: makes
18881:
18882: * src/main/untaint.C: (bug#2) mail subject got always prepended
18883: with charset even when all letters were 7bit one
18884:
18885: * src/main/pa_common.C: merged fixed -d (bug)
18886:
18887: * src/main/pa_common.C: fixed -d (bug)
18888:
18889: 2002-06-03 paf
18890:
18891: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
18892: src/classes/classes.dsp, src/main/compile.tab.C,
18893: src/main/main.dsp, src/main/pa_globals.C,
18894: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
18895: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
18896: .dsp-s along with reorganized cvs modules dirs structure
18897:
18898: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18899: main/pa_globals.C, targets/cgi/parser3.dsp,
18900: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
18901: modules
18902:
18903: 2002-05-28 paf
18904:
18905: * src/targets/cgi/parser3.C: info.uri now ""
18906:
18907: 2002-05-17 paf
18908:
18909: * src/classes/: table.C: ^table.save << checked empty
18910: pre/match/post columns
18911:
18912: 2002-05-16 paf
18913:
18914: * src/classes/image.C: image::measure can png now
18915:
18916: 2002-05-15 paf
18917:
18918: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
18919: added
18920:
18921: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
18922:
18923: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
18924: %H[:%M[:%S]]]]]] [-%m now
18925:
18926: 2002-05-14 paf
18927:
18928: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
18929:
18930: 2002-05-07 paf
18931:
18932: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
18933: src/include/pa_globals.h, src/include/pa_request.h,
18934: src/include/pa_table.h, src/main/compile.tab.C,
18935: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
18936: src/main/pa_request.C, src/main/pa_table.C,
18937: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
18938: src/targets/isapi/parser3isapi.dsp,
18939: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
18940: name2number field now &. main_method_name now on Request pool
18941: rather on global_pool [Junction+VJunction created on same pool as
18942: name = were created on global pool, causing mem leaks]
18943:
18944: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18945: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18946: main/compile.y, main/main.dsp, main/pa_globals.C,
18947: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18948: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18949: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18950: field now &. main_method_name now on Request pool rather on
18951: global_pool [Junction+VJunction created on same pool as name =
18952: were created on global pool, causing mem leaks]
18953:
18954: 2002-05-06 paf
18955:
18956: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18957: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18958: 100*40 bytes per request memory leak [nonpool malloc in globals]
18959:
18960: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18961: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18962: 100*40 bytes per request memory leak [nonpool malloc in globals]
18963:
18964: 2002-04-30 paf
18965:
18966: * configure, src/include/pa_version.h: version now not b
18967:
18968: * src/targets/cgi/parser3.C: request.uri now never 0
18969:
18970: 2002-04-29 paf
18971:
18972: * configure.in: removed b
18973:
18974: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18975: Exception::comment/type checked in (), no there's no empty
18976: type/comment by default
18977:
18978: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18979: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18980: src/doc/value.dox, src/include/pa_exception.h,
18981: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18982: 0001
18983:
18984: 2002-04-26 paf
18985:
18986: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18987: size reduced
18988:
18989: 2002-04-25 paf
18990:
18991: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18992: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18993: now that took into account
18994:
18995: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18996: 01:03:04]
18997:
18998: * ChangeLog, operators.txt, src/classes/date.C:
18999: ^date::create[2002-12-33 01:03:04]
19000:
19001: * ChangeLog: updated changelog
19002:
19003: * src/classes/table.C: removed restriction on column count to
19004: ^table.hash to work, now must be >0 [were >1]
19005:
19006: 2002-04-24 paf
19007:
19008: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19009: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19010: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
19011: targets
19012:
19013: 2002-04-23 paf
19014:
19015: * operators.txt, src/classes/string.C:
19016: int/double/string:sql{}[$.default{code}] fixed [were barking:
19017: "junction used outside of context"]
19018:
19019: 2002-04-22 paf
19020:
19021: * types.txt, src/classes/string.C, src/include/pa_string.h,
19022: src/main/pa_string.C, src/types/pa_vstring.C,
19023: src/types/pa_vstring.h: ^string.optimize[]
19024:
19025: * src/: include/pa_globals.h, include/pa_table.h,
19026: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
19027: table template
19028:
19029: * src/classes/: string.C: optimize removed from string
19030: .left/right/pos
19031:
19032: * src/main/execute.C: rolled back to
19033: before_killing_userjunction_contexts
19034:
19035: * src/main/execute.C: user junctions context killed
19036:
19037: * src/main/execute.C: junctions to local contexts got
19038: cleanized&checked later
19039:
19040: 2002-04-19 paf
19041:
19042: * src/: classes/string.C, include/pa_request.h,
19043: include/pa_string.h, main/pa_request.C, main/pa_string.C,
19044: types/pa_vstring.C, types/pa_vstring.h: string now optimized
19045: prior to .left .right .mid .pos .match when that is profitable,
19046: and always before .replace when $ORIGINS(1) optimization disabled
19047: economy from not wasting mem on lots of strings which occur by
19048: lots of String:mid calls to get parts of source string between
19049: found_occurances
19050:
19051: * src/classes/file.C: ovector now local economy: 16 bytes per
19052: ^file:list
19053:
19054: * src/: include/pa_globals.h, include/pa_table.h,
19055: main/pa_globals.C, main/pa_string.C: String::match table columns
19056: globalized, not created @ each ^match anymore economy:
19057: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
19058:
19059: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
19060: removed from each String::match replace iteration, and made
19061: stacked sizeof(VTable)=12bytes economy on each replace code
19062:
19063: * src/doc/footer.htm: 2001,
19064:
19065: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19066: string.match[]['] option enables generation of $match.prematch
19067: .match .postmatch columns
19068:
19069: * src/main/pa_string.C: String::match options analized without
19070: cstr-ing them now
19071:
19072: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
19073: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
19074: config updated to doxygen 1.2.15, created helper which fixes
19075: minor bugs in chm project files & htm tree. changed extension to
19076: .htm
19077:
19078: 2002-04-18 paf
19079:
19080: * src/doc/doxygen.cfg: .chi generation disabled
19081:
19082: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
19083: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
19084: fields&methods
19085:
19086: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
19087: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
19088: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
19089: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
19090: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
19091: types/pa_vresponse.h, types/pa_vstateless_class.h,
19092: types/pa_vstateless_object.h, types/pa_vstatus.h,
19093: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
19094: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
19095: VStateless_class to VObject
19096:
19097: * src/: main/pa_request.C, types/pa_valiased.h,
19098: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19099: types/pa_vstring.h: VStateless_string_object speicalized light
19100: version of VStateless_object
19101:
19102: * src/classes/op.C: ^throw comment param made optional
19103:
19104: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
19105: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
19106: and implemented down in VClass, fclass_alias removed,
19107:
19108: * src/types/pa_value.C: forced to cut that from .h because of
19109: VStateless_class usage [undefined in .h]
19110:
19111: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19112: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19113: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
19114: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
19115: on each CALL]
19116:
19117: * src/: classes/classes.h, classes/date.C, classes/double.C,
19118: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19119: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19120: classes/response.C, classes/string.C, classes/table.C,
19121: classes/void.C, classes/xnode.C, include/pa_globals.h,
19122: include/pa_request.h, main/execute.C, main/pa_globals.C,
19123: main/pa_request.C, types/Makefile.am, types/pa_value.h,
19124: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
19125: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
19126: types/pa_vstateless_class.h, types/pa_wcontext.C,
19127: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
19128: removed Value::fname
19129:
19130: 2002-04-17 paf
19131:
19132: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
19133: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
19134: doc/pooled.dox, doc/string.dox, doc/targets.dox,
19135: include/pa_pool.h, include/pa_types.h: dox updated to current
19136: state, PTHROW freshen to throw & co
19137:
19138: * src/types/pa_vhash.h: vstring wrong parent fixed
19139:
19140: * src/classes/op.C: taint local result var bug fixed
19141:
19142: 2002-04-16 paf
19143:
19144: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
19145: Attic asm.txt as most interesting
19146:
19147: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
19148: check, preventing content-length: 0 from appearing
19149:
19150: * src/main/execute.C: $result in @main now taken into account as in
19151: usual functions
19152:
19153: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
19154: & @unhandled_exception now taken into account as in usual
19155: functions
19156:
19157: * src/doc/postbuild.txt: instructions on post .html build
19158:
19159: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
19160:
19161: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
19162: tainted
19163:
19164: * src/main/pa_request.C: uri in error log
19165:
19166: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
19167: cheched date:create(days) param for validity [later were assumed
19168: valid and crashed on invalid onces]
19169:
19170: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19171: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
19172: and used that for removing VString wrapper
19173:
19174: * src/classes/op.C: exception2vhash file now tainted
19175:
19176: * src/classes/op.C: _process pseudo origin copied from local var to
19177: heap
19178:
19179: * src/classes/op.C: extra check on empty file in origin in _execute
19180:
19181: 2002-04-15 paf
19182:
19183: * src/: main/execute.C, types/pa_value.h: fixed name update
19184:
19185: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
19186: functions
19187:
19188: * src/: classes/file.C, classes/hash.C, classes/op.C,
19189: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
19190: started dual write_xxx_lang functions, if checked & works
19191:
19192: * src/: classes/date.C, classes/file.C, classes/mail.C,
19193: classes/string.C, classes/xnode.C, include/pa_request.h,
19194: types/pa_value.h, types/pa_wcontext.h: removed absolutely
19195: unnecessary VString shells
19196:
19197: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
19198: prev changes]
19199:
19200: * src/: classes/image.C, classes/op.C, classes/string.C,
19201: classes/table.C, include/pa_request.h, main/execute.C,
19202: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
19203: StringOrValue wcontext result, now ready for dual writes
19204:
19205: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
19206: checked that
19207:
19208: * src/main/: compile.tab.C, compile.y, compile_tools.C,
19209: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
19210: changed to OP_WRITE_VALUE in var get cases
19211:
19212: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
19213: include/pa_request.h, main/compile.tab.C, main/compile.y,
19214: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19215: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
19216: switch in hash constructor fixed [were problems with using of
19217: stacked wwrapper after it's death]
19218:
19219: 2002-04-12 paf
19220:
19221: * operators.txt, src/classes/table.C: table.select(expression) 0
19222:
19223: 2002-04-11 paf
19224:
19225: * src/: classes/string.C, include/pa_request.h, main/execute.C:
19226: Request::process_internal codeFrame & wwrapper stacked [not
19227: wasting heap anymore]
19228:
19229: 2002-04-10 paf
19230:
19231: * src/: classes/double.C, classes/file.C, classes/hash.C,
19232: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
19233: classes/string.C, classes/table.C, classes/void.C,
19234: classes/xdoc.C, include/pa_request.h, main/execute.C,
19235: main/pa_string.C: killed Request::process() wrapping
19236: VString(String) in case we need only String
19237:
19238: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19239: killed 8 bytes from String.head
19240:
19241: 2002-04-09 paf
19242:
19243: * src/: main/compile.tab.C, targets/cgi/parser3.C,
19244: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
19245: local*/char b[...]; a=b; situations
19246:
19247: * operators.txt, src/classes/xdoc.C: xslt params made literal
19248:
19249: * src/classes/xdoc.C: xslt params fixed
19250:
19251: * src/: main/pa_common.C, targets/cgi/parser3.C,
19252: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
19253: not pool.malloc(MAX_NUMBER) but really neaded
19254:
19255: * operators.txt, src/classes/double.C, src/classes/int.C:
19256: int/double.int/double(default)
19257:
19258: 2002-04-04 paf
19259:
19260: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
19261: [when reconstructing pieces were split by
19262: max_integral(piece.size), thus some strings to replace happen to
19263: be split into two = not replaced)
19264:
19265: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
19266: standalone version = current dir
19267:
19268: * src/targets/cgi/parser3.C: document root in standalone version =
19269: current dir
19270:
19271: 2002-04-03 paf
19272:
19273: * configure, configure.in: more checks on nonexistent charset
19274:
1.116 moko 19275: * INSTALL, configure, configure.in: root config configure options
1.95 moko 19276:
19277: 2002-04-02 paf
19278:
19279: * src/main/compile.C: parser.compile [exception name more like in
19280: doc]
19281:
19282: 2002-04-01 paf
19283:
19284: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
19285: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
19286: .content-type.charset, not .charset
19287:
19288: 2002-03-29 paf
19289:
19290: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
19291:
19292: * operators.txt, src/classes/date.C: ^date::create now may not
19293: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
19294: days' year. | 31.05->31.04 roll
19295:
19296: 2002-03-28 paf
19297:
19298: * operators.txt, src/classes/date.C, src/classes/op.C,
19299: src/include/pa_globals.h, src/include/pa_hash.h,
19300: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
19301: ^cache(seconds) ^cache[date] }
19302:
19303: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
19304: param
19305:
19306: 2002-03-27 paf
19307:
19308: * operators.txt, src/classes/date.C, src/classes/double.C,
19309: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
19310: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
19311: src/classes/math.C, src/classes/op.C, src/classes/string.C,
19312: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
19313: src/classes/xnode.C, src/include/pa_exception.h,
19314: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
19315: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
19316: src/main/pa_array.C, src/main/pa_charset.C,
19317: src/main/pa_charsets.C, src/main/pa_common.C,
19318: src/main/pa_dictionary.C, src/main/pa_exception.C,
19319: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
19320: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
19321: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
19322: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19323: src/types/pa_value.h, src/types/pa_vcookie.C,
19324: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
19325: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
19326: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
19327: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
19328: src/types/pa_wwrapper.h: assigned exception types
19329:
19330: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
19331: src/include/pa_request.h, src/main/execute.C,
19332: src/main/pa_request.C: decided agains resetting exception_trace,
19333: just changed name
19334:
19335: 2002-03-26 paf
19336:
19337: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
19338: fixed
19339:
19340: * src/classes/op.C: forced language of $source field of exception
19341: to 'tainted', so that sql-langed-frags could be outputed outside
19342: of connect
19343:
19344: * operators.txt: removed date.roll limit of +-1 offset
19345:
19346: * src/classes/date.C: removed date.roll limit of +-1 offset
19347:
19348: * operators.txt, src/classes/date.C: fixed date roll on
19349: daylightsaving days mktime took into account tm_isdst flag, which
19350: remained from BEFORE roll, but should have been reset
19351:
19352: 2002-03-25 paf
19353:
19354: * operators.txt, src/targets/cgi/parser3.C:
19355: http_site_config_filespec
19356:
19357: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
19358: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
19359: with any/both --disable-foreign-group-files --disable-execs
19360:
19361: * INSTALL: "--with=sendmail=COMMAND" comment
19362:
19363: * INSTALL, configure, configure.in, src/classes/mail.C,
19364: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 19365: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
19366: disables execs also. introducing --sendmail
1.95 moko 19367:
19368: * operators.txt: pgsql options comment
19369:
19370: * INSTALL: comment on --disable-link-stdcpp
19371:
1.116 moko 19372: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19373: libstdc++ link skipping configure option
1.95 moko 19374:
19375: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
19376: with error were put to cache with 'marked_to_rollback' flag, all
19377: consequent even OK requests rolled back
19378:
19379: 2002-03-22 paf
19380:
19381: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
19382: false return
19383:
19384: * operators.txt: few comments on sets
19385:
19386: 2002-03-18 paf
19387:
19388: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
19389: src/include/pa_globals.h, src/include/pa_request.h,
19390: src/include/pa_stack.h, src/main/pa_globals.C,
19391: src/main/pa_request.C: introducing ^try
19392:
19393: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
19394: types/pa_vdouble.h: removed some tested @tests
19395:
19396: 2002-03-15 paf
19397:
19398: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
19399:
19400: 2002-03-13 paf
19401:
19402: * src/main/pa_exception.C: checked not-pooled malloc
19403:
19404: 2002-03-11 paf
19405:
19406: * INSTALL, configure, configure.in,
19407: src/include/pa_config_auto.h.in: --disable-foreign-group-files
19408:
19409: * src/main/pa_common.C: --disable-foreign-group-files
19410:
19411: * INSTALL: --disable-execs
19412:
19413: * src/main/pa_exec.C: --disable-execs
19414:
19415: * configure, configure.in, src/include/pa_config_auto.h.in:
19416: --disable-execs
19417:
19418: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
19419:
19420: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
19421: file::exec/cgi linebreaks "0D0A" changed to 0A onces
19422:
19423: 2002-03-05 paf
19424:
19425: * operators.txt, src/classes/date.C: date week calendar columns
19426: named
19427:
19428: * operators.txt, src/classes/date.C: date week calendar columns
19429: named
19430:
19431: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
19432: requires headers to be terminated with \r\n manually [refuses to
19433: separate header/body itself]
19434:
19435: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19436: targets/isapi/parser3isapi.C: isapi site config beside .dll
19437:
19438: 2002-03-04 paf
19439:
19440: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
19441: in PASS language
19442:
19443: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
19444: deserialize checks on broken file
19445:
19446: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
19447: parser3isapi.dsp: isapi updated
19448:
19449: 2002-03-01 paf
19450:
19451: * src/main/pa_exec.C: execle -> execve, now argc OK
19452:
19453: 2002-02-28 paf
19454:
19455: * src/main/untaint.C: removed some debug comments
19456:
19457: * src/main/pa_charsets.C: when placing charset to cache using
19458: global name now [were request]
19459:
19460: * configure, configure.in: apache module updated
19461:
19462: * src/main/pa_string.C: origin by first piece preferred before last
19463: piece
19464:
19465: 2002-02-27 paf
19466:
19467: * src/main/pa_charset.C: size_t
19468:
19469: * INSTALL: shared/static-xml with-pathlink
19470:
19471: * operators.txt: SMTP comment
19472:
19473: 2002-02-26 paf
19474:
19475: * src/main/pa_exec.C: more precise names for vars, cosmetic
19476:
19477: * src/classes/xnode.C: in some situation, xpath query returned
19478: result with type NODESET, but empty nodeset member field, checked
19479: that
19480:
19481: 2002-02-22 paf
19482:
19483: * INSTALL: without-zlib comment
19484:
19485: * etc/parser3.charsets/windows-1251.cfg: °
19486:
19487: * configure, configure.in: glib###.a detection fixed
19488:
19489: * INSTALL: hashfile removed from INSTALL
19490:
1.116 moko 19491: * Makefile.am: make update
1.95 moko 19492:
19493: * src/main/pa_string.C: string iterators fixed again, so were
19494: String::join_chain
19495:
19496: * src/main/pa_string.C: string iterators fixed again, so were
19497: String::join_chain
19498:
19499: * src/: include/pa_string.h, main/pa_string.C: string iterators
19500: fixed again, so were String::join_chain
19501:
19502: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
19503:
19504: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
19505: "session"
19506:
1.116 moko 19507: * configure, configure.in, src/include/pa_config_auto.h.in:
19508: --with-shared-xml --with-static-xml
1.95 moko 19509:
19510: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19511: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19512: types/types.dsp: *.dsp: removed refereces to win32db & ancient
19513: xalan&xml
19514:
19515: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
19516:
19517: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
19518: src/types/types.dsp: removed hashfile support from sources for
19519: now
19520:
1.116 moko 19521: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 19522: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 19523: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
19524: src/include/pa_db_manager.h, src/include/pa_db_table.h,
19525: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 19526: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 19527: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
19528: src/types/Makefile.am, src/types/pa_vhashfile.C,
19529: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 19530:
19531: 2002-02-21 paf
19532:
19533: * src/main/untaint.C: removed debug code, activated commented-for
19534: debug parts
19535:
1.116 moko 19536: * Makefile.am: make cvsupdate
1.95 moko 19537:
19538: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19539: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
19540: append_row, not at link zero now string to string appending works
19541:
19542: 2002-02-20 paf
19543:
19544: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
19545: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
19546: DEBUG_STRING_APPENDS_VS_EXPANDS
19547:
19548: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19549: economy: 22%
19550:
19551: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19552: space uptimized: string::link_row removed
19553:
19554: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
19555: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
19556: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19557: types/pa_vstring.h: speed uptimized: string::is_empty
19558:
19559: * operators.txt, src/include/pa_common.h,
19560: src/include/pa_config_fixed.h, src/include/pa_string.h,
19561: src/include/pa_types.h, src/main/compile.tab.C,
19562: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
19563: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
19564: string append optimiziation idea and estimates
19565:
19566: 2002-02-19 paf
19567:
19568: * src/classes/math.C: not used directly [but erroreously reported
19569: that 'is', thus registering twice&other probs]
19570:
19571: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19572: to node [element]
19573:
19574: * src/main/compile.C: without string_origins parse error
19575: file+line+col possible
19576:
19577: * src/main/: compile.C: without string_origins not worked
19578:
19579: 2002-02-18 paf
19580:
19581: * src/types/pa_vdouble.h: since we have in_expression removed that
19582: trick i've installed into double::as_string
19583:
19584: * src/main/pa_globals.C: extern "C" was removed too fast
19585:
19586: * src/: include/pa_opcode.h, include/pa_request.h,
19587: main/compile.tab.C, main/compile.y, main/execute.C,
19588: types/pa_wcontext.h: in_expression aimed to solve old problem
19589: with string/nonstring values, now in expressions double/int
19590: values are passed as-is, without stupid tostring/fromstring
19591: conversions
19592:
19593: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19594: __cplusplus } #endif
19595:
19596: * src/main/compile.tab.C: bison env set so one could compile
19597: without cygwin installed
19598:
19599: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19600: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19601: gnome xml libs parser .dsp-s changed accordingly
19602:
19603: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19604:
19605: * operators.txt, src/classes/date.C: date::create [were date::set,
19606: with backward comp
19607:
19608: * src/classes/math.C: math:random range check fixed
19609:
19610: * src/main/: compile.tab.C, compile.y: integer division stops name
19611:
19612: * INSTALL: local install comment
19613:
1.116 moko 19614: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19615:
1.116 moko 19616: * acinclude.m4, aclocal.m4, configure, configure.in,
19617: src/include/pa_config_auto.h.in,
19618: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19619: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19620:
19621: * operators.txt: \ comment
19622:
19623: 2002-02-13 paf
19624:
19625: * src/include/pa_config_includes.h: sys/time time both included
19626: now. vaguely remember confilicts on this on some system [not on
19627: six|ablv] so when would see them again would think up proper
19628: check
19629:
1.116 moko 19630: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19631: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19632:
19633: * src/main/pa_common.C: truncation never occured when writing files
19634: on unix [since i've changed cache mech] fix
19635:
19636: * src/main/pa_common.C: strnchr: sanity check added
19637:
19638: * etc/parser3.charsets/windows-1257.cfg: id added
19639:
19640: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19641: baltic charset file generated, in generation script ispunct check
19642: added
19643:
19644: 2002-02-08 paf
19645:
1.116 moko 19646: * src/: include/Makefile.am, sql/Makefile.am,
19647: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19648:
19649: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19650: forgotten
19651:
19652: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19653:
19654: * INSTALL, README: install&others updated
19655:
19656: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19657:
1.116 moko 19658: * Makefile.am, configure, configure.in,
19659: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19660: src/classes/Makefile.am, src/main/Makefile.am,
19661: src/main/pa_status_provider.C, src/targets/Makefile.am,
19662: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19663: works
1.95 moko 19664:
19665: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19666: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19667: classes/hashfile.C, classes/int.C, classes/mail.C,
19668: classes/math.C, classes/op.C, classes/response.C,
19669: classes/string.C, classes/table.C, classes/void.C,
19670: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19671: include/pa_array.h, include/pa_cache_managers.h,
19672: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19673: include/pa_config_fixed.h, include/pa_config_includes.h,
19674: include/pa_db_connection.h, include/pa_db_manager.h,
19675: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19676: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19677: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19678: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19679: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19680: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19681: include/pa_stack.h, include/pa_string.h,
19682: include/pa_stylesheet_connection.h,
19683: include/pa_stylesheet_manager.h, include/pa_table.h,
19684: include/pa_threads.h, include/pa_types.h, main/compile.C,
19685: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19686: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
19687: main/pa_db_connection.C, main/pa_db_manager.C,
19688: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19689: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
19690: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19691: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19692: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19693: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19694: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
19695: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19696: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19697: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19698: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19699: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19700: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
19701: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
19702: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19703: types/pa_vmethod_frame.h, types/pa_vobject.h,
19704: types/pa_vrequest.h, types/pa_vresponse.h,
19705: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19706: types/pa_vstateless_object.h, types/pa_vstatus.C,
19707: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
19708: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
19709: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
19710: classes/image.C, main/pa_common.C, main/pa_exec.C,
19711: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19712: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
19713: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
19714: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
19715: types/pa_vxnode.C, main/pa_charset.C: name spelling
19716:
19717: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19718: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19719: classes/hashfile.C, classes/image.C, classes/int.C,
19720: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19721: classes/string.C, classes/table.C, classes/void.C,
19722: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19723: include/pa_array.h, include/pa_cache_managers.h,
19724: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19725: include/pa_config_fixed.h, include/pa_config_includes.h,
19726: include/pa_db_connection.h, include/pa_db_manager.h,
19727: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19728: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19729: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19730: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19731: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19732: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19733: include/pa_stack.h, include/pa_string.h,
19734: include/pa_stylesheet_connection.h,
19735: include/pa_stylesheet_manager.h, include/pa_table.h,
19736: include/pa_threads.h, include/pa_types.h, main/compile.C,
19737: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19738: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
19739: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19740: main/pa_db_connection.C, main/pa_db_manager.C,
19741: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19742: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19743: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19744: main/pa_socks.C, main/pa_sql_driver_manager.C,
19745: main/pa_status_provider.C, main/pa_string.C,
19746: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19747: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19748: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19749: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19750: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19751: targets/isapi/pool_storage.h, types/pa_valiased.C,
19752: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19753: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19754: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19755: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19756: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19757: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19758: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19759: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19760: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19761: types/pa_vresponse.h, types/pa_vstateless_class.C,
19762: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19763: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19764: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19765: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19766: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
19767: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
19768:
19769: 2002-02-07 paf
19770:
19771: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
19772:
1.116 moko 19773: * configure, configure.in, src/include/pa_config_auto.h.in,
19774: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
19775: added yet another locking function: fcntl
1.95 moko 19776:
19777: * config.sub: on cygwin configure passes it with strange i1586
19778: const, hacked it to mean i586
19779:
19780: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
19781: disabled $if reference due to conflicts with local variables
19782:
19783: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
19784: xdoc::set obsolete now, now xdoc::create, with both sences
19785:
19786: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19787: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19788: table::create now // 'set' name obsolete now table clone.
19789:
19790: * operators.txt, src/classes/string.C,
19791: src/include/pa_config_fixed.h, src/main/compile.tab.C:
19792: ^int/double/string.format now can be called with normal []
19793: brackets, not stupid {} as it were implemented for some strange
19794: reason. retaining backward compatibility due to some
19795: already-implemented servers
19796:
19797: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
19798: main/compile.y, main/compile_tools.C, main/compile_tools.h:
19799: operators now detected by check at name_without_curly_rdive_read
19800: rule whether diving code constists only of
19801: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
19802: with OP_GET_ELEMENT_OR_OPERATOR to form
19803: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
19804:
19805: 2002-02-06 paf
19806:
19807: * configure, configure.in: prefix expanded, grr
19808:
19809: * operators.txt, src/classes/mail.C: mail:send config changed
19810:
19811: 2002-02-05 paf
19812:
19813: * operators.txt: regex options commented
19814:
19815: * src/main/: pa_exec.C: argv0 now correct
19816:
19817: * src/types/pa_vstatus.C: status:rusage 3
19818:
19819: * src/types/pa_vstatus.C: status:rusage 2
19820:
19821: * operators.txt: status:rusage described int operators
19822:
19823: * src/types/pa_vstatus.C: status:rusage 1
19824:
19825: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
19826: src/types/types.dsp: status:rusage
19827:
19828: * configure.in, operators.txt, src/classes/file.C,
19829: src/classes/op.C, src/include/pa_common.h,
19830: src/include/pa_config_includes.h, src/main/compile.tab.C,
19831: src/main/pa_common.C: rewritten ^cache to use
19832: non-blocking-exclusive-caches
19833:
19834: * src/main/pa_common.C: text file read mode on win32 adjusted
19835: [speed impact. was off for debugging purpose, but forgotten
19836: afterwards]
19837:
19838: 2002-02-01 paf
19839:
19840: * src/classes/op.C: file_write does EX lock after create, while
19841: file_read does SH after open, so there's a moment after create
19842: but before EX lock when read can sneak into, and read
19843: just-created-for-writing-and-not-yet-locked file, added a check
19844: for that in ^cache...read
19845:
19846: 2002-01-31 paf
19847:
19848: * src/main/: compile.y, compile.tab.C: disabled operator call after
19849: ^xxx:
19850:
19851: * src/main/: compile.tab.C, execute.C: made operators lookup first
19852: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
19853:
19854: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
19855: main/compile.tab.C, main/compile.y, main/compile_tools.C,
19856: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
19857: operators check 6.1 rewritten. now check is done at compile time
19858:
19859: * src/main/execute.C: operators check 5 floated up old error of
19860: staying in 'entered class/object' state after $a($a..) it
19861: prevented operators from being called thereafter
19862:
19863: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19864: main/execute.C: operators check 4 floated up old error of staying
19865: in 'entered object' state after ^a.a(a) it prevented operators
19866: from being called thereafter
19867:
19868: * src/main/execute.C: operators check 3 floated up old error of
19869: staying in 'entered class' state after $a:a(a) it prevented
19870: operators from being called thereafter
19871:
19872: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
19873: floated up old error of staying in 'entered class' state after
19874: $a:a[a] it prevented operators from being called thereafter
19875:
19876: * src/main/execute.C: operators check, thay mistakenly seen in
19877: $class:operator $object.operators contexts
19878:
19879: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
19880: win32
19881:
1.116 moko 19882: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
19883: src/classes/Makefile.am, src/main/Makefile.am,
19884: src/targets/cgi/Makefile.am,
1.95 moko 19885: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 19886: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 19887:
1.116 moko 19888: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
19889: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
19890: configure, configure.in, form.txt, ident.awk, install-sh,
19891: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
19892: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 19893: etc/parser3.charsets/Makefile.am,
19894: etc/parser3.charsets/koi8-r.cfg,
19895: etc/parser3.charsets/windows-1250.cfg,
19896: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 19897: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
19898: src/main/Makefile.am, src/targets/cgi/Makefile.am,
19899: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
19900: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 19901: straightened installation scripts procedure made
19902: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
19903: change
19904:
19905: 2002-01-30 paf
19906:
19907: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
19908: removed] those comments were a mistake, and prevented libltdl
19909: from function properly
19910:
19911: 2002-01-29 paf
19912:
1.116 moko 19913: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
19914: creation [modified acinclude.m4 which were creating int into just
19915: assignment LIBTOOL=../libtool] added default system
19916: config&charsetts prepared 'make install', now it installs
19917: targets/cgi/parser3 into bin directory etc/parser3.conf &
19918: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 19919: $sysconfdir/parser3.charsets respectively
19920:
19921: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
19922: main/pa_globals.C: few forgotten ifdef XML added
19923:
19924: 2002-01-28 paf
19925:
1.116 moko 19926: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 19927: removed
19928:
19929: * src/main/pa_exception.C: dom|generic error output fix
19930:
19931: * src/classes/xnode.C: xdoc.importNode 3 [check err]
19932:
19933: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
19934:
19935: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
19936: [fixed as_node helper func to accept docs]
19937:
19938: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
19939: xdoc.importNode 0
19940:
19941: * src/classes/xdoc.C: xdoc::set now untaints OK
19942:
19943: 2002-01-25 paf
19944:
19945: * src/main/: compile.tab.C, compile.y: #comment before @ after
19946: @SPECIAL now works OK
19947:
19948: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19949:
19950: * src/main/pa_exec.C: max arg count now 10, and proper message on
19951: violation that added
19952:
19953: * src/classes/hash.C: unified hash::sql, now
19954: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19955:
19956: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19957: ^file:lock[filename]{code}
19958:
19959: * src/: classes/file.C, classes/op.C, classes/string.C,
19960: classes/table.C, classes/xdoc.C, include/pa_common.h,
19961: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19962: to some pa_common funcs
19963:
19964: * src/: include/pa_charset.h, main/pa_globals.C:
19965: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19966:
19967: * src/: include/pa_charset.h, main/pa_charset.C,
19968: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19969: not stupid illegal define
19970:
19971: 2002-01-24 paf
19972:
19973: * src/include/pa_version.h: changed version number
19974:
19975: * src/: classes/hashfile.C, include/pa_db_table.h,
19976: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19977: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19978: main/pa_db_connection.C, main/pa_db_table.C,
19979: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19980: hashfile without logfiles
19981:
19982: * src/: classes/hashfile.C, include/pa_db_table.h,
19983: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19984: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19985: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19986: DB_INIT_TXN init bits, thus got rid of huge log files, which
19987: cluttered disk without huge need]
19988:
19989: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19990: handy macro, which is strangly abscent in dome lib
19991:
19992: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19993:
19994: * src/classes/xdoc.C: checked empty response
19995:
19996: * src/classes/xnode.C: xdoc.select fixed context node [were always
19997: /, not self node]
19998:
19999: * src/classes/xnode.C: xnode.select returns array always now, in
20000: case 'nothing found' returns empty array
20001:
20002: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
20003: be more tender with ctrl/c/v
20004:
20005: 2002-01-23 paf
20006:
20007: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
20008: substituted. // 2. when dom tree with entites goes under
20009: transform text nodes // got [erroreosly] cut on first
20010: entity occurance
20011:
20012: * src/types/pa_vdouble.h: double prec. todo: get rid of
20013: twice-converting
20014:
20015: * src/types/pa_vdouble.h: %.20E now float format when %g produced
20016: 'e' in output this is for regretful twice-converting here:
20017: $a(double value) when they write double falue they convert it to
20018: string first, thus %g were losing precesion.
20019:
20020: todo: think up some way to remove double->string string->double
20021: twice-converting
20022:
20023: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
20024: %.20E now default float format this is for regretful
20025: twice-converting here: $a(double value) when they write double
20026: falue they convert it to string first, thus %g were losing
20027: precesion.
20028:
20029: todo: think up some way to remove double->string string->double
20030: twice-converting
20031:
20032: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20033: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
20034: reasons in comment inside
20035:
20036: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
20037: statically linked]
20038:
20039: * src/: include/pa_exception.h, main/compile.tab.C,
20040: main/pa_exception.C: removed exception va_list constructor. 1.
20041: not needed anymore 2. there were a conflict[causing errors]
20042: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
20043: never detected an ambiguilty here, compiling ctor(, "hello") into
20044: ctor(, va_list) which, of course, caused gpf
20045:
20046: * src/main/pa_globals.C: removed debug xslt messages
20047:
20048: 2002-01-22 paf
20049:
20050: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20051: main/pa_globals.C: xsl stylesheet load: parsed entities, this
20052: helps compiling stylesheet properly. example: this refused to
20053: work, <b>«<xsl:value-of select="@title"
20054: />»</b> stranly worked only this way:
20055: <b>«<xsl:value-of select="@title" />»</b>
20056:
20057: docs says "set it to 1", never going into details, so I decided
20058: to try NOT to do that
20059:
20060: * src/classes/table.C: join behaived badly in case named tables
20061: structure mismatched: 0 strings sneaked into dest failing
20062: afterwards. replaced them with empty strings
20063:
20064: 2002-01-21 paf
20065:
20066: * src/main/pa_charset.C: checked empty transcoders in
20067: transcode_cstr|buf
20068:
20069: * src/classes/xdoc.C: xdoc::load error source = filespec
20070:
20071: * src/classes/xdoc.C: transform error source now
20072: stylesheet_filespec
20073:
1.116 moko 20074: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 20075: include/pa_stylesheet_connection.h, main/pa_charset.C,
20076: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 20077: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
20078: gnome
1.95 moko 20079:
20080: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20081: include/pa_globals.h, include/pa_stylesheet_connection.h,
20082: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
20083: xslt generic error 1
20084:
20085: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
20086: xml generic message 1
20087:
20088: * src/classes/table.C: ^table::load empty lines or #comments before
20089: headline
20090:
20091: * src/: include/pa_array.h, include/pa_globals.h,
20092: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
20093: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
20094: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
20095: errors 0
20096:
20097: 2002-01-16 paf
20098:
20099: * src/: classes/hash.C, classes/op.C, classes/string.C,
20100: classes/table.C, classes/void.C, classes/xdoc.C,
20101: include/pa_db_connection.h, include/pa_request.h,
20102: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20103: include/pa_stylesheet_connection.h,
20104: include/pa_stylesheet_manager.h, main/pa_request.C,
20105: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20106: targets/cgi/pool_storage.h: auto closers to sql_connection,
20107: stylesheet_connection auto destroyers to remaining gnome objects
20108:
20109: * src/classes/xdoc.C: few comments
20110:
20111: 2002-01-15 paf
20112:
20113: * src/classes/xdoc.C: xdoc file save string
20114:
20115: ready. todo: error handling
20116:
20117: * src/classes/xdoc.C: xdoc save rewritten using
20118: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
20119: result
20120:
20121: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
20122: started output options parsing
20123:
20124: 2002-01-14 paf
20125:
20126: * src/classes/xdoc.C: method
20127:
20128: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20129: include/pa_pool.h, include/pa_stylesheet_connection.h,
20130: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
20131: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
20132: xslt transform0. TODO: use output options handle errors
20133:
20134: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
20135:
20136: 2002-01-11 paf
20137:
20138: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20139: main/compile_tools.C, main/compile_tools.h, main/execute.C:
20140: partial logical && || evaluation
20141:
20142: * src/classes/xnode.C: xpath selectNodes
20143:
20144: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
20145: string/number/bool
20146:
20147: * src/classes/xnode.C: xpath selectNode 2
20148:
20149: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
20150: xpath selectNode 1
20151:
20152: 2002-01-10 paf
20153:
20154: * src/classes/xnode.C: xpath selectNode -100 [just written]
20155:
20156: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20157: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
20158: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
20159: refcounter]
20160:
20161: 2001-12-29 paf
20162:
20163: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
20164: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
20165: glib works 0
20166:
20167: 2001-12-28 paf
20168:
20169: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
20170: main/pa_exception.C: started glib transcoders
20171:
20172: * src/main/pa_globals.C: renamed gdome to libgdome.dll
20173:
20174: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
20175: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
20176: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
20177: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
20178: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
20179: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
20180: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
20181: libs just compiled in. no refcounting no xpath no xslt yet
20182:
20183: 2001-12-27 paf
20184:
20185: * src/: include/pa_charset.h, include/pa_common.h,
20186: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
20187: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
20188: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
20189: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
20190: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
20191: from xalan&xerces, started the process. globals [initialization
20192: pool [charset update charset [transcodings vxnode vxdoc [DOM
20193: calls
20194:
20195: * src/classes/Makefile.am: going away from xalan&xerces, not needed
20196: anymore
20197:
20198: 2001-12-26 paf
20199:
20200: * src/: include/pa_charset.h, include/pa_charsets.h,
20201: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
20202: key globalized [bug]
20203:
20204: 2001-12-25 paf
20205:
20206: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
20207: main/pa_string.C: table set & append changed splitting languages,
20208: separators now can be clean AND as-is same to mail command line
20209: $MAIN:MAIL.progX arguments
20210:
20211: 2001-12-24 paf
20212:
20213: * src/classes/mail.C: one parted text messages - no multipart
20214: mime-type anymore. for convinient if $.attach-ments
20215:
20216: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
20217: main/pa_string.C: read from cache size check updated
20218:
20219: * src/main/: pa_string.C: String::join_chain another ugly bug :(
20220:
20221: 2001-12-21 paf
20222:
20223: * src/classes/date.C: date:sql-string now returns localtime
20224:
20225: * src/main/pa_request.C: $result in @main actually not working, to
20226: hell with it for now
20227:
20228: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
20229: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
20230: @postprocess @exception
20231:
20232: * src/main/execute.C: junction evaluation canceled - endless
20233: recursion detected
20234:
20235: 2001-12-19 paf
20236:
20237: * src/main/pa_charset.C: charset->charset transcoding via unicode
20238: intermediate
20239:
20240: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
20241:
20242: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
20243:
20244: * src/classes/op.C: ^cache keypath now relative
20245:
20246: * src/classes/mail.C: changed weighting prior to sort
20247:
20248: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
20249: were missing
20250:
20251: 2001-12-17 paf
20252:
20253: * src/main/pa_charset.C: ifndef XML were bad type
20254:
20255: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
20256: outdated unset services_pool
20257:
20258: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
20259: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
20260: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
20261:
20262: * src/main/untaint.C: allowed space in filespec
20263:
20264: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
20265:
20266: * src/classes/image.C: no govno
20267:
20268: * src/classes/image.C: govno
20269:
20270: 2001-12-16 paf
20271:
20272: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
20273:
20274: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
20275: charset_connection&manager replaced by charset&charsets
20276:
20277: * src/main/pa_charset.C: name_cstr 0
20278:
20279: * src/main/untaint.C: uri lang now knows about client/source
20280: charsets
20281:
20282: * src/: classes/file.C, classes/math.C, classes/op.C,
20283: classes/string.C, classes/table.C, classes/xdoc.C,
20284: include/pa_array.h, include/pa_cache_managers.h,
20285: include/pa_charset_connection.h, include/pa_charset_manager.h,
20286: include/pa_common.h, include/pa_db_connection.h,
20287: include/pa_db_manager.h, include/pa_db_table.h,
20288: include/pa_dictionary.h, include/pa_exception.h,
20289: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
20290: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
20291: include/pa_sapi.h, include/pa_socks.h,
20292: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20293: include/pa_string.h, include/pa_stylesheet_connection.h,
20294: include/pa_stylesheet_manager.h, include/pa_table.h,
20295: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
20296: main/pa_charset.C, main/pa_charset_connection.C,
20297: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
20298: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20299: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
20300: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
20301: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
20302: types/types.dsp: introducing Charset
20303:
20304: 2001-12-14 paf
20305:
20306: * src/: include/pa_request.h, include/pa_transcoder.h,
20307: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
20308: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
20309: uri lang
20310:
20311: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
20312:
20313: * src/targets/cgi/Makefile.am: -I../../pcre to .am
20314:
20315: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
20316: defalts_name global
20317:
20318: * src/: include/pa_charset_connection.h, include/pa_pool.h,
20319: include/pa_request.h, main/main.dsp,
20320: main/pa_charset_connection.C, main/pa_charset_manager.C,
20321: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
20322: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
20323: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
20324: changed charset model. now important: $request:charset
20325: $response:charset while $response:content-type.charset become
20326: unimportant [informational]
20327:
20328: 2001-12-13 paf
20329:
20330: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
20331:
20332: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
20333: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
20334: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
20335: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
20336: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
20337: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
20338:
20339: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
20340: auto_ptr part other way, because of stupid gcc 2.96
20341: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
20342: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
20343: FormatterListener] /usr/include/g++-3/memory:48:
20344: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
20345: _Tp1 = FormatterListener, _Tp = FormatterListener]
20346:
20347: * src/classes/xdoc.C: removed extra inc
20348:
20349: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20350:
20351: * src/include/pa_types.h: msvc head debugging flag
20352:
20353: * src/classes/xdoc.C: freed up listener
20354:
20355: * src/classes/string.C: change msg '... code is not code'
20356:
20357: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
20358: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20359: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
20360: [past/future prob]
20361:
20362: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20363: include/pa_config_fixed.h, include/pa_db_manager.h,
20364: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20365: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
20366:
20367: * src/: include/pa_config_fixed.h, main/pa_common.C,
20368: main/pa_string.C: removed signed mismatch warnings
20369:
20370: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
20371: 'expires' from header outputs
20372:
20373: * src/main/pa_string.C: string::recustruct erroreusly used outdated
20374: row ptr
20375:
20376: * src/classes/file.C: file::cgi bug, request_method were passed to
20377: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
20378:
20379: * src/classes/xdoc.C: lang list updated
20380:
20381: 2001-12-10 paf
20382:
20383: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
20384:
20385: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
20386: erase files like that, knowing their full name introducing //
20387: theoretical problem with, for instance, "_2B" and "." fragments,
20388: // they would yield the same // because
20389: need_file_encode('_')=false // but we need to delete such files
20390: somehow, getting names from ^index
20391:
20392: * src/main/pa_string.C: ^string.replace bug fixed [bad
20393: string::join_chank break]
20394:
20395: 2001-12-07 paf
20396:
20397: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
20398: include/pa_common.h, include/pa_config_auto.h.in,
20399: include/pa_config_fixed.h, include/pa_config_includes.h,
20400: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
20401: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
20402: types/pa_vhashfile.C: merged from r14_simple_cache
20403:
20404: * src/main/pa_string.C: stupid sparc architecture failed to access
20405: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
20406: lduh [ %i2 + 1 ], %l0
20407:
20408: bus error, fixed that
20409:
20410: * src/main/pa_string.C: strange string deserialize bug on
20411: client[pmts], a bit shortened,
20412:
20413: * src/include/pa_config_auto.h.in: makes
20414:
20415: * src/: include/pa_common.h, include/pa_config_fixed.h,
20416: include/pa_config_includes.h, main/pa_common.C: exclusive lock
20417: file write shared lock file read
20418:
20419: * src/: classes/op.C, include/pa_common.h,
20420: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
20421:
20422: 2001-12-06 paf
20423:
20424: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20425: main/pa_request.C: #ifdef RESOURCES_DEBUG
20426:
20427: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
20428: info
20429:
20430: * src/classes/hashfile.C: removed transaction from ^cache
20431:
20432: 2001-12-05 paf
20433:
20434: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
20435: IIS5 there were a prob with illegal call check
20436:
20437: 2001-12-04 paf
20438:
20439: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20440: main/pa_request.C: measures to log
20441:
20442: 2001-11-23 paf
20443:
20444: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20445: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
20446: types/pa_vhashfile.C: merged from _0014, 1
20447:
20448: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20449: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
20450: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
20451: ^cache(33) would change
20452:
20453: 0660 bits in file_write & hashfile create
20454:
20455: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
20456: after pa_string optimization]
20457:
20458: 2001-11-22 paf
20459:
20460: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20461: table.offset[whence]
20462:
20463: * src/classes/op.C: process cstr(,connection)
20464:
20465: * src/classes/op.C: process now gets its body on current language,
20466: not as-is
20467:
20468: * src/main/untaint.C: ORIGINS mode removed UHTML
20469:
20470: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
20471: bit
20472:
1.116 moko 20473: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 20474:
20475: 2001-11-21 paf
20476:
20477: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
20478: <xsl:output output options made identical to xsl:output
20479: attributes exclusion: cdata-section-elements what xalan can do
20480: but that not used now: it can escape and remove CDATA sections
20481:
20482: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
20483: produced by xslt
20484:
20485: * src/targets/cgi/parser3.C: removed debug cgi||1
20486:
20487: * src/main/: pa_string.C, untaint.C: cached some string::size() es
20488:
20489: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
20490: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
20491: default language for {code}, it happen to change it's language
20492: from CLEAN, so later refused to split by CLEAN \t
20493:
20494: 2001-11-20 paf
20495:
1.116 moko 20496: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
20497: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 20498: bottom of dependeces, so that errors would popup quicklier, fixed
20499: line numbering in table::sql
20500:
20501: 2001-11-19 paf
20502:
20503: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
20504: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20505: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20506: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
20507: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
20508: at wcontext.write
20509:
1.116 moko 20510: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 20511: _set_new_handler
20512:
1.116 moko 20513: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
20514: set_new_handler in apache&isapi
1.95 moko 20515:
20516: 2001-11-16 paf
20517:
20518: * src/targets/cgi/parser3.C: pool debug @ die
20519:
20520: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
20521: removed 8 bytes from String, 2 bytes from
20522: string::chunk::row::item
20523:
20524: * src/main/pa_string.C: removed 1+4 bytes from String
20525:
20526: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20527: types/pa_vstring.C: removed 1+4 bytes from String
20528:
20529: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
20530: 0
20531:
20532: * src/: include/pa_globals.h, include/pa_string.h,
20533: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
20534: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
20535: targets/cgi/parser3.C: introducing estimating
20536: String::cstr_bufsize, 0
20537:
20538: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
20539:
20540: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
20541:
20542: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
20543: include/pa_pool.h: die in pool::fail
20544:
20545: 2001-11-15 paf
20546:
20547: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
20548: main/pa_exception.C, targets/cgi/parser3.C: exception with
20549: dynamic buffer re-back now with counter
20550:
20551: * src/: include/pa_exception.h, main/pa_exception.C: exception with
20552: static buffer back
20553:
20554: * src/targets/cgi/parser3.C: std::
20555:
20556: * src/: classes/classes.awk, include/pa_config_auto.h.in,
20557: include/pa_config_includes.h: setnewhandler check
20558:
1.116 moko 20559: * src/include/pa_config_auto.h.in: makes
1.95 moko 20560:
20561: * src/targets/cgi/parser3.C: set_new_handler started
20562:
20563: 2001-11-14 paf
20564:
20565: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20566: was wrong
20567:
20568: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20569: was wrong
20570:
20571: * src/main/pa_request.C: z
20572:
20573: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20574: full returns win32 -1 solaris >buffer_size
20575:
20576: checked all that
20577:
20578: * src/classes/op.C: ^untaint{body} as-is default now
20579:
20580: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20581: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20582: with no_bad_constructors_try
20583:
20584: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20585: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20586: this: $bred[^string::length[]] $bred[^response::clear[]]
20587: $bred[^int::int[]]
20588:
20589: now VObject creation moved into overriden
20590: VClass::create_new_value, thus 0 from create_new_value means that
20591: class has no ctors
20592:
20593: 2001-11-13 paf
20594:
20595: * src/classes/classes.C: returned accedently removed if in foreach
20596: callbacks [when hash no-0-restructure]
20597:
20598: 2001-11-12 paf
20599:
20600: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20601: passed as-is to method, xalan makes & into & itself
20602:
20603: * src/classes/date.C: date.roll parser2 alg used
20604:
20605: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20606: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20607: main/pa_dictionary.C, main/pa_hash.C,
20608: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20609: now does not containt 0 values. put 0 actullay removes. no check
20610: on 0 value in foreach now required
20611:
20612: 2001-11-11 paf
20613:
20614: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20615:
20616: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20617:
20618: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20619: driver initialize not const
20620:
20621: 2001-11-10 paf
20622:
20623: * src/main/pa_exec.C: doc
20624:
20625: 2001-11-09 paf
20626:
20627: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20628: param properly
20629:
20630: * src/classes/string.C: string.save now does untainting before
20631: saving
20632:
20633: * src/main/pa_common.C: line endings fixing fixed last piece[was
20634: still cstr oriented]
20635:
20636: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20637: line endings fixing got rid of cstr, now must work ok with post
20638: multipart
20639:
20640: * src/types/pa_vform.C: line endings fixed at post / multipart /
20641: not file also now
20642:
20643: 2001-11-08 paf
20644:
20645: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20646: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20647: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20648: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20649: main/pa_stylesheet_manager.C: restructured Cache manager to be
20650: simple parent, not second parent [gcc 2.96 strangly refused to
20651: call virtual from second parent]
20652:
1.116 moko 20653: * src/: include/pa_common.h, main/Makefile.am,
20654: targets/cgi/pa_pool.C: makes
1.95 moko 20655:
20656: * src/: include/pa_request.h, main/pa_request.C,
20657: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20658: 'status' class enabler
20659:
20660: <Location /parser-status.html> ParserStatusAllowed </Location>
20661:
20662: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20663: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20664: include/pa_stylesheet_manager.h, main/main.dsp,
20665: main/pa_cache_managers.C, main/pa_charset_manager.C,
20666: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20667: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20668: types/pa_vstatus.h: cache_managers, maybe-expiring every request
20669: todo: apache 'status' class enabler
20670:
20671: 2001-11-05 paf
20672:
20673: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
20674: debug to normal
20675:
20676: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
20677: hence i removed skipping 0 values in hash::for_each-es we need to
20678: check cleaned cache items manually. few more checks.
20679:
20680: expiring to 0 time was wrong, changed to 'now' time
20681:
20682: * src/targets/cgi/parser3.C: read can return 0, that means sort of
20683: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
20684: on apache already done :)
20685:
20686: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
20687: skipping 0 values in hash::for_each-es we need to check cleaned
20688: cache items manually
20689:
20690: * src/main/: pa_db_connection.C, pa_db_table.C:
20691: parser_multithreaded check was wrong
20692:
20693: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20694: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20695: classes/hashfile.C, classes/image.C, classes/int.C,
20696: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20697: classes/string.C, classes/table.C, classes/void.C,
20698: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20699: include/pa_array.h, include/pa_charset_connection.h,
20700: include/pa_charset_manager.h, include/pa_common.h,
20701: include/pa_config_fixed.h, include/pa_config_includes.h,
20702: include/pa_db_connection.h, include/pa_db_manager.h,
20703: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20704: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20705: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20706: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20707: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20708: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20709: include/pa_stack.h, include/pa_string.h,
20710: include/pa_stylesheet_connection.h,
20711: include/pa_stylesheet_manager.h, include/pa_table.h,
20712: include/pa_threads.h, include/pa_types.h, main/compile.C,
20713: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20714: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
20715: main/pa_charset_manager.C, main/pa_common.C,
20716: main/pa_db_connection.C, main/pa_db_manager.C,
20717: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20718: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20719: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20720: main/pa_socks.C, main/pa_sql_driver_manager.C,
20721: main/pa_status_provider.C, main/pa_string.C,
20722: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20723: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20724: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20725: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20726: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20727: targets/isapi/pool_storage.h, types/pa_valiased.C,
20728: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20729: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20730: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20731: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20732: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20733: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20734: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20735: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20736: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20737: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20738: types/pa_vstateless_object.h, types/pa_vstatus.h,
20739: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
20740: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
20741: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20742: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20743: $status:db fixed used not initialized in db_connection & db_table
20744:
20745: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
20746: $status:charset
20747:
20748: * src/: classes/xdoc.C, include/pa_db_connection.h,
20749: include/pa_stylesheet_connection.h,
20750: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
20751: types/pa_vstatus.h: $status:stylesheet
20752:
20753: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
20754: include/pa_request.h, include/pa_sql_connection.h,
20755: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20756: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
20757: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20758: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20759: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
20760: types/pa_vxnode.C, types/types.dsp: started status parser class
20761:
20762: 2001-11-01 paf
20763:
20764: * src/include/pa_config_auto.h.in: makes
20765:
20766: * src/main/pa_hash.C: removed old extra include
20767:
20768: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
20769: checks [for hp, there are such in math.h]
20770:
20771: * src/classes/op.C: ^for endless loop check strightened
20772:
20773: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
20774: behavior in native calls. it left unchanged, so ^for ^foreach &
20775: co can use r.root to write their i & key,value there
20776:
20777: * src/classes/op.C: detected for var storage bug, fixed.
20778: todo:foreach
20779:
20780: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
20781: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
20782: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
20783: changing of hash inside of foreach
20784:
20785: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
20786: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
20787: were hash.foreach
20788:
20789: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
20790: types/pa_vstring.C, types/pa_vstring.h:
20791: ^foreach[key|value]{body}[[separator]|{separator}]
20792:
20793: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
20794: types/pa_vcookie.C: ^hash.delete[key]
20795:
20796: 2001-10-31 paf
20797:
20798: * src/main/: compile.C, pa_common.C: completely empty file now
20799: considered "read", not ignored [not perfect trick used]
20800:
20801: * src/main/pa_common.C: simplier common ifdefs
20802:
20803: * src/main/pa_common.C: typing bug in common - bad ifdeff
20804:
20805: * src/main/pa_db_connection.C: z
20806:
20807: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
20808: lockdetector flags
20809: dbenv.lk_detect=DB_LOCK_RANDOM;
20810:
20811: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
20812: from accidental show [imagine user forgot @exception]
20813:
20814: * src/classes/table.C: ^table.save[[nameless|+append;]path]
20815:
20816: * src/: classes/file.C, classes/image.C, classes/mail.C,
20817: classes/string.C, classes/xnode.C, include/pa_common.h,
20818: main/pa_common.C: ^string.save[[append;]path]
20819:
20820: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20821: main/execute.C: \ in expression: int divide 10/3=3
20822:
20823: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
20824: inside of ^cache
20825:
20826: * src/: include/pa_threads.h, main/pa_db_connection.C,
20827: main/pa_db_table.C, targets/cgi/pa_threads.C,
20828: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
20829: needed
20830:
20831: 2001-10-30 paf
20832:
20833: * src/: classes/classes.dsp, main/main.dsp,
20834: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20835: types/types.dsp: enabled debug incremental compile
20836:
20837: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20838: form post data line endings not reformatted now.
20839:
20840: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
20841: now required [had bug when file= has no value]
20842:
20843: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
20844: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
20845: cstr(asis) default param removed
20846:
20847: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
20848:
20849: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
20850:
20851: * src/include/pa_dir.h: LOAD_DIR fixed
20852:
20853: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
20854: was broken} fix_line_breaks
20855:
20856: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
20857: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
20858: packed with #pragma pack
20859:
1.116 moko 20860: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 20861:
20862: 2001-10-29 paf
20863:
20864: * src/types/pa_wcontext.h: bitfield syntax stricter
20865:
20866: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
20867: string hash.puts
20868:
20869: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
20870:
20871: * src/include/pa_sql_connection.h: there were one wrong
20872: SQL_CONNECTION_FUNC_GUARDED [failed]
20873:
20874: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
20875: param.someday either ifdef or remove it
20876:
20877: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
20878:
20879: * src/main/untaint.C: optimizing returned after debugging
20880:
20881: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20882: main/untaint.C: memory hunging #pragma pack(1)
20883:
20884: 16 419 844 13 169 394
20885:
20886: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20887: targets/cgi/pa_pool.C: String size_t replace to uint in proper
20888: places [todo:Array]
20889:
20890: * src/: main/execute.C, targets/cgi/pa_pool.C,
20891: targets/cgi/parser3.dsp, types/pa_wcontext.h,
20892: types/pa_wwrapper.h: debugging memory WContext flags to bits
20893:
20894: total 5 652 652/158731 total 5 469 332/158731
20895:
20896: * src/: include/pa_array.h, main/pa_array.C: debugging memory
20897: Array:: without cache in get/put now
20898:
20899: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
20900: 18:25:27 2001] total 5 652 652/158731
20901:
20902: * src/: include/pa_string.h, main/pa_string.C,
20903: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
20904: now
20905:
20906: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
20907: 18:11:53 2001] total 5796092/158731
20908:
20909: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
20910: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
20911: key ref now
20912:
20913: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
20914: 17:11:17 2001] total 16867948/202658
20915:
20916: * src/: classes/file.C, classes/image.C, classes/string.C,
20917: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
20918: main/execute.C, main/pa_array.C, main/pa_common.C,
20919: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20920: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
20921: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
20922: string::as_int/double now usually uses stack, not heap [200K out
20923: of 17M :)] VString(String&) not copies reference [29M -> 17M]
20924:
20925: * src/main/pa_sql_driver_manager.C: ping to have services [old
20926: hiding bug]
20927:
20928: * src/Makefile.am: .am order
20929:
20930: * src/: include/pa_array.h, include/pa_charset_manager.h,
20931: include/pa_db_connection.h, include/pa_db_manager.h,
20932: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
20933: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20934: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
20935: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
20936: required "friend class"
20937:
20938: ../include/pa_request.h:51: friend declaration requires
20939: class-key, i.e. `friend class Temp_lang'
20940:
20941: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20942: main/pa_exception.C, main/pa_sql_driver_manager.C,
20943: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20944:
20945: the idea is to #1 jump to C++ some function to main body, where
20946: every function stack frame has exception unwind information and
20947: from there... #2 propagate_exception()
20948:
20949: 2001-10-28 paf
20950:
20951: * src/main/pa_db_connection.C: removed old consts
20952:
20953: * src/main/pa_db_connection.C: expire table [was accidently pasted
20954: with wrong type/cast]
20955:
20956: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20957: translation
20958:
1.116 moko 20959: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20960: remember to build DB2 with -fexceptions!!!
20961:
20962: * src/main/pa_db_table.C: DB_RMW defed
20963:
20964: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20965: include/pa_db_connection.h, include/pa_db_manager.h,
20966: include/pa_db_table.h, main/pa_db_connection.C,
20967: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20968:
20969: 2001-10-27 paf
20970:
20971: * src/: classes/hashfile.C, include/pa_db_connection.h,
20972: include/pa_db_table.h, main/pa_db_connection.C,
20973: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20974: types/pa_vhashfile.C: DB2 ifdefs
20975:
1.116 moko 20976: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20977: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20978: makes with DB2
20979:
1.116 moko 20980: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20981: types/Makefile.am: makes db
1.95 moko 20982:
20983: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20984: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20985: globals.C
20986:
20987: * src/: classes/hashfile.C, include/pa_db_connection.h,
20988: include/pa_db_table.h, main/pa_db_connection.C,
20989: main/pa_db_table.C: ^hashfile.clear[]
20990:
20991: * src/classes/classes.awk: no $ in var names
20992:
20993: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20994: connection&table [forgotten calls]
20995:
20996: 2001-10-26 paf
20997:
20998: * src/main/pa_db_connection.C: db checkpoints
20999:
21000: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
21001: checkpoints
21002:
21003: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
21004: default. but entities still reparsed. todo: tothink
21005:
21006: * src/main/pa_db_connection.C: db recover mech 2
21007:
21008: * src/: classes/hashfile.C, include/pa_db_connection.h,
21009: include/pa_db_manager.h, include/pa_db_table.h,
21010: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
21011: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
21012: types/pa_vhashfile.h: db connections & tables now cached at
21013: create time & multithreaded
21014:
21015: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
21016: parsed_source
21017:
21018: * src/main/pa_db_connection.C: about to remove connection from
21019: vhashfile
21020:
21021: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
21022: transaction commit/rollback responsibility left to parent [as it
21023: sould - else there were a bug with double free]
21024:
21025: * src/include/pa_db_table.h: db: child transaction commit/rollback
21026: responsibility left to parent [as it sould - else there were a
21027: bug with double free]
21028:
21029: 2001-10-25 paf
21030:
21031: * src/: classes/hashfile.C, include/pa_common.h,
21032: include/pa_db_connection.h, include/pa_db_manager.h,
21033: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
21034: types/pa_vhashfile.C, types/pa_vhashfile.h,
21035: include/pa_db_table.h, main/pa_db_table.C: started db_home
21036: [multiple, cached] todo: autorecover [tried, but not succeded,
21037: yet]
21038:
21039: * src/include/pa_dir.h: ancient gpf on dir not found fixed
21040:
21041: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
21042: transaction parent passed
21043:
21044: 2001-10-24 parser
21045:
1.116 moko 21046: * src/classes/Makefile.am: makes
1.95 moko 21047:
21048: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
21049: isapi/pool_storage.h: pool_storage fixed
21050:
21051: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
21052: types/pa_vform.h: form fix_line_breaks
21053:
1.116 moko 21054: * src/targets/cgi/pool_storage.h: makes
1.95 moko 21055:
21056: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
21057: targets/cgi/pool_storage.h: makes
21058:
21059: * src/sql/pa_sql_driver.h: version
21060:
21061: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
21062: types/pa_vform.C, types/pa_vform.h: .am
21063:
21064: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
21065: this: DB_RMW Acquire write locks instead of read locks when doing
21066: the retrieval. Setting this flag may decrease the likelihood of
21067: deadlock during a read-modify-write cycle by immediately
21068: acquiring the write lock during the read part of the cycle so
21069: that another thread of control acquiring a read lock for the same
21070: item, in its own read-modify-write cycle, will not result in
21071: deadlock
21072:
21073: * src/targets/isapi/parser3isapi.dsp: doc
21074:
21075: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
21076:
21077: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
21078:
21079: * src/: classes/hashfile.C, include/pa_db_connection.h,
21080: main/pa_db_connection.C: hashfile expired deleted from db when
21081: get & iterate
21082:
21083: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
21084: expiring 1
21085:
21086: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
21087:
21088: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
21089: db_connection not bothers with key when not returning expired
21090: data
21091:
21092: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21093: types/pa_vhashfile.C: db_cursor constructor public now
21094:
21095: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21096: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
21097: stamped, todo: put_element analize
21098:
21099: * src/: include/pa_db_connection.h, include/pa_string.h,
21100: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
21101: serialize. todo stamp
21102:
21103: 2001-10-23 parser
21104:
21105: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
21106: classes/image.C, classes/mail.C, classes/response.C,
21107: classes/string.C, classes/table.C, classes/xdoc.C,
21108: include/pa_config_fixed.h, include/pa_db_connection.h,
21109: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
21110: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
21111: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
21112: types/pa_vtable.C: ^hashfile.hash[]
21113:
21114: * src/: classes/hashfile.C, classes/xdoc.C,
21115: include/pa_config_fixed.h, main/pa_db_manager.C,
21116: main/pa_globals.C: ifdefs so it compiled without db
21117:
21118: * src/: classes/hashfile.C, include/pa_db_connection.h,
21119: include/pa_db_manager.h, main/pa_db_connection.C,
21120: main/pa_db_manager.C, types/pa_vhashfile.h:
21121: ^hashfile.transaction{code} ^hashfile:clear[filename]
21122: ^hashfile.delete[key]
21123:
21124: 2001-10-22 parser
21125:
21126: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
21127: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
21128:
21129: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
21130: classes/xnode.C, include/pa_charset_connection.h,
21131: include/pa_db_connection.h, include/pa_db_manager.h,
21132: include/pa_exception.h, include/pa_sapi.h,
21133: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21134: include/pa_stylesheet_connection.h,
21135: include/pa_stylesheet_manager.h,
21136: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21137: main/pa_db_connection.C, main/pa_db_manager.C,
21138: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
21139: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21140: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
21141: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
21142: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
21143: types/types.dsp: hashfile 0
21144:
21145: * src/types/pa_vhashfile.C: z
21146:
21147: * src/: classes/classes.dsp, classes/hashfile.C,
21148: include/pa_config_fixed.h, main/execute.C,
21149: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
21150: types/pa_vhashfile.h, types/types.dsp: hashfile -100
21151:
21152: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
21153:
21154: * src/: include/pa_exception.h, include/pa_request.h,
21155: main/execute.C, main/pa_exception.C, main/pa_request.C,
21156: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21157: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
21158:
21159: 2001-10-19 parser
21160:
21161: * src/include/pa_pool.h: header
21162:
21163: * src/main/pa_pool.C: auto compiled on gcc
21164:
21165: * src/classes/image.C: comment
21166:
1.116 moko 21167: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 21168:
21169: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21170: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21171: types/pa_vxnode.h: xnode clone got freed
21172:
21173: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21174: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
21175: can free up xalandomstring resulting from pool::transcode
21176:
21177: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
21178: include/pa_config_fixed.h, include/pa_exception.h,
21179: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
21180: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
21181: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
21182: to c++ exceptions 1xml configure fixed to exclude xalan-patch
21183: from non-xml compile
21184:
21185: * src/main/pa_request.C: pool:: context - get_context
21186:
21187: * src/: classes/classes.h, classes/date.C, classes/double.C,
21188: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
21189: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
21190: classes/string.C, classes/table.C, classes/void.C,
21191: include/pa_config_fixed.h, include/pa_exception.h,
21192: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
21193: main/compile.C, main/compile_tools.C, main/execute.C,
21194: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
21195: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
21196: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
21197: main/pa_string.C, main/pa_table.C, main/untaint.C,
21198: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21199: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
21200: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
21201: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21202: types/pa_vstateless_class.h, types/pa_vtable.C,
21203: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
21204: exceptions 0
21205:
21206: * src/classes/classes.awk: $ removed
21207:
21208: 2001-10-18 parser
21209:
21210: * src/types/pa_vcookie.C: cookie:CLASS
21211:
21212: * src/main/main.dsp: project
21213:
21214: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
21215: set_document & ctor question "who owns document" solved
21216:
21217: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
21218:
21219: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21220: main/pa_pool.C: encoding in dom creating funcs
21221:
21222: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
21223: be transformed now
21224:
21225: * src/classes/xdoc.C: dom created by create can be transformed now
21226:
21227: * src/classes/xdoc.C: z
21228:
21229: * src/classes/xdoc.C: comment
21230:
21231: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
21232: create now uses XercesDocumentBridge, appendChild&co now works
21233:
21234: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
21235: @ recompile
21236:
21237: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
21238: $origin @exception[
21239:
21240: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
21241: tag names forced to XML lang
21242:
21243: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
21244: leechy-found bugs in code&doc fixed
21245:
21246: 2001-10-17 parser
21247:
21248: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
21249: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
21250: n functionality preserved
21251:
21252: * src/types/pa_vimage.h: removed unused vimage::save
21253:
21254: 2001-10-16 parser
21255:
21256: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
21257:
21258: * src/classes/: xnode.C: removed few dom returns & changed op.txt
21259:
21260: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
21261:
21262: * src/classes/image.C: image.copy tolerance
21263:
21264: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
21265: ineffective, but works for small paleted image
21266:
21267: * src/types/pa_vimage.C: comment
21268:
21269: * src/classes/image.C: gd size/resize bugfix
21270:
21271: * src/: classes/classes.dsp, main/main.dsp,
21272: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21273: types/types.dsp: ident >nul 2>&1
21274:
21275: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
21276: systems
21277:
21278: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
21279: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
21280:
21281: 2001-10-15 parser
21282:
21283: * src/main/execute.C: z
21284:
21285: * src/classes/: xdoc.C: !::create{qualifiedName}
21286:
21287: * src/types/pa_vxnode.C: document_type_node.
21288: !readonly attribute DOMString name
21289: !notation_node.
21290: !readonly attribute DOMString publicId
21291: !readonly attribute DOMString systemId
21292:
1.116 moko 21293: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
21294: ::write badly passed string too transparently [failed to
21295: intercept it]
1.95 moko 21296:
21297: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
21298: include/pa_request.h, main/pa_sql_driver_manager.C,
21299: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21300: types/pa_vxnode.h: DOM1 major addtion, only few
21301: attributes/methods left
21302:
21303: 2001-10-13 parser
21304:
21305: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21306: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
21307: in main handler
21308:
21309: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
21310: cleanups & frees order
21311:
21312: * src/types/pa_vcode_frame.h: couple comments
21313:
21314: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
21315: transparent enough to handle hash if creation&passing
21316:
21317: * src/: include/pa_config_fixed.h, main/execute.C,
21318: main/pa_exception.C: noticed that vcodeframe not transparent
21319: enough, would change now
21320:
21321: 2001-10-12 parser
21322:
21323: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
21324: fixed. initialization&free on each thread!
21325:
21326: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
21327: handling changed: now type of default param analized always, not
21328: only at problem time, thus helping early problem spotting
21329:
21330: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
21331: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
21332: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21333: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
21334: multithread bug fixed. initialization&free on each thread!
21335:
21336: 2001-10-11 parser
21337:
21338: * src/classes/xnode.C: xnode.selectSingle now
21339:
21340: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
21341: include/pa_pool.h, include/pa_stylesheet_connection.h,
21342: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
21343: convertors out of Pool into Exception
21344:
21345: * src/main/pa_string.C: const
21346:
21347: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21348: linked pieces of same language together prior to String::replace
21349:
21350: * src/classes/hash.C: !^hash.add[addme]
21351: !^hash.sub[subme]
21352: !^a.union[b] = new
21353: !^a.intersection[b] = new
21354: !^a.intersects[b] = bool
21355:
21356: * src/classes/hash.C: !^hash::append[append_from]
21357:
21358: * src/: classes/hash.C, types/pa_vhash.h:
21359: !^hash::create[[copy_from]]
21360:
21361: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21362: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
21363: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
21364: fixed. got rid of empty_string, which caused errors - it hasnt
21365: exception but somebody[value.bark] tried to throw it on it's pool
21366:
1.116 moko 21367: * src/include/pa_config_auto.h.in: makes
1.95 moko 21368:
21369: 2001-10-10 parser
21370:
21371: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
21372:
21373: * src/main/: compile.tab.C, compile.y: ^a[
21374:
21375: @next_method << now unclosed ] would be reported here
21376:
21377: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
21378: compile error
21379:
21380: 2001-10-09 parser
21381:
1.116 moko 21382: * src/: classes/Makefile.am, main/Makefile.am,
21383: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 21384:
21385: * src/classes/Makefile.am: makes
21386:
21387: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
21388: win32 errors intercepted [xalan transformer patched and
21389: incorporated]
21390:
21391: * src/: classes/classes.dsp, classes/xdoc.C,
21392: include/pa_stylesheet_connection.h, main/main.dsp,
21393: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21394: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
21395: patches starting
21396:
21397: * src/classes/: string.C, table.C: ^string.save[file]
21398:
21399: * src/classes/: date.C, table.C: calendar moved to date
21400:
21401: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
21402: string/table] now
21403:
21404: * src/classes/: op.C, table.C: z
21405:
21406: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
21407: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
21408: types/pa_vxnode.h: table:menu & op for delims made allowed not to
21409: be code [be string..]
21410:
21411: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
21412: table.C: lots of
21413: params->as_int/double/as_string/as_junction/as_no_junction
21414: messages added
21415:
21416: 2001-10-08 parser
21417:
21418: * src/: classes/date.C, classes/image.C, classes/string.C,
21419: classes/table.C, classes/void.C, include/pa_request.h:
21420: params->as_int/double message added
21421:
21422: * src/classes/image.C: image:circle [and round arc] uses Bresenham
21423:
21424: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
21425: image:sector removed image:html internal "line-*" attribs
21426:
21427: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
21428: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
21429:
21430: * src/types/pa_vcookie.C: removing cookie made more netscape-like
21431: way
21432:
21433: * src/: classes/file.C, classes/form.C, main/pa_common.C,
21434: main/untaint.C: header untainting to UL_HTTP_HEADER,
21435: UL_MAIL_HEADER made nonforced [only tainted pieces]
21436:
21437: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
21438: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
21439: @ SAPI::log
21440:
21441: * src/main/untaint.C: \r to ' ' in origins mode
21442:
21443: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
21444: set]
21445:
21446: * src/: classes/xdoc.C, include/pa_config_fixed.h,
21447: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
21448: nonstandard liaison freed up
21449:
21450: 2001-10-07 parser
21451:
21452: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
21453: project
21454:
21455: 2001-10-05 parser
21456:
21457: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
21458: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
21459: from outputing to cerr. lots of "todos"
21460:
21461: * src/main/untaint.C: http_header tainting more gentle with
21462: enquoting now
21463:
21464: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
21465: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
21466: xml errorhandler. fixed string.replace a little, read @test
21467:
21468: * src/main/pa_string.C: found replace bug - first_that_starts(char
21469: *) does not have limit, and looks further eos, fixing....
21470:
21471: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
21472:
21473: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
21474:
21475: * src/main/: pa_charset_connection.C: ctype another mem clear
21476: bugfix
21477:
1.116 moko 21478: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
21479: $result[^[$p^]z] now works fine
1.95 moko 21480:
21481: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
21482: wrong. fixed it
21483:
21484: * src/main/pa_charset_connection.C: unicode zero pair at the beging
21485: of totable appered to be vital
21486:
21487: 2001-10-04 parser
21488:
21489: * src/classes/image.C: ^image.length[text]
21490:
21491: 2001-10-03 parser
21492:
21493: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
21494:
21495: * src/main/pa_request.C: restored pcre defaulting in request
21496: [mindlessly "optimized" yesterday] comment left
21497:
21498: 2001-10-02 parser
21499:
21500: * src/: main/pa_charset_manager.C,
21501: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
21502: needed
21503:
21504: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
21505: forgot non-xml pool.*charset needed
21506:
21507: * src/classes/table.C: # config comments fixed
21508:
21509: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
21510: charset_connection #comment now
21511:
21512: * src/: classes/classes.dsp, types/types.dsp: release projects
21513: options fixed to use release msvcrt lib
21514:
21515: * src/main/pa_charset_connection.C: pcre tables now const inside
21516: removed default - pcre handles that internally fixed bug on
21517: not-cleaning tables [previously was calloced, now member]
21518:
21519: * src/: include/pa_request.h, main/pa_charset_connection.C,
21520: main/pa_request.C, types/pa_vstring.h: pcre tables now const
21521: inside removed default - pcre handles that internally fixed bug
21522: on not-cleaning tables [previously was calloced, now member]
21523:
21524: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
21525: tested charset reload on file change @ apache version = OK tested
21526: freeing up prev encoding on adding new = OK
21527:
21528: 2001-10-01 parser
21529:
21530: * src/main/pa_charset_connection.C: removed entitify external hack
21531: [internal installed]
21532:
1.116 moko 21533: * src/main/Makefile.am: makes+removed dtd
1.95 moko 21534:
21535: * src/: include/pa_charset_connection.h,
21536: include/pa_charset_manager.h,
21537: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21538: main/pa_charset_connection.C, main/pa_charset_manager.C,
21539: main/pa_request.C: charset loading & caching mech 0
21540:
21541: * src/: include/pa_stylesheet_connection.h,
21542: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21543: main/pa_globals.C, main/pa_request.C: would make charset loading
21544: & caching mech now
21545:
21546: 2001-09-30 parser
21547:
21548: * src/main/pa_request.C: forgot to fill toTable
21549:
21550: * src/: include/pa_config_fixed.h, main/pa_request.C: started
21551: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
21552: failed on win32 for now..
21553:
21554: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
21555: now charsets table configuration variable is: CHARSETS
21556:
21557: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
21558: ctype with unicode 1. todo: no П entities on output somehow
21559:
21560: * src/: classes/file.C, classes/op.C, classes/string.C,
21561: include/pa_request.h, main/pa_request.C: started ctype with
21562: unicode values
21563:
21564: 2001-09-28 parser
21565:
21566: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21567: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21568: string passed AS-IS now
21569:
21570: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21571: way of user-configuring... todo: implement
21572:
21573: 2001-09-27 parser
21574:
21575: * src/classes/table.C: table.sort changed to sort table itself
21576:
21577: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21578: X^.getElementsByTagName[tagname] = array of xnode
21579: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21580: nodes removed - regretfully not supported @ xalan. maybe someday
21581: would reimplement, if needed.
21582:
21583: win32build system: solved long waiting anti-non-started-apache
21584: problem
21585:
21586: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21587: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21588: types/types.dsp: win32 ident make system so not to rebuild
21589: library [ident.C.new]
21590:
21591: 2001-09-26 parser
21592:
21593: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21594: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21595: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21596: types/pa_vxnode.C, types/types.dsp: z
21597:
21598: * src/classes/classes.C: forgot one non-xml check
21599:
1.116 moko 21600: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21601: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21602:
21603: * src/targets/cgi/parser3.C: z
21604:
21605: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21606: targets/isapi/parser3isapi.C: #ifdef SMTP
21607:
21608: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21609: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21610: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21611: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21612: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21613: types/types.dsp: xdoc&xnode now
21614:
21615: * src/: classes/classes.C, classes/classes.awk,
21616: classes/classes.dsp, classes/classes.h, classes/date.C,
21617: classes/dnode.C, classes/dnode.h, classes/dom.C,
21618: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21619: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21620: classes/op.C, classes/response.C, classes/string.C,
21621: classes/table.C, classes/void.C, include/pa_array.h,
21622: include/pa_common.h, include/pa_config_fixed.h,
21623: include/pa_config_includes.h, include/pa_dictionary.h,
21624: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21625: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21626: include/pa_socks.h, include/pa_sql_connection.h,
21627: include/pa_sql_driver_manager.h, include/pa_stack.h,
21628: include/pa_string.h, include/pa_stylesheet_connection.h,
21629: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21630: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21631: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21632: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21633: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21634: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21635: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21636: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21637: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21638: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21639: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21640: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21641: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21642: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21643: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21644: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21645: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21646: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21647: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21648: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21649: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21650: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21651: types/pa_vmethod_frame.h, types/pa_vobject.h,
21652: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21653: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21654: types/pa_vstateless_object.h, types/pa_vstring.C,
21655: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21656: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21657: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21658: main.dsp splitted to main+classes+types along to .am
21659:
21660: * src/classes/Makefile.am: removed useless var
21661:
21662: * src/: classes/classes.cmd, main/main.dsp,
21663: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21664: main.dsp
21665:
21666: 2001-09-25 parser
21667:
21668: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
21669: 1251 though, todo ICU
21670:
1.116 moko 21671: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 21672: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 21673: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
21674: types/pa_vdom.h: xml configure makes
1.95 moko 21675:
21676: 2001-09-24 parser
21677:
1.116 moko 21678: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
21679: types/Makefile.am: makes
1.95 moko 21680:
1.116 moko 21681: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 21682:
21683: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
21684: started unix makes update
21685:
21686: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
21687: started unix makes update
21688:
21689: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
21690:
21691: * src/types/pa_value.h: z
21692:
21693: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
21694: bugs with usinge hash/table in expressions
21695:
21696: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
21697: resolved conflicts fixed [const]
21698:
21699: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
21700: classes/table.C, include/pa_request.h, include/pa_sapi.h,
21701: main/compile.C, main/compile.tab.C, main/compile.y,
21702: main/compile_tools.h, main/main.dsp, main/pa_common.C,
21703: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21704: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
21705: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
21706: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
21707: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
21708: with before_xml [merge2 actually didn't happen - i've created
21709: tags on wrong branch. so this merge is in fact re-merge]
21710:
21711: 2001-09-21 parser
21712:
21713: * src/: main/main.dsp, targets/cgi/parser3.dsp,
21714: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
21715: produced "" in make file and sadly wrong interpreted on load]
21716:
1.116 moko 21717: * src/: classes/classes.h, classes/hash.C, classes/op.C,
21718: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
21719: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21720: include/pa_sql_driver_manager.h, include/pa_string.h,
21721: main/compile.tab.C, main/main.dsp, main/pa_common.C,
21722: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
21723: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 21724:
21725: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
21726: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
21727: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
21728: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21729: main/pa_pool.C, main/pa_request.C,
21730: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
21731: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21732: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
21733: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
21734: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
21735: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
21736: types/pa_vrequest.C, types/pa_vresponse.h,
21737: types/pa_vstateless_class.C, types/pa_vstring.C,
21738: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
21739: created new projects for sql drivers [planning to remove sql
21740: drivers from main cvs project] first, will join latest changes
21741:
21742: * src/classes/: dom.C: defaulted dom writing methods encoding to
21743: pool.get_charset
21744:
21745: * src/classes/dom.C: defaulted dom writing methods encoding to
21746: pool.get_charset
21747:
21748: * src/include/pa_pool.h: defaulted dom writing methods encoding to
21749: pool.get_charset
21750:
21751: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
21752: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
21753: methods encoding to pool.get_charset
21754:
21755: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
21756: transcoder were created right "unsupported encoding" message.
21757: not @ set time, but @ use time, so until xml output functions
21758: .string, .file, .save used - no encoding name check occur
21759:
21760: reduced transcode buffer size to 60 fixed pool cleanup - no
21761: registration needed, pools are officially destructured
21762:
21763: 2001-09-20 parser
21764:
21765: * src/classes/image.C: 20K preload on jpg measure [image::measure]
21766:
21767: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
21768: $MAIN:DEFAULTS.content-type[$.charset[here]]
21769:
21770: * src/: classes/dnode.C, classes/dom.C,
21771: include/pa_config_includes.h, include/pa_globals.h,
21772: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21773: main/pa_pool.C, targets/cgi/parser3.dsp,
21774: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
21775: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
21776: Pool::transcode 0
21777:
21778: * src/classes/dom.C: dom. string save file moved output xml options
21779: to last param and made it optional
21780:
21781: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
21782: dnodes
21783: !$attributenode.specified = boolean
21784: true if the attribute received its value explicitly
21785: in the XML document,
21786: or if a value was assigned programatically with the
21787: setValue function.
21788: false if the attribute value came from the default value
21789: declared in the document's DTD.
21790: !$pinode.target = target of this processing instruction
21791: XML defines this as being the first token following the
21792: markup
21793: that begins the processing instruction.
21794: XPath:
21795: !^node.select[xpath/query/expression] = hash of 0->node0
21796: 1->node1
21797: !^node.select-single[xpath/query/expression] = first node if
21798: any
21799:
21800: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
21801: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
21802: some 'const's added
21803:
21804: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
21805: expression context now, there value = size and boolean value
21806: size!=0
21807:
21808: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
21809: can be used in expression context now, there value = size and
21810: boolean value size!=0
21811:
21812: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
21813: types/pa_vstring.h: dnode .file .string .save moved back to dom
21814: due to strange xalan bug
21815:
21816: 2001-09-18 parser
21817:
21818: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
21819: classes/image.C, classes/op.C, classes/table.C,
21820: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
21821: include/pa_sql_driver_manager.h, main/compile.C,
21822: main/compile.tab.C, main/compile.y, main/compile_tools.h,
21823: main/execute.C, main/pa_common.C, main/pa_request.C,
21824: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21825: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21826: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
21827: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
21828: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
21829: before_xml branch ^if(def $hash) now true only when
21830: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
21831:
21832: * src/: classes/op.C, main/execute.C: operators self changed to
21833: root ^for variable context changed to self
21834:
21835: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
21836: dnode 1
21837:
21838: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
21839: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
21840:
21841: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
21842: poly* fixed
21843:
21844: 2001-09-17 parser
21845:
21846: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
21847: types/pa_vdom.h: started dnode+dom
21848:
21849: dnode DOM methods: $node.name $node.value
21850: ...others...
21851:
21852: ^node.xpath[/rates/USD] = hash
21853: $hash[
21854: $.0[node0]
21855: $.1[node1]
21856: ]
21857:
21858: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
21859: applies to all linear primitives
21860:
21861: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
21862: include/pa_stylesheet_connection.h, main/main.dsp,
21863: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
21864: types/pa_vimage.h: started dnode DOM: $node.name
21865: $node.value ...others... ^node.xpath[/rates/USD] = hash
21866: dom(dnode)
21867:
21868: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
21869: main/compile.y, main/compile_tools.h, main/execute.C,
21870: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
21871: in expression compound($aa.zz.xx) names now can have minus '-' in
21872: name after '.'
21873:
21874: 2001-09-15 parser
21875:
21876: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
21877: image: $line-width ^line(...)[**** style]
21878:
21879: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
21880: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
21881: pool_storage - cleanups first, allocations second. apache wisely
21882: does just like that
21883:
21884: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
21885: rewritten using template, no bugs now
21886:
21887: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
21888: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
21889: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
21890: poorly started isapi pool_storage, would rewrite using template
21891: now
21892:
21893: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
21894: include/pa_stylesheet_connection.h, main/main.dsp,
21895: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
21896: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
21897: xalan objects freed up [introducing Pool::register_cleanup]
21898:
21899: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
21900: comments
21901:
21902: 2001-09-14 parser
21903:
21904: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
21905: z
21906:
21907: * src/: classes/dom.C, classes/file.C, classes/image.C,
21908: classes/mail.C, include/pa_common.h,
21909: include/pa_sql_driver_manager.h, include/pa_string.h,
21910: include/pa_stylesheet_connection.h,
21911: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21912: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
21913: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
21914: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
21915: compiled&cached
21916:
21917: 2001-09-13 parser
21918:
21919: * src/: classes/dom.C, classes/file.C, classes/image.C,
21920: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
21921:
21922: * src/classes/dom.C: dom:file content-type(.method)
21923:
21924: * src/: include/pa_common.h, include/pa_globals.h,
21925: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
21926: string now more informative error messages
21927:
21928: * src/: include/pa_globals.h, include/pa_request.h,
21929: main/pa_request.C, targets/cgi/parser3.C,
21930: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
21931: ParserSiteConfig .../parser3.conf
21932:
21933: cgi&isapi looks for {configure|c:\windows}/parser3.conf
21934:
21935: 2001-09-12 parser
21936:
21937: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21938: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
21939: precise error reporting: "connection string must start with
21940: protocol://" now
21941:
21942: * src/main/compile.tab.C: fixed - subname code parts actually []
21943: braced
21944:
21945: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21946: lexer on LS_USER level did [] matching without setting nestage,
21947: introduced special LS_NAME_SQUARE_PART state
21948:
21949: 2001-09-11 parser
21950:
21951: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21952: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21953: languages+=xml
21954:
21955: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21956:
21957: * src/classes/dom.C: ^dom:save/string/file[output options] output
21958: options: $.method[xml|html|text] detection fixed
21959:
21960: * src/types/pa_vdom.h: messages
21961:
21962: * src/classes/dom.C: ^dom:save/string/file[output options] output
21963: options: $.method[xml|html|text] detection fixed
21964:
21965: 2001-09-10 parser
21966:
21967: * src/classes/dom.C: ^dom:save/string/file[output options] output
21968: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21969:
21970: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21971: added]
21972:
21973: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21974: ^dom.xslt[stylesheet filename] 0
21975:
21976: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21977: ^dom.xslt[stylesheet filename] -1 doc is lying
21978:
21979: * src/classes/dom.C: ^dom.file[encoding] = file
21980:
21981: * src/classes/: dom.C: ^dom.string[encoding] 1
21982: ^dom.save[encoding;filename]
21983:
21984: * src/classes/dom.C: ^dom.string[] 0
21985:
21986: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21987:
21988: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21989: types/pa_vform.h: ^dom.save[b.xml] 0
21990:
21991: 2001-09-08 parser
21992:
21993: * src/types/pa_vform.C: $form:tables.name.field
21994:
21995: 2001-09-07 parser
21996:
21997: * src/classes/table.C: table:empty removed, superceded by ^if(def
21998: $table)...
21999:
22000: * src/targets/cgi/parser3.C: z
22001:
22002: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
22003: from '' to int/double is 0]
22004:
22005: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
22006: $table) is false when table is empty
22007:
22008: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
22009: !$form:tables $atable[$form:tables.a]
22010: ^atable.menu{a=$atable.element}[,]
22011:
22012: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
22013: types/pa_vform.h, types/pa_vhash.h: !$form:fields
22014:
1.116 moko 22015: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22016: types/pa_vdom.h, types/pa_vform.C: merged with successful start
22017: of dom
22018:
22019: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
22020: types/pa_vform.C, types/pa_vform.h: z
22021:
22022: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
22023: element [not last]
22024:
1.116 moko 22025: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22026: types/pa_vdom.h: introducing dom. dom:load[a.xml]
22027:
22028: 2001-09-06 parser
22029:
22030: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22031: table with one column 'element' and two rows: 1 and 2
22032:
22033: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22034: table with one column 'element' and two rows: 1 and 2
22035:
22036: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
22037: bad int/double conversions, and now $form:nonexistent.int(88)
22038: would return 88
22039:
22040: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
22041: types/pa_vhash.h: now there's special hash key '_default'
22042: [instead of ^_default method] $hash[ $.a[1] $.b[2]
22043: $._default[xx] ] $hash.c
22044:
22045: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
22046: fixed [thanks, fif], ^; were treated there non-literally
22047:
22048: * src/doc/doxygen.cfg: merged new default options from 1.2.10
22049: doxygen
22050:
22051: * src/: classes/image.C, classes/op.C, classes/string.C,
22052: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
22053: types/pa_vtable.C: few #ifndef DOXYGEN
22054:
22055: 2001-09-05 parser
22056:
22057: * src/classes/: string.C, table.C: sql options can be void [same as
22058: image:html the other day]
22059:
22060: * src/targets/cgi/Makefile.am: .am undo
22061:
22062: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22063: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
22064: macro expantion on param, simply qoutes whatever passed, undone
22065:
22066: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22067: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
22068: STRINGIZE(name) #name invented
22069:
22070: * src/: classes/op.C, include/pa_sql_driver_manager.h,
22071: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
22072: MAIN_SQL_DRIVERS_NAME "drivers"
22073:
22074: moved to be availible to all users
22075:
22076: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
22077: SQL_DRIVER_CREATE_FUNC_NAME
22078:
22079: * src/classes/mail.C: MAIN:MAIL check fixed
22080:
22081: 2001-09-04 parser
22082:
22083: * src/classes/image.C: image.html now can accept void params
22084:
22085: * src/targets/isapi/parser3isapi.C: z
22086:
22087: * src/targets/cgi/parser3.C: full_file_spec bug
22088:
22089: * src/targets/cgi/parser3.C: getenvcheck
22090:
22091: * src/targets/cgi/parser3.C: zz
22092:
22093: * src/targets/cgi/parser3.C: zzz
22094:
22095: * src/classes/date.C: date
22096:
22097: * src/classes/date.C: date:sql-string is now without ''
22098:
1.116 moko 22099: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 22100: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
22101: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
22102:
1.116 moko 22103: * src/include/pa_config_auto.h.in: makes
1.95 moko 22104:
22105: 2001-09-03 parser
22106:
22107: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
22108:
22109: 2001-09-01 parser
22110:
22111: * src/classes/image.C: letter_spacing
22112:
22113: * src/classes/image.C: image: font params changed
22114:
22115: * src/classes/image.C: image: as_int as_string used
22116:
22117: * src/types/pa_vmethod_frame.h: $result[] now gets properly
22118: analized
22119:
22120: 2001-08-31 parser
22121:
22122: * src/targets/cgi/parser3.C: z
22123:
1.116 moko 22124: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
22125: cygwin
1.95 moko 22126:
22127: * src/classes/void.C: void:int/double += (default)
22128:
22129: * src/classes/image.C: image:font added space param image:font
22130: changed charwidth alg, added kerning const[for now]
22131:
22132: * src/classes/: string.C, table.C: string:int/double (defaults)
22133:
22134: 2001-08-29 parser
22135:
22136: * src/main/pa_exception.C: exception redundant debug info
22137:
22138: 2001-08-28 parser
22139:
22140: * src/classes/image.C: image error msgs
22141:
22142: * src/classes/image.C: image: gifsize little endian
22143:
22144: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
22145: doxygeneration
22146:
22147: * src/: classes/Makefile.am, main/Makefile.am,
22148: targets/cgi/Makefile.am, types/Makefile.am: .am-s
22149:
22150: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
22151: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
22152:
22153: * src/main/compile.C: NO_STRING_ORIGIN check2
22154:
22155: * src/classes/table.C: NO_STRING_ORIGIN check
22156:
22157: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
22158: storage class specifiers invalid in friend function declarations
22159:
22160: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
22161: main/untaint.C, targets/cgi/parser3.C,
22162: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
22163: case of limit
22164:
22165: * src/: classes/file.C, main/pa_common.C: file:move
22166: autocreate/remove dest/src dir
22167:
22168: * src/: classes/string.C, include/pa_dictionary.h,
22169: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
22170: main/untaint.C: pa_directory speeded up. moved zero 'from' check
22171: to directory constructor. string:replace
22172:
22173: 2001-08-27 parser
22174:
22175: * src/classes/image.C: fixed jpgsize alg
22176:
22177: * src/classes/image.C: fixed jpgsize alg
22178:
22179: * src/main/pa_exception.C: z
22180:
22181: * src/main/pa_common.C: removed debug info from pa_common
22182:
22183: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
22184: [auto.p from current dir loading]
22185:
1.116 moko 22186: * src/: main/pa_common.C, main/pa_exception.C,
22187: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
22188: for solaris -lsocket
1.95 moko 22189:
22190: 2001-08-24 parser
22191:
22192: * src/targets/cgi/parser3.C: not cgi extra \n 3
22193:
22194: * src/targets/cgi/parser3.C: not cgi extra \n 2
22195:
22196: * src/targets/cgi/parser3.C: not cgi extra \n
22197:
22198: * src/main/pa_sql_driver_manager.C: z
22199:
22200: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
22201: sql* removed services from disconnect - cross-request ideological
22202: probs.
22203:
22204: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
22205: cross-request ideological probs. oracle - fixed bug: cs
22206: allocated on request.pool and got freed before disconnect
22207:
22208: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
22209: mallocs fixed
22210:
22211: 2001-08-23 parser
22212:
22213: * src/classes/file.C: minor bug in file:save fixed
22214:
22215: * src/main/pa_sql_driver_manager.C: oracle: dlink
22216:
22217: 2001-08-22 parser
22218:
22219: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
22220: types/pa_vfile.h: file:load|save[text|binary;
22221:
22222: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
22223:
22224: 2001-08-21 parser
22225:
22226: * src/classes/: file.C, table.C: ^file:list
22227:
22228: 2001-08-20 parser
22229:
22230: * src/: main/compile.tab.C, main/compile.y,
22231: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
22232: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
22233: recousively caused problems: inc incremeted 123 literal!! fixed
22234:
22235: 2001-08-10 parser
22236:
22237: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
22238:
22239: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22240: added
22241:
22242: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22243: added
22244:
22245: * src/classes/table.C: table:sort restored [it was bad test :(]
22246:
22247: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
22248: ''
22249:
22250: * src/main/: pa_request.C: wanted to make const int
22251: MAX_EXECUTE_SECONDS=1;
22252:
22253: but couldnt, set_callback_and_alarm appeared to be not exported
22254: :(
22255:
22256: * src/main/pa_string.C: string.match hanged on. there were a hang
22257: check but it weren't wise enough
22258:
22259: @parse[dateString][tmp]
22260: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
22261: #end
22262:
22263: @main[] ^parse[2001-02-03]
22264:
22265: * src/classes/: table.C: table:sort now default desc
22266:
22267: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
22268: table.sort now creates new sorted table
22269:
22270: 2001-08-09 parser
22271:
22272: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
22273:
22274: * src/classes/hash.C: hash:_default now [was hash:default]
22275:
22276: * src/classes/op.C: case without switch check added
22277:
22278: * src/types/pa_vcookie.C: cookie name&value origins added, more
22279: precise $ORIGINS(1)
22280:
22281: * src/main/Makefile.am: .am
22282:
22283: * src/classes/void.C: void: int double copy/paste from int: bug
22284: fixed
22285:
22286: * src/classes/void.C: void: int double copy/paste from int: bug
22287: fixed
22288:
22289: 2001-08-07 parser
22290:
22291: * src/: classes/double.C, classes/int.C, classes/string.C,
22292: classes/table.C, include/pa_globals.h, main/pa_globals.C:
22293: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
22294: string, table
22295:
22296: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
22297: srand made working
22298:
22299: 2001-08-06 parser
22300:
22301: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
22302: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22303: main/compile.tab.C, main/compile.y, main/pa_array.C,
22304: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
22305: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
22306:
22307: * src/main/pa_exec.C: exec win32 real filename
22308:
22309: * src/classes/file.C: exec stderr out
22310:
22311: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
22312:
22313: 2001-08-03 parser
22314:
22315: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
22316:
22317: 2001-08-02 parser
22318:
22319: * src/: classes/string.C, classes/table.C, include/pa_array.h,
22320: main/execute.C, main/pa_exec.C: introducing Array_iter
22321:
22322: * src/main/execute.C: detected quick_get recursion bug. changed to
22323: get@execute, but needs array iterator, separate from array to
22324: avoid it & use caching
22325:
22326: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
22327: bug fixed
22328:
22329: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
22330: main/execute.C, main/pa_globals.C: found another multithread bug
22331: in op.C (last, last global var killed) :)
22332:
22333: 2001-08-01 parser
22334:
22335: * src/: include/pa_dictionary.h, include/pa_globals.h,
22336: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
22337: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22338: main/untaint.C: speeded up typo-html replacements. introducing
22339: Dictionary with first-char caching
22340:
22341: 2001-07-31 parser
22342:
22343: * src/types/Makefile.am: pa_vtable.C added to .am
22344:
22345: * src/main/compile.tab.C: added, so that could be compiled even on
22346: non-bison-enabled platforms
22347:
22348: 2001-07-28 parser
22349:
22350: * src/classes/table.C: table:hash always produces hash, when can't
22351: - empty
22352:
22353: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22354: skipped \n
22355:
22356: 2001-07-27 parser
22357:
22358: * src/classes/: double.C, int.C, string.C: provided meaningful msg
22359: on int/double/string :sql without result and default
22360:
22361: 2001-07-26 parser
22362:
22363: * src/classes/op.C: fixed bad multithread bug with strangly global
22364: OP
22365:
22366: * src/main/compile.y: $man[$.age[zzz]] 0
22367:
22368: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
22369: creation syntax problem persists. restored $: for a while.
22370: thinking of $man[$.age[zzz]] syntax now
22371:
22372: * src/: classes/double.C, classes/int.C, classes/string.C,
22373: include/pa_opcode.h, main/compile.C, main/compile.y,
22374: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
22375: types/pa_vmethod_frame.h, types/pa_wcontext.h,
22376: types/pa_wwrapper.h: fixing :: realization #1
22377:
22378: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
22379: main/compile_tools.h, main/execute.C, main/pa_request.C,
22380: types/pa_vmethod_frame.h: introducing :: this is constructor call
22381: prefix. ordinary : remains for static accesses
22382:
22383: 2001-07-25 parser
22384:
22385: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
22386: fields 2. methods 3. columns
22387:
22388: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
22389: quote. optimized double&int tostring-s
22390:
22391: * src/main/: compile.C, compile.y, compile_tools.h: allowed
22392: whitespace before first method decl
22393:
22394: * src/classes/table.C: allowed nontable result in table:sql,
22395: results in empty table
22396:
22397: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
22398: lines before first method decl
22399:
22400: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
22401: types/pa_vtable.h: ^table.record[] now $table.fields
22402:
22403: * src/main/compile.y: $var[] is now empty string, not void
22404:
22405: * src/main/: compile.y, execute.C: $var[] is now empty string, not
22406: void
22407:
22408: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
22409: main/pa_globals.C: match replace code context moved to implicit
22410: $match context
22411:
22412: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
22413: main/compile_tools.h, main/execute.C: with killed, code storage
22414: introduced with former 'with' syntax
22415:
22416: 2001-07-24 parser
22417:
22418: * src/: main/compile.C, main/execute.C, main/pa_string.C,
22419: types/pa_value.h: first get_element, next get operator
22420:
22421: * src/main/compile.y: removed @end handling
22422:
22423: * src/main/: compile.C, compile.y: @end handling method2
22424:
22425: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
22426: file:move
22427:
22428: * src/main/pa_common.C: file_read close @ eof when imgsize bug
22429: fixed
22430:
22431: 2001-07-23 parser
22432:
22433: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
22434: driver
22435:
22436: * src/classes/hash.C: changed sql driver query interface
22437:
22438: * src/: classes/hash.C, classes/string.C, classes/table.C,
22439: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
22440: changed sql driver query interface
22441:
22442: 2001-07-20 parser
22443:
22444: * src/types/pa_vrequest.C: X!$browser:type
22445:
22446: * src/: classes/file.C, classes/string.C, include/pa_string.h,
22447: main/execute.C, main/pa_string.C, types/pa_valiased.C,
22448: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
22449: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
22450: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
22451: types/pa_vobject.h, types/pa_vrequest.C,
22452: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
22453: ^class:method dynamic calls allowed. ^BASE.method call disabled.
22454: BASE element globally removed
22455:
22456: 2001-07-18 parser
22457:
22458: * src/classes/file.C: file:exec/cgi msg
22459:
22460: * src/classes/file.C: $file:exit-code renamed to 'status'
22461:
22462: * src/: classes/file.C, main/pa_exec.C: file:exec
22463:
1.116 moko 22464: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22465: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
22466: removed $id from *.in *.am
1.95 moko 22467:
22468: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
22469: abbrevations
22470:
22471: * src/: classes/date.C, classes/mail.C, classes/math.C,
22472: classes/string.C, classes/table.C, include/pa_globals.h,
22473: include/pa_string.h, main/execute.C, main/pa_globals.C,
22474: main/pa_request.C, main/pa_string.C, main/untaint.C,
22475: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
22476: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
22477: $ORIGINS(1) output tracing mode
22478:
22479: 2001-07-13 parser
22480:
22481: * src/: classes/double.C, classes/int.C, classes/string.C,
22482: include/pa_request.h, main/execute.C, main/pa_request.C:
22483: auto.p[@auto], /news/auto.p[no @auto], so that initializing
22484: second would not call first @auto
22485:
22486: * src/main/: execute.C, pa_request.C: order of MAIN parents was
22487: wrong, fixed
22488:
22489: 2001-07-12 parser
22490:
22491: * src/types/pa_value.h: pa_value.putelement modification of system
22492: classes prevented
22493:
22494: 2001-07-11 parser
22495:
22496: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
22497: table $piece
22498:
22499: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22500: types/pa_vstateless_class.h: $file created by file:state +=
22501: .atime .mtime .ctime +found&fixed bug with exceptions on
22502: get_junction-created objects [they were on wrong pool]
22503:
22504: 2001-07-09 parser
22505:
22506: * src/main/untaint.C: qp wrong name
22507:
22508: * src/: classes/date.C, classes/string.C, classes/table.C,
22509: main/compile.y: date format 0
22510:
22511: 2001-07-07 parser
22512:
22513: * src/: classes/date.C, classes/table.C, include/pa_common.h,
22514: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
22515: roll table calendar
22516:
22517: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
22518: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
22519: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
22520: include/pa_request.h, main/main.dsp, types/pa_value.h,
22521: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
22522: string. todo: sql, calendar
22523:
22524: 2001-07-06 parser
22525:
22526: * src/: classes/math.C, include/pa_request.h, main/execute.C,
22527: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
22528:
22529: 2001-07-03 parser
22530:
22531: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
22532: classes/random.C, main/main.dsp: class random renamed to math,
22533: operators became methods
22534:
22535: * src/classes/op.C: pow sqrt
22536:
22537: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
22538:
22539: 2001-07-02 parser
22540:
22541: * src/classes/table.C: ^table.columns column renamed from 'name' to
22542: 'column'
22543:
22544: * src/classes/hash.C: ^hash.keys[]
22545:
22546: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
22547:
22548: * src/main/: compile.y, compile_tools.h: in expressions now allowed
22549: 'strings'
22550:
22551: 2001-06-29 parser
22552:
22553: * src/main/: execute.C: /0 %0 checkes ver 2
22554:
22555: * src/main/execute.C: /0 %0 checke
22556:
22557: * src/classes/Makefile.am: nothing - void
22558:
22559: * src/classes/table.C: empty strings @ sql
22560:
22561: 2001-06-28 parser
22562:
22563: * src/: classes/double.C, classes/file.C, classes/form.C,
22564: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22565: classes/op.C, classes/random.C, classes/response.C,
22566: classes/string.C, classes/table.C, classes/void.C,
22567: main/compile.C, main/compile_tools.C, main/execute.C,
22568: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22569: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22570: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22571: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22572: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22573: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22574: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22575: $";
22576:
22577: * src/: classes/double.C, classes/file.C, classes/form.C,
22578: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22579: classes/op.C, classes/random.C, classes/response.C,
22580: classes/string.C, classes/table.C, classes/void.C,
22581: main/compile.C, main/compile.y, main/compile_tools.C,
22582: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22583: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22584: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22585: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22586: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22587: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22588:
22589: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22590: $class:name: == ${class:name}:
22591:
22592: * src/classes/string.C: exactly one
22593:
22594: 2001-06-27 parser
22595:
22596: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22597: types/pa_vvoid.h: nothing renamed to void
22598:
22599: * src/classes/op.C: ^switch ^case
22600:
22601: * src/main/compile.y: nothing renamed to void
22602:
22603: * src/: classes/hash.C, classes/table.C, main/compile.y,
22604: main/execute.C, main/main.dsp, main/pa_request.C,
22605: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22606: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22607: void
22608:
22609: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22610:
22611: 2001-05-28 parser
22612:
22613: * src/doc/html2chm.cmd: removed >a
22614:
22615: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22616: project options [some bugs]
22617:
22618: * src/doc/sources2html.cmd: z
22619:
22620: * src/: classes/classes.C, main/compile.C, main/compile.y,
22621: main/execute.C: operators are not in root class again
22622:
22623: 2001-05-24 parser
22624:
22625: * src/targets/cgi/parser3.dsp: project file
22626:
22627: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22628: ^log ^exp
22629:
22630: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22631: conversions in @exception[params]
22632:
22633: * src/main/pa_request.C: // no _ conversions in @exception[params]
22634:
22635: 2001-05-23 parser
22636:
22637: * src/main/pa_string.C: string cmp bug
22638:
22639: * src/classes/: mail.C, op.C: rem max 1000
22640:
22641: * src/: classes/op.C, main/compile.y: allow one empty line before
22642: LS_DEF_NAME
22643:
22644: 2001-05-22 parser
22645:
22646: * src/classes/op.C: if params code-required
22647:
22648: 2001-05-21 parser
22649:
22650: * src/types/pa_vstring.C: eoleof
22651:
22652: * src/classes/Makefile.am: .AM
22653:
22654: * src/classes/nothing.C: resultless ^sql moved to nothing:
22655:
22656: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22657:
22658: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22659: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22660: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22661: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22662: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22663: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22664: 'nothing'
22665:
22666: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
22667: vstring::set_string
22668:
22669: * src/classes/: double.C, int.C, string.C: int,double;sql
22670:
22671: * src/: classes/hash.C, classes/int.C, classes/string.C,
22672: classes/table.C, include/pa_string.h, main/pa_string.C,
22673: types/pa_vstring.C, types/pa_vstring.h: started int:sql
22674:
22675: * src/: classes/classes.C, classes/hash.C, classes/op.C,
22676: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
22677: hash:sql moved to main trunc. operators.txt updated
22678:
22679: * src/classes/: hash.C, op.C, table.C: hash:sql
22680:
22681: * src/classes/op.C: z
22682:
22683: * src/: main/compile.C, classes/classes.C: 1
22684:
22685: * src/: classes/classes.C, main/compile.C, main/compile.y,
22686: main/execute.C: 0
22687:
22688: * src/main/execute.C: z
22689:
22690: * src/targets/cgi/parser3.C: z
22691:
22692: * src/targets/cgi/parser3.C: argv can be just "parser3". made
22693: site_auto_path "." in that case
22694:
22695: * src/targets/cgi/: parser3.C: z
22696:
22697: * src/main/pa_request.C: .am
22698:
22699: * src/: main/pa_request.C, targets/cgi/parser3.C:
22700: pcre_tables=pcre_default_tables;
22701:
22702: 2001-05-19 parser
22703:
22704: * src/main/pa_string.C: z
22705:
22706: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
22707: introducing String::cstr_bufsize, returns just size+1 for as_is
22708: target.
22709:
22710: * src/: main/untaint.C, targets/cgi/pa_pool.C,
22711: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
22712: used, 4* mem wasted
22713:
22714: * src/classes/string.C: root context in match replace body now
22715: unchanged
22716:
22717: * src/types/pa_value.h: parameter # 1 based
22718:
22719: * src/main/pa_common.C: common: actual filename '%s'
22720:
22721: * src/classes/string.C: z
22722:
22723: * src/classes/Makefile.am: classes/.am
22724:
22725: * src/classes/: Makefile.am: classes/.am
22726:
22727: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
22728: targets/cgi/pa_pool.C: classes/.am
22729:
22730: 2001-05-18 parser
22731:
1.116 moko 22732: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
22733: pa_threads.C ins
1.95 moko 22734:
22735: * src/targets/cgi/Makefile.am: .am pa_threads.C added
22736:
22737: 2001-05-17 parser
22738:
22739: * src/: classes/string.C, include/pa_config_fixed.h,
22740: include/pa_config_includes.h, main/compile.y,
22741: main/compile_tools.h, main/execute.C, main/pa_array.C,
22742: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
22743: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
22744: types/pa_vform.C: #include "pa_config_includes.h" removed from
22745: most .C
22746:
22747: * src/doc/html2chm.cmd: z
22748:
22749: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
22750: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
22751:
22752: * src/main/pa_sql_driver_manager.C: moved expiration to
22753: get_connection_from_cache
22754:
22755: * src/main/pa_sql_driver_manager.C: cache expiration bf
22756:
22757: * src/: classes/classes.h, include/pa_sql_connection.h,
22758: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
22759: cache expiration[use SQL_Driver::disconnect]
22760:
22761: * src/main/pa_table.C: table.locate current restored on "not found"
22762:
22763: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
22764: line no
22765:
22766: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22767: ANTI_ENDLESS_EXECUTE_RECOURSION
22768:
22769: * src/: classes/op.C, include/pa_sql_connection.h,
22770: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
22771: sql/pa_sql_driver.h: fixed problem at last: 2connections own
22772: 1driver and set_services fight for driver::fservices. before fix
22773:
22774: * src/: classes/op.C, include/pa_config_fixed.h,
22775: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
22776: main/pa_sql_driver_manager.C: found problem at last: 2connections
22777: own 1driver and set_services fight for driver::fservices. before
22778: fix
22779:
22780: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22781: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22782: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
22783: pa_threads.C
22784:
22785: * src/include/pa_threads.h: removed targets/parser
22786:
22787: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
22788: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
22789: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
22790: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
22791: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
22792: headers
22793:
22794: * src/: classes/image.C, include/pa_sql_driver_manager.h,
22795: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
22796: order prevented sqlmanager to see MULTYTHREAD define
22797:
22798: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22799: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
22800: put/gets
22801:
22802: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
22803: from hash.h
22804:
22805: * src/: classes/op.C, include/pa_sql_connection.h,
22806: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
22807: from cache ->set_services(&services);
22808:
22809: 2001-05-16 parser
22810:
22811: * src/targets/cgi/parser3.C: z
22812:
22813: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
22814: debug, #ifdefed some. would debug later, on more precise sample
22815: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
22816: $name.$tail[$tail!] $name.$tail } ok3
22817:
22818: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
22819: removed array debug. before vstring rebasing
22820:
22821: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
22822: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
22823: array debugged; adjusted
22824:
22825: * src/main/: pa_sql_driver_manager.C, pa_string.C:
22826: SQL_Driver_manager line no for connect/charset errors
22827:
22828: 2001-05-15 parser
22829:
22830: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
22831: main/pa_string.C: string+array made linear grows
22832:
22833: * src/: include/pa_string.h, main/pa_string.C,
22834: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
22835: grow lineary, not exponentialy
22836:
22837: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
22838: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
22839: with fullchunk cmps
22840:
22841: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
22842: 70041= 81
22843:
22844: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
22845: targets/cgi/parser3.C: detected huge mem allocation: size/times
22846: malloc 27809390/368771, calloc 3232/83. would test now
22847:
22848: * src/: classes/random.C, main/compile.y, main/execute.C,
22849: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
22850: numbered params had wrong name - for instance: bad error message
22851: in ^for[] bad body type. fixed
22852:
22853: 2001-05-14 parser
22854:
22855: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
22856: main/untaint.C: ^string.upper|lower[]
22857:
22858: 2001-05-11 parser
22859:
22860: * src/: classes/double.C, classes/image.C, classes/op.C,
22861: classes/string.C, classes/table.C, classes/unknown.C,
22862: main/execute.C, types/pa_value.h, types/pa_vbool.h,
22863: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
22864: types/pa_vunknown.h: op: MAX_LOOPS as_int
22865:
22866: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
22867: .dsp for win32tools
22868:
22869: 2001-05-11 paf
22870:
22871: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
22872: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
22873: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
22874: targets/isapi/kill.pl: moved win32 helpers to /win32tools
22875:
22876: 2001-05-10 paf
22877:
22878: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
22879: for C++, that's all
22880:
1.116 moko 22881: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
22882: pa_config_includes.h: inline wonders
1.95 moko 22883:
22884: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
22885: doc/doxygen.cmd: hash.C added
22886:
22887: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
22888:
22889: * src/main/compile.y: @end grammar: allowed zero strings in control
22890: menthod
22891:
22892: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
22893: pa_vstateless_object.h: changed priority: field before method
22894: lookup in vclass & vobject
22895:
22896: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
22897: grammar: priorities changes [lowerd && prior] vobject: now first
22898: fields, next methods
22899:
22900: 2001-05-08 paf
22901:
22902: * src/main/pa_table.C: table columnname2item on nameless ignored
22903: bark=false. fixed
22904:
22905: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
22906: types/pa_vmethod_frame.h: hash:default works at last!
22907:
22908: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
22909: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
22910: hash:default
22911:
22912: * src/classes/table.C: z
22913:
22914: * src/classes/table.C: table:hash always hash of hash now
22915:
22916: * src/classes/table.C: table:empty return bool now
22917:
22918: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
22919: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22920: types/pa_vtable.h: table:hash
22921:
22922: * src/classes/table.C: table:record have name
22923:
22924: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
22925: returns vunknown
22926:
22927: * src/classes/: double.C, int.C, op.C, string.C:
22928: int,double,string:int[] double[] string:length[] results now have
22929: hames
22930:
22931: * src/: classes/op.C, classes/table.C, main/main.dsp,
22932: types/pa_vtable.h: removed table:find. table:locate and op:eval
22933: now return bool
22934:
22935: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
22936: in method checkparams again. fixed
22937:
22938: 2001-05-07 paf
22939:
22940: * src/doc/chm.cmd: cmd
22941:
22942: * src/: classes/image.C, classes/mail.C, classes/string.C,
22943: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22944: types/pa_value.h: method reported errors on wrong pool
22945:
22946: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22947: now
22948:
22949: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22950: include/code.h, include/pa_opcode.h, main/compile.C,
22951: main/compile_tools.h, main/execute.C, types/pa_value.h,
22952: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22953: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22954: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22955: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22956: types/pa_vmethod_frame.h, types/pa_vobject.h,
22957: types/pa_vrequest.h, types/pa_vresponse.h,
22958: types/pa_vstateless_class.h, types/pa_vstring.h,
22959: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22960: types/pa_wwrapper.h: pa_code.h
22961:
22962: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22963:
22964: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22965: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22966: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22967: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22968: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22969: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22970: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22971: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22972: types/pa_vtable.h: dox, split by not clean parts also
22973:
22974: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22975: types/pa_vtable.h: table: fields, then methods. so to enable
22976: 'dir' fields & co. more
22977:
22978: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22979: so to enable 'dir' fields & co.
22980:
22981: * src/main/compile.y: grammar: @end
22982:
22983: 2001-05-04 paf
22984:
22985: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22986: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22987:
22988: * src/: classes/classes.h, classes/double.C, classes/file.C,
22989: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22990: classes/op.C, classes/random.C, classes/response.C,
22991: classes/string.C, classes/table.C, classes/unknown.C,
22992: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22993: method dox
22994:
22995: 2001-05-03 paf
22996:
22997: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22998: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22999: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
23000: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
23001: doc/string.dox, doc/targets.dox, doc/value.dox,
23002: main/pa_request.C: dox splitted .dox files and added some
23003:
23004: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
23005:
23006: 2001-05-02 paf
23007:
23008: * src/classes/: image.C, table.C: table:dir result are not tainted
23009: by file_name language now
23010:
23011: 2001-04-28 paf
23012:
23013: * src/classes/classes.inc: removed classes.inc
23014:
23015: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
23016: from .am
23017:
23018: * src/classes/classes.awk: skipped classes in .awk
23019:
23020: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
23021: classes/classes.inc, classes/double.C, classes/file.C,
23022: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
23023: classes/string.C, classes/table.C, classes/unknown.C,
23024: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
23025: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
23026: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
23027: pa_methoded back to classes/classes.h
23028:
23029: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
23030:
23031: * src/: classes/Makefile.am, classes/classes.awk,
23032: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
23033: classes/ls.exe, main/bison.exe: classes.inc autogenerator
23034:
23035: * src/: classes/classes.C, classes/classes.h, classes/double.C,
23036: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
23037: classes/response.C, classes/string.C, classes/table.C,
23038: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
23039: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
23040: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
23041: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
23042: include|main/pa_methoded
23043:
23044: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
23045: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
23046:
23047: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
23048: moved some configured data to request::classes_conf moved some
23049: string crations from globals to M... [works]
23050:
23051: * src/: classes/form.C, classes/mail.C, classes/op.C,
23052: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
23053: main/pa_request.C: moved some configured data to
23054: request::classes_conf moved some string crations from globals to
23055: M...
23056:
23057: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
23058: about to move configured data to special request hash
23059:
23060: * src/: classes/classes.C, classes/classes.h, classes/file.C,
23061: classes/form.C, classes/mail.C, include/pa_request.h,
23062: main/pa_request.C: configure started
23063:
23064: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
23065: 2. todo: methoded-configure
23066:
23067: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23068: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23069: classes/_random.h, classes/_response.h, classes/_string.h,
23070: classes/_table.h, classes/_unknown.h, classes/classes.inc,
23071: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23072: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23073: classes/random.C, classes/response.C, classes/string.C,
23074: classes/table.C, classes/unknown.C, include/pa_globals.h,
23075: include/pa_request.h, main/compile.y, main/execute.C,
23076: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23077: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23078: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
23079: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
23080: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23081: types/pa_vrequest.h, types/pa_vresponse.h,
23082: types/pa_vstateless_class.h, types/pa_vstring.h,
23083: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
23084: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
23085: methoded-configure
23086:
23087: * src/: classes/file.C, classes/table.C, main/compile.y,
23088: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
23089: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
23090: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
23091:
23092: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
23093: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23094: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23095: classes/random.C, classes/response.C, classes/string.C,
23096: classes/table.C, classes/unknown.C, include/pa_request.h,
23097: main/compile.y, main/execute.C, main/pa_globals.C,
23098: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
23099: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
23100: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
23101: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
23102: beautifying just compiled. todo: debug, configure
23103:
23104: 2001-04-27 paf
23105:
23106: * src/: classes/file.C, classes/image.C, classes/table.C,
23107: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
23108: beautifying -99
23109:
23110: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
23111: classes/_response.h, classes/_unknown.h, classes/classes.C,
23112: classes/classes.h, classes/double.C, classes/file.C,
23113: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
23114: classes/op.C, classes/random.C, classes/response.C,
23115: classes/string.C, include/pa_globals.h, main/main.dsp,
23116: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
23117: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23118: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
23119: types/pa_vunknown.h: beautifying -100
23120:
23121: * src/main/compile.y: serge@ found @CLASS bug. fixed
23122:
23123: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
23124: classes/_op.h, classes/_random.h, classes/_table.h,
23125: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
23126: classes/op.C, classes/random.C, classes/response.C,
23127: classes/string.C, classes/table.C, classes/unknown.C,
23128: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23129: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23130: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
23131: beautifying
23132:
23133: 2001-04-26 paf
23134:
23135: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
23136:
23137: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
23138: documentation ++
23139:
23140: * src/: classes/_exec.h, doc/doxygen.cfg,
23141: include/pa_config_fixed.h, include/pa_config_includes.h,
23142: targets/cgi/pa_pool.C: code documentation ++
23143:
23144: * src/: classes/_image.h, classes/op.C, classes/random.C,
23145: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23146: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
23147: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
23148: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
23149: types/pa_vmethod_frame.h, types/pa_vobject.h,
23150: types/pa_vrequest.C, types/pa_vrequest.h,
23151: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
23152: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
23153: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
23154: code documentation ++
23155:
23156: * src/: classes/image.C, classes/mail.C, classes/string.C,
23157: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
23158: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
23159: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
23160: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23161: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
23162: types/pa_vobject.h, types/pa_vstateless_class.h,
23163: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
23164:
23165: * src/main/: pa_request.C, pa_string.C: z
23166:
23167: * src/: include/pa_common.h, include/pa_types.h,
23168: main/pa_sql_driver_manager.C: module [and, guess, isapi]
23169: connection caching fixed. request-pooled-url were stored into
23170: global connectioncache
23171:
23172: 2001-04-25 paf
23173:
23174: * src/: doc/doxygen.cfg, doc/doxygen.txt,
23175: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
23176:
23177: * src/: include/code.h, include/pa_common.h, main/compile.y,
23178: main/execute.C, main/pa_common.C: -d
23179:
23180: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
23181: illegal call check a bit improved, but still under iis no mapping
23182: of dir with parser allowed!
23183:
23184: 2001-04-24 paf
23185:
23186: * src/targets/Makefile.am: apache module lib .am
23187:
23188: * src/main/pa_exec.C: windows32 buildCommand
23189:
23190: 2001-04-23 paf
23191:
23192: * src/targets/cgi/Makefile.am: win32 conditional
23193:
23194: * src/targets/cgi/Makefile.am: win32 conditional
23195:
23196: * src/targets/cgi/Makefile.am: liblink
23197:
23198: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
23199: vfile fields return type
23200:
23201: * src/types/pa_vfile.h: vfile fields return type
23202:
23203: * src/include/pa_config_auto.h.in: .h.in
23204:
23205: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
23206: types/Makefile: makefiles removed
23207:
23208: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
23209: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
23210:
23211: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
23212: [tested: i & g ]
23213:
23214: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
23215: @test noticed series in isapi, check how initialize_random_class
23216: is called! [must be called only once]
23217:
23218: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
23219: would not be 'unknown column'
23220:
23221: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
23222: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
23223:
23224: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
23225: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
23226: [now doesnt]
23227:
23228: * src/targets/cgi/parser3.C: cgi cmdline ver
23229:
23230: * src/targets/cgi/parser3.C: cgi /// @test disable
23231: /cgi-bin/parser3/auto.p
23232:
23233: * src/main/untaint.C: untaint without charset
23234:
23235: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23236: main/pa_common.C: common: file_write /// @test mkdirs
23237: file_delete rmdirs
23238:
23239: * src/main/untaint.C: mail header only once to =?
23240:
23241: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
23242: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
23243: main/untaint.C: untaint - @test optimize whitespaces for
23244: all but 'html'
23245:
23246: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
23247: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23248: main/untaint.C: untaint - @test mail-header
23249:
23250: 2001-04-20 paf
23251:
23252: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
23253: include/pa_request.h, include/pa_string.h, main/compile.y,
23254: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23255: targets/cgi/parser3.C: $MAIN:LOCALE
23256:
23257: * src/main/untaint.C: z
23258:
23259: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
23260:
23261: 2001-04-19 paf
23262:
23263: * src/main/compile_tools.h: $a$b bugfix
23264:
23265: * src/targets/cgi/parser3.C: z
23266:
23267: * src/classes/file.C: z
23268:
23269: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
23270: done: header to $fields. waits for header '\' tricks
23271:
23272: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23273: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
23274: changed urlencode here and in untaint.C to HTTP standard's " and
23275: \" mech
23276:
23277: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
23278: http://alx/~paf/ doesnt load /auto.p
23279:
23280: 2001-04-18 paf
23281:
23282: * src/main/pa_request.C: 1
23283:
23284: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
23285: linux @alx
23286:
23287: 2001-04-17 paf
23288:
23289: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
23290: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
23291: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
23292: enabled
23293:
23294: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23295: classes/_exec.h, classes/_file.h, classes/_form.h,
23296: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23297: classes/_random.h, classes/_response.h, classes/_string.h,
23298: classes/_table.h, classes/_unknown.h, classes/file.C,
23299: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
23300: include/pa_config_fixed.h, include/pa_config_includes.h,
23301: include/pa_hash.h, include/pa_sql_driver_manager.h,
23302: include/pa_version.h, main/Makefile.am, main/compile.y,
23303: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
23304: main/pa_sql_driver_manager.C, sql/Makefile.am,
23305: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
23306: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
23307: types/pa_vform.C, types/pa_vimage.h: exec @jav
23308:
23309: * src/: include/pa_sql_driver_manager.h,
23310: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
23311: types/pa_vimage.h: sql driver interface now has initialize(client
23312: .so)
23313:
23314: 2001-04-16 paf
23315:
23316: * src/Makefile.am: compile2 cygwin
23317:
23318: * src/: include/pa_config_includes.h, main/pa_exec.C,
23319: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
23320:
23321: * src/targets/cgi/Makefile.am: compile0 jav
23322:
23323: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23324: classes/_exec.h, classes/_file.h, classes/_form.h,
23325: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23326: classes/_random.h, classes/_response.h, classes/_string.h,
23327: classes/_table.h, classes/_unknown.h, classes/image.C,
23328: classes/mail.C, classes/op.C, classes/random.C,
23329: include/pa_config_fixed.h, include/pa_config_includes.h,
23330: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
23331: main/compile.y, main/pa_common.C, main/pa_exec.C,
23332: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
23333: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
23334: compile-1
23335:
23336: 2001-04-15 paf
23337:
23338: * src/classes/op.C: z
23339:
23340: * src/classes/table.C: table:empty +=process
23341:
23342: * src/types/pa_value.h: MethodParams !junction
23343:
23344: * src/: classes/_string.h, classes/double.C, classes/file.C,
23345: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23346: classes/random.C, classes/response.C, classes/string.C,
23347: classes/table.C, classes/unknown.C, main/pa_request.C:
23348: MethodParams everywhere
23349:
23350: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23351: types/pa_vmethod_frame.h: MethodParams in op.C
23352:
23353: 2001-04-12 paf
23354:
23355: * src/: classes/image.C, types/pa_vimage.h: image:font :text
23356:
23357: * src/: classes/_unknown.h, classes/unknown.C,
23358: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23359: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
23360:
23361: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
23362:
23363: * src/classes/image.C: image:gif now does not have params
23364:
23365: * src/classes/image.C:
23366: image:line/fill/rectangle/bar/replace/polygon/polybar
23367:
23368: * src/: classes/image.C, classes/op.C, main/execute.C,
23369: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
23370: for var now written not to r.wcontext, but to r.root cleared
23371: "entered_object" state
23372:
23373: 2001-04-11 paf
23374:
23375: * src/classes/image.C: image:create image:load
23376:
23377: * src/: classes/image.C, main/main.dsp: gd with mem write + image
23378: just compiled
23379:
23380: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23381: todo: gif without file
23382:
23383: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23384: started porting to Pooled descendant
23385:
23386: * src/: classes/image.C, main/execute.C, main/main.dsp,
23387: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
23388: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
23389: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
23390:
23391: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
23392: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
23393: end. switching to python imaging lib
23394:
23395: * src/main/main.dsp: gd+smtp made separate libs
23396:
23397: * src/: include/pa_globals.h, include/pa_string.h,
23398: main/pa_common.C, main/pa_request.C, main/untaint.C,
23399: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
23400: length
23401:
23402: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
23403: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
23404: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
23405: UL_FILE_NAME of posted file name
23406:
23407: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
23408: post [broke when moved post read to core]
23409:
23410: 2001-04-10 paf
23411:
23412: * src/classes/image.C: image:html done
23413:
23414: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
23415:
23416: * src/classes/image.C: z
23417:
23418: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
23419: forgotten!
23420:
23421: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23422: main/pa_request.C, main/pa_string.C, main/untaint.C,
23423: types/pa_vimage.h: image:measure -90
23424:
23425: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23426: classes/_int.h, classes/_mail.h, classes/_op.h,
23427: classes/_random.h, classes/_response.h, classes/_string.h,
23428: classes/_table.h, classes/file.C, classes/mail.C,
23429: include/pa_common.h, include/pa_globals.h, main/execute.C,
23430: main/main.dsp, main/pa_common.C, main/pa_globals.C,
23431: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
23432: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
23433: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
23434: compiled
23435:
23436: * src/classes/mail.C: minor bug with unclear from/to
23437:
23438: * src/classes/mail.C: sendmail unix skipping defaults
23439:
23440: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
23441: sendmail unix added defaults
23442:
23443: * src/classes/mail.C: unix sendmail compiled. todo:testing
23444:
23445: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
23446:
23447: 2001-04-09 paf
23448:
23449: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
23450: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
23451: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
23452: targets/isapi/parser3isapi.dsp: all targets exec
23453:
23454: * src/: include/pa_sapi.h, include/pa_string.h,
23455: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23456: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
23457: args in apache:util.script
23458:
23459: * src/include/pa_string.h: written but not tested exec with env for
23460: unix
23461:
23462: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
23463: targets/cgi/parser3.C: exec win32 env
23464:
23465: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
23466: 0
23467:
23468: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
23469: main/execute.C, main/main.dsp, main/pa_globals.C,
23470: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
23471: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
23472:
23473: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
23474: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
23475:
23476: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
23477: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
23478:
23479: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
23480: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
23481: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23482: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23483: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
23484: exec class just compiled. moved post read to request core
23485:
23486: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
23487: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
23488: main/pa_globals.C, targets/cgi/parser3.C,
23489: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
23490: are already read by vform
23491:
23492: 2001-04-08 paf
23493:
23494: * src/: classes/file.C, classes/mail.C, classes/string.C,
23495: include/pa_request.h, include/pa_string.h, main/pa_request.C:
23496: uuencode. string<<
23497:
23498: 2001-04-07 paf
23499:
23500: * src/classes/mail.C: z
23501:
23502: * src/classes/mail.C: z
23503:
23504: * src/classes/mail.C: ^mail[$attach
23505:
23506: * src/classes/mail.C: ^attach dead end
23507:
23508: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
23509: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23510: targets/isapi/parser3isapi.C: mail:send 1
23511:
23512: * src/: classes/mail.C, main/pa_request.C: z
23513:
23514: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
23515: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
23516: compiled
23517:
23518: * src/classes/mail.C: +=
23519:
23520: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
23521: prepared
23522:
23523: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
23524: include/pa_globals.h, include/pa_string.h, main/main.dsp,
23525: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23526: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
23527:
23528: 2001-04-06 paf
23529:
23530: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
23531: main/pa_string.C: table:dir 1
23532:
23533: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
23534: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
23535:
23536: * src/: classes/_op.h, classes/_root.h, classes/op.C,
23537: classes/root.C, include/pa_globals.h, include/pa_request.h,
23538: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
23539: main/pa_request.C: renamed 'root' to 'op'
23540:
23541: * src/classes/: _op.h, op.C: renamed from 'root'
23542:
23543: * src/types/pa_valiased.C: another root inherititance skipped
23544:
23545: * src/main/: compile.C, compile.y, execute.C: operators are now not
23546: root methods of parent class. just 'ROOT' class
23547:
23548: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
23549: @office
23550:
23551: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
23552:
23553: 2001-04-05 paf
23554:
23555: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
23556: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
23557: constructor flag dropped at get_method_frame and remembered into
23558: method_frame
23559:
23560: * src/: classes/file.C, classes/root.C, classes/string.C,
23561: classes/table.C, main/pa_request.C: junction to code&expression
23562: in errors
23563:
23564: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23565: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23566: $LOCALE:ctype[Russian_Russia.1251]
23567:
23568: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23569: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23570: main/pa_table.C: hash now not thread-safe.
23571:
23572: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23573: main/untaint.C: z
23574:
23575: * src/: classes/random.C, classes/root.C, classes/table.C,
23576: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23577: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23578: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23579: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23580:
23581: * src/: classes/table.C, include/pa_sql_connection.h,
23582: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23583:
23584: * src/classes/table.C: select * from hren error contains statement
23585:
23586: * src/: classes/table.C, include/pa_sql_connection.h,
23587: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23588: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23589:
23590: * src/: classes/root.C, include/pa_sql_connection.h,
23591: include/pa_sql_driver.h, main/main.dsp,
23592: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23593: services for conv memory & error reporting
23594:
23595: 2001-04-04 paf
23596:
23597: * src/doc/doxygen.cfg: z
23598:
23599: * src/include/pa_sql_driver.h: mysql connect
23600:
23601: * src/include/pa_sql_driver.h: mysql info
23602:
23603: * src/: classes/root.C, include/pa_sql_driver.h,
23604: include/pa_sql_driver_manager.h, main/main.dsp,
23605: main/pa_sql_driver_manager.C: more manager&connection&driver
23606:
23607: * src/sql/Makefile.am: forgot to add mysql client
23608:
23609: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23610: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23611: [forgot to add libltdl, added]
23612:
23613: * src/: Makefile.am, classes/root.C, classes/string.C,
23614: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23615: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23616: include/pa_string.h, include/pa_table.h, main/main.dsp,
23617: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23618: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23619: -1000 just compiled
23620:
23621: * src/: classes/random.C, classes/root.C, classes/table.C,
23622: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23623: main/pa_request.C, types/pa_vclass.h: sql frame -10
23624:
23625: 2001-04-03 paf
23626:
23627: * src/types/pa_vform.C: z
23628:
23629: * src/: classes/string.C, types/pa_vform.C: string:match replace
23630: assigned lang
23631:
23632: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23633: {}[]< empty []
23634:
23635: * src/: classes/file.C, classes/string.C, classes/table.C,
23636: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23637: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23638:
23639: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23640: string:match replace strange matches
23641:
23642: * src/classes/string.C: string:match replace 0
23643:
23644: * src/: classes/string.C, main/pa_string.C: string:match replace
23645: prepared 2
23646:
23647: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23648: string:match replace prepared
23649:
23650: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23651: string:match replace -11
23652:
23653: * src/: classes/string.C, include/pa_globals.h,
23654: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23655: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23656:
23657: * src/: classes/string.C, include/pa_globals.h,
23658: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23659: main/pa_string.C: string:match [search] -1 just compiled
23660:
23661: * src/types/pa_vstring.C: z
23662:
23663: * src/: classes/double.C, classes/file.C, classes/form.C,
23664: classes/int.C, classes/response.C, classes/root.C,
23665: classes/string.C, classes/table.C, include/pa_string.h,
23666: main/pa_string.C: string:match -10 [frame]
23667:
23668: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
23669: main/pa_request.C: z
23670:
23671: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
23672: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
23673: todo/tests
23674:
23675: * src/include/pa_common.h: z
23676:
23677: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
23678: main/pa_request.C, targets/cgi/parser3.C,
23679: targets/isapi/parser3isapi.C, types/pa_vfile.C:
23680: content-disposition
23681:
23682: * src/: include/pa_common.h, include/pa_globals.h,
23683: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23684: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
23685:
23686: * src/: include/pa_common.h, include/pa_request.h,
23687: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
23688: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23689: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
23690: response:body
23691:
23692: * src/classes/table.C: table:append now uses string::split
23693:
23694: * src/classes/table.C: z
23695:
23696: * src/: classes/file.C, classes/root.C, classes/string.C,
23697: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
23698: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
23699: include/pa_string.h, main/execute.C, main/pa_string.C,
23700: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
23701: string::pos & cmp & piece bugs fixed. string::split new
23702: table:load separated from set table:set implemented with clean \n
23703: \t searches
23704:
23705: 2001-04-02 paf
23706:
23707: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23708: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
23709: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23710: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
23711: it in table:set/load
23712:
23713: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
23714: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
23715:
23716: * src/classes/random.C: random:generate 1
23717:
23718: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
23719: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23720: types/pa_value.h: random:generate
23721:
23722: 2001-03-30 paf
23723:
23724: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
23725: todo: table flip and append. string::pos
23726:
23727: * src/: classes/double.C, classes/file.C, classes/int.C,
23728: classes/response.C, classes/root.C, classes/string.C,
23729: classes/table.C, main/compile.y, main/execute.C,
23730: types/pa_value.h, types/pa_vstateless_class.C,
23731: types/pa_vstateless_class.h: static|dynamic|any method
23732: registration
23733:
23734: * src/: classes/file.C, classes/table.C, include/pa_table.h,
23735: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
23736: table:flip
23737:
23738: 2001-03-29 paf
23739:
23740: * src/classes/string.C: string:xsplit forgot that they must result
23741: in 1 row N column [not vice versa]
23742:
23743: * src/classes/string.C: z
23744:
23745: * src/classes/string.C: string: rsplit
23746:
23747: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23748: string: lsplit
23749:
23750: * src/: classes/string.C, include/pa_string.h, main/execute.C,
23751: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
23752: lsplit -1
23753:
23754: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
23755: string: pos
23756:
23757: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23758: string: pos -1
23759:
23760: * src/: classes/string.C, classes/table.C, include/pa_string.h,
23761: main/compile.y, main/pa_request.C, main/pa_string.C,
23762: main/untaint.C: string: left right mid
23763:
23764: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
23765: main/compile_tools.h, main/main.dsp, types/pa_value.h,
23766: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
23767: and [;] are different now.
23768:
23769: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23770: main/untaint.C: pool.request undone
23771:
23772: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23773: main/untaint.C: pool.request
23774:
23775: 2001-03-28 paf
23776:
23777: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23778: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23779: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
23780: $request:browser [.type .version]; unknown.get_double now = 0.
23781:
23782: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23783: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
23784: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
23785: types/pa_vform.C: file:load autodetection of mime-type by
23786: user-file-name
23787:
23788: * src/: classes/file.C, main/execute.C, main/pa_common.C,
23789: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
23790: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
23791:
23792: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23793: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
23794: write. must be self.set
23795:
23796: * src/: classes/file.C, classes/root.C, classes/table.C,
23797: include/pa_table.h, main/pa_table.C: table:locate1, file:test
23798:
23799: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
23800: include/pa_table.h, main/pa_array.C, main/pa_table.C,
23801: types/pa_vtable.h: table:locate just compiled
23802:
23803: 2001-03-27 paf
23804:
23805: * src/main/: execute.C, pa_common.C: fixed r/w context of
23806: code-params2, fixed ntfs hardlink slow dir update
23807:
23808: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
23809: types/pa_wcontext.h: fixed r/w context of code-params
23810:
23811: * src/: classes/table.C, main/execute.C: about to change junction
23812: rcontext!!
23813:
23814: * src/: classes/double.C, classes/int.C, classes/root.C,
23815: classes/string.C, classes/table.C, main/compile_tools.C,
23816: main/execute.C, main/pa_request.C, main/untaint.C,
23817: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
23818: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23819: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
23820: types/pa_vunknown.h: sort 0
23821:
23822: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
23823: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
23824: renamed to are_static_calls_disabled
23825:
23826: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
23827: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
23828: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23829: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
23830:
23831: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
23832:
23833: * src/: classes/table.C, include/pa_common.h, main/compile.y:
23834: started table:sort fixed minor bug in #...^{
23835:
23836: * src/: classes/table.C, include/pa_common.h, main/compile.y,
23837: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
23838: decided to have as it were. stepped back. grammar: added 'in'
23839: 'is' 'lt'&co follow-space check
23840:
23841: 2001-03-26 paf
23842:
23843: * src/: classes/file.C, classes/root.C, classes/table.C,
23844: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
23845: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23846: main/pa_table.C: moved ::save to pa_table. disabled @auto
23847: invocation in ^process
23848:
23849: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
23850:
23851: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
23852: main/pa_array.C: table:record
23853:
23854: * src/: main/untaint.C, targets/cgi/parser3.C,
23855: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23856: targets/isapi/pool_storage.h, types/pa_valiased.h,
23857: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
23858: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
23859: types/pa_vtable.h: z
23860:
23861: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
23862: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
23863: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23864: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
23865: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
23866: method realisations on 'self' validity - they now can simply
23867: assume that 'self' is V{Proper} .
23868:
23869: 2001-03-25 paf
23870:
23871: * src/main/untaint.C: z
23872:
23873: * src/main/: pa_request.C, untaint.C: moved default typo-table to
23874: lowlevel - it initialization could be skipped if failed in @auto.
23875: so that exception report would use some table
23876:
23877: * src/main/pa_request.C: table empty lines ignored. system-default
23878: content type assigned in output:result [can fail in main:auto and
23879: skipped normal defaults extraction]
23880:
23881: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
23882: bug
23883:
23884: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
23885: processing to table [except preliminary \r\n \r \n replacements
23886: to "\n"]
23887:
23888: * src/: classes/table.C, main/untaint.C: html-typo - decided to
23889: move all the processing to table
23890:
23891: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
23892: main/pa_table.C, main/untaint.C: returned table originating.
23893: useful for reporting typo table problems origin. think would be
23894: useful somewhere else
23895:
23896: * src/main/untaint.C: typo \r \r\n \n properly handled
23897:
23898: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
23899: include/pa_table.h, main/compile.y, main/compile_tools.C,
23900: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
23901: main/pa_string.C, main/pa_table.C, main/untaint.C,
23902: types/pa_vcookie.h: typo & typo-default
23903:
23904: 2001-03-24 paf
23905:
23906: * src/main/pa_common.C: z
23907:
23908: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
23909: targets/cgi/parser3.C: html-typo 2
23910:
23911: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
23912: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
23913: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
23914: main/execute.C, main/pa_array.C, main/pa_globals.C,
23915: main/pa_request.C, main/pa_string.C, main/untaint.C,
23916: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23917: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
23918: noticed double default content-type prob. run cgi.cmd tomorrow
23919: first html-typo sample. detected << problem: they become ltlt too
23920: fast
23921:
23922: * src/main/compile.y: z
23923:
23924: * src/main/: compile.y, compile_tools.h: #comment
23925:
23926: * src/: classes/file.C, classes/root.C, classes/table.C,
23927: include/pa_common.h, include/pa_request.h, main/compile.y,
23928: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23929: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
23930: stringified
23931:
23932: * src/types/pa_valiased.C: decided to String-ify file_read
23933:
23934: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
23935: isapi/parser3isapi.dsp: cgi: sapi::log
23936:
23937: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
23938: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
23939: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
23940: error log experiments failed - cgi under iis got no access to
23941: log. registereventsource simply failed with 5(illegal call) code,
23942: while worked OK as standalone executable. isapi: used
23943: HSE_APPEND_LOG_PARAMETER feature
23944:
23945: * src/: include/pa_common.h, include/pa_globals.h,
23946: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23947: targets/isapi/parser3isapi.C: fixed default content-type
23948: allocation storage
23949:
23950: * src/: include/pa_globals.h, include/pa_request.h,
23951: main/pa_globals.C, main/pa_request.C: z
23952:
23953: * src/: include/pa_array.h, include/pa_hash.h,
23954: include/pa_request.h, main/compile.y, main/pa_array.C,
23955: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23956: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23957: content-type
23958:
23959: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23960: sanity
23961:
23962: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23963: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23964: away freeze mech. no danger now for you can't do
23965: ^request:process[@new-method[] body] trick anymore. still
23966: remains $some_instance.process[@new-method[] possibility] but
23967: would leave it as a feature. see index for sample
23968:
23969: * src/: include/pa_common.h, main/pa_common.C,
23970: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23971: monkey every target
23972:
23973: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23974: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23975: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23976:
23977: 2001-03-23 paf
23978:
23979: * src/: include/pa_pool.h, main/pa_request.C,
23980: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23981: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23982: targets/isapi/pool_storage.h: isapi: dumb pool storage
23983:
23984: * src/targets/isapi/pa_pool.C: decided to continue with extension
23985:
23986: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23987: it would be better to rewrite as filter then to deal with pool
23988:
23989: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23990: now like in cgi, not from APPL_PHYSICAL_PATH
23991:
23992: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23993: include/pa_config_fixed.h, include/pa_config_includes.h,
23994: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23995: include/pa_version.h, main/compile.y, main/execute.C,
23996: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23997: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23998: main/untaint.C, targets/cgi/parser3.C,
23999: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
24000: cgi: reinvent document_root and request_uri under iis. autoconf
24001: updated. introducing ap_config_includes
24002:
24003: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
24004:
24005: * src/targets/cgi/parser3.C: cgi: only one pool now
24006:
24007: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
24008: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24009: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24010: types/pa_venv.h, types/pa_vform.C: sapi made object
24011:
24012: * src/: include/pa_globals.h, main/pa_request.C,
24013: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24014: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24015: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
24016:
24017: * src/: main/pa_request.C, targets/cgi/parser3.C,
24018: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24019: isapi minor env beauty
24020:
24021: * src/: main/pa_request.C, targets/cgi/parser3.C,
24022: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24023: isapi document_root 0
24024:
24025: 2001-03-22 paf
24026:
24027: * src/targets/isapi/parser3isapi.C: isapi keep-alive
24028:
24029: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
24030: isapi/parser3isapi.C: z
24031:
24032: * src/: include/pa_pool.h, main/pa_request.C,
24033: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
24034:
24035: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
24036: kill.pl: isapi added utils
24037:
24038: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
24039: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24040: types/pa_vform.C: isapi 0
24041:
24042: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
24043: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24044: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
24045: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
24046: started isapi
24047:
24048: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
24049: some comments
24050:
24051: * src/: include/pa_globals.h, include/pa_request.h,
24052: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
24053: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
24054: parser_root_auto_path parser_site_auto_path
24055:
24056: * src/types/pa_vcookie.C: cookie attr decoded
24057:
24058: 2001-03-21 paf
24059:
24060: * src/targets/cgi/parser3.C: z
24061:
24062: * src/include/pa_globals.h: post. todo: config of auto.p path
24063:
24064: * src/: include/pa_globals.h, targets/cgi/parser3.C,
24065: types/pa_venv.h: in cookie & env. todo:post
24066:
24067: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
24068: classes/root.C, classes/table.C, include/pa_array.h,
24069: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
24070: include/pa_request.h, include/pa_string.h, main/Makefile.am,
24071: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
24072: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24073: main/pa_table.C, main/untaint.C, targets/Makefile.am,
24074: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24075: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
24076: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
24077: shifted apache branch on main trunc
24078:
24079: * src/: include/pa_common.h, include/pa_globals.h,
24080: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24081: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
24082: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
24083: starting mod_parser3
24084:
24085: * src/targets/cgi/parser3.C: starting mod_parser3
24086:
24087: 2001-03-20 paf
24088:
24089: * src/: main/pa_common.C, targets/cgi/Makefile.am,
24090: targets/cgi/parser3.C: automake compiled and works. todo:make
24091: win32 ifdefs work and add ifdef unistd
24092:
24093: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
24094: main/Makefile.am, main/pa_common.C, main/pa_request.C,
24095: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
24096: z
24097:
24098: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
24099: main/execute.C, main/pa_common.C, types/Makefile.am: removing
24100: locking
24101:
24102: * src/: classes/Makefile.am, types/Makefile.am: z
24103:
24104: * src/: Makefile.am, classes/file.C, classes/root.C,
24105: classes/table.C, include/pa_array.h, include/pa_request.h,
24106: include/pa_string.h, main/Makefile.am, main/execute.C,
24107: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24108: main/pa_string.C, main/untaint.C, targets/Makefile.am,
24109: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24110: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
24111:
24112: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
24113: main/pa_request.C, types/pa_vfile.h: ^table:save
24114:
24115: * src/: classes/file.C, classes/table.C, include/pa_array.h,
24116: include/pa_common.h, include/pa_request.h, include/pa_string.h,
24117: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
24118: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
24119: types/pa_vform.h: z
24120:
24121: * src/include/pa_string.h: z
24122:
24123: * src/: classes/_request.h, classes/request.C, main/main.dsp,
24124: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
24125: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24126: :Value
24127:
24128: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
24129: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24130: :VStateless_object
24131:
24132: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
24133: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
24134: :VStateless_object
24135:
24136: * src/: main/main.dsp, targets/cgi/parser3.dsp,
24137: types/pa_valiased.C, types/pa_vform.h: commented VForm
24138:
24139: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
24140: types/pa_valiased.h, types/pa_value.h,
24141: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
24142: types/pa_vstateless_object.h: moved common get_element part from
24143: stateless object&class into VAliased
24144:
24145: * src/: classes/_env.h, classes/_table.h, classes/env.C,
24146: classes/table.C, main/execute.C, main/main.dsp,
24147: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
24148: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
24149: now :Value
24150:
24151: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
24152: main/execute.C, main/main.dsp, main/pa_globals.C,
24153: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
24154:
24155: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
24156: doxx
24157:
24158: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
24159: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24160: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
24161: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
24162: and ^file:save
24163:
24164: 2001-03-19 paf
24165:
24166: * src/types/pa_vfile.C: z
24167:
24168: * src/: classes/file.C, classes/request.C, classes/table.C,
24169: include/pa_string.h, main/main.dsp, main/pa_pool.C,
24170: main/pa_request.C, main/untaint.C, types/pa_value.h,
24171: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
24172:
24173: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
24174: include/pa_string.h, include/pa_table.h, main/main.dsp,
24175: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
24176: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
24177: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
24178: classes/_file.h, classes/file.C, types/pa_vfile.C,
24179: types/pa_vfile.h: file class just compiled
24180:
24181: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
24182: include/pa_table.h, include/pa_types.h, main/execute.C,
24183: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
24184: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
24185: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
24186:
24187: * src/include/pa_pool.h: z
24188:
24189: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
24190: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
24191: Hash::Value to Val so to doxygen would finlly stop confusing
24192: those Value-s
24193:
24194: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
24195: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
24196: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24197: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24198: include/pa_types.h, main/compile.C, main/compile.y,
24199: main/compile_tools.C, main/compile_tools.h, main/execute.C,
24200: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
24201: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
24202: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24203: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
24204:
24205: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
24206: derivates somehow unlinked. don't know why yet
24207:
24208: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
24209: include/pa_string.h, include/pa_threads.h, main/compile.C,
24210: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24211: main/execute.C, main/pa_array.C, main/pa_common.C,
24212: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
24213: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24214: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
24215:
24216: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
24217: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
24218: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
24219: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
24220: types/pa_vrequest.h: doc: detected Value derivates prob
24221:
24222: * src/include/pa_globals.h: z
24223:
24224: * src/: classes/_request.h, classes/request.C, include/code.h,
24225: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
24226: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
24227: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
24228: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
24229: main/execute.C, main/pa_pool.C, main/pa_request.C,
24230: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24231: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
24232:
24233: 2001-03-18 paf
24234:
24235: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
24236: cookie: allowed access to hash-assigned
24237:
24238: * src/targets/cgi/parser3.C: z
24239:
24240: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
24241: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
24242: include/pa_types.h, main/main.dsp, main/pa_common.C,
24243: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24244: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24245: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
24246: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
24247: types/pa_vunknown.h: cookie class
24248:
24249: * src/main/pa_request.C: zero length output allowed
24250:
24251: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
24252: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
24253:
24254: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
24255: lang switch
24256:
24257: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
24258: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24259: types/pa_value.h, types/pa_vhash.h:
24260: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
24261:
24262: * src/main/execute.C: z
24263:
24264: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
24265: targets/cgi/parser3.C: taint[uri
24266:
24267: * src/: classes/request.C, classes/response.C, classes/root.C,
24268: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
24269: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
24270: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
24271:
24272: * src/: classes/root.C, classes/string.C, include/pa_string.h,
24273: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24274: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
24275: types/pa_vstateless_class.C: convinient string(pool, char *src,
24276: bool tainted) ctor
24277:
24278: * src/: include/pa_hash.h, include/pa_request.h,
24279: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
24280: main/pa_request.C, main/pa_string.C, main/untaint.C,
24281: targets/cgi/parser3.C: proper @exceptions params tainting
24282:
24283: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
24284: response fields to header
24285:
24286: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
24287: z
24288:
24289: * src/: classes/_response.h, classes/response.C,
24290: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
24291: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
24292: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24293: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
24294: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
24295: $response: 0 request::core exception rethrow
24296:
24297: 2001-03-16 paf
24298:
24299: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
24300: types/pa_vrequest.h: native method' class call with less params
24301: then needed error reporting
24302:
24303: * src/: classes/_request.h, classes/request.C,
24304: include/pa_globals.h, include/pa_request.h, main/execute.C,
24305: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24306: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
24307: types/pa_vrequest.h: $request : query :uri
24308:
24309: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
24310: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
24311: types/pa_wcontext.h: $result
24312:
24313: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
24314:
24315: * src/: classes/double.C, include/code.h, main/compile.y,
24316: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
24317: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
24318:
24319: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
24320: main/compile.y, main/execute.C, types/pa_value.h,
24321: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
24322: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
24323: wcontext conflict
24324:
24325: * src/: main/execute.C, types/pa_value.h,
24326: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
24327: $string.field
24328:
24329: 2001-03-15 paf
24330:
24331: * src/main/pa_request.C: news sample
24332:
24333: * src/: main/compile.y, main/execute.C, main/pa_request.C,
24334: targets/cgi/parser3.C, types/pa_vstring.h: @exception
24335:
24336: * src/main/: compile.y, execute.C: z
24337:
24338: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
24339: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
24340: pre pre works
24341:
24342: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24343: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
24344: fillfields just compiled
24345:
24346: 2001-03-14 paf
24347:
24348: * src/: include/pa_request.h, main/pa_request.C,
24349: targets/cgi/parser3.C: z
24350:
24351: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24352: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24353: types/pa_vstring.h: limits -1
24354:
24355: * src/: include/pa_globals.h, include/pa_request.h,
24356: include/pa_types.h, main/main.dsp, main/pa_globals.C,
24357: main/pa_request.C, targets/cgi/parser3.C,
24358: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
24359: request_info -1
24360:
24361: * src/: include/pa_globals.h, main/pa_globals.C,
24362: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24363: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
24364: vform_fields_fill
24365:
24366: * src/targets/cgi/parser3.C: # if MSVC
24367:
24368: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
24369: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
24370:
24371: * src/targets/cgi/parser3.C: z
24372:
24373: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
24374: include/pa_string.h, include/pa_types.h, main/compile.y,
24375: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
24376: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
24377: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
24378: types/pa_vunknown.h: global handler, exceptions in parser3
24379:
24380: 2001-03-13 paf
24381:
24382: * src/: classes/form.C, main/compile.y, main/core.C,
24383: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
24384: types/pa_vform.h, types/pa_vstateless_class.C,
24385: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
24386: instead
24387:
24388: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24389: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
24390: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
24391: started cgi target
24392:
24393: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24394: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
24395: before error show with parser
24396:
24397: * src/: classes/_form.h, classes/form.C, include/core.h,
24398: include/pa_request.h, main/core.C, main/pa_request.C,
24399: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
24400:
24401: * src/targets/cgi/: parser.dsp, parser3.dsp: z
24402:
24403: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
24404: parser3.C: renamed targets/ parser to cgi
24405:
24406: * src/: classes/double.C, classes/env.C, classes/int.C,
24407: classes/root.C, classes/string.C, classes/table.C,
24408: include/pa_request.h, types/pa_vhash.h: z
24409:
24410: * src/: classes/_env.h, classes/env.C, classes/root.C,
24411: include/core.h, include/pa_pool.h, include/pa_request.h,
24412: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
24413: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24414: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
24415: [historical moment :)]
24416:
24417: * src/: include/code.h, include/pa_string.h, main/compile.y,
24418: main/execute.C, main/pa_string.C: 'value is type' expr operator
24419:
24420: * src/types/pa_venv.h: $ENV 1
24421:
24422: * src/main/execute.C: z
24423:
24424: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
24425: future methods of ENV constructor if
24426:
24427: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
24428: class
24429:
24430: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24431: classes/_root.h, classes/_string.h, classes/_table.h,
24432: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24433: classes/string.C, classes/table.C, include/pa_request.h,
24434: main/compile.C, main/compile_tools.h, main/core.C,
24435: main/execute.C, main/main.dsp, main/pa_request.C,
24436: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24437: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24438: types/pa_vobject.h, types/pa_vstateless_class.C,
24439: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24440: types/pa_wcontext.h: $ENV: re 0, stateless classes
24441:
24442: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24443: classes/_root.h, classes/_string.h, classes/_table.h,
24444: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24445: classes/string.C, classes/table.C, include/pa_request.h,
24446: main/compile.C, main/compile_tools.h, main/core.C,
24447: main/execute.C, main/main.dsp, main/pa_request.C,
24448: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24449: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24450: types/pa_vobject.h, types/pa_vstateless_class.C,
24451: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24452: types/pa_wcontext.h: $ENV: re 0, stateless classes
24453:
24454: * src/: include/pa_request.h, main/compile.C, main/execute.C,
24455: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
24456: yesterdays bad decision on execute_static_method
24457:
24458: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
24459:
24460: * src/: classes/double.C, classes/int.C, classes/root.C,
24461: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
24462:
24463: * src/main/pa_request.C: z
24464:
24465: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24466: include/pa_pool.h: skipped_restructure_exceptions_dead_end
24467:
24468: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24469: include/pa_pool.h, main/pa_request.C:
24470: restructure_exceptions_dead_end
24471:
24472: * src/: classes/root.C, main/compile.y: ^if required junctions.
24473: allowed ; inside {} to break params
24474:
24475: * src/classes/root.C: ^eval
24476:
24477: * src/: classes/_string.h, classes/double.C, classes/int.C,
24478: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
24479: string ^format
24480:
24481: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
24482: 'bad' but not 'enough'
24483:
24484: * src/: classes/double.C, classes/root.C, classes/table.C,
24485: include/pa_common.h, include/pa_types.h, main/compile.y,
24486: main/pa_common.C, main/pa_request.C, main/untaint.C,
24487: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
24488: types/pa_wwrapper.h: think constructing flag as is is bad
24489:
24490: * src/: classes/double.C, classes/int.C, classes/root.C,
24491: classes/string.C, classes/table.C, main/core.C, main/execute.C,
24492: types/pa_vint.h: ^for
24493:
24494: 2001-03-12 paf
24495:
24496: * src/classes/table.C: table ^empty
24497:
24498: * src/: classes/table.C, include/pa_table.h: table ^menu
24499:
24500: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
24501: ^offset ^line ^count
24502:
24503: * src/classes/root.C: ^round() ^floor() ^ceiling()
24504: ^abs() ^sign()
24505:
24506: * src/classes/: root.C, table.C: ^use
24507:
24508: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24509: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
24510: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
24511: ^while. switched off wcontext.constructing after write(value) or
24512: auto-vhash-constructing
24513:
24514: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24515: main/pa_request.C: fail_if_junction_ helper func
24516:
24517: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24518: include/pa_request.h, main/execute.C, main/main.dsp,
24519: main/pa_common.C, main/pa_request.C: ^process error point by
24520: actual method_name, not source. ^load
24521:
24522: * src/types/pa_vtable.h: table: no, better with string in cells...
24523:
24524: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
24525: classes/_table.h, classes/table.C, main/untaint.C: z
24526:
24527: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
24528: include/pa_table.h, main/core.C, main/execute.C,
24529: main/pa_common.C, main/pa_request.C, main/pa_table.C,
24530: types/pa_value.h: table:set 0
24531:
24532: * src/: classes/root.C, include/core.h, include/pa_array.h,
24533: include/pa_request.h, include/pa_table.h, main/core.C,
24534: main/main.dsp, main/pa_request.C, main/pa_table.C,
24535: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
24536: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
24537: types/pa_vstring.h: freeze, ^table:create[] -1
24538:
24539: * src/: classes/root.C, types/pa_value.h: z
24540:
24541: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
24542: get_method in couple places optimizing them
24543:
24544: * src/classes/root.C: z
24545:
24546: * src/: classes/root.C, types/pa_vclass.h: process temp main
24547: zeroing
24548:
24549: * src/: classes/double.C, classes/int.C, classes/root.C,
24550: classes/string.C, include/pa_common.h, include/pa_request.h,
24551: include/pa_string.h, include/pa_types.h, main/compile.C,
24552: main/compile.y, main/compile_tools.h, main/execute.C,
24553: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24554: types/pa_vmframe.h: ^process. actual names to store param and
24555: check_actual_numbered_params for better place diagnostics
24556:
24557: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
24558: method-junctions bug fixed
24559:
24560: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
24561: pa_vstateless_object.h, pa_vstring.h: stateless_object
24562:
24563: 2001-03-11 paf
24564:
24565: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24566: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24567: VDouble VInt base now VObject_base - without fields
24568:
24569: * src/: classes/root.C, include/core.h, main/core.C: z
24570:
24571: * src/: classes/double.C, classes/int.C, classes/root.C,
24572: classes/string.C, include/core.h, include/pa_hash.h,
24573: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24574: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24575:
24576: * src/: classes/double.C, classes/int.C, classes/root.C,
24577: include/pa_request.h, main/execute.C: intercept_string
24578:
24579: * src/: classes/double.C, classes/int.C, classes/root.C,
24580: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24581:
24582: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24583: ^inc-s(expr)
24584:
24585: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24586: classes/_root.h, classes/_string.h, classes/double.C,
24587: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24588: include/code.h, include/core.h, include/pa_array.h,
24589: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24590: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24591: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24592: include/pa_types.h, main/compile.C, main/compile.y,
24593: main/compile_tools.C, main/compile_tools.h, main/core.C,
24594: main/execute.C, main/pa_array.C, main/pa_common.C,
24595: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24596: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24597: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24598: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24599: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24600: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24601: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24602: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24603:
24604: * src/: main/pa_request.C, types/pa_vhash.h: z
24605:
24606: * src/: include/core.h, include/pa_request.h, main/core.C,
24607: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24608:
24609: * src/: include/pa_valiased.h, include/pa_value.h,
24610: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24611: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24612: include/pa_vjunction.h, include/pa_vmframe.h,
24613: include/pa_vobject.h, include/pa_vstring.h,
24614: include/pa_vunknown.h, include/pa_wcontext.h,
24615: include/pa_wwrapper.h, main/compile.y, main/core.C,
24616: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24617: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24618: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24619: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24620: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24621: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24622: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24623: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24624: include/
24625:
24626: 2001-03-10 paf
24627:
24628: * src/: include/core.h, include/pa_request.h, main/core.C,
24629: main/pa_request.C: run+auto=run
24630:
24631: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24632:
24633: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24634: classes/_root.h, classes/_string.h, classes/double.C,
24635: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24636: include/code.h, include/core.h, include/pa_array.h,
24637: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24638: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24639: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24640: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24641: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24642: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24643: include/pa_vjunction.h, include/pa_vmframe.h,
24644: include/pa_vobject.h, include/pa_vstring.h,
24645: include/pa_vunknown.h, include/pa_wcontext.h,
24646: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24647: main/compile_tools.C, main/compile_tools.h, main/core.C,
24648: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24649: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24650: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24651: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24652: main/pa_wcontext.C: sources header
24653:
24654: * src/main/pa_request.C: auto..
24655:
24656: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24657: main/pa_request.C: auto tree0
24658:
24659: * src/: include/core.h, include/pa_request.h, main/compile.y,
24660: main/core.C, main/pa_request.C: names to core.C
24661:
24662: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24663: include/pa_request.h, main/core.C, main/execute.C,
24664: main/pa_common.C, main/pa_request.C: root auto.p loaded
24665:
24666: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
24667: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
24668: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24669: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
24670:
24671: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
24672: @auto[] realised. auto.p scan togo
24673:
24674: * src/: include/pa_request.h, main/execute.C: autocalc
24675: code-junctions result now have names
24676:
24677: * src/: classes/double.C, classes/int.C, classes/root.C,
24678: classes/string.C, include/pa_request.h, include/pa_string.h,
24679: include/pa_wcontext.h, main/compile.y, main/execute.C,
24680: main/pa_string.C, main/pa_wcontext.C: tainting 0
24681:
24682: * src/classes/env.C: env:file/line
24683:
24684: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
24685: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
24686: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
24687: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
24688: main/compile_tools.C, main/compile_tools.h, main/core.C,
24689: main/execute.C, main/main.dsp, main/pa_cframe.C,
24690: main/pa_request.C, main/pa_wcontext.C: const fight finished
24691:
24692: * src/include/pa_vclass.h: const fight to go
24693:
24694: * src/: classes/_env.h, classes/env.C, classes/root.C,
24695: include/pa_request.h, include/pa_vclass.h, main/core.C,
24696: main/main.dsp: env0
24697:
24698: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
24699: classes/_string.h, classes/double.C, classes/int.C,
24700: classes/root.C, classes/string.C, include/pa_request.h,
24701: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
24702: include/pa_wcontext.h, main/core.C, main/main.dsp,
24703: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
24704: main/pa_wcontext.C: ^lang prepare0
24705:
24706: 2001-03-09 paf
24707:
24708: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
24709: construct proper naming
24710:
24711: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
24712: classes/double.C, classes/int.C, classes/root.C,
24713: classes/string.C, include/code.h, include/pa_value.h,
24714: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
24715: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24716: main/compile.y, main/compile_tools.C, main/core.C,
24717: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
24718: and ^double[]. fixed expr type
24719:
24720: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24721: ^string.length[]
24722:
24723: 2001-03-08 paf
24724:
24725: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
24726:
24727: * src/: include/pa_vclass.h, include/pa_vstring.h,
24728: include/pa_wcontext.h, main/compile.y, main/core.C,
24729: main/execute.C, main/main.dsp: dead end: vstring can't be
24730: derivated from vobject
24731:
24732: * src/: include/pa_vclass.h, include/pa_vhash.h,
24733: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
24734:
24735: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
24736: remained clone conseqs
24737:
24738: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
24739:
24740: * src/main/pa_vclass.C: wow! vclass were out of vcs
24741:
24742: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
24743: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
24744: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
24745: include/pa_vobject.h, include/pa_vstring.h,
24746: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24747: main/execute.C: withoud cloning. didn't need it actually, params
24748: got passed from out unnamed ewpool
24749:
24750: * src/: include/pa_vdouble.h, include/pa_vhash.h,
24751: include/pa_vjunction.h, include/pa_vobject.h,
24752: include/pa_vunknown.h, main/compile.y: cloning dead end
24753:
24754: * src/: include/pa_bool.h, include/pa_double.h,
24755: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
24756: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
24757: include/pa_vjunction.h, include/pa_vmframe.h,
24758: include/pa_vobject.h, include/pa_vstring.h,
24759: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24760: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
24761: to give params proper names
24762:
24763: * src/main/pa_wcontext.C: z
24764:
24765: * src/: include/pa_vmframe.h, main/execute.C: added names to
24766: unknown values in get_element and unfilled params. removed wrong
24767: name change in get_element
24768:
24769: * src/main/execute.C: z
24770:
24771: * src/main/execute.C: fixed problems calling operators in
24772: constructors
24773:
24774: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
24775: detected problems calling operators in constructors
24776:
24777: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24778: autocalc def to string
24779:
24780: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
24781: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
24782:
24783: * src/classes/root.C: added root.c
24784:
24785: * src/: include/pa_request.h, include/pa_value.h,
24786: include/pa_vcframe.h, include/pa_vmframe.h,
24787: include/pa_wcontext.h, main/compile.C, main/compile.y,
24788: main/core.C, main/execute.C, main/pa_cframe.C,
24789: main/pa_wcontext.C: 'if' just compiled
24790:
24791: * src/: include/pa_vbool.h, include/pa_vdouble.h,
24792: include/pa_vjunction.h, include/pa_vmframe.h,
24793: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
24794: main/pa_wcontext.C: z
24795:
24796: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
24797: main/core.C, main/execute.C, main/main.dsp: z. detected probs
24798: with parameter names in operator methods
24799:
24800: * src/main/compile.y: minor renamings in .y
24801:
24802: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24803: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
24804: @BASE. changed 'RUN' assignment mech
24805:
24806: * src/main/execute.C: z
24807:
24808: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24809: main/compile_tools.h, main/execute.C: made class: dynamic, not
24810: static. so to enable runtime ^use
24811:
24812: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
24813:
24814: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24815: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
24816:
24817: * src/main/execute.C: root root in code-junction
24818:
24819: 2001-03-07 paf
24820:
24821: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
24822: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
24823:
24824: * src/: include/pa_stack.h, include/pa_value.h,
24825: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
24826: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
24827: fixed rwcontext of {} params up
24828:
24829: * src/main/: compile.y, compile_tools.h: ^func(params)
24830:
24831: * src/main/compile.y: .y priorities syntax shaped up a bit
24832:
24833: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
24834: include/pa_vunknown.h, main/compile.y, main/execute.C,
24835: main/pa_hash.C: expr def in -f
24836:
24837: * src/main/: compile.y, execute.C: expr calls
24838:
24839: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
24840: fixed
24841:
24842: * src/main/compile.y: expr quoted code
24843:
24844: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
24845: support0
24846:
24847: * src/main/compile.y: expr string comparisons 0
24848:
24849: * src/: include/pa_string.h, main/compile.y, main/execute.C,
24850: main/pa_string.C: just compiled lt&co
24851:
24852: * src/main/execute.C: ^var.menu{$field} problem detected. that
24853: $field not a $var.field
24854:
24855: 2001-03-06 paf
24856:
24857: * src/main/compile.y: .y expr visible-shorter
24858:
24859: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
24860: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
24861: logical
24862:
24863: * src/: include/pa_vstring.h, main/compile.y: problems with
24864: skipping whitespace in yylex
24865:
24866: * src/include/pa_vbool.h: forgot this
24867:
24868: * src/: include/code.h, main/compile.y, main/execute.C: without
24869: string ops in expressions 0
24870:
24871: * src/: include/pa_value.h, include/pa_vdouble.h,
24872: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
24873: main/execute.C, main/main.dsp: !~
24874:
24875: * src/: include/pa_vcframe.h, include/pa_vclass.h,
24876: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
24877: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24878: include/pa_vunknown.h, include/pa_wcontext.h,
24879: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24880: main/compile_tools.h, main/execute.C: +-*/
24881:
24882: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
24883: main/compile_tools.h: grammar-1.1 $a(z) $a=0
24884:
24885: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
24886: main/execute.C: expr grammar-1 2*2=4.000000 :)
24887:
24888: * src/main/compile.y: expr grammar-1
24889:
24890: * src/main/compile.y: expr lexx1
24891:
24892: * src/main/: compile.y, execute.C, main.dsp: z
24893:
24894: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
24895: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
24896: main/execute.C: expr lex0 exec-1
24897:
24898: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
24899:
24900: 2001-02-26 paf
24901:
24902: * src/main/compile.y: max_string in yyerror bug fix
24903:
24904: 2001-02-25 paf
24905:
24906: * src/: include/pa_value.h, include/pa_vmframe.h,
24907: include/pa_wcontext.h, main/execute.C: VAliased3
24908:
24909: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
24910:
24911: * src/main/execute.C: VAliased1
24912:
24913: * src/: include/pa_request.h, include/pa_value.h,
24914: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
24915: VAliased0
24916:
24917: * src/: include/pa_pool.h, include/pa_request.h,
24918: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
24919: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
24920: VAliased just compiled
24921:
24922: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
24923: include/pa_vobject.h, main/execute.C: alias dead end
24924:
24925: * src/: include/pa_value.h, include/pa_vclass.h,
24926: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24927: main/main.dsp: no not get fields into interm VFielded class.
24928: fields & staticfields 1
24929:
24930: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
24931: include/pa_vobject.h, include/pa_wcontext.h,
24932: include/pa_wwrapper.h, main/core.C, main/execute.C,
24933: main/main.dsp: would now get fields into interm VFielded class
24934:
24935: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24936: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24937: include/pa_wcontext.h, main/compile.y, main/core.C,
24938: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
24939: main/pa_wcontext.C: virtuals2
24940:
24941: * src/main/compile.y: : 1
24942:
24943: * src/main/compile.y: rethought to $class:static.field.subfield
24944:
24945: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24946: $class:element
24947:
24948: * src/: include/pa_value.h, include/pa_vmframe.h,
24949: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24950: main/pa_wcontext.C: before execute class calls rewrite
24951:
24952: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24953: name RUN, also alias
24954:
24955: * src/main/compile.y: escaping bug
24956:
24957: * src/: include/pa_request.h, include/pa_value.h,
24958: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24959: main/core.C, main/execute.C, main/pa_common.C: vobject1
24960:
24961: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24962: include/pa_vmframe.h, include/pa_vobject.h,
24963: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24964: main/compile_tools.h, main/execute.C: ^class:method() just
24965: compiled
24966:
24967: 2001-02-24 paf
24968:
24969: * src/main/main.dsp: no bison -d
24970:
24971: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24972: class' err msg wrong
24973:
24974: * src/main/compile.y: z
24975:
24976: * src/main/: compile.y, core.C: yylex need some @special lines adj
24977:
24978: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24979: main/compile.y, main/compile_tools.h, main/core.C: modules0
24980:
24981: * src/: include/pa_vclass.h, main/core.C: z
24982:
24983: * src/: include/pa_value.h, include/pa_vclass.h,
24984: include/pa_vobject.h, main/main.dsp: vobject00
24985:
24986: * src/main/pa_array.C: minor bug in expanding very small arrays.
24987: 60% from 1 were 0
24988:
24989: * src/: include/pa_value.h, include/pa_wcontext.h,
24990: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24991: as bad as you've named it: wcontext.value() was not a perfect
24992: idea
24993:
24994: * src/main/execute.C: codeframe1
24995:
24996: * src/: include/pa_value.h, include/pa_vcframe.h,
24997: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24998: include/pa_vjunction.h, include/pa_vmframe.h,
24999: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
25000: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
25001: just compiled
25002:
25003: * src/: include/pa_vframe.h, main/compile.y: found junction
25004: ideology @: ^x{$a()) must construct current wcontext element, so
25005: smart wcontext handling needed
25006:
25007: * src/main/compile.y: fixed grammar bugs in constructor/params
25008: klinch
25009:
25010: * src/main/: compile.y, execute.C: fixed empty constructor
25011: optimized empty case. failed on calls - produced empty string
25012: param
25013:
25014: * src/main/compile.y: fixed last \n macrotemplate strip bug
25015:
25016: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
25017: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
25018: main/compile_tools.C, main/compile_tools.h, main/core.C,
25019: main/execute.C: code junctions0. something wrong with last \n
25020: macrotemplate strip
25021:
25022: * src/: include/pa_value.h, main/compile.C, main/core.C,
25023: main/pa_value.C: minor error reporting format beautifyings
25024:
25025: * src/: include/pa_value.h, include/pa_vclass.h,
25026: include/pa_vframe.h, main/core.C, main/execute.C,
25027: main/pa_value.C: get_method RIP. junctions everywhere. call with
25028: junctions0
25029:
25030: 2001-02-23 paf
25031:
25032: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
25033: pa_wwrapper.h: lara came, can't work, sorry :(
25034:
25035: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
25036: junction
25037:
25038: * src/: include/pa_vframe.h, include/pa_vunknown.h,
25039: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
25040: main/execute.C, main/main.dsp, main/pa_value.C: call0
25041:
25042: * src/: include/pa_hash.h, include/pa_value.h,
25043: include/pa_wcontext.h, main/core.C, main/execute.C,
25044: main/main.dsp, main/pa_hash.C: started call. store param, vframe
25045: done
25046:
25047: * src/include/pa_wcontext.h: z
25048:
25049: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
25050: wrong grammar in complex constructor case
25051:
25052: * src/main/: compile.y, execute.C: empty constructor bug fixed
25053:
25054: * src/main/execute.C: with result rwpool
25055:
25056: * src/: include/pa_value.h, main/core.C, main/execute.C,
25057: main/main.dsp: value named
25058:
25059: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
25060: strign 2 value in 2 places in execute
25061:
25062: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
25063: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
25064: wcontext.put_element when wcontext fvalue==0
25065:
25066: 2001-02-22 paf
25067:
25068: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
25069: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
25070: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
25071:
25072: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
25073: erroreos checkout
25074:
25075: * src/: include/pa_request.h, main/compile.y: $self.put(val)
25076:
25077: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
25078: main/compile_tools.h, main/pa_array.C: $self.get
25079:
25080: * src/main/: compile.C, compile.y, compile_tools.C: z
25081:
25082: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
25083: bit. finished now.
25084:
25085: * src/main/compile.y: $: finished
25086:
25087: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
25088:
25089: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
25090: main/execute.C: OP_STRING better then some xxx _VALUE
25091:
25092: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
25093: main/compile_tools.C, main/compile_tools.h, main/execute.C:
25094: string to vstring it .y all
25095:
25096: * src/: include/pa_request.h, include/pa_stack.h,
25097: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
25098: all
25099:
25100: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
25101: precise parse error line:col
25102:
25103: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
25104: main/pa_hash.C, main/pa_pool.C: TRY...
25105:
25106: * src/: include/pa_exception.h, include/pa_pool.h,
25107: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
25108: main/compile.C, main/compile.y, main/compile_tools.C,
25109: main/core.C, main/pa_array.C, main/pa_exception.C,
25110: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
25111: main/pa_table.C: removed exception from request
25112:
25113: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
25114: some forgotten
25115:
25116: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
25117: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
25118: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
25119: get/put simple vars to VClass works0
25120:
25121: * src/: include/pa_array.h, include/pa_wcontext.h,
25122: main/pa_string.C: in process, but found that exceptions are too
25123: global
25124:
25125: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
25126: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
25127: main/execute.C, main/pa_string.C: write_value write_string 0 it
25128: seems wcontext must write strings regardles of fvalue!=0
25129:
25130: 2001-02-21 paf
25131:
25132: * src/main/execute.C: tired :)
25133:
25134: * src/main/: compile.C, compile.y, execute.C: store0
25135:
25136: * src/: include/compile.h, include/execute.h, include/pa_array.h,
25137: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
25138: include/pa_wcontext.h, main/compile.C, main/compile.y,
25139: main/execute.C, main/main.dsp, main/pa_array.C,
25140: main/pa_request.C: get put -1 [just compiled]
25141:
25142: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
25143: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
25144: main/main.dsp, main/pa_request.C: request core methods0
25145:
25146: * src/: include/compile.h, include/pa_array.h, main/compile.C,
25147: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
25148: execute
25149:
25150: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
25151: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
25152: methods and one_big_piece. now compile returns array<method*>
25153:
25154: * src/main/compile.y: more straightforward yylex[end]
25155:
25156: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
25157: string.operator==(char*)
25158:
25159: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
25160: main/execute.C, main/pa_array.C: after array.const get wonders
25161:
25162: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
25163: pa_string.h, pa_value.h: struck with const array.gets
25164:
25165: * src/main/: execute.C: z
25166:
25167: * src/main/: compile.y, execute.C: z
25168:
25169: * src/main/: compile.C, compile.y, compile_tools.h: error
25170: processing in eval & yyerror so it wouldn't cause memleaks.
25171:
25172: * src/main/: compile.C, compile.y: failed to add absolute precies
25173: parse error positions. leaving RIGHTMOST position as
25174: @file[line:col]
25175:
25176: * src/: include/compile.h, main/compile.C, main/compile.y,
25177: main/compile_tools.h: line numbers needed. would add them to .y
25178: now internally. externally it's not as precise as needed
25179:
25180: * src/: include/code.h, include/pa_types.h, main/compile.C,
25181: main/compile.y, main/compile_tools.C, main/compile_tools.h,
25182: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
25183: compiler works ok
25184:
25185: 2001-02-20 paf
25186:
25187: * src/main/: compile.C, compile.y, compile_tools.C,
25188: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
25189: not perfect
25190:
25191: * src/: include/code.h, include/compile.h, include/execute.h,
25192: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
25193: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25194: main/compile.C, main/compile.y, main/compile_tools.C,
25195: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
25196: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
25197: main/pa_string.C, main/pa_table.C: bison[yacc] first time
25198: compiled. execute=dump for now
25199:
25200: * src/main/core.C: core rewrite using yacc investigations now will
25201: be compile[yacc]/execute[opcodes]
25202:
25203: 2001-02-15 paf
25204:
25205: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
25206: rewrite as turing machine? for it seems it would be it's too many
25207: ifs with this syntax now
25208:
25209: 2001-02-14 paf
25210:
25211: * src/main/core.C: get_params 1
25212:
25213: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
25214: :( ]
25215:
25216: * src/main/core.C: varios breaks
25217:
25218: * src/main/core.C: get names 3
25219:
25220: * src/main/core.C: get names 2
25221:
25222: * src/main/core.C: get names 1
25223:
25224: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
25225: names 0
25226:
25227: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
25228: text repassing2 operator static vars
25229:
25230: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
25231: main/pa_string.C: process text repassing
25232:
25233: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25234: module:calls changes
25235:
25236: 2001-02-13 paf
25237:
25238: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25239: ^class:calls[] started
25240:
25241: * src/: include/pa_value.h, main/core.C: z
25242:
25243: * src/main/core.C: operators : and self. prefixes
25244:
25245: * src/main/core.C: z
25246:
25247: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25248: tested
25249:
25250: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25251: optimized
25252:
25253: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
25254: would change privates to better support optimization
25255:
25256: * src/: include/pa_string.h, main/pa_string.C:
25257: String_iterator::skip_to todo:optimize
25258:
25259: 2001-02-12 paf
25260:
25261: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
25262: String_iterator
25263:
25264: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
25265: comments
25266:
25267: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
25268: self/methodref joined
25269:
25270: 2001-02-11 paf
25271:
25272: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
25273: main/main.dsp: core started. core.C, context&value .h
25274:
25275: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25276: include/pa_string.h, main/main.dsp, main/pa_array.C,
25277: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
25278:
25279: 2001-01-30 paf
25280:
25281: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
25282: comments
25283:
25284: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
25285: main/pa_pool.C: moved pa_pool.C to be target specific
25286:
25287: * src/: include/pa_exception.h, include/pa_pool.h,
25288: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
25289: to & changes
25290:
25291: * src/: include/pa_exception.h, include/pa_pool.h,
25292: include/pa_request.h, include/pa_table.h, main/pa_array.C,
25293: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
25294: re-associated. that's much better even removed 'die' necessety
25295:
25296: * src/: include/pa_error.h, include/pa_exception.h,
25297: include/pa_pool.h, include/pa_request.h, main/main.dsp,
25298: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
25299: targets/Makefile.am: lowered targets/parser into subdir, added
25300: parser_Pool(Pool) failed to add. would think..
25301:
25302: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
25303: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
25304: main/pa_string.C, main/pa_table.C: Table more like C++ style
25305: hence lots of 'const'
25306:
25307: * src/: include/pa_error.h, include/pa_request.h,
25308: include/pa_string.h, include/pa_table.h, main/pa_error.C,
25309: main/pa_table.C: Error fixed
25310:
25311: 2001-01-29 paf
25312:
25313: * src/: include/pa_array.h, include/pa_common.h,
25314: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
25315: include/pa_request.h, include/pa_string.h, include/pa_table.h,
25316: main/Makefile.am, main/pa_array.C, main/pa_common.C,
25317: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
25318:
25319: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25320: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25321: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
25322: main/pa_string.C, main/pa_table.C: Request Error Table
25323:
25324: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
25325: templates"
25326:
25327: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
25328: main/main.dsp, main/pa_array.C: templates failed no template
25329: specializations [VC6], no library auto instantation [VC6, GNU c++
25330: 2.95.2-6 from latest cygwin]
25331:
25332: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25333: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25334: main/main.dsp, main/pa_array.C, main/pa_string.C,
25335: main/pa_table.C: Table started would test template Array now
25336:
25337: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25338: String originating
25339:
25340: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
25341: main/pa_hash.C: made local Hash-es not thread safe=quicker by
25342: SYNCHRONIZED(thread_safe)
25343:
25344: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
25345: parts to top
25346:
25347: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25348: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25349: see: needed only in global Hash now, made Hash:: put/get
25350: SYNCHRONIZED
25351:
25352: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25353: main/pa_threads.C: added pa_threads
25354:
25355: Mutex
25356:
25357: * src/include/pa_hash.h: some comments
25358:
25359: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
25360: Array& operator += (Array& src)
25361:
25362: * src/main/pa_array.C: expand not convinient, would rewrite
25363:
25364: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
25365: (Array& src)
25366:
25367: rethought, would change now
25368:
25369: 2001-01-27 paf
25370:
25371: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
25372: caching
25373:
25374: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25375: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
25376: cache rethought to chunk caching
25377:
25378: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25379: include/pa_string.h, main/main.dsp, main/pa_array.C,
25380: main/pa_hash.C, main/pa_string.C: Array 0
25381:
25382: * src/main/pa_string.C: String::operator ==
25383:
25384: * src/main/pa_hash.C: String(&String)
25385:
25386: * src/main/pa_hash.C: added pa_hash.C [forgotten]
25387:
25388: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
25389: main/main.dsp, main/pa_string.C: uint, and added pa_types &
25390: pa_hash[forgotten]
25391:
25392: 2001-01-26 paf
25393:
25394: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25395: removed templates [vc++ suxx]
25396:
25397: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
25398: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
25399:
25400: * src/include/: pa_pool.h, pa_string.h: pa_pool split
25401:
1.119 moko 25402: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 25403:
1.119 moko 25404: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 25405: check
25406:
25407: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
25408: dynamic row_count
25409:
25410: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25411: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25412: targets/Makefile.am: Initial revision
25413:
25414: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25415: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25416: targets/Makefile.am: creating parser3 module
25417:
E-mail: