Annotation of parser3/ChangeLog, revision 1.203
1.203 ! moko 1: 2024-10-28 moko
! 2:
! 3: * tests/: 435.html, results/435.processed: tests for
! 4: ^hash.set[first|last;value], ^hash.set([-+]index)[value] and same
! 5: for array added (related to feature #1253)
! 6:
! 7: * src/classes/array.C: typo fixed
! 8:
! 9: * src/classes/: array.C, hash.C: ^hash.set[first|last;value] +
! 10: ^hash.set([-+]index)[value], and same for array added (implements
! 11: feature #1253)
! 12:
! 13: * tests/results/: 246.processed, 298.processed, 342.processed,
! 14: 389.processed, 397.processed, 430.processed, 432.processed: tests
! 15: results update after minor exceptions texts fixes
! 16:
! 17: 2024-10-27 moko
! 18:
! 19: * src/: classes/array.C, classes/hash.C, classes/math.C,
! 20: classes/reflection.C, classes/string.C, classes/table.C,
! 21: main/pa_string.C, types/pa_varray.h, types/pa_vfile.C,
! 22: types/pa_vmethod_frame.h: handy as_index() added, several
! 23: exceptions texts fixed (related to feature #930)
! 24:
! 25: * src/: classes/array.C, types/pa_varray.h: non-working
! 26: $array.fields removed, ^array.delete[index] supported (related to
! 27: feature #930)
! 28:
! 29: * tests/: 431.html, results/431.processed: tests updated after
! 30: ^a.delete[3] supported
! 31:
! 32: * tests/: 431.html, 434.html, results/434.processed: tests for last
! 33: element used, push/pop, exceptions during arguments processing
! 34: and used caching (related to feature #930)
! 35:
! 36: * src/: classes/array.C, types/pa_varray.h: change_used added for
! 37: better used caching and now no issues if exception occures during
! 38: append arguments processing (related to feature #930)
! 39:
! 40: * src/: classes/array.C, types/pa_varray.h: ^array.push[] /
! 41: ^array.pop[] added, last element is allways used (related to
! 42: feature #930)
! 43:
! 44: 2024-10-26 moko
! 45:
! 46: * src/: classes/array.C, include/pa_array.h, types/pa_varray.C,
! 47: types/pa_varray.h: confirm_all_used added where possible (related
! 48: to feature #930)
! 49:
! 50: * src/: classes/array.C, include/pa_array.h, types/pa_varray.h:
! 51: small array optimizations (related to feature #930)
! 52:
! 53: * src/types/pa_varray.h: DEBUG_ARRAY_USED added to simplify testing
! 54:
! 55: * tests/: 431.html, results/431.processed: test for
! 56: ^array.compact[undef] added
! 57:
! 58: * src/classes/array.C: ^array.compact[] now have optional 'undef'
! 59: argument to also compact undefined elements (related to feature
! 60: #930)
! 61:
! 62: 2024-10-24 moko
! 63:
! 64: * src/: classes/array.C, types/pa_varray.C, types/pa_varray.h:
! 65: VArray::hash is used rarery, no longer caching the result
! 66:
! 67: * tests/results/432.processed: testing removed from tests
! 68:
! 69: 2024-10-23 moko
! 70:
! 71: * tests/: 431.html, results/431.processed: ^array.compact[] test
! 72: added
! 73:
! 74: * src/: classes/array.C, types/pa_varray.h: ^array.compact[] added
! 75:
! 76: * tests/: 432.html, results/432.processed: testing ^array.at[] for
! 77: both "solid" and "sparse" arrays
! 78:
! 79: * src/classes/array.C: ^array.at[] speedup for "solid" arrays
! 80:
! 81: 2024-10-22 moko
! 82:
! 83: * tests/results/264.processed: spelling
! 84:
! 85: * src/classes/file.C: spelling
! 86:
! 87: * tests/: 264.html, cat-windows.sh, cat.sh, results/264.processed:
! 88: tests updated after ^file::exec[cmd;;$array] implemented and
! 89: empty arguments not skipped (related to feature #1252)
! 90:
! 91: * src/classes/file.C: ^file::exec[cmd;;$array] supported
! 92: (implements feature #1252) bugfix: empty arguments no longer
! 93: skipped
! 94:
1.202 moko 95: 2024-10-20 moko
96:
97: * src/classes/string.C: warnings war
98:
99: * src/: main/pa_string.C, classes/array.C: warnings war
100:
101: * src/classes/json.C: warnings war
102:
103: * src/classes/image.C: warnings war
104:
105: * src/: classes/table.C, types/pa_varray.C: warnings war
106:
107: * src/classes/array.C: warning war
108:
109: * src/: classes/classes.vcproj, types/types.vcproj: vcproj: +=array
110:
111: * src/main/main.vcproj: warnings war
112:
113: 2024-10-19 moko
114:
115: * tests/427.html: test updated after constructors renamed
116:
117: 2024-10-18 moko
118:
119: * tests/: 421.html, 430.html, 431.html, 432.html, 433.html,
120: results/421.processed, results/430.processed,
121: results/431.processed: test updated after constructors renamed
122:
123: * src/classes/array.C: create -> copy, new -> create according to
124: https://www.parser.ru/forum/?id=86603 discussion (related to
125: feature #930)
126:
127: 2024-10-16 moko
128:
129: * src/classes/json.C: $json:array[array or hash] added to provide
130: more backward compatibility (implements feature #1251)
131:
132: 2024-10-15 moko
133:
134: * tests/: 421.html, results/421.processed: test results updated
135: after missing constuctor error check added and array is_index
136: check added
137:
138: * src/main/execute.C: absent constructor message fixed
139:
1.201 moko 140: 2024-10-13 moko
141:
142: * src/types/pa_varray.h: ^array.$i[arg] is rare, thus checking i
143: with is_index() before calling index() for better error reporting
144: in method name typo (was invalid number, not method not found
145: exception).
146:
147: 2024-10-08 moko
148:
149: * src/types/pa_varray.C: Visual Studio compatibilty issues fixed
150:
151: * src/include/pa_array.h: warnings war
152:
1.200 moko 153: 2024-10-05 moko
154:
155: * src/classes/table.C: ^table.cells[] / ^table.cells(limit) added,
156: returns current row cells array (implements feature #1250)
157:
158: * tests/: 405.html, results/169.processed, results/405.processed:
159: tests updated after ^string.split[;a] implemented (related to
160: feature #1249)
161:
162: * src/classes/string.C: ^string.split[] - 'a' option added for
163: splitting into an array (implements feature #1249)
164:
165: 2024-10-04 moko
166:
167: * tests/: 431.html, results/431.processed: final code coverage
168: array tests
169:
170: * src/: classes/array.C, include/pa_array.h, types/pa_varray.h:
171: array: confirm_all_used() added and used where possible, expand()
172: now expends faster
173:
174: 2024-10-03 moko
175:
176: * tests/: 357.html, results/auto.p: max_recoursion -> max_recursion
177:
178: * tests/: 256.html, results/256.processed: test for
179: $.date[unix-timestamp] handling large dates
180:
181: * src/: classes/file.C, classes/op.C, classes/reflection.C,
182: classes/string.C, classes/table.C, include/pa_common.h,
183: main/pa_common.C, main/pa_http.C, main/pa_request.C,
184: types/pa_vdate.C, types/pa_vmethod_frame.h, types/pa_vtable.C:
185: format replaced with pa_uitoa where applicable,
186: $.date[unix-timestamp] fixed for handling large dates
187:
188: * tests/: 433.html, results/433.processed: more tests, including
189: test for possible endless recursion in ^o.GET[]
190:
191: * src/types/pa_vobject.C: bugfix: detecting possible endless
192: recursion in get_scalar_value inside ^o.GET[]
193:
194: * src/: classes/json.C, include/pa_request.h, main/execute.C,
195: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.C:
196: Temp_recursion class added; spelling: $LIMITS.max_recoursion ->
197: $LIMITS.max_recursion
198:
199: 2024-10-02 moko
200:
201: * tests/: 253.html, 287.html, 430.html, 431.html, 433.html,
202: results/253.processed, results/287.processed,
203: results/430.processed, results/433.processed: more tests for full
204: array and json code coverage
205:
206: * tests/: 433.html, results/433.processed: tests for hash functions
207: with array param
208:
209: * src/classes/: array.C, hash.C: ^hash::create[$array] optimized
210:
211: * tests/: 432.html, results/432.processed: modified ^hash.at tests
212: in 246.html used to test ^array.at, same result produced
213:
214: * tests/: 430.html, 431.html, results/430.processed,
215: results/431.processed: more array tests for 100% code coverage
216: (related to feature #930)
217:
218: * tests/: 427.html, 430.html, results/427.processed,
219: results/430.processed: first portion of array tests added
220: (related to feature #930)
221:
222: * src/classes/array.C: allow only whitespace string as argument for
223: add and join
224:
225: * src/classes/array.C: add behavour for array synced with hash
226:
227: 2024-09-30 moko
228:
229: * tests/: 429-sql.html, results/429-sql.processed: code coverage
230: tests added
231:
232: * src/classes/array.C: $.distinct should not be used unless
233: $.sparse(true)
234:
235: * tests/: 429-sql.html, results/388-sql.processed,
236: results/429-sql.processed: tests for ^array::sql{}, including
237: multi_statements mode (related to feature #930)
238:
1.199 moko 239: 2024-09-29 moko
240:
241: * src/classes/array.C: synced ^array::sql multi_statements logic
242: with ^hash::sql new behavour
243:
244: 2024-09-28 moko
245:
246: * tests/: 428-sql.html, results/388-sql.processed,
247: results/428-sql.processed: tests updated after column names were
248: fixed in multi_statements mode (related to feature #1197)
249:
250: * src/classes/hash.C: column names are fixed for most cases in
251: multi_statements mode (related to feature #1197)
252:
253: * tests/: 428-sql.html, results/195.processed,
254: results/224.processed, results/239.processed,
255: results/254.processed, results/261.processed,
256: results/306.processed, results/333.processed,
257: results/341.processed, results/343.processed,
258: results/344.processed, results/348.processed,
259: results/364.processed, results/389.processed,
260: results/390.processed, results/415.processed,
261: results/420.processed, results/421.processed: tests results
262: updated after error messages spelling minor fixes
263:
264: * src/types/: pa_value.h, pa_vstateless_class.h: a bit more
265: spelling
266:
267: * src/: classes/curl.C, classes/file.C, classes/hash.C,
268: classes/image.C, classes/math.C, classes/string.C,
269: classes/table.C, lib/memcached/pa_memcached.C, main/compile.y,
270: main/execute.C, main/pa_charset.C, main/pa_common.C,
271: main/pa_http.C, main/pa_request.C, main/pa_socks.C,
272: main/pa_sql_driver_manager.C, types/pa_value.C, types/pa_value.h,
273: types/pa_vmail.C, types/pa_vobject.C,
274: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
275: types/pa_vxdoc.C: minor error messages spelling fixes
276:
277: * src/: classes/array.C, types/pa_varray.h: initial ^array::sql{}
278: implementation (related to feature #930)
279:
280: * tests/: 388-sql.html, results/388-sql.processed: test results
281: updated after rows number ^file::sql{} check added
282:
283: * src/classes/file.C: rows number now checked in ^file::sql{}
284:
285: * tests/: 428-sql.html, results/428-sql.processed: more tests
286:
287: * tests/: 428-sql.html, results/428-sql.processed: more
288: multi_statements testing before bugfix
289:
290: * tests/: 388-sql.html, 428-sql.html, results/388-sql.processed,
291: results/428-sql.processed: support for multiple sql test files
292: added
293:
294: * tests/: 388-sql.html, results/388-sql.processed: more sql testing
295:
296: * src/classes/hash.C: more accurate one_bool_column processing
297:
298: * tests/: 427.html, results/427.processed: Constructors as methods
299: behavour documented in test
300:
301: * src/classes/hash.C: HashStringValue::Iterator used for options
302:
303: * tests/: 388-sql.html, results/388-sql.processed: even more tests
304:
305: * tests/: 388-sql.html, results/388-sql.processed: a bit more
306: testing
307:
308: * tests/results/367-curl.processed: test result updated after
309: server charset changed
310:
311: * tests/results/347-curl.processed: error messages updated
312:
313: * tests/results/: 346-curl.processed, 379-curl.processed,
314: 394-curl.processed: tests results updated after Type -> Exception
315: type replacement
316:
317: * tests/results/388-sql.processed: tests result updated after Type
318: -> Exception type
319:
320: 2024-09-27 moko
321:
322: * src/classes/hash.C: minor simplification
323:
324: 2024-09-24 moko
325:
326: * src/main/pa_string.C: atoui error messages improved
327:
328: * tests/: 165.html, 312.html, results/165.processed,
329: results/312.processed, results/379.processed: tests updated after
330: default endless loop limit increased, atoi error messages
331: improved
332:
333: * src/classes/hash.C: VBool::get used, unification
334:
1.198 moko 335: 2024-09-22 moko
336:
337: * src/classes/array.C: minor simplification
338:
339: * src/classes/array.C: ^array.left(N),
340: ^array.right(N),^array.mid(P;N) added (related to feature #930)
341:
342: * src/: classes/array.C, include/pa_request.h, main/pa_request.C,
343: types/pa_varray.C, types/pa_varray.h: $MAIN:LIMITS.max_array_size
344: added, default 1000000 (related to feature #930)
345:
346: * tests/: 426.html, results/426.processed: test for negative limit
347: and offset processing for table options added
348:
349: * src/: classes/table.C, include/pa_array.h, main/pa_table.C:
350: bugfix: negative limit and offset processing for table options
351: fixed
352:
353: 2024-09-21 moko
354:
355: * src/: classes/array.C, types/pa_varray.h: join supports hash;
356: ^for added that also iterates holes; ^remove added (related to
357: feature #930)
358:
359: * src/classes/array.C: ^array.join[$another_array; $.limit(N)
360: $.offset(M) ] added (related to feature #930)
361:
362: 2024-09-20 moko
363:
364: * src/: classes/array.C, types/pa_varray.h: array:
365: +foreach[value]{code}, + add[hash with numeric keys] (related to
366: feature #930)
367:
368: 2024-09-19 moko
369:
370: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h,
371: main/execute.C, types/pa_varray.h: OP_CONSTRUCT_ARRAY added to
372: support $a[v1;v2;...] syntax (related to feature #930)
373:
374: 2024-09-17 moko
375:
376: * src/: classes/reflection.C, include/pa_request.h,
377: main/compile_tools.h, main/pa_request.C:
378: ^reflection:class_alias[existing class name;alias class name]
379: added. The array class can now be redefined regardless of the
380: $.replace(bool) option value (related to feature #930)
381:
382: * src/main/: compile.y, compile_tools.h: class_add return value
383: inverted to add it to request class
384:
385: * src/: classes/array.C, include/pa_array.h, include/pa_request.h,
386: include/pa_stack.h, types/pa_varray.C, types/pa_varray.h,
387: types/pa_vmethod_frame.h: array: fused -> fsize, fit(index) to
388: resize if required. spared array - added fused, append.
389:
1.197 moko 390: 2024-09-16 moko
391:
392: * src/types/pa_varray.h: get moved to where it belongs
393:
394: 2024-09-15 moko
395:
396: * src/: include/pa_array.h, types/pa_varray.h: more agressive
397: expansion to minimize reallocs: fallocated/32 -> fallocated/4
398:
399: * tests/: 421.html, results/323.processed, results/421.processed:
400: tests updated after 'spared-array' class renamed to 'array'
401: following a discussion on the forum (related to feature #930)
402:
403: * src/: include/pa_array.h, types/pa_value.h, types/pa_varray.h,
404: types/pa_vmail.C: initial SparseArray separation from Array,
405: parser class now 'array'
406:
407: 2024-09-14 moko
408:
409: * tests/: 030.html, results/030.processed: out of range expires
410: check added
411:
412: * src/types/pa_vcookie.C: VDate range is narrower than gmtime, thus
413: checking expires time using VDate
414:
415: 2024-09-13 moko
416:
417: * src/: classes/array.C, classes/curl.C, classes/date.C,
418: classes/file.C, classes/hash.C, classes/image.C, classes/json.C,
419: classes/memcached.C, classes/op.C, classes/regex.C,
420: classes/string.C, classes/xdoc.C, classes/xnode.C,
421: main/execute.C, main/pa_http.C, main/pa_request.C,
422: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
423: types/pa_vclass.h, types/pa_vcookie.C, types/pa_vhashfile.C,
424: types/pa_vmail.C, types/pa_vobject.C, types/pa_vobject.h,
425: types/pa_vxdoc.C, types/pa_vxdoc.h: optimization: Value::as()
426: removed as dynamic_cast is faster, Value::is() is still required
427: for is operator.
428:
429: 2024-09-12 moko
430:
431: * src/: classes/file.C, classes/image.C, classes/reflection.C,
432: classes/table.C, classes/xnode.C, include/pa_array.h,
433: include/pa_string.h, main/pa_common.C, main/pa_request.C,
434: main/pa_string.C, targets/cgi/pa_sapi_info.h, types/pa_vform.C,
435: types/pa_vhash.h, types/pa_vtable.C, types/pa_vxnode.C: faster
436: templated pa_itoa/pa_uitoa added to work with any integer type,
437: String::Body::Format removed
438:
439: 2024-09-10 moko
440:
441: * src/classes/array.C: append and insert methods added to
442: sparse-array (related to feature #930)
443:
444: * tests/: 253.html, 255.html, 421.html, results/421.processed:
445: tests updated after sparse-array was added to avoid ^json:parse[]
446: using it in old tests (related to feature #930)
447:
448: * src/: classes/array.C, classes/json.C, types/pa_varray.C,
449: types/pa_varray.h: sparse-array class added (initial feature #930
450: implementation)
451:
452: * src/: classes/Makefile.am, types/Makefile.am: Makefiles update
453: for sparse-array class files (related to feature #930)
454:
455: * src/: classes/json.C, include/pa_array.h, types/pa_value.h,
456: types/pa_vhash.h: VArray support functions without actual VArray
457: files (related to feature #930)
458:
1.196 moko 459: 2024-09-07 moko
460:
461: * src/: classes/curl.C, classes/string.C, classes/table.C,
462: include/pa_array.h, main/execute.C, main/pa_dictionary.C,
463: main/pa_http.C, main/pa_sql_driver_manager.C,
464: main/pa_stylesheet_manager.C, main/pa_table.C, types/pa_vclass.C,
465: types/pa_vmethod_frame.C, types/pa_vstateless_class.C,
466: types/pa_vtable.C, types/pa_wcontext.C: Array::Iterator unified
467: with Hash::Iterator, has_next() replaced with operator bool
468: (related to feature #930)
469:
470: * src/: classes/string.C, include/pa_array.h, main/pa_http.C,
471: main/pa_table.C, types/pa_vclass.C, types/pa_vmethod_frame.C,
472: types/pa_vstateless_class.C: Array class extended,
473: Array::Iterator added and used (related to feature #930)
474:
1.195 moko 475: 2024-08-26 moko
476:
477: * src/targets/cgi/parser3.C: under Windows back_slashes_to_slashes
478: should be used on argv[0] as well to match document root.
479:
1.194 moko 480: 2024-08-25 moko
481:
482: * src/main/pa_request.C: be more specific
483:
484: * src/targets/cgi/parser3.C: parser3 t.html now behaves identically
485: to /usr/bin/parser3 t.html in terms of /etc/parser3/auto.p load
486: (fixes bug #1244)
487:
488: * src/targets/cgi/parser3.C: avoid "parser allready configured"
489: exception when ./parser3.cgi <file> is used; rsplit(..., '/') ||
490: rsplit(..., '\\') is not correct when / and \ are mixed in path
491:
492: * src/targets/cgi/parser3.C: full_disk_path now uses pa_strcat()
493:
1.193 moko 494: 2024-07-24 moko
495:
496: * src/: include/pa_config_includes.h, lib/gd/gifio.C,
497: main/execute.C, main/pa_string.C: Warning war: clang changed
498: -Wdeprecated-register warning to -Wregister, it's easier to
499: remove all register vars then continue this fight. :)
500:
501: * src/main/: compile.y, compile.tab.C: warning war: register
502: removed
503:
1.192 moko 504: 2024-07-14 moko
505:
506: * src/targets/cgi/pa_sapi_info.h: When accessing $env:name,
507: checking the HTTP request environment; if the variable is not
508: present, checking the web server process environment (implements
509: feature #1242)
510:
1.191 moko 511: 2024-05-26 moko
512:
513: * tests/: 195.html, 229.html, results/096.processed,
514: results/097.processed, results/158.processed,
515: results/186.processed, results/273.processed,
516: results/293.processed, results/317.processed,
517: results/389.processed, results/402.processed: tests updated as
518: single quote now escaped with ' in HTML tainting mode
519: (related to feature #1241)
520:
521: * src/main/untaint.C: single quote now escaped with ' in HTML
522: tainting mode (implements feature #1241)
523:
524: * tests/results/: 020.processed, 021.processed, 026.processed,
525: 042.processed, 043.processed, 057.processed, 110.processed,
526: 115.processed, 116.processed, 117.processed, 118.processed,
527: 119.processed, 120.processed, 125.processed, 126.processed,
528: 128.processed, 130.processed, 131.processed, 132.processed,
529: 133.processed, 135.processed, 136.processed, 138.processed,
530: 139.processed, 140.processed, 145.processed, 150.processed,
531: 151.processed, 165.processed, 174.processed, 181.processed,
532: 182.processed, 192.processed, 193.processed, 201.processed,
533: 213.processed, 224.processed, 226.processed, 230.processed,
534: 239.processed, 240.processed, 244.processed, 253.processed,
535: 254.processed, 261.processed, 264.processed, 269.processed,
536: 274.processed, 275.processed, 288.processed, 294.processed,
537: 296.processed, 303.processed, 306.processed, 307.processed,
538: 308.processed, 311.processed, 312.processed, 314.processed,
539: 315.processed, 316.processed, 320.processed, 323.processed,
540: 324.processed, 325.processed, 328.processed, 330.processed,
541: 332.processed, 333.processed, 337.processed, 338.processed,
542: 341.processed, 342.processed, 343.processed, 344.processed,
543: 345.processed, 348.processed, 352.processed, 356.processed,
544: 357.processed, 363.processed, 364.processed, 368.processed,
545: 372.processed, 373.processed, 376.processed, 378.processed,
546: 379.processed, 385.processed, 386.processed, 387.processed,
547: 389.processed, 390.processed, 395.processed, 397.processed,
548: 398.processed, 399.processed, 404.processed, 406.processed,
549: 413.processed, 414.processed, 420.processed, 421.processed,
550: 424.processed, auto.p: Type -> Exception type for readability
551:
552: * tests/: 119.html, 165.html, 175.html, 192.html, 213.html,
553: 217.html, 230.html, 240.html, 298.html, 380.html, 415.html,
554: results/119.processed, results/165.processed,
555: results/175.processed, results/192.processed,
556: results/213.processed, results/217.processed,
557: results/230.processed, results/240.processed,
558: results/298.processed, results/380.processed,
559: results/415.processed: try-catch, try-catch-comment used
560:
561: 2024-05-21 moko
562:
563: * tests/: 169.html, 180.html, 195.html, 224.html, 246.html,
564: results/180.processed, results/195.processed,
565: results/224.processed, results/auto.p: @try-catch-comment added
566: and used
567:
568: * tests/: 175.html, 256.html, 269.html, 283.html, 341.html,
569: 415.html, results/269.processed, results/283.processed,
570: results/auto.p: more tests are updated to prepare for apostrophe
571: escaping in HTML tainting
572:
573: * tests/results/: 181.processed, 294.processed, 296.processed,
574: 315.processed, 379.processed, 389.processed, auto.p:
575: $exception.comment printed as-is for whitespace reporting and to
576: prepare for apostrophe escaping in HTML mode
577:
1.190 moko 578: 2024-05-11 moko
579:
580: * tests/: 099.html, 100.html, results/099.processed,
581: results/100.processed: a test for non-UTF-8 filename* added
582: (related to feature #1240)
583:
584: * tests/: 293.html, results/293.processed: tainting modes tests
585: added
586:
587: * tests/results/: 099.processed, 100.processed, 205.processed,
588: 309.processed, 310.processed, 419.processed: tests results
589: updated after filename* added (related to feature #1240)
590:
591: * src/: include/pa_common.h, main/pa_request.C: The filename*
592: parameter was added to the Content-Disposition header to conform
593: with RFC 6266, with code provided by Sumo (implements feature
594: #1240)
595:
596: 2024-05-10 moko
597:
598: * src/main/pa_http.C: Testing shows that TCP_NODELAY has no
599: positive performance effect in our case
600:
1.189 moko 601: 2024-03-27 moko
602:
603: * src/lib/pcre/pcre_internal.vcproj: pa_config_includes.h used
604: (related to feature #1236)
605:
606: 2024-03-15 moko
607:
608: * tests/: 413.html, results/413.processed: test for object still
609: can be used as file parameter (related to bug #1218)
610:
611: * src/types/: pa_vobject.C, pa_vobject.h: regression fix: object
612: still can be used in file context (fixes bug #1218)
613:
614: 2024-03-14 moko
615:
616: * src/include/pa_string.h: ArrayString get() null result assert
617: also added (related to bug #1238)
618:
619: * src/types/: pa_vstring.h, pa_vtable.C: VString() optimized;
620: VString::empty() used instead of new VString()
621:
622: 2024-03-12 moko
623:
624: * tests/: 379-curl.html, 379.html, results/379-curl.processed,
625: results/379.processed: test added for cookie without value
626: (related to bug #1238)
627:
628: * src/include/pa_string.h: In assertions enabled mode, ArrayString
629: values are now required to be non-null (related to bug #1238)
630:
631: * src/main/pa_http.C: cookies without value are now parsed
632: correctly (fixed bug #1238)
633:
634: 2024-03-11 moko
635:
636: * tests/run_parser.sh: for better error reporting
637:
1.188 moko 638: 2023-12-30 moko
639:
640: * tests/: 038.html, results/038.processed: test for atan2 added
641:
642: 2023-12-29 moko
643:
644: * src/classes/math.C: atan2(y,x) math function added
645:
1.187 moko 646: 2023-12-14 moko
647:
648: * tests/212.html: pcre2 compatibility (related to feature #1236)
649:
650: * tests/: 425.html, results/425.processed: test for pcre/pcre2
651: exceptions and behavour added (related to feature #1236)
652:
653: 2023-12-13 moko
654:
655: * buildall: by default parser is now bundled with pcre2 10.42,
656: --without-pcre2 option added to build with pcre-8.45 (related to
657: feature #1236)
658:
659: 2023-12-12 moko
660:
661: * configure.ac, src/include/pa_config_auto.h.in: pcre2 library
662: support added (implements feature #1236)
663:
664: * src/: include/pa_charset.h, include/pa_config_includes.h,
665: lib/pcre/pa_pcre_internal.h, lib/pcre/pa_pcre_valid_utf8.c,
666: main/pa_common.C, main/pa_globals.C, types/pa_vregex.C,
667: types/pa_vregex.h: Adopted patch from Yavor Doganov
668: <yavor@gnu.org> to add pcre2 library support (implements feature
669: #1236)
670:
1.186 moko 671: 2023-11-28 moko
672:
673: * src/include/pa_config_includes.h: warnings war continues
674:
675: * src/include/pa_config_includes.h: warning war
676:
677: * tests/: 424.html, results/424.processed: tests for '+' and '-'
678: number strings, whitespace and sign in exception messages
679: (related to bug #1234)
680:
1.185 moko 681: 2023-11-26 moko
682:
683: * tests/: 274.html, results/224.processed, results/274.processed:
684: tests for date double, int, bool added (related to feature #1235)
685:
686: * src/: classes/date.C, types/pa_vdate.h: double,int,bool methods
687: added for date class (implements feature #1235)
688:
689: 2023-11-23 moko
690:
691: * src/: classes/math.C, include/pa_string.h, main/pa_string.C: '+'
692: and '-' strings are no longer can be treated as number 0,
693: exception thrown (fixes bug #1234)
694:
1.184 moko 695: 2023-11-18 moko
696:
697: * src/include/pa_types.h: minor
698:
699: * src/include/pa_dir.h: MAXPATH in UTF-16 chars, not bytes
700:
701: * tests/: 389.html, results/389.processed: error messages for some
702: OS differs a bit, reducing failing tests for them
703:
704: 2023-11-17 moko
705:
706: * tests/: 423.html, results/423.processed: test for optional
707: @auto[] inheritance added (related to feature #1233)
708:
709: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
710: types/pa_vstateless_class.C: optional @auto[] inheritance
711: implemented if defined with two args (path, class name)
712: (implements feature #1233)
713:
714: * src/: classes/double.C, classes/int.C, classes/math.C,
715: include/pa_random.h, include/pa_types.h, main/pa_common.C,
716: types/pa_vdouble.h, types/pa_vint.h: clip2int,clip2uint added to
717: sync double->int overflow behavour under different architectures
718: (fixes bug #1232)
719:
720: * tests/: 422.html, results/422.processed: int clipping added
721:
722: 2023-11-16 moko
723:
724: * tests/: 422.html, results/422.processed: test for int and uint
725: overflow in ^n.format[d/u/x]
726:
727: * src/classes/math.C: bugfix: crc32 should not be negative (under
728: Apple M1 when negative double converts to uint the result is 0)
729: and crc32 should be 32 bits
730:
731: * src/main/pa_common.C: avoid (uint)<negative double> conversion as
732: on Apple M1 it's 0
733:
734: * src/classes/file.C: bugfix: crc32 should not be negative (under
735: Apple M1 when negative double converts to uint the result is 0)
736: and crc32 should be 32 bits
737:
1.183 moko 738: 2023-10-07 moko
739:
740: * src/: main/execute.C, types/pa_vdate.h: volatile added to sync
741: behavour with other OP_NUM_*, related to bug #1230
742:
743: 2023-10-06 moko
744:
745: * tests/: 338.html, results/338.processed: test for bug #1230 added
746:
747: * src/: main/execute.C, types/pa_vdate.h: force double operands to
748: be converted to double to avoid 80 bit operations in x87 mode
749: (fixes bug #1230)
750:
751: 2023-10-05 moko
752:
753: * tests/420.html: add feature FEATURE_GET_ELEMENT4CALL disabled
754: compatibility
755:
756: * tests/337.html: 2work without FEATURE_GET_ELEMENT4CALL
757:
758: * tests/: 421.html, results/421.processed: test to cover all
759: classes and objects nonexistent method and field exceptions
760: (related to feature #1080 and #1227)
761:
762: * tests/results/: 182.processed, 324.processed: undefined method ->
763: <type> method not found exception (related to feature #1080)
764:
765: * src/types/: pa_vbool.h, pa_vconsole.h, pa_vdouble.h, pa_vint.h,
766: pa_vregex.C, pa_vstateless_object.h: + VSimple_stateless_object,
767: "element can not be fetched from" for them, "field not found" for
768: all other types (related to bug #1227)
769:
770: 2023-10-03 moko
771:
772: * src/types/pa_vstateless_class.h: "Source: <method name>, Comment:
773: <type> method not found" exception now thrown for static calls
774: instead of "undefined method" without class name (related to
775: feature #1080)
776:
777: 2023-10-02 moko
778:
779: * src/types/: pa_vdouble.h, pa_vhash.h, pa_vint.h, pa_vobject.C,
780: pa_vstateless_object.h, pa_vstring.h, pa_vtable.C: "Source:
781: <method name>, Comment: <type> method not found" exception now
782: thrown for all dynamic objects instead of "undefined method"
783: without class name (implements feature #1080)
784:
1.182 moko 785: 2023-10-01 moko
786:
787: * src/classes/json.C: we don't have a dynamic json object.
788:
789: 2023-09-28 moko
790:
791: * tests/: 420.html, results/261.processed, results/420.processed:
792: tests updated after bug #1228 fix reverted
793:
794: * src/types/pa_vstring.h: revering fix for bug #1228, as empty or
795: whitespace string is hash compatible, so we don't want $s.key to
796: return a junction
797:
798: * tests/: 261.html, 420.html, results/261.processed,
799: results/420.processed: test for bug #1227 added, test updated
800: after bug #1228 fixed
801:
802: * src/types/: pa_vdouble.h, pa_vint.h: $int.field and $double.field
803: now throws exception as $non-empty-string.field (fixes bug #1227)
804:
805: * src/types/pa_vstring.h: allow $string.method access (fixes bug
806: #1228)
807:
808: 2023-09-26 moko
809:
810: * AUTHORS, aclocal.m4, configure, src/classes/bool.C,
811: src/classes/classes.C, src/classes/classes.awk,
812: src/classes/classes.h, src/classes/curl.C, src/classes/date.C,
813: src/classes/double.C, src/classes/file.C, src/classes/form.C,
814: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
815: src/classes/inet.C, src/classes/int.C, src/classes/json.C,
816: src/classes/mail.C, src/classes/math.C, src/classes/memcached.C,
817: src/classes/memory.C, src/classes/op.C, src/classes/reflection.C,
818: src/classes/regex.C, src/classes/response.C,
819: src/classes/string.C, src/classes/table.C, src/classes/void.C,
820: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
821: src/include/pa_array.h, src/include/pa_base64.h,
822: src/include/pa_cache_managers.h, src/include/pa_charset.h,
823: src/include/pa_charsets.h, src/include/pa_common.h,
824: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
825: src/include/pa_dictionary.h, src/include/pa_dir.h,
826: src/include/pa_exception.h, src/include/pa_exec.h,
827: src/include/pa_globals.h, src/include/pa_hash.h,
828: src/include/pa_http.h, src/include/pa_memory.h,
829: src/include/pa_opcode.h, src/include/pa_operation.h,
830: src/include/pa_os.h, src/include/pa_pool.h,
831: src/include/pa_random.h, src/include/pa_request.h,
832: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
833: src/include/pa_sapi.h, src/include/pa_socks.h,
834: src/include/pa_sql_connection.h,
835: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
836: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
837: src/include/pa_stylesheet_manager.h, src/include/pa_symbols.h,
838: src/include/pa_table.h, src/include/pa_threads.h,
839: src/include/pa_types.h, src/include/pa_uue.h,
840: src/include/pa_xml_exception.h, src/include/pa_xml_io.h,
841: src/lib/gd/gif.C, src/lib/gd/gif.h, src/lib/gd/gifio.C,
842: src/lib/ltdl/configure, src/lib/md5/pa_md5.h,
843: src/lib/md5/pa_md5c.c, src/lib/memcached/pa_memcached.C,
844: src/lib/memcached/pa_memcached.h, src/lib/punycode/pa_idna.c,
845: src/lib/punycode/pa_idna.h, src/lib/sdbm/pa_file_io.C,
846: src/lib/sdbm/pa_strings.C, src/lib/smtp/comms.C,
847: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h, src/main/compile.C,
848: src/main/compile.tab.C, src/main/compile.y,
849: src/main/compile_tools.C, src/main/compile_tools.h,
850: src/main/execute.C, src/main/pa_base64.C,
851: src/main/pa_cache_managers.C, src/main/pa_charset.C,
852: src/main/pa_charsets.C, src/main/pa_common.C,
853: src/main/pa_dictionary.C, src/main/pa_dir.C,
854: src/main/pa_exception.C, src/main/pa_exec.C,
855: src/main/pa_globals.C, src/main/pa_http.C, src/main/pa_memory.C,
856: src/main/pa_os.C, src/main/pa_pool.C, src/main/pa_random.C,
857: src/main/pa_request.C, src/main/pa_socks.C,
858: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
859: src/main/pa_stylesheet_connection.C,
860: src/main/pa_stylesheet_manager.C, src/main/pa_symbols.C,
861: src/main/pa_table.C, src/main/pa_threads.C, src/main/pa_uue.C,
862: src/main/pa_xml_exception.C, src/main/pa_xml_io.C,
863: src/main/untaint.C, src/main/helpers/simple_folding.pl,
864: src/sql/pa_sql_driver.h, src/targets/apache/mod_parser3.c,
865: src/targets/apache/mod_parser3_core.C,
866: src/targets/apache/pa_httpd.h, src/targets/cgi/parser3.C,
867: src/targets/isapi/parser3isapi.C, src/types/pa_junction.h,
868: src/types/pa_method.h, src/types/pa_property.h,
869: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
870: src/types/pa_vcaller_wrapper.h, src/types/pa_vclass.C,
871: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
872: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
873: src/types/pa_vcookie.h, src/types/pa_vdate.C,
874: src/types/pa_vdate.h, src/types/pa_vdouble.h,
875: src/types/pa_venv.C, src/types/pa_venv.h, src/types/pa_vfile.C,
876: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vform.h,
877: src/types/pa_vhash.C, src/types/pa_vhash.h,
878: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
879: src/types/pa_vimage.C, src/types/pa_vimage.h,
880: src/types/pa_vint.h, src/types/pa_vjunction.C,
881: src/types/pa_vjunction.h, src/types/pa_vmail.C,
882: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
883: src/types/pa_vmemcached.C, src/types/pa_vmemcached.h,
884: src/types/pa_vmemory.h, src/types/pa_vmethod_frame.C,
885: src/types/pa_vmethod_frame.h, src/types/pa_vobject.C,
886: src/types/pa_vobject.h, src/types/pa_vregex.C,
887: src/types/pa_vregex.h, src/types/pa_vrequest.C,
888: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
889: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
890: src/types/pa_vstateless_class.h,
891: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
892: src/types/pa_vstatus.h, src/types/pa_vstring.C,
893: src/types/pa_vstring.h, src/types/pa_vtable.C,
894: src/types/pa_vtable.h, src/types/pa_vvoid.C,
895: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
896: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
897: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
898: src/types/pa_wwrapper.h: copyright, authors actualized
899:
1.181 moko 900: 2023-08-20 moko
901:
902: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
903: commited (related to feature #1219)
904:
905: 2023-08-16 moko
906:
907: * src/main/pa_random.C: replaced clock precision with monotonicity
908: counter, good for Windows version with low clock frequency
909: (related to feature #1229)
910:
911: 2023-08-15 moko
912:
913: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
914: fixes related to feature #1229
915:
916: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
917: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
918: (implements feature #1229)
919:
1.180 moko 920: 2023-08-02 moko
921:
922: * tests/: results/417.processed, 417.html: test for empty string
923: match after last char added (related to bug #1224)
924:
925: * src/main/pa_string.C: avoid prestart++ after last char on zero
926: length match (related to bug #1224)
927:
1.179 moko 928: 2022-11-22 moko
929:
930: * tests/: 419.html, results/419.processed: test for L_URI and path
931: removeal from filename added (related to bug #1204)
932:
933: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
934: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
935: attribute value, L_URI should be used
936:
1.178 moko 937: 2022-09-21 moko
938:
939: * src/targets/cgi/parser3.C: more clear error messages
940:
941: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
942: SAPI_Info will return 0 in read_post and post_size !=
943: content_length will be thrown
944:
1.177 moko 945: 2022-08-23 moko
946:
947: * src/types/pa_vmail.C: .tables addes as .raw contains only last
948: header value
949:
950: 2022-08-22 moko
951:
952: * tests/: 418.html, results/418.processed: test for
953: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
954: to #1225)
955:
956: * src/classes/hash.C: keep old behavoir by default
957:
958: * src/classes/hash.C: ^hash_a.intersection[hash_b;
959: $.order[self|arg] ] added (implements #1215)
960:
1.176 moko 961: 2022-03-21 moko
962:
963: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
964: xmlInitCharEncodingHandlers is called in libxml static
965: initializers before gc_substitute_memory_management_functions in
966: pa_globals and thus gc may not see reference to our
967: xmlCharEncodingHandler and free it.
968:
1.175 moko 969: 2022-01-26 moko
970:
971: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
972:
1.174 moko 973: 2021-12-28 moko
974:
975: * tests/: 417.html, results/417.processed: test for empty string
976: match added (related to bug #1224)
977:
978: * src/main/pa_string.C: empty string match now works (fixes bug
979: #1224)
980:
1.173 moko 981: 2021-12-24 moko
982:
983: * tests/: 415_dir/29.p, results/415.processed: yet another test
984:
985: 2021-12-23 moko
986:
987: * src/: classes/table.C, main/pa_request.C: warnings war
988:
989: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
990: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
991:
992: 2021-12-21 moko
993:
994: * tests/: 416.html, results/416.processed: test for ^break[] in
995: ^hash/table.select[] (related to feature #1222)
996:
997: * src/classes/: hash.C, table.C: ^break[] support for
998: ^hash/table.select[] (implements feature #1222)
999:
1.172 moko 1000: 2021-11-30 moko
1001:
1002: * src/targets/cgi/parser3.C: default sock_ready interval changed to
1003: 0.5 sec
1004:
1.171 moko 1005: 2021-11-10 moko
1006:
1007: * tests/results/415.processed: more syntax errors tests added
1008:
1009: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
1010: 28.p: minor syntax error tests
1011:
1012: * src/main/pa_exception.C: pa_strdup added for compatibility
1013:
1014: * src/classes/curl.C: hint to call ^curl:options[
1015: $.library[correct.libcurl.so.name] ] added if default load fails.
1016:
1017: 2021-11-09 moko
1018:
1019: * src/main/compile.y: error message can be on stack
1020:
1021: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
1022:
1023: * src/main/pa_charset.C: memcpy is more correct and efficient in
1024: this case then strncpy
1025:
1026: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
1027: instead of strcpy where possible
1028:
1029: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
1030: used to avoid MAX_STRING limit in Exception comment
1031:
1032: * tests/results/415.processed: compiler exceptions are no longer
1033: limited to MAX_STRING
1034:
1035: * src/main/: compile.y, compile_tools.h: Parse_control uses const
1036: char * instead of fixed buffer
1037:
1038: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
1039: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
1040: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
1041: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
1042: results/415.processed: tests for parser.compile exceptions added
1043:
1044: 2021-11-08 moko
1045:
1046: * src/: classes/math.C, include/pa_common.h, main/compile.y,
1047: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
1048: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1049: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
1050: drawbacks
1051:
1.170 moko 1052: 2021-11-06 moko
1053:
1054: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
1055: (implements feature #1219)
1056:
1057: * tests/: 414.html, results/414.processed: test for
1058: ^hash.rename[from;to] added (related to feature #1144)
1059:
1060: 2021-11-05 moko
1061:
1062: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
1063: (related to feature #1144)
1064:
1065: 2021-11-04 moko
1066:
1067: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
1068: added (implements feature #1144)
1069:
1.169 moko 1070: 2021-10-19 moko
1071:
1072: * tests/: 413.html, results/413.processed: test for hash no longer
1073: is accepted as file parameter (related to bug #1218)
1074:
1075: * src/: classes/curl.C, classes/file.C, classes/image.C,
1076: classes/math.C, classes/xdoc.C, types/pa_value.C,
1077: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
1078: longer is accepted as file parameter (fixes bug #1218)
1079:
1.168 moko 1080: 2021-07-19 moko
1081:
1082: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
1083: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
1084:
1.167 moko 1085: 2021-04-16 moko
1086:
1087: * src/types/pa_vmail.C: message can be null when e-mail is broken,
1088: processing it leads to assertions.
1089:
1.166 moko 1090: 2021-03-25 moko
1091:
1092: * tests/: 412.html, results/412.processed: test to demonstrate bug
1093: #1213
1094:
1.165 moko 1095: 2021-02-12 moko
1096:
1097: * tests/: 360.html, results/360.processed, results/363.processed:
1098: parser method call in expression mode no longer differs from call
1099: in string mode (related to feature #1211)
1100:
1101: 2021-02-11 moko
1102:
1103: * src/types/pa_vmail.C: mail parsing with Windows line endings
1104: fixed (bug #1212)
1105:
1106: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
1107: when called $v[^test[]] vs $v(^test[]), numbers are converted to
1108: strings in both calls (implements feature #1211)
1109:
1.164 moko 1110: 2021-01-28 moko
1111:
1112: * buildall, etc/auto.p.in: to remove last patch in debian package
1113:
1114: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
1115: 3.4.7b
1116:
1.162 moko 1117: 2021-01-21 moko
1118:
1119: * src/main/pa_http.C: no alarm() in file::load when web server mode
1120: is MULTITHREADED
1121:
1.157 moko 1122: 2021-01-20 moko
1123:
1.161 moko 1124: * src/targets/apache/mod_parser3.c: it is more correct to recommend
1125: 'a2enmod mpm_prefork'
1126:
1.160 moko 1127: * src/targets/apache/mod_parser3.c: prefork name is now
1128: 'libapache2-mpm-itk'
1129:
1130: * src/targets/apache/mod_parser3_core.C: last regular malloc
1131: removed
1132:
1.159 moko 1133: * src/targets/isapi/Makefile.am: -pa_threads.C
1134:
1.158 moko 1135: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
1136: 3.4.6
1137:
1.157 moko 1138: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
1139:
1140: * etc/auto.p.in: @config[result] added to simplify $cfg change in
1141: /httpd.p
1142:
1143: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
1144: ^use[/httpd.p] + optional ^preprocess[] (related to feature
1145: #1203)
1146:
1147: 2021-01-19 moko
1148:
1149: * buildall: --disable-parallel-mark added to avoid "number of
1150: processors" threads creation for heap marking as it conflicts
1151: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
1152: limits threads)
1153:
1.156 moko 1154: 2021-01-16 moko
1155:
1156: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
1157: main/pa_globals.C, main/pa_memory.C,
1158: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
1159: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
1160: feature #1209)
1161:
1162: 2021-01-15 moko
1163:
1164: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
1165: 3.4.6rc
1166:
1167: * src/classes/json.C: get_delim added for delimiter caching (10%
1168: faster on large json)
1169:
1170: 2021-01-14 moko
1171:
1172: * operators.txt: updated with 3.4.6 changes
1173:
1174: * tests/results/224.processed: test result modified after
1175: today(shift) implemented
1176:
1177: * tests/: 407.html, results/407.processed: test for ^hash.select
1178: option $.default(bool) added (related to feature #1172)
1179:
1180: * src/classes/hash.C: ^hash.select option $.default(bool) added
1181: (related to feature #1172)
1182:
1183: * tests/: 141.html, results/141.processed: test modified for
1184: feature #1185.
1185:
1186: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
1187: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
1188: options $.lower(bool) (implements feature #1185)
1189:
1190: 2021-01-11 moko
1191:
1192: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
1193: #1192)
1194:
1195: * tests/: 411.html, results/411.processed: test for ^date::today(N)
1196: added (related to feature #1192)
1197:
1.155 moko 1198: 2021-01-05 moko
1199:
1200: * tests/: 270.html, results/270.processed: test modified to work
1201: under Windows
1202:
1203: * tests/: 390.html, 395.html, results/395.processed: tests updated
1204: 4 windows
1205:
1206: * tests/: 410.html, results/410.processed: test for
1207: $CLASS-GETTER-PROTECTED(false) added
1208:
1209: 2021-01-04 moko
1210:
1211: * tests/: 409.html, results/409.processed, results/auto.p: test for
1212: $MAIN:LOCALS(true) added
1213:
1.154 moko 1214: 2021-01-03 moko
1215:
1216: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
1217: types/pa_vclass.h, types/pa_vstateless_class.C,
1218: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
1219: +LOCALS. $main -> $MAIN in exception texts (implements feature
1220: #1207)
1221:
1222: 2021-01-02 moko
1223:
1224: * etc/auto.p.in: minor
1225:
1226: * src/main/pa_request.C: sending headers only after opening file to
1227: allow error reporting if file was not opened (foreign group,
1228: etc).
1229:
1230: 2020-12-31 moko
1231:
1232: * src/: include/pa_request.h, main/pa_request.C,
1233: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
1234:
1235: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
1236: main/pa_request.C: get_class_ref added and used
1237:
1238: * etc/auto.p.in: @CLASS httpd added
1239:
1240: * etc/auto.p.in: @auto[] is now first
1241:
1242: 2020-12-30 moko
1243:
1244: * tests/: 408.html, results/408.processed: test for bug #1166
1245: (windows only) added
1246:
1247: * src/main/pa_common.C: create_dir_for_file should not create dir
1248: for trailing / (fixes bug #1166)
1249:
1250: * tests/: 341.html, results/341.processed: tests for
1251: ^nameless_table.hash[] added (related to feature #1138)
1252:
1253: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
1254: (implements feature #1138), extra fields in named tables no
1255: longer ignored (implements feature #1138)
1256:
1257: * tests/results/390.processed: updated after exception text change
1258:
1259: 2020-12-29 moko
1260:
1261: * tests/: 407.html, results/407.processed: +$._default check
1262:
1263: * src/classes/hash.C: keep $_default in ^hash.reverse[]
1264:
1265: * tests/: 407.html, results/407.processed: test for ^hash.select[]
1266: and ^hash.reverse[] added (releated to feature #1172)
1267:
1268: * src/classes/hash.C:
1269: ^hash.select[key;value](bool-condition)[options hash] +
1270: ^hash.reverse[] added (implements feature #1172)
1271:
1272: * src/types/pa_vtable.h: warning war
1273:
1274: * src/include/pa_config_fixed.h: win32 fix
1275:
1.153 moko 1276: 2020-12-27 moko
1277:
1278: * tests/: 406.html, results/406.processed: test results updated
1279:
1280: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
1281: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
1282: spelling
1283:
1284: 2020-12-26 moko
1285:
1286: * tests/: 406.html, results/406.processed: tests for
1287: ^table.rename[] added (related to feature #1148)
1288:
1289: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
1290: ^table.rename[column name from;column name to], ^table.rename[
1291: $.[column name from][column name to] ... ] added (implements
1292: feature #1148)
1293:
1294: 2020-12-25 moko
1295:
1296: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
1297: request_info now on stack to avoid yet another THREAD_LOCAL
1298: memory deallocation issue (now with cookies), explained in #1203
1299:
1300: * src/types/pa_vcookie.C: fields should be inited
1301:
1302: 2020-12-24 moko
1303:
1304: * src/include/pa_stylesheet_connection.h: looks like
1305: xsltFreeStylesheet leads to memory double-free. If so, it's for
1306: sure libxml bug, but we have GC anyway, so we just remove this
1307: call and see...
1308:
1309: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
1310: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
1311: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
1312: abort.c:65:8 frame #3: 0x00000000004da663
1313: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
1314: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
1315: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
1316: malloc.c:617:9 frame #5: 0x0000000000577f0c
1317: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
1318: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
1319: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
1320: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
1321: frame #8: 0x000000000050d35c
1322: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
1323: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
1324: frame #10: 0x00000000004436e5
1325: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
1326: [inlined]
1327: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
1328: pa_stylesheet_connection.h:62:3
1329:
1330: 2020-12-23 moko
1331:
1332: * src/classes/image.C: ^image::measure[; $.video() ] option added
1333:
1334: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
1335: ^image::measure[; $.video(true) ] added
1336:
1337: * src/main/pa_exec.C: not cleared automatically in multithreaded
1338: httpd mode for unknown reasons
1339:
1340: 2020-12-22 moko
1341:
1342: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
1343: error_log uri of currently processed document", but never used
1344: and conflicts with how libgc stops threads on FreeBSD (#define
1345: SIG_SUSPEND SIGUSR1), thus removed.
1346:
1347: 2020-12-21 moko
1348:
1349: * src/main/pa_request.C: +comment
1350:
1.151 moko 1351: 2020-12-20 moko
1352:
1.152 moko 1353: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
1354: it is more safe to have versions of pa_strdup with one and two
1355: arguments, as helper_length=0 not always mean that strlen()
1356: should be called, but means zero.
1357:
1358: * src/targets/isapi/parser3isapi.C: minor
1359:
1360: * src/main/pa_http.C: +valid_http_method
1361:
1.151 moko 1362: * src/: include/pa_http.h, main/pa_http.C,
1363: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
1364:
1365: 2020-12-17 moko
1366:
1367: * tests/: 405.html, results/405.processed: test for split by regex
1368: added (related to feature #1160)
1369:
1370: * src/classes/string.C: split by regex implemented (feature #1160)
1371:
1372: * src/classes/string.C: minor
1373:
1374: * tests/: 404.html, results/404.processed: test for whitespace
1375: string is now OK for table argument (related to feature #1169)
1376:
1377: * src/: classes/image.C, classes/string.C, classes/table.C,
1378: types/pa_vmethod_frame.C: whitespace string is now OK for table
1379: argument (as with hash) (implements feature #1169)
1380:
1381: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
1382: limit for comment (fixes bug #1102)
1383:
1384: * src/targets/cgi/parser3.C: +HAVE_TLS check
1385:
1386: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
1387:
1388: * src/include/pa_config_includes.h: HAVE_TLS used
1389:
1390: * configure.ac: +TLS check
1391:
1392: * src/main/pa_http.C: content logging added
1393:
1394: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
1395: clear_response_headers added
1396:
1397: 2020-12-16 moko
1398:
1399: * buildall: as we now use threads, libatomic_ops still required for
1400: some OS.
1401:
1402: * src/main/pa_request.C: whitespace
1403:
1404: * src/: include/pa_request.h, main/pa_request.C:
1405: Request::Exception_trace::table extracted and used
1406:
1407: * src/main/pa_request.C: moving output_result call outside of try
1408: as network exceptions should not be handled by parser code
1409:
1410: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
1411: logging network exchange
1412:
1413: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
1414: via network if it was network write error.
1415:
1416: * src/targets/cgi/parser3.C: log -> pa_log
1417:
1418: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
1419:
1420: * src/main/pa_threads.C: getpid() if no gettid() found
1421:
1422: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1423: we need to ignore "void" connections from browsers (browsers open
1424: connections in advance and they will be empty if user does not
1425: request more pages)
1426:
1427: 2020-12-15 moko
1428:
1429: * src/targets/cgi/parser3.C: avoid previous uri in logs
1430:
1431: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
1432: RequestController not needed in httpd mode
1433:
1434: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
1435: classes/classes.h, classes/curl.C, classes/date.C,
1436: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
1437: classes/hashfile.C, classes/image.C, classes/inet.C,
1438: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1439: classes/memcached.C, classes/memory.C, classes/op.C,
1440: classes/reflection.C, classes/regex.C, classes/response.C,
1441: classes/string.C, classes/table.C, classes/void.C,
1442: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
1443: include/pa_array.h, include/pa_base64.h,
1444: include/pa_cache_managers.h, include/pa_charset.h,
1445: include/pa_charsets.h, include/pa_common.h,
1446: include/pa_config_fixed.h, include/pa_config_includes.h,
1447: include/pa_dictionary.h, include/pa_dir.h,
1448: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
1449: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
1450: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
1451: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
1452: include/pa_request_charsets.h, include/pa_request_info.h,
1453: include/pa_sapi.h, include/pa_socks.h,
1454: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
1455: include/pa_stack.h, include/pa_string.h,
1456: include/pa_stylesheet_connection.h,
1457: include/pa_stylesheet_manager.h, include/pa_symbols.h,
1458: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
1459: include/pa_uue.h, include/pa_xml_exception.h,
1460: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
1461: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
1462: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
1463: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
1464: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
1465: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
1466: main/compile.tab.C, main/compile.y, main/compile_tools.C,
1467: main/compile_tools.h, main/execute.C, main/pa_base64.C,
1468: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
1469: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
1470: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
1471: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
1472: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
1473: main/pa_sql_driver_manager.C, main/pa_string.C,
1474: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
1475: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
1476: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
1477: main/untaint.C, sql/pa_sql_driver.h,
1478: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
1479: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
1480: targets/isapi/parser3isapi.C, types/pa_junction.h,
1481: types/pa_method.h, types/pa_property.h, types/pa_value.C,
1482: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
1483: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
1484: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
1485: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
1486: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
1487: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
1488: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
1489: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
1490: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
1491: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
1492: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
1493: types/pa_vmemory.h, types/pa_vmethod_frame.C,
1494: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
1495: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
1496: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
1497: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
1498: types/pa_vstateless_object.h, types/pa_vstatus.C,
1499: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
1500: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
1501: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
1502: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1503: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
1504:
1505: * src/main/pa_request.C: old compilers support
1506:
1507: * tests/: 362.html, results/362.processed: test updated after
1508: changes after upgrade to libxml2-2.9.9 were made (related to bug
1509: #1108)
1510:
1511: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
1512: removed, as xsltFreeStylesheet has side effects on original doc.
1513: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
1514: not updated after xdoc modification (part 3 of test 362).
1515: (related to bug #1108)
1516:
1517: * src/targets/isapi/parser3isapi.C: +pa_strcat
1518:
1519: * src/: classes/memory.C, include/pa_memory.h,
1520: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
1521: PA_GC_GCOLLECT used
1522:
1523: * src/include/pa_memory.h: +PA_GC_COLLECT
1524:
1525: * src/targets/cgi/parser3.C: msvs support fixes
1526:
1527: * src/lib/gc/include/gc.h: more cleanup
1528:
1529: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
1530:
1531: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
1532: targets/cgi/parser3.C: $main:HTTPD.mode implemented
1533:
1534: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
1535:
1536: * configure.ac: pthread.h added to checked headers
1537:
1538: * src/classes/table.C: string stream is back :)
1539:
1540: * src/classes/memory.C: GC_generate_random_backtrace no longer
1541: exists
1542:
1543: * src/main/pa_globals.C: GC_dont_gc replaced
1544:
1545: * src/lib/gc/include/gc.h: major cleanup, only used functions are
1546: left to simplify adding new functions. depricated GC_dont_gc
1547: replaced with GC_disable and GC_enable calls.
1548:
1549: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
1550: CORD_from_file* not used and thus removed
1551:
1552: * src/lib/gc/include/gc_allocator.h: minor cleanup
1553:
1554: 2020-12-14 moko
1555:
1556: * src/classes/: curl.C, memory.C, table.C: every TLS should be
1557: referenced elsewhere, or GC will collect it.
1558:
1559: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
1560: main/pa_xml_io.C: bugfix: TLS variables should be referenced
1561: elsewhere, or GC will collect them (and we'll get GPF in
1562: multithreaded enviroment). May be it can be also fixed by some
1563: GC call, not sure. But this fix costs nothing (but hours of
1564: debugging to find the issue :).
1565:
1.150 moko 1566: 2020-12-11 moko
1567:
1568: * configure.ac: gettid() check added
1569:
1570: * src/main/pa_threads.C: HAVE_GETTID used
1571:
1572: * src/include/pa_config_auto.h.in: +HAVE_GETTID
1573:
1574: * src/: include/pa_threads.h, main/pa_threads.C: now unified
1575: version for isapi/cgi/apache
1576:
1577: * buildall: threads are now required.
1578:
1579: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
1580: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1581: main/main.vcproj: pa_threads.C moved to main
1582:
1583: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
1584: isapi/pa_threads.C: pa_threads.C moved to main
1585:
1586: * src/: main/Makefile.am, targets/cgi/Makefile.am,
1587: targets/apache/Makefile.am: pa_threads.C moved to main
1588:
1589: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
1590:
1591: * src/: include/pa_stylesheet_connection.h,
1592: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
1593: and weird GPF in multithreaded httpd is gone
1594:
1595: * src/include/: pa_stylesheet_connection.h,
1596: pa_sql_driver_manager.h: whitespace
1597:
1598: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
1599:
1600: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
1601: main/pa_stylesheet_manager.C: whitespace, warning war
1602:
1603: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
1604: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
1605: parser_multithreaded never used
1606:
1607: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
1608:
1609: 2020-12-10 moko
1610:
1611: * src/: include/pa_config_includes.h, include/pa_http.h,
1612: main/pa_http.C, targets/cgi/parser3.C: initial support for
1613: MULTITHREADED and PARALLEL httpd server modes
1614:
1615: * src/main/pa_globals.C: GC_java_finalization is depricated
1616:
1617: 2020-12-09 moko
1618:
1619: * etc/auto.p.in: + @httpd-main
1620:
1621: * src/: include/pa_common.h, main/pa_request.C,
1622: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
1623: work
1624:
1625: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1626: slow file_read_binary no longer used, send_range added
1627:
1628: 2020-12-08 moko
1629:
1630: * src/main/pa_request.C: >4Gb support
1631:
1632: * src/targets/cgi/parser3.C: msvc warning war
1633:
1634: * src/: include/pa_config_includes.h, main/pa_http.C,
1635: main/pa_request.C: msvc warnings war
1636:
1637: * src/classes/image.C: warning war
1638:
1639: * src/classes/table.C: MSVC warning war
1640:
1641: * src/targets/cgi/parser3.C: msvc warnings war
1642:
1643: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
1644: added
1645:
1.149 moko 1646: 2020-12-07 moko
1647:
1.150 moko 1648: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
1649: avoid logging beside system-wide auto.p
1650:
1651: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
1652:
1653: * configure, configure.ac, src/include/pa_config_auto.h.in:
1654: configure options added:
1655:
1656: --with-system-cfg=FILE to specify system-wide auto.p
1657: --with-system-log=FILE to specify system-wide parser3.log
1658:
1659: * Makefile.am: bin no longer exists
1660:
1661: * configure, configure.ac: auto.p moved to etc to simplify debian
1662: package
1663:
1664: * buildall: auto.p and parser3.charsets moved to their default
1665: location after install
1666:
1667: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
1668:
1669: * aclocal.m4, configure: automake 1.15 -> 1.16.1
1670:
1.149 moko 1671: * src/targets/cgi/parser3.C: locate_config call returned to
1672: original place as it requires pa_thread_request() under Windows
1673:
1674: * src/targets/cgi/parser3.C: renaming
1675:
1676: 2020-12-06 moko
1677:
1678: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
1679: check added
1680:
1681: 2020-12-04 moko
1682:
1683: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
1684: main/pa_request.C: unified uint64_t lseek implemented to support
1685: >4Gb files under x86, including Windows
1686:
1687: 2020-12-02 moko
1688:
1689: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
1690: with max_file_size
1691:
1692: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
1693: support for processing files sized >4Gb on 32 bit planforms
1694:
1695: * tests/399.html: file moved
1696:
1697: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
1698:
1699: * src/targets/cgi/pa_sapi_info.h: warning war
1700:
1701: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
1702: warning war
1703:
1704: 2020-12-01 moko
1705:
1706: * src/classes/image.C: mp4 extended size (>4Gb) support added
1707:
1708: * src/classes/image.C: for "size not found" exception to be shown
1709: if size not found until eof
1710:
1711: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
1712: bit linux)
1713:
1714: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
1715: #1188)
1716:
1717: 2020-11-30 moko
1718:
1719: * src/classes/image.C: definitions moved closer to code
1720:
1721: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
1722: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
1723: 395_dir/3_VP8X.webp, results/395.processed,
1724: results/396.processed: tests for ^image::measure[] .webp support
1725: added, all image files moved into one directory (related to
1726: feature #1188)
1727:
1728: * src/classes/image.C: ^image::measure[] now supports webp (feature
1729: #1188)
1730:
1.148 moko 1731: 2020-11-29 moko
1732:
1733: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
1734: processing, unnessesary defines removed
1735:
1736: 2020-11-24 moko
1737:
1738: * tests/results/: 099.processed, 100.processed, 205.processed,
1739: 309.processed, 310.processed: Content-Disposition: inline
1740: returned
1741:
1742: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
1743: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
1744: ] added (related to bug #1204)
1745:
1746: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
1747: ] supported to avoid Content-Disposition: inline;
1748: filename="<file>.ext" but still set Content-Type for ext (related
1749: to bug #1204)
1750:
1.147 moko 1751: 2020-11-22 moko
1752:
1753: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
1754: types/pa_vfile.C: pa_filename added to avoid useless rsplit
1755:
1756: * src/main/pa_request.C: content_disposition_inline returned.
1757:
1758: 2020-11-17 moko
1759:
1760: * src/main/pa_request.C: empty main method name support
1761:
1762: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
1763: config_handler added, stdout flush added.
1764:
1765: 2020-11-16 moko
1766:
1767: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
1768:
1769: * tests/results/: 099.processed, 205.processed, 237.processed,
1770: 309.processed, 310.processed: Content-Disposition: inline is not
1771: required and should not contain filename="<name>"
1772:
1773: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
1774: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1775: targets/isapi/parser3isapi.C: pa_strcat implemented and used
1776:
1.146 moko 1777: 2020-11-14 moko
1778:
1779: * src/targets/cgi/parser3.C: spelling
1780:
1781: * src/targets/cgi/parser3.C: renaming
1782:
1783: * src/targets/cgi/parser3.C: args_skip removed, locate_config
1784: relocated
1785:
1786: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
1787: before request processing, which is weired
1788:
1789: 2020-11-13 moko
1790:
1791: * src/main/pa_http.C: pa_recv added with timeout support, thus read
1792: copied in httpd.
1793:
1794: 2020-11-12 moko
1795:
1796: * src/main/pa_http.C: ALARM code unified to be used in httpd
1797:
1798: * src/: include/pa_request.h, main/pa_request.C,
1799: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
1800:
1801: * src/main/pa_http.C: URI validation added
1802:
1803: * src/targets/cgi/parser3.C: filespec_to_process now variable,
1804: can't be empty but can be null. httpd-main is now main method
1805: name for httpd mode
1806:
1807: 2020-11-11 moko
1808:
1809: * src/main/pa_request.C: path_translated can be null in httpd mode
1810:
1811: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
1812: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
1813: classes/xdoc.C, include/pa_request.h, main/execute.C,
1814: main/pa_request.C: r.absolute -> r.full_disk_path
1815:
1816: * src/targets/cgi/parser3.C: if filename to process is not
1817: specified, auto.p should be present.
1818:
1.145 moko 1819: 2020-11-03 moko
1820:
1821: * src/: classes/op.C, include/pa_request.h: unused argument removed
1822:
1823: * src/main/pa_request.C: content_disposition_inline is the default,
1824: not required.
1825:
1.144 moko 1826: 2020-10-29 moko
1827:
1828: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
1829: ^use[file; $.main(true) ] implemented for auto.p processing and
1830: path_translated changing to correct relative files path
1831: calculation in httpd mode
1832:
1833: * src/: include/pa_request.h, main/pa_request.C:
1834: fail_on_read_problem removed, as it allways true, as if should
1835: be.
1836:
1837: * src/: include/pa_request.h, main/pa_request.C,
1838: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1839: targets/isapi/parser3isapi.C: clearing config_filespec when
1840: config was not found, thus flag not required and removed.
1841:
1842: 2020-10-28 moko
1843:
1844: * tests/: 402.html, results/402.processed: error reporting test
1845:
1846: * src/main/execute.C: better error reporting when
1847: $result[^hash::create[]] in @main.
1848:
1849: * src/main/: execute.C, pa_request.C: frame.result() should be used
1850: + minor optimization
1851:
1852: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
1853: main/pa_xml_io.C: execute_*_method simplified and unified
1854:
1855: 2020-10-27 moko
1856:
1857: * tests/: 306.html, results/306.processed: a bit more testing. :)
1858:
1859: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
1860: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
1861: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
1862: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
1863: types/pa_vmethod_frame.h, types/pa_vobject.C,
1864: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
1865: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
1866: longer used in object-prototype mode
1867:
1868: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
1869: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
1870: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
1871: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
1872: $form:name[value] features
1873:
1.143 moko 1874: 2020-10-18 moko
1875:
1876: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
1877:
1878: 2020-10-15 moko
1879:
1880: * src/main/pa_http.C: url no longer needed as
1881: ALTER_EXCEPTION_SOURCE is used
1882:
1883: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
1884: main/pa_http.C: check_file_size filespec is now optional
1885:
1886: * src/: classes/curl.C, include/pa_exception.h,
1887: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
1888: ALTER_EXCEPTION_COMMENT added for better error reporting
1889:
1890: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
1891: results/346-curl.processed, results/379-curl.processed,
1892: results/379.processed: test results updated as load now provides
1893: better error reporting + curl responses updated
1894:
1895: 2020-10-14 moko
1896:
1897: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
1898: main/pa_string.C, targets/apache/mod_parser3_core.C,
1899: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1900: checked. 10 is now default base, no hex autodetect by default
1901:
1902: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1903: connection socket closing in destructor + accept exception
1904: handling
1905:
1906: * src/targets/cgi/parser3.C: warning war
1907:
1908: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1909: main/pa_request.C, targets/apache/mod_parser3_core.C,
1910: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1911: exception handling unified
1912:
1913: 2020-10-13 moko
1914:
1915: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1916: autodetection
1917:
1918: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1919:
1920: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1921:
1922: * src/main/pa_http.C: warning war
1923:
1.142 moko 1924: 2020-10-12 moko
1925:
1.143 moko 1926: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1927: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1928: unhandled exception code optimization
1929:
1930: * src/targets/cgi/parser3.C: request_info now global variable
1931:
1932: * src/main/pa_http.C: http_read_response moved to HTTP_response
1933: class
1934:
1935: * src/: include/pa_http.h, main/pa_http.C,
1936: targets/cgi/pa_sapi_info.h: read_post implemented
1937:
1.142 moko 1938: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1939: [host:]port syntax support in httpd mode
1940:
1941: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1942: targets/cgi/parser3.C: populate_env added
1943:
1944: * src/include/pa_hash.h: to make get(char *) compiling in
1945: HashStringString
1946:
1947: 2020-10-10 moko
1948:
1949: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1950: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1951:
1952: * src/: include/pa_http.h, include/pa_request_info.h,
1953: main/pa_http.C, main/pa_string.C,
1954: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1955: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1956: types/pa_vrequest.C: initial httpd mode implementation
1957:
1.141 moko 1958: 2020-10-04 moko
1959:
1960: * src/targets/cgi/parser3.C: options together
1961:
1962: 2020-09-30 moko
1963:
1964: * src/main/pa_http.C: renamed
1965:
1.140 moko 1966: 2020-08-14 moko
1967:
1968: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1969: src/targets/cgi/Makefile.am: no httpd as separate library
1970:
1971: 2020-08-13 moko
1972:
1973: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1974: unhandled exception handler to report 500 instead of 200 it was
1975: before.
1976:
1977: * src/targets/apache/mod_parser3_core.C: minor cleanup
1978:
1979: * src/: include/pa_sapi.h, main/untaint.C,
1980: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1981: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1982: thus replaced with SAPI::die and removed
1983:
1984: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1985: cgi/parser3.C: whitespace
1986:
1987: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1988:
1989: 2020-08-12 moko
1990:
1991: * src/targets/cgi/parser3.C: duplicate info in signal logging
1992: removed, whitespace was: SIGPIPE received while executing code.
1993: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1994: cl=0]
1995:
1996: * parser3.sln: + httpd.vcproj
1997:
1998: 2020-08-11 moko
1999:
2000: * src/targets/cgi/Makefile.am: +libhttpd
2001:
2002: * configure.ac, src/lib/Makefile.am: +libhttpd
2003:
1.139 moko 2004: 2020-07-13 moko
2005:
2006: * tests/: 401.html, results/401.processed: test for hash key does
2007: not keep language, but tainted in foreach.
2008:
1.138 moko 2009: 2020-07-01 moko
2010:
2011: * tests/: 235.html, results/235.processed: test result updated as
2012: messages before attachments implemented (feature #1176)
2013:
1.137 moko 2014: 2020-06-27 moko
2015:
2016: * tests/: 400.html, results/400.processed: test updated to check
2017: ^return{code}
2018:
2019: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
2020: fixed
2021:
2022: 2020-06-26 moko
2023:
2024: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
2025: added (related to https://www.parser.ru/forum/?id=85319)
2026:
2027: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
2028: when $result assignment was last statement in the method
2029: (https://www.parser.ru/forum/?id=85319)
2030:
1.136 moko 2031: 2020-05-23 moko
2032:
2033: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
2034: whitespace, unused level removed
2035:
2036: 2020-05-19 moko
2037:
2038: * src/types/pa_vmail.C: whitespace
2039:
2040: * src/types/pa_vmail.C: files should be processed last (related to
2041: feature #1176)
2042:
1.135 moko 2043: 2020-05-12 moko
2044:
2045: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
2046: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
2047:
2048: * configure.ac: FreeBSD1X.X check added to avoid
2049: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
2050:
1.134 moko 2051: 2020-02-26 moko
2052:
2053: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
2054: compilation issue (related to bug #1201)
2055:
2056: * src/main/pa_common.C: entry_readable -> entry_exists,
2057: undocumented access(fname, R_OK) call removed (fixes bug #1201)
2058: -f and -d now works under Windows in UTF-8 with Russian
2059: filenames.
2060:
2061: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
2062: advice (related to feature #1199)
2063:
2064: 2020-02-25 moko
2065:
2066: * buildall: --silent removed
2067:
2068: * configure.ac: gmime-3.0 support
2069:
2070: * buildall: --with-system-mailreceive option added to build with
2071: system libgmime
2072:
2073: * src/types/pa_vmail.C: avoiding
2074: https://github.com/jstedfast/gmime/issues/83 "feature" (related
2075: to feature #1199)
2076:
1.133 moko 2077: 2020-02-18 moko
2078:
2079: * src/classes/op.C: windows x64 debug mode compile fix
2080:
2081: * src/main/pa_globals.C: no longer required due to -MD -> -MT
2082: change (releated to feature #1200)
2083:
2084: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2085: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
2086: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
2087: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
2088: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2089: targets/apache/ApacheModuleParser3.vcproj,
2090: targets/apache/ApacheModuleParser3Core.vcproj,
2091: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2092: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
2093: dependency (related to feature #1200)
2094:
1.132 moko 2095: 2020-02-12 moko
2096:
2097: * src/types/pa_vmail.C: minimize diff
2098:
2099: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
2100: #1199)
2101:
1.131 moko 2102: 2020-01-18 moko
2103:
2104: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
2105:
1.130 moko 2106: 2019-12-28 moko
2107:
2108: * src/targets/cgi/parser3.C: avoid empty ?
2109:
2110: 2019-12-27 moko
2111:
2112: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
2113: DOCUMENT_ROOT (related to feature #1164)
2114:
2115: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
2116: fcgiwrap setup (implements feature #1164)
2117:
2118: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
2119: but no issues found (related to feature #1164)
2120:
2121: * src/targets/cgi/parser3.C: actualized
2122:
2123: 2019-12-26 moko
2124:
2125: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
2126: removed
2127:
2128: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
2129: removed
2130:
2131: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
2132: allocation errors, we don't want default gc warnings (without
2133: timestamp and URI).
2134:
2135: * src/: classes/memory.C, main/pa_globals.C,
2136: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2137: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
2138: pa_globals_init
2139:
2140: * src/main/pa_globals.C: setup_hex_value() removed, static array
2141: initialization used (optimization)
2142:
2143: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
2144: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
2145: pa_socks_init/pa_socks_done moved inside pa_globals_init
2146: (optimization)
2147:
1.129 moko 2148: 2019-12-09 moko
2149:
2150: * src/include/pa_config_fixed.h: warning war
2151:
1.128 moko 2152: 2019-12-08 moko
2153:
2154: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
2155: process grammar under Unix.
2156:
2157: 2019-12-07 moko
2158:
2159: * tests/389.html: For Windows XP. :)
2160:
2161: * tests/388-sql.html: Windows compatibility added
2162:
2163: 2019-12-06 moko
2164:
2165: * src/targets/cgi/parser3.C: warning war
2166:
2167: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
2168: == sizeof(CORD)) to avoid aligning bugs in future
2169:
2170: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
2171: XML_STATIC
2172:
2173: * src/include/pa_request.h: StackItem() not required
2174:
2175: * src/include/pa_stack.h: warning war
2176:
2177: * src/include/pa_config_includes.h: GCC warning silenced
2178:
2179: * src/include/pa_memory.h: warning war: the program should also
2180: define 'void operator delete [](void*, std::size_t)'
2181: [-Wsized-deallocation]
2182:
2183: * src/types/: pa_vregex.h, pa_vtable.h: warning war
2184:
2185: * src/classes/string.C: not reqired cast removed
2186:
2187: * src/classes/string.C: not reqired cast removed
2188:
2189: 2019-12-05 moko
2190:
2191: * src/lib/sdbm/pa_file_io.C: warning war
2192:
2193: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
2194: enum Language : size_t - required for VS2015+ to make
2195: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
2196: without it (related to feature #1198)
2197:
2198: 2019-12-04 moko
2199:
2200: * src/main/pa_base64.C: unsigned char -> uchar
2201:
2202: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
2203: as other libs
2204:
2205: * src/include/pa_version.h: +amd64
2206:
2207: 2019-12-03 moko
2208:
2209: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
2210: release
2211:
2212: * src/include/pa_config_includes.h: warning war
2213:
2214: * src/classes/image.C: warning war
2215:
2216: * src/main/pa_globals.C: x64 libs support
2217:
2218: * src/include/pa_config_includes.h: warning war
2219:
2220: * src/types/pa_method.h: warning war
2221:
1.127 moko 2222: 2019-11-28 moko
2223:
2224: * src/classes/math.C: vs2003 compatibility + warning war
2225:
2226: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
2227: libxml2-2.9.9 (related to feature #1136)
2228:
2229: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
2230: typecast for more compatibility (related to feature #1136)
2231:
2232: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
2233: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
2234: feature #1136)
2235:
2236: 2019-11-26 moko
2237:
2238: * src/main/: compile_tools.C, compile_tools.h: invalid assert
2239: removed (it was failing in $$var case), condition added
2240:
1.126 moko 2241: 2019-11-25 moko
2242:
2243: * tests/: 397.html, 399.html, results/141.processed,
2244: results/399.processed: base64 options tested
2245:
2246: * src/: classes/math.C, main/pa_http.C: base64 options used
2247:
2248: * src/main/pa_base64.C: base64 encode rewritten, base64 options
2249: implemented (feature #986)
2250:
2251: * src/main/pa_cache_managers.C: whitespace
2252:
2253: * tests/: 397.html, 399.html, results/399.processed: tests for
2254: ^base64 encode options added (related to feature #986)
2255:
2256: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
2257: pa_base64_encode(file) removed - more memory, but faster and less
2258: code (related fo feature #986)
2259:
2260: 2019-11-24 moko
2261:
2262: * tests/: 155.html, results/155.processed: limit and offset in
2263: ^table::load[] now supported, thus test added
2264:
2265: * src/: classes/file.C, classes/table.C, include/pa_common.h,
2266: main/pa_common.C: optimization: offset and limit options parsing
2267: moved inside file_load.
2268:
2269: 2019-11-23 moko
2270:
2271: * src/: classes/file.C, classes/op.C, include/pa_common.h,
2272: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
2273: optimization: file_read replaced with simplified file_read_binary
2274:
2275: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
2276: types/pa_vform.C: whitespace
2277:
2278: * src/: include/pa_common.h, main/pa_common.C: never used params
2279: removed
2280:
2281: 2019-11-21 moko
2282:
2283: * tests/: 193.html, results/193.processed, results/389.processed:
2284: test results updated as now base64 does not discard tail without
2285: padding (related to feature #986)
2286:
2287: 2019-11-20 moko
2288:
2289: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
2290: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
2291: pa_base64_decode (related to feature #986)
2292:
2293: * tests/398.html: tests for base64 decode added (related to feature
2294: #986)
2295:
2296: * src/main/pa_base64.C: base64_decode rewritten - padding option
2297: support, padding inside base 64 supported (related to feature
2298: #096)
2299:
2300: 2019-11-19 moko
2301:
2302: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
2303: FreeBSD 12
2304:
1.125 moko 2305: 2019-11-16 moko
2306:
2307: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
2308: support added, step support removed (related to #986)
2309:
2310: 2019-11-15 moko
2311:
2312: * src/classes/math.C: using log since log2 is not present on
2313: FreeBSD < 8.4 (related to feature #1177)
2314:
2315: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
2316: pa_base64_size extracted and used for files as well (related to
2317: feature 986)
2318:
2319: 2019-11-14 moko
2320:
2321: * tests/: 397.html, results/397.processed: + content check
2322:
2323: * tests/: 141.html, results/141.processed: make test resuls more
2324: readable
2325:
2326: * tests/: 397.html, results/193.processed, results/397.processed:
2327: test results updated after \x00 character was disabled in
2328: math:convert string mode (related to feature #1177)
2329:
2330: * src/classes/: math.C, string.C: \\x00 character disabled while
2331: converting to string (as in base64, related to feature #1177)
2332:
2333: * src/classes/file.C: more correct arguments separation
2334:
2335: * src/: classes/file.C, classes/math.C, classes/string.C,
2336: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2337: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
2338: options added, but not yet implemented (related to feature #986)
2339:
2340: * src/classes/math.C: whitespace
2341:
2342: 2019-11-13 moko
2343:
2344: * tests/: 397.html, results/397.processed: +tainting test (related
2345: to feature #1177)
2346:
2347: * src/classes/math.C: as we now produce not only digits, result
2348: should be tainted (related to feature #1177)
2349:
2350: * src/main/pa_base64.C: whitespace
2351:
2352: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
2353: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
2354: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
2355: implementation moved from pa_common.h and pa_common.C
2356:
2357: 2019-11-12 moko
2358:
2359: * tests/: 275.html, results/275.processed: out of range test fixed,
2360: as ^math:convert now supports arbitrary precision
2361:
2362: 2019-11-11 moko
2363:
2364: * tests/results/389.processed: uctualized error message
2365:
2366: * tests/: 389.html, 397.html, results/397.processed: tests for
2367: ^math:convert added (related to feature #1177)
2368:
2369: * src/classes/math.C: ^math:convert now supports arbitrary
2370: precision, alphabet support added (implements feature #1177)
2371:
1.124 moko 2372: 2019-11-06 moko
2373:
2374: * tests/: 181.html, results/181.processed: entities usage added,
2375: more entites load tests (related to bug #842 discussion)
2376:
2377: 2019-11-05 moko
2378:
2379: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
2380: call from xmlFileOpen if http://localhost/<file> was not found
2381: (related to bug #842)
2382:
2383: * src/main/pa_xml_io.C: rename
2384:
2385: * src/main/pa_xml_io.C: +MemoryStream constructor
2386:
2387: * src/main/pa_xml_io.C: whitespace
2388:
1.123 moko 2389: 2019-10-31 moko
2390:
2391: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
2392: XML_PARSE_NOENT) added to fix entities load, (related to feature
2393: #1181)
2394:
1.122 moko 2395: 2019-10-25 moko
2396:
2397: * tests/: 388-sql.html, results/388-sql.processed: more multiple
2398: queries tests
2399:
2400: 2019-10-24 moko
2401:
2402: * tests/: 388-sql.html, results/388-sql.processed: support for
2403: pgsql driver test
2404:
2405: * tests/: 388-sql.html, results/388-sql.processed:
2406: multi_statements=1 now tested, mysql test now supported
2407: (connection must be specified in [parser3] section in .my.cnf)
2408: related to issues #1195 and #1194
2409:
1.121 moko 2410: 2019-09-11 moko
2411:
2412: * src/classes/int.C: whitespace
2413:
2414: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
2415: exception test
2416:
2417: * tests/results/388-sql.processed: sql queries now shown (related
2418: to feature #1196)
2419:
2420: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
2421: with old parser versions.
2422:
2423: * src/: classes/file.C, classes/hash.C, classes/string.C,
2424: classes/table.C, classes/void.C, include/pa_sql_connection.h,
2425: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
2426: instead of connect string in query_event_handlers exceptions
2427: (implements feature #1196)
2428:
1.120 moko 2429: 2019-09-06 moko
2430:
2431: * tests/388-sql.html: mysql compat
2432:
2433: * src/: classes/hash.C, classes/string.C, classes/table.C,
2434: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
2435: sql_ variables declaration moved to pa_common.h
2436:
1.116 moko 2437: 2019-01-15 moko
2438:
2439: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
2440: logically sorted
2441:
2442: 2018-12-27 moko
2443:
2444: * src/include/pa_config_includes.h: warning war:
2445: -Wdeprecated-register added for C++ 17
2446:
2447: 2018-10-15 moko
2448:
2449: * configure.ac: FreeBSD 11.2 can be build with ./configure
2450: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
2451: --with-xml=/usr/local/
2452:
2453: 2018-09-24 moko
2454:
2455: * tests/: 396.html, 396.tiff, results/396.processed: test for
2456: ^image::measure[] now supports tiff added (related to feature
2457: #1188)
2458:
2459: * src/classes/image.C: ^image::measure[] now supports tiff
2460: (implements feature #1188)
2461:
2462: 2018-09-20 moko
2463:
2464: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
2465: files measure added (related to ticket #1188)
2466:
2467: * src/classes/image.C: measure of bmp files implemented (related to
2468: ticket #1188)
2469:
2470: 2018-09-18 moko
2471:
2472: * tests/: 394-curl.html, results/394-curl.processed,
2473: results/auto.p: test for bug #1187 (max_file_size check for head
2474: requests) added
2475:
2476: 2018-08-24 moko
2477:
2478: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
2479: response content-length check is required (fixes bug #1187)
2480:
2481: 2018-05-11 moko
2482:
2483: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
2484: $.append(bool) ] option added (related to feature #919)
2485:
2486: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
2487: from misha@ patch (implements feature #919)
2488:
2489: 2018-03-22 moko
2490:
2491: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
2492: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
2493: with 128kb buffer. Now works at least 12 times faster. :) May be
2494: Windows-only problem.
2495:
2496: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
2497: build fix)
2498:
2499: 2018-02-03 moko
2500:
2501: * src/main/execute.C: removes irrelevant lines from exception stack
2502: trace when exceptions occurs in assigment (fixes bug #1165)
2503:
2504: * tests/: 393.html, results/393.processed: test for behavour after
2505: "Property can not be created, already exists field with that
2506: name" exception removed (related to feature #1183)
2507:
2508: * src/types/pa_vclass.C: "Property can not be created, already
2509: exists field with that name" exception removed (implements
2510: feature #1183)
2511:
2512: 2018-01-19 moko
2513:
2514: * src/classes/string.C: whitespace
2515:
2516: * src/classes/string.C: whitespace
2517:
2518: * tests/: 392.html, results/392.processed: test for
2519: ^regex::create[$regex] added (related to feature #1135)
2520:
2521: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
2522: ^regex::create[$regex] added (implements feature #1135)
2523:
2524: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
2525: commented define added (related to feature #1157)
2526:
2527: 2018-01-17 moko
2528:
2529: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
2530:
2531: 2018-01-15 moko
2532:
2533: * tests/: 390.html, results/390.processed: real path replaced by
2534: stub
2535:
2536: * tests/: 391.html, results/391.processed: test for feature #1181
2537: (XML_PARSE_HUGE exception) added
2538:
2539: 2018-01-11 moko
2540:
2541: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
2542: XML_PARSE_HUGE option passed by default (implements feature
2543: #1181)
2544:
2545: * src/classes/string.C: whitespace
2546:
2547: 2017-12-10 moko
2548:
2549: * tests/: 389.html, 390.html, results/389.processed,
2550: results/390.processed: image code coverage tests added (related
2551: to feature #1125)
2552:
2553: 2017-12-08 moko
2554:
2555: * tests/: 346-curl.html, 388-sql.html, 389.html,
2556: results/346-curl.processed, results/388-sql.processed,
2557: results/389.processed: more code coverage tests
2558:
2559: * tests/: 264.html, results/264.processed: code coverage for
2560: ^file::exec[]
2561:
2562: 2017-12-07 moko
2563:
2564: * tests/: 174.html, 388-sql.html, 389.html,
2565: results/388-sql.processed, results/389.processed,
2566: results/174.processed: more coverage tests
2567:
2568: * src/classes/math.C: exception text actualized
2569:
2570: 2017-12-06 moko
2571:
2572: * tests/388-sql.html: $SQL can be here
2573:
2574: * tests/results/auto.p: $SQL not required here
2575:
2576: * tests/: 388-sql.html, 389.html, Makefile,
2577: results/388-sql.processed, results/389.processed, results/auto.p:
2578: code coverage tests for sql (using sqlite) and int/double/bool
2579: added (related to feature #1125)
2580:
2581: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
2582: lib/json/json.vcproj, lib/md5/md5.vcproj,
2583: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
2584: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
2585: targets/apache/ApacheModuleParser3Core.vcproj,
2586: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
2587: types/types.vcproj: gc\include no longer required
2588:
2589: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
2590: required
2591:
2592: * src/: classes/Makefile.am, classes/table.C,
2593: include/pa_config_includes.h, include/pa_string.h,
2594: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2595: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
2596: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
2597: targets/apache/Makefile.am, targets/cgi/Makefile.am,
2598: types/Makefile.am: to be sure that our version of gc.h/cord.h is
2599: used, we now include it directly
2600:
2601: 2017-12-04 moko
2602:
2603: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
2604: memcached/memcached.vcproj, punycode/punycode.vcproj,
2605: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
2606: where required
2607:
2608: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
2609: now can be used to trace memory allocations
2610:
2611: * src/: classes/table.C, include/pa_config_includes.h,
2612: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
2613: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
2614: method removes, libcord also can work without libgc
2615:
2616: * src/classes/json.C: pa_gc_malloc_atomic should not be used
2617:
2618: 2017-11-29 moko
2619:
2620: * src/classes/curl.C: no exception if some of ^curl:info[] elements
2621: are not present (related to feature #1173)
2622:
2623: * tests/346-curl.html: test updated to test curl content-length bug
2624: (related to feature #1173)
2625:
2626: * tests/results/346-curl.processed: more test for content-length
2627: curl bug (related to feature #1173)
2628:
2629: * tests/results/346-curl.processed: test results updated after
2630: #1173 implemented
2631:
2632: 2017-11-28 moko
2633:
2634: * src/classes/curl.C: another libcurl Content-length bug walkaround
2635: (related to feature #1173)
2636:
2637: 2017-11-27 moko
2638:
2639: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
2640: $.http_version[version string] added (implements feature #1173),
2641: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
2642: where $post(true) bug existed.
2643:
2644: 2017-11-18 moko
2645:
2646: * src/include/pa_memory.h: warning war (related to feature #1170)
2647:
2648: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
2649: feature #1170)
2650:
2651: 2017-11-17 moko
2652:
2653: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
2654: std::basic_stringstream used in ^table.csv-string[] is compatible
2655: with delete usage check only under Debian 9 (related to feature
2656: #1170)
2657:
2658: 2017-11-16 moko
2659:
2660: * src/: classes/curl.C, classes/hash.C, classes/json.C,
2661: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
2662: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
2663: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
2664: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
2665: types/pa_vxdoc.h: regular new/delete no longer used in our code,
2666: stubs defend from accidental use (implements feature #1170)
2667:
2668: 2017-06-24 moko
2669:
2670: * configure.ac: minor fix: thanks to alx@
2671:
1.115 moko 2672: 2017-05-29 moko
2673:
2674: * src/types/pa_vmail.C: mail headers are now correctly truncated -
2675: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
2676: added to avoid cutting of UTF-8 chars (fixed bug #123)
2677:
2678: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
2679: ignored, =?UTF-8?Q?= should start in case of leading space
2680: (related to bug #123)
2681:
2682: * buildall: echo -n -> printf for OS X. :)
2683:
2684: 2017-05-25 moko
2685:
2686: * tests/: 288.html, results/288.processed: test updated afted
2687: setting $o.prop without setter exception removed (related to
2688: feature #1157)
2689:
2690: * src/types/pa_vclass.C: no more "this property has no setter
2691: method" when setting $o.prop without setter (implements feature
2692: #1157)
2693:
2694: * buildall: echo \c -> echo -n for FreeBSD
2695:
2696: * configure, configure.ac, src/include/pa_config_auto.h.in,
2697: src/types/pa_vdouble.h: isfinite now checked in configure
2698:
2699: * compile, config.guess, config.sub, depcomp, install-sh, missing:
2700: upgraded to automake 1.15
2701:
2702: 2017-05-23 moko
2703:
2704: * src/types/pa_vdouble.h: finite returned where isfinite not
2705: defined
2706:
2707: 2017-05-22 moko
2708:
2709: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
2710:
2711: * buildall: extern CFLAGS setting support
2712:
2713: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
2714:
2715: * buildall: http -> https
2716:
2717: * buildall: gc-7.2f -> gc-7.6.0
2718:
2719: 2017-05-20 moko
2720:
2721: * buildall: https, pcre, xml, xslt updated to current versions
2722: (related to feature #1136)
2723:
2724: 2017-05-19 moko
2725:
2726: * tests/097.html: after parser.ru moved to https
2727:
2728: 2017-05-17 moko
2729:
2730: * tests/results/: 175.processed, 372.processed: tests resuls
2731: updated after lintian spelling typos fixed (related to bug #1156)
2732:
2733: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
2734: classes/string.C, classes/table.C, main/pa_charset.C,
2735: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
2736: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
2737: lintian reported by Sergey B Kirpichev (fixes bug #1156)
2738:
2739: * tests/results/096.processed: +XMP
2740:
2741: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
2742: $.xmp(true) options tested (test for feature #1154)
2743:
2744: * src/classes/image.C: ^image:measure[] options $.exif(false)
2745: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
2746: fetched by default! (implements feature #1154)
2747:
2748: 2017-05-16 moko
2749:
2750: * tests/: 256.html, results/256.processed: ^json:string[$image] now
2751: allowed (related to feature #1154)
2752:
2753: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2754: initial XMP implementation - without options and transcode
2755: (related to feature #1154)
2756:
2757: 2017-05-12 moko
2758:
2759: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
2760: image: exif moved to ffields, skipped in ^image.html[] where
2761: iterators now used (preparation for feature #1154)
2762:
2763: 2017-05-05 moko
2764:
2765: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
2766: results/387.processed: test for circular class inheritance check
2767: added (related to bug #1150)
2768:
2769: * src/types/pa_vstateless_class.C: circular class inheritance check
2770: added (fixes endless add_derived bug #1150)
2771:
2772: 2017-05-04 moko
2773:
2774: * tests/: 386.html, results/386.processed: test for
2775: $table.value(number) added (related to feature #1152)
2776:
2777: * src/types/pa_vtable.C: table put_element: column value must be
2778: string - > column value must be string compatible to allow
2779: $t.value(1) (implements feature #1152)
2780:
2781: 2017-05-03 moko
2782:
2783: * src/main/pa_request.C: $use[$method] is not possible, reverting
2784: (related to feature #1151)
2785:
2786: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
2787: not possible, removing test (related to feature #1151)
2788:
2789: * src/: main/pa_request.C, types/pa_vstateless_class.h:
2790: get_element_method added and used to allow $use[$method] and
2791: $autouse[$method] (implements feature 1151)
2792:
2793: * tests/: 386.html, 386.p, results/386.processed: test for @use in
2794: variable added (related to feature #1151)
2795:
2796: * tests/results/226.processed: actualized after ^try-catch used
2797:
2798: * tests/: 226.html, 385.html, results/385.processed: test for
2799: @autouse in variable added
2800:
2801: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
2802:
1.114 moko 2803: 2017-02-27 moko
2804:
2805: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
2806:
1.113 moko 2807: 2017-02-20 moko
2808:
2809: * operators.txt: actualization + beauty
2810:
2811: 2017-02-16 moko
2812:
2813: * tests/: 384.html, results/384.processed: test for
2814: ^reflection:mixin[; $.name[] ] option added (related to feature
2815: #1089)
2816:
2817: * tests/: 384.html, results/384.processed: test for
2818: ^reflection:mixin[] added (related to feature #1089)
2819:
2820: * src/types/pa_value.h: warning war: virtual ~Value() added
2821:
1.112 moko 2822: 2017-02-15 moko
2823:
2824: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
2825: fixed
2826:
2827: * tests/: 320.html, results/320.processed: $.reverse(true/false)
2828: test added (related to feature #1069)
2829:
2830: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2831: compilation without HASH_ORDER fixed
2832:
2833: * src/: classes/reflection.C, include/pa_hash.h:
2834: $.reverse(true/false) added to ^reflection:methods[] (related to
2835: feature #1069)
2836:
2837: 2017-02-14 moko
2838:
2839: * tests/: 152.html, results/152.processed: test for $._default hash
2840: added (related to bug #1131)
2841:
2842: * tests/: 277.html, results/277.processed: test for hash with only
2843: $._default is now defined (related to bug #1131)
2844:
2845: * src/types/pa_vhash.h: hash with only $._default is now defined
2846: (fixed bug #1131)
2847:
2848: 2017-02-13 moko
2849:
2850: * tests/cat-windows.sh: cat-windows added (cygwin required)
2851:
2852: * tests/: 171.html, 264.html, 286.html, 370.html,
2853: results/320.processed, results/375.processed, results/auto.p:
2854: cat-windows.sh support added
2855:
2856: * tests/375.html: Windows support
2857:
2858: * tests/270.html: documented
2859:
2860: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
2861: (not backslashes) even under Windows (broke test 270)
2862:
2863: 2017-02-12 moko
2864:
2865: * tests/: descript.ion, todo.txt: cleanup
2866:
2867: 2017-02-09 moko
2868:
2869: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
2870: run_tests.cmd: Windows compatibility
2871:
2872: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
2873: incorrectly (GMT) if parser is called from cygwin
2874:
1.111 moko 2875: 2017-02-08 moko
2876:
1.112 moko 2877: * operators.txt: actualization 15% completed
2878:
2879: * operators.txt: cp1251 -> utf-8
2880:
2881: * NEWS, README: minor update
2882:
2883: * src/include/pa_config_includes.h: warning war continues
2884:
2885: * src/: include/pa_config_includes.h, include/pa_memory.h,
2886: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
2887: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
2888: gcc 6.x issues fixed
2889:
1.111 moko 2890: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
2891: classes/classes.h, classes/curl.C, classes/date.C,
2892: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
2893: classes/hashfile.C, classes/image.C, classes/inet.C,
2894: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2895: classes/memcached.C, classes/memory.C, classes/op.C,
2896: classes/reflection.C, classes/regex.C, classes/response.C,
2897: classes/string.C, classes/table.C, classes/void.C,
2898: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2899: include/pa_array.h, include/pa_cache_managers.h,
2900: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2901: include/pa_config_fixed.h, include/pa_config_includes.h,
2902: include/pa_dictionary.h, include/pa_dir.h,
2903: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2904: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2905: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2906: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2907: include/pa_request_charsets.h, include/pa_request_info.h,
2908: include/pa_sapi.h, include/pa_socks.h,
2909: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2910: include/pa_stack.h, include/pa_string.h,
2911: include/pa_stylesheet_connection.h,
2912: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2913: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2914: include/pa_uue.h, include/pa_xml_exception.h,
2915: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2916: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2917: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2918: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2919: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2920: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2921: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2922: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2923: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2924: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2925: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2926: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2927: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2928: main/pa_string.C, main/pa_stylesheet_connection.C,
2929: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2930: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2931: main/untaint.C, sql/pa_sql_driver.h,
2932: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2933: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2934: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2935: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2936: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2937: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2938: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2939: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2940: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2941: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2942: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2943: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2944: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2945: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2946: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2947: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2948: types/pa_vmemcached.h, types/pa_vmemory.h,
2949: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2950: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2951: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2952: types/pa_vresponse.C, types/pa_vresponse.h,
2953: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2954: types/pa_vstateless_object.h, types/pa_vstatus.C,
2955: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2956: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2957: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2958: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2959: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2960: 2015->2017
2961:
1.110 moko 2962: 2017-02-07 moko
2963:
2964: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2965:
2966: 2017-02-06 moko
2967:
2968: * src/main/pa_common.C: minor fixes, whitespace
2969:
2970: * src/: classes/curl.C, classes/file.C, classes/image.C,
2971: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2972: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2973: now used (implements feature #1081)
2974:
2975: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2976:
2977: 2017-02-01 moko
2978:
2979: * src/include/pa_request.h: cleanup
2980:
2981: 2017-01-30 moko
2982:
2983: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2984:
2985: 2017-01-29 moko
2986:
2987: * tests/: 383.html, results/383.processed: test for
2988: ^reflection:stack[] added (related to feature #1052)
2989:
2990: * src/classes/reflection.C: else added
2991:
2992: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2993: $.max_file_lock_wait added (implements feature #1128)
2994:
2995: 2017-01-28 moko
2996:
2997: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2998: body and other cases tests added (related to featue #1014)
2999:
3000: * src/classes/curl.C: bug if response is empty fixed (related to
3001: feature #1014)
3002:
3003: 2017-01-27 moko
3004:
3005: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
3006: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
3007: added (implements feature #1052)
3008:
3009: 2017-01-25 moko
3010:
3011: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
3012: method test added
3013:
3014: 2017-01-23 moko
3015:
3016: * src/classes/reflection.C: optimization: options->get replaced by
3017: hash iterator
3018:
3019: * tests/: 381.html, results/381.processed: now -> fixed date
3020:
3021: * src/main/pa_request.C: warning war
3022:
3023: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
3024: 5Mb (fixes bug #1058)
3025:
3026: * src/classes/curl.C: warning war
3027:
3028: * tests/: 381.html, results/381.processed: tests for ^json:string
3029: $.one-line(true) option added (related to feature #1124)
3030:
3031: * src/: classes/json.C, types/pa_value.h: $json-string
3032: $.one-line(true|false) options is now supported (implements
3033: feature #1124)
3034:
3035: * tests/: 380.html, results/380.processed: test for modified
3036: $.max_file_size added (related to bug #1014)
3037:
3038: * tests/: 379.html, results/auto.p: tests for rewritten http file
3039: load added (related to bug #1014)
3040:
3041: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3042: main/pa_common.C, main/pa_http.C: check_file_size added and used
3043: in curl / file load from disk and http, http file load rewritten
3044: (related to bug #1014)
3045:
3046: 2017-01-18 moko
3047:
3048: * tests/: 378.html, results/378.processed: tests for ^result[]
3049: added (related to feature #66)
3050:
3051: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
3052: Method::CO_WITHOUT_FRAME as frame still added in expression
3053: (related to feature #66)
3054:
3055: 2017-01-17 moko
3056:
3057: * tests/: 377.html, results/377.processed: test for different
3058: combinations of breaks in body and delimiter (related to bug
3059: #1077)
3060:
3061: * tests/: 376.html, results/376.processed: many ^break[] tests
3062: added (related to bug #1077)
3063:
3064: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
3065: passed to native method" exception added to avoid bugs due to
3066: WRITE_EXPR_RESULT skipped and native methods execution continues
3067: after ^break[] (related to bug #1077)
3068:
3069: 2017-01-14 moko
3070:
3071: * tests/: 330.html, results/330.processed: test results updated
3072: after ^break[] bugs where fixed (related to bug #1077)
3073:
3074: * tests/: 329.html, results/329.processed: test results updated
3075: after ^break[] bugs where fixed (related to bug #1077)
3076:
3077: * tests/results/320.processed: ^return[] added
3078:
3079: 2017-01-13 moko
3080:
3081: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
3082: classes/table.C, include/pa_request.h, main/execute.C,
3083: main/pa_request.C, targets/cgi/parser3.C,
3084: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
3085: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
3086: checked after each possible process/execute call (fixes bug
3087: #1077)
3088:
3089: 2016-12-29 moko
3090:
3091: * src/main/pa_common.C: warning war
3092:
3093: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
3094: include/pa_types.h, main/pa_request.C, main/pa_string.C:
3095: pa_file_size_limit added, ^math:random fixed for upper limit and
3096: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
3097: (related to feature #1014)
3098:
3099: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
3100: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
3101: (related to feature #1014)
3102:
3103: 2016-12-28 moko
3104:
3105: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
3106: warning war
3107:
3108: 2016-12-26 moko
3109:
3110: * tests/: 341.html, results/341.processed: test for
3111: ^table.hash[id;;$.type[string]] added (related to feature #1057)
3112:
3113: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
3114: (related to feature #1057)
3115:
3116: * src/types/pa_vdate.C: warning war continues...
3117:
3118: * src/: classes/date.C, classes/image.C, classes/table.C,
3119: include/pa_config_includes.h, types/pa_vfile.C: warning war
3120:
3121: * src/lib/gd/gifio.C: warning war / cleanup
3122:
3123: * src/lib/json/pa_json.C: warning war
3124:
3125: * src/classes/hash.C: warning war
3126:
3127: * src/types/pa_vfile.C: warning war
3128:
3129: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
3130: -Wall warning war continues
3131:
3132: * configure.ac: --with-build-warnings actualized
3133:
3134: 2016-12-25 moko
3135:
3136: * src/main/pa_exec.C: -wAll warning war
3137:
3138: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
3139: -wAll warning war
3140:
3141: * src/: include/pa_common.h, include/pa_sapi.h,
3142: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
3143: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
3144: -wAll warning war
3145:
3146: 2016-12-23 moko
3147:
3148: * src/lib/ltdl/Makefile.am: extra dist added
3149:
3150: * tests/results/344.processed: test result updated after $file.text
3151: prefetched in ^hash::create[$file] (related to feature #1075)
3152:
3153: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
3154: ^hash::create[$file] (related to feature #1075)
3155:
3156: 2016-12-22 moko
3157:
3158: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
3159: main/pa_request.C, main/pa_stylesheet_connection.C,
3160: types/pa_vfile.C: file_stat now return 64-bit size (implements
3161: #1014 under 32-bit unix versions)
3162:
3163: 2016-12-21 moko
3164:
3165: * tests/: 375.html, results/375.processed: test for exec returning
3166: stated file added (related to feature #1119)
3167:
3168: * src/classes/file.C: load should not return file with null body
3169: (fixes bug #1119)
3170:
3171: 2016-12-14 moko
3172:
3173: * tests/: 374.html, results/374.processed: test for $method.name
3174: added (related to feature #1117) plus method returning junction
3175: test
3176:
3177: 2016-12-13 moko
3178:
3179: * src/: include/pa_symbols.h, main/pa_symbols.C,
3180: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
3181: (implements feature #1117)
3182:
3183: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
3184: HEAD and TRACE can't have body (implements feature #1116)
3185:
3186: 2016-12-09 moko
3187:
3188: * tests/: 373.html, results/373.processed: tests for
3189: ^reflection:tainting added (related to feature #1098)
3190:
3191: * src/classes/reflection.C: ^reflection:tainting arguments order
3192: change (related to feature #1098)
3193:
3194: 2016-12-06 moko
3195:
3196: * src/: classes/reflection.C, include/pa_string.h,
3197: main/pa_string.C: ^reflection:tainting[$string] added (implements
3198: feature #1098)
3199:
3200: 2016-12-05 moko
3201:
3202: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
3203: (fixes bug #1114)
3204:
3205: 2016-12-04 moko
3206:
3207: * tests/: 206.html, results/206.processed: negative zero (0/-1)
3208: check added
3209:
3210: 2016-12-03 moko
3211:
3212: * tests/: 346-curl.html, results/346-curl.processed: test modified
3213: to test value.as_hash() usage
3214:
3215: * src/classes/curl.C: value.as_hash() used for correct hash
3216: processing
3217:
3218: * src/classes/reflection.C: exceptions texts fixes
3219:
3220: 2016-12-02 moko
3221:
3222: * tests/: 372.html, results/372.processed: tests for
3223: ^reflection:create[ $.class[name] $.constructor[name]
3224: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
3225: feature #1094)
3226:
3227: * src/types/pa_vmethod_frame.h: comment added: params should be
3228: declared outside of *_FRAME_ACTION as MethodParams destructor
3229: will be called in ~VNativeMethodFrame
3230:
3231: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
3232: ] minor fix
3233:
3234: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
3235: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
3236: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
3237: now supported (implements feature #1094) value::as_hash added
3238: (and should be used everywhere)
3239:
3240: * src/classes/reflection.C: cleanup
3241:
3242: 2016-12-01 moko
3243:
3244: * tests/: 356.html, results/356.processed: test for method
3245: junctions class name added to the resulting hash added (related
3246: to feature #1068)
3247:
3248: * src/classes/reflection.C: for method junctions class name added
3249: to the resulting hash (related to feature #1068)
3250:
3251: 2016-11-30 moko
3252:
3253: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
3254: exception (related to bug #1113)
3255:
3256: * src/types/pa_vhashfile.C: whitespace
3257:
3258: * src/main/pa_os.C: errno now returned as it should (fixes bug
3259: #1113)
3260:
3261: * tests/results/: 175.processed, 192.processed, 224.processed,
3262: 229.processed, 239.processed, 244.processed, 246.processed,
3263: 314.processed, 352.processed: tests results updated after method
3264: call exceptions improved as method now keeps its name
3265:
3266: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
3267: types/pa_vmethod_frame.h: method call exceptions improved as
3268: method now keeps its name
3269:
3270: * tests/: 224.html, 239.html, results/224.processed,
3271: results/239.processed: tests and tests results updated after
3272: Request::construct exception changed
3273:
3274: * src/: classes/reflection.C, main/execute.C: Request::construct
3275: exception optimized
3276:
3277: * tests/: 371.html, results/371.processed: test for
3278: WWrapper.get_element call in $.name.key[value] code added
3279: (related to feature #1091)
3280:
3281: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
3282: in $.name.key[value] code (related to feature #1091)
3283:
3284: 2016-11-29 moko
3285:
3286: * src/classes/op.C: VS warning war
3287:
3288: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
3289: C4239: nonstandard extension used : 'return' : conversion from
3290: 'Value' to 'Value &' (related to feature #1020)
3291:
3292: * src/: main/execute.C, types/pa_vmethod_frame.h,
3293: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
3294: used : 'return' : conversion from 'Value' to 'Value &' (related
3295: to feature #1020)
3296:
3297: * src/main/execute.C: VS warning war
3298:
3299: * src/targets/cgi/parser3.C: VS compatibility fix
3300:
3301: * src/include/pa_request.h: VS warning war
3302:
3303: * tests/: 370.html, results/370.processed: test for ^file::exec[
3304: ... $.stdin[$binary_file] ] added (related to bug #1044)
3305:
3306: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
3307: include/pa_string.h, main/pa_exec.C: pa_exec now supports
3308: $.stdin[$binary_file] (fixes bug #1044)
3309:
3310: 2016-11-28 moko
3311:
3312: * src/main/pa_exec.C: whitespace
3313:
3314: * src/main/pa_request.C: whitespace
3315:
3316: * tests/: 369.html, results/369.processed: test for
3317: $response:status usage added (related to feature #1099)
3318:
3319: * src/targets/cgi/parser3.C: HTTP response code used as exit status
3320: if < 100 (implements feature #1099)
3321:
3322: * src/targets/cgi/parser3.C: whitespace
3323:
3324: * src/targets/cgi/parser3.C: whitespace
3325:
3326: * tests/: 368.html, results/368.processed: test updated after
3327: ^reflection:filename[$method] added (related to feature #1053)
3328:
3329: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
3330: main/compile.y, main/execute.C, main/pa_request.C,
3331: types/pa_vclass.h: filename -> filespec,
3332: ^reflection:filename[$method] added (related to feature #1053)
3333:
3334: 2016-11-27 moko
3335:
3336: * tests/: 368.html, results/368.processed: test for
3337: reflection:filename[$class or object] added (related to feature
3338: #1053)
3339:
3340: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
3341: types/pa_vstateless_class.h: ^reflection:filename[$class or
3342: object] added (implements feature #1053)
3343:
3344: 2016-11-26 moko
3345:
3346: * src/: include/pa_request_info.h,
3347: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3348: remove_absolute_uri -> strip_absolute_uri
3349:
3350: 2016-11-25 moko
3351:
3352: * src/: include/pa_request_info.h,
3353: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
3354: request_info.remove_absolute_uri added to remove possible
3355: http://site.name/ from $request:uri (implements feature #1112)
3356:
3357: 2016-11-24 moko
3358:
3359: * tests/: 367-curl.html, results/367-curl.processed: test for
3360: previous request headers clearing after redirect added (related
3361: to bug #1109)
3362:
3363: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
3364: response headers from previous requests are now cleared, only
3365: last request headers are collected (fixes bug #1109)
3366:
3367: * tests/results/: 266.processed, 321.processed, 356.processed:
3368: tests results updated as method name now added to the resulting
3369: hash for new syntax only (Imp1 compatimility fixed, related to
3370: feature #1068)
3371:
3372: * src/classes/reflection.C: method name now added to the resulting
3373: hash for new syntax only (Imp1 compatimility fixed, related to
3374: feature #1068)
3375:
3376: * tests/results/366.processed: test for native and parser
3377: implementation of ^use[] logic (related to feature #1074)
3378:
3379: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
3380: for native and parser implementation of ^use[] logic (related to
3381: feature #1074)
3382:
3383: 2016-11-23 moko
3384:
3385: * src/: classes/op.C, include/pa_request.h, main/compile.y,
3386: main/pa_request.C: @USE file now implemented as ^use[file;
3387: $.origin[origin_file] ] (implements feature #1074)
3388:
1.109 moko 3389: 2016-11-21 moko
3390:
1.110 moko 3391: * tests/: 365.html, results/365.processed: test for $caller bugs in
3392: 3.4.4 and $caller.method now tested (related to feature #1110)
3393:
3394: * tests/: 364.html, results/364.processed: $caller usage in
3395: different contexts now tested (related to feature #1110)
3396:
3397: * src/types/types.vcproj: +pa_vcaller_wrapper.h
3398:
3399: * src/types/Makefile.am: pa_vcaller_wrapper.h added
3400:
1.109 moko 3401: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
3402: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
3403: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
3404: used (implements feature #1110)
3405:
3406: 2016-11-20 moko
3407:
3408: * src/types/pa_vdouble.h: whitespace
3409:
3410: 2016-11-11 moko
3411:
3412: * tests/: 363.html, results/363.processed: more tests for feature
3413: #1091 (how parser methods work in expression context)
3414:
3415: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
3416: expressions strings are now written as strings, not values by
3417: write_as_string (related to feature #1091)
3418:
3419: * src/classes/op.C: to make more correct behavour in expression
3420: context
3421:
3422: 2016-11-07 moko
3423:
3424: * tests/: 362.html, results/362.processed: test for
3425: xsltParseStylesheetDoc caching as xsl modification after it added
3426: (related to bug #1108)
3427:
3428: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
3429: result now cached as xdoc is modified after it (fixes bug #1108)
3430:
3431: 2016-11-06 moko
3432:
3433: * src/types/pa_vxdoc.h: whitespace
3434:
3435: 2016-11-05 moko
3436:
3437: * src/types/pa_vmethod_frame.h: cleanup
3438:
3439: 2016-11-03 moko
3440:
3441: * tests/results/244.processed: more correct exception after method
3442: frames separation
3443:
3444: * src/types/pa_vmethod_frame.h: minor optimizaion
3445:
3446: * src/types/pa_method.h: optimization: params_count added
3447:
3448: * src/: classes/json.C, classes/op.C, classes/reflection.C,
3449: include/pa_request.h, main/execute.C, main/pa_request.C,
3450: types/pa_value.C, types/pa_vmethod_frame.C,
3451: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
3452: VMethodFrame now divided into VNativeMethodFrame,
3453: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
3454: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
3455: and used (related to feature #1104)
3456:
3457: 2016-11-02 moko
3458:
3459: * src/: classes/bool.C, classes/curl.C, classes/date.C,
3460: classes/double.C, classes/file.C, classes/hash.C,
3461: classes/hashfile.C, classes/image.C, classes/inet.C,
3462: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3463: classes/memcached.C, classes/op.C, classes/reflection.C,
3464: classes/regex.C, classes/string.C, classes/table.C,
3465: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
3466: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
3467: r.write (implements feature #1091)
3468:
3469: * src/main/execute.C: cleanup (related to feature #1104)
3470:
3471: * src/: include/pa_request.h, main/execute.C,
3472: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
3473: added, in_expression removed (implements feature #1104)
3474:
3475: 2016-10-31 moko
3476:
3477: * src/types/pa_value.C: whitespace
3478:
3479: 2016-10-28 moko
3480:
3481: * tests/results/244.processed: updated after error reporting fixed
3482: in pa_wcontext.C
3483:
3484: * src/types/pa_wcontext.C: error reporting fixed
3485:
3486: * src/types/pa_wcontext.h: whitespace
3487:
3488: * src/classes/image.C: not fully readed entries are no longer
3489: processed (fixes bug #1106)
3490:
3491: 2016-10-26 moko
3492:
3493: * src/classes/image.C: whitespace
3494:
3495: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
3496: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
3497: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
3498: longer required (related to feature #1091)
3499:
3500: * tests/results/: 264.processed, 350.processed: test results update
3501: reverted (whitespace optimization) after write_no_lang removed :)
3502: (related to feature #1091)
3503:
3504: * src/: classes/file.C, classes/hash.C, classes/op.C,
3505: classes/string.C, classes/table.C, classes/void.C,
3506: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
3507: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
3508: equal write_pass_lang (related to feature #1091)
3509:
3510: * tests/results/: 264.processed, 350.processed: test results
3511: updated (whitespace optimization) after write_assign_lang removed
3512: (related to feature #1091)
3513:
3514: * tests/: 361.html, results/361.processed: test for non-string
3515: ^untaint added (related to feature #1091)
3516:
3517: * src/: classes/curl.C, classes/date.C, classes/file.C,
3518: classes/hash.C, classes/op.C, classes/string.C,
3519: include/pa_request.h, main/execute.C: optimization:
3520: write_assign_lang removed as not required (first part of feature
3521: #1091 implementation)
3522:
1.108 moko 3523: 2016-10-12 moko
3524:
3525: * tests/: 360.html, results/360.processed: more test code (related
3526: to feature #1104)
3527:
3528: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
3529: include/pa_request.h, main/compile.y, main/execute.C: opcode
3530: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
3531: WContext is next task (implements feature #1104)
3532:
3533: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
3534: / CO_WITHOUT_WCONTEXT
3535:
3536: * tests/: 360.html, results/360.processed: test for in expression
3537: state (related to feature #1104)
3538:
3539: 2016-10-11 moko
3540:
3541: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
3542:
3543: * src/classes/op.C: default value removed from initializer
3544:
3545: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
3546:
3547: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
3548:
3549: 2016-10-10 moko
3550:
3551: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
3552: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
3553: to feature #42)
3554:
3555: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
3556: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
3557:
3558: 2016-10-08 moko
3559:
3560: * src/classes/double.C: whitespace
3561:
3562: 2016-10-07 moko
3563:
3564: * src/types/pa_vmethod_frame.h: reorder
3565:
3566: 2016-10-06 moko
3567:
3568: * src/classes/date.C: typo
3569:
3570: * src/types/pa_vmethod_frame.h: whitespace + cleanup
3571:
3572: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3573: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
3574: types/pa_vmethod_frame.h: params.get now returns Value&, not
3575: Value*
3576:
3577: * src/types/pa_vmethod_frame.C: params.get should return Value&.
3578:
3579: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
3580: removed; first as_* code rewrite
3581:
3582: 2016-10-05 moko
3583:
3584: * src/include/pa_request.h: whitespace
3585:
3586: * tests/: 359.html, results/359.processed: test for VCodeFrame and
3587: intercept_string added (related to feature #1097)
3588:
3589: * src/: classes/image.C, classes/op.C, classes/table.C,
3590: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3591: optimization: intercept_string removed (implements feature #1097)
3592:
3593: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
3594:
3595: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
3596: from VCodeFrame and WWrapper as not required
3597:
3598: 2016-10-04 moko
3599:
3600: * src/: classes/curl.C, classes/date.C, classes/double.C,
3601: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
3602: classes/int.C, classes/json.C, classes/op.C,
3603: classes/reflection.C, classes/string.C, classes/table.C,
3604: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
3605: proces_to_value -> process after StringOrValue removed (related
3606: to feature #1020)
3607:
3608: * src/classes/form.C: whitespace
3609:
3610: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
3611:
3612: * tests/: 357.html, 358.html, results/357.processed,
3613: results/358.processed, results/auto.p: test for @conf
3614: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
3615:
3616: 2016-10-03 moko
3617:
3618: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
3619: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
3620: supported (implements feature #42)
3621:
3622: * src/types/pa_vregex.h: no reason for VRegex to be
3623: is_evaluated_expr
3624:
3625: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
3626: (implements feature #1095)
3627:
3628: 2016-10-01 moko
3629:
3630: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
3631: false by default (related to feature #1089)
3632:
3633: 2016-09-30 moko
3634:
3635: * src/types/pa_wcontext.h: cleanup
3636:
3637: 2016-09-29 moko
3638:
3639: * src/main/execute.C: whitespace
3640:
3641: * src/include/pa_request.h: whitespace
3642:
3643: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
3644: classes/op.C, classes/table.C, include/pa_request.h,
3645: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
3646: types/pa_vobject.C, types/pa_wcontext.h: optimization:
3647: StringOrValue removed as it just slows down and adds complexity
3648: (implements feature #1020)
3649:
3650: 2016-09-28 moko
3651:
3652: * tests/: 356.html, results/266.processed, results/321.processed,
3653: results/356.processed: tests updated after name was added to
3654: method_info hash, test for ^reflection:method_info[junction]
3655: added (related to feature #1068)
3656:
3657: * src/classes/reflection.C: ^reflection:method_info[junction] now
3658: supported, method name added to the resulting hash (implements
3659: feature #1068)
3660:
3661: * tests/: 276.html, results/276.processed: more tests for
3662: ^reflection:delete[]
3663:
3664: * src/classes/reflection.C: fixed bug then ^reflection:delete
3665: didn't work on class and could damage native objects (like file)
3666:
3667: 2016-09-26 moko
3668:
3669: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
3670: results/345.processed, results/346-curl.processed,
3671: results/347-curl.processed, results/348.processed: numbers added
3672: to simplify diff analysis
3673:
3674: * tests/: 352.html, results/352.processed: test result updated as
3675: method name used
3676:
3677: * src/classes/reflection.C: method name used
3678:
3679: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
3680: its name
3681:
3682: * src/types/pa_method.h: whitespace
3683:
3684: * src/classes/reflection.C: both method and field with one name can
3685: exist.
3686:
3687: * src/classes/reflection.C: ^reflection:mixin added (implements
3688: feature #1089)
3689:
3690: * tests/: 355.html, results/355.processed: property appears in
3691: derived class if added in base test added
3692:
3693: * src/types/pa_vstateless_class.h: get_method declaration +
3694: whitespace
3695:
3696: * tests/: 354.html, results/354.processed: nice test from method
3697: and property with one name in class added
3698:
3699: 2016-09-23 moko
3700:
3701: * src/classes/reflection.C: ^reflection:method usage documented
3702:
3703: 2016-09-22 moko
3704:
3705: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
3706: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
3707: compile warning and GPF occures on VS2003 (related to feature
3708: #1087)
3709:
3710: * tests/: 350.html, results/350.processed: test added for
3711: $.encloser[] support in ^table::create (related to feature #11)
3712:
3713: * src/classes/table.C: another minor fix (related to feature #11)
3714:
1.107 moko 3715: 2016-09-21 moko
3716:
3717: * src/include/pa_config_fixed.h: vs2015 compilation fixes
3718:
3719: * src/: classes/curl.C, classes/file.C, classes/hash.C,
3720: classes/json.C, classes/string.C, classes/table.C,
3721: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3722: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3723: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
3724: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
3725: pa_charsets, vs2015 warning war
3726:
3727: * src/classes/table.C: vs2015 warning war
3728:
3729: * src/types/pa_vdate.C: vs2015 warning war
3730:
3731: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
3732:
3733: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
3734: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
3735:
3736: * src/main/pa_common.C: vs2015 compilation fixes
3737:
3738: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
3739: vs2015 compilation fixes
3740:
3741: * src/main/pa_charset.C: vs2015 warning war
3742:
3743: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
3744:
3745: * src/main/pa_charset.C: vs2015 warning war
3746:
3747: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
3748:
3749: * src/types/pa_vdate.C: vs2015 compilation fix
3750:
3751: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
3752:
3753: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
3754: VS2015 compilation fixes
3755:
3756: * src/classes/table.C: minor fix (related to feature #11)
3757:
3758: * tests/results/282.processed: no longer skipping extra enclosers
3759: (related to feature #11)
3760:
3761: * src/classes/table.C: minor fix + no longer skipping extra
3762: enclosers (related to feature #11)
3763:
3764: * src/classes/table.C: minor optimization (related to feature #11)
3765:
3766: * src/classes/table.C: minor fix and optimization (related to
3767: feature #11)
3768:
3769: 2016-09-20 moko
3770:
3771: * tests/: 353.html, results/353.processed: test for
3772: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
3773: added (related to bug #1090)
3774:
3775: * src/main/compile.y: PC.cclass->is_vars_local() check added for
3776: one_big_piece (fixes bug #1090)
3777:
3778: * tests/: 229.html, results/229.processed: code coverage tests
3779:
3780: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
3781: body) was called
3782:
3783: * src/classes/op.C: whitespace
3784:
3785: * tests/: 323.html, results/323.processed: test for code junction
3786: should not be returned by ^reflection:class, ^reflection:base
3787:
3788: * src/classes/reflection.C: bugfix: code junction should not be
3789: returned by ^reflection:class, ^reflection:base
3790:
3791: * tests/: 323.html, 352.html, results/352.processed: no more
3792: exception for ^reflection:method[class;no-such-method] (related
3793: to feature #1087)
3794:
3795: * src/classes/reflection.C:
3796: ^reflection:method[class;no-such-method] : exception -> void
3797: (related to feature #1087)
3798:
3799: * src/include/pa_request.h: request::write_value added to allow
3800: write value without convertion (related to issue #1091)
3801:
3802: 2016-09-19 moko
3803:
3804: * src/main/pa_random.C: windows build fix
3805:
3806: * src/types/pa_vhash.h: warning war
3807:
3808: 2016-09-14 moko
3809:
3810: * tests/: 352.html, 552.html, results/352.processed,
3811: results/552.processed: test for ^reflection:method[] extension
3812: added (related to feature #1087)
3813:
3814: * tests/: 552.html, results/552.processed: test for
3815: ^reflection:method[] extension added (related to feature #1087)
3816:
3817: * src/classes/reflection.C: compatibility issue fixed, VClass
3818: dynamic_cast check added (related to feature #1087)
3819:
3820: * tests/: 351.html, results/351.processed: test for @auto[]
3821: inheritance bug diring ^process[] added (related to bug #1088)
3822:
3823: * src/: classes/op.C, main/pa_request.C,
3824: types/pa_vstateless_class.C: set_method now checks for @auto[] to
3825: disable it inheritance during ^process (fixes bug #1088)
3826:
3827: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
3828: added (implements feature #1087)
3829:
3830: 2016-09-13 moko
3831:
3832: * tests/: 349.html, results/auto.p: test for objects prototyping
3833: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
3834: to feature #1086)
3835:
3836: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
3837: types/pa_vobject.C: objects now are not class instances, but have
3838: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
3839: in @conf (implements feature #1086)
3840:
3841: 2016-09-08 moko
3842:
3843: * src/: classes/file.C, classes/mail.C, classes/string.C,
3844: classes/table.C, main/pa_http.C, main/pa_string.C,
3845: include/pa_string.h: cleanup: string::split limit argument
3846: removed as no longer required, pos_after no longer reference
3847: (related to feature #11)
3848:
3849: * src/classes/table.C, tests/results/348.processed: now exception
3850: is rised when invalid option is passed to ^table::create[]
3851:
3852: * tests/: 282.cfg, 282.html, results/282.processed: more code
3853: coverage tests
3854:
3855: * tests/: 348.html, results/348.processed: code coverage tests
3856: added
3857:
3858: * tests/: 348.html, results/348.processed: generic ^table::create[]
3859: tests
3860:
3861: * tests/: 035.html, results/035.processed, results/272.processed:
3862: tests updated after $.encloser[] support for ^table::create
3863: implementation (related to feature #11)
3864:
3865: * src/classes/table.C: $.encloser[] support for ^table::create
3866: finally added (implements feature #11)
3867:
3868: 2016-09-07 moko
3869:
3870: * src/include/pa_string.h: added StringSplitHelper as friend
3871: (related to feature #11)
3872:
3873: * src/include/pa_string.h: body and langs now protected, not
3874: private to allow inheritance (related to feature #11)
3875:
3876: * src/classes/table.C: lsplit optimized before cloning for
3877: ^table::create with $.encloser[] (related to feature #11)
3878:
3879: * src/classes/table.C: optimizaion: TableControlChars.separators
3880: added and used (related to feature #11)
3881:
3882: * src/classes/table.C: spelling:
3883:
3884: TableSeparators -> TableControlChars column -> separator
3885: separators -> control_chars
3886:
3887: 2016-09-06 moko
3888:
3889: * src/main/pa_string.C: whitespace
3890:
3891: * src/main/pa_string.C: whitespace
3892:
3893: 2016-09-01 moko
3894:
3895: * tests/: 347-curl.html, results/347-curl.processed: to make tests
3896: results OS-independent
3897:
3898: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3899: compiler (related to feature #1042)
3900:
3901: 2016-08-15 moko
3902:
3903: * src/include/pa_string.h: whitespace
3904:
3905: * src/classes/table.C: whitespace
3906:
1.106 moko 3907: 2016-08-05 moko
3908:
3909: * tests/: 344.html, results/344.processed: test for
3910: ^hash::create[$file] added (related to feature #1075)
3911:
3912: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3913: supported (implements feature #1075)
3914:
3915: 2016-08-04 moko
3916:
3917: * tests/: 341.html, results/341.processed: more code coverage tests
3918:
3919: * tests/: 346-curl.html, results/346-curl.processed: more code
3920: coverage tests for curl
3921:
3922: * tests/: 346-curl.html, results/346-curl.processed: more code
3923: coverage tests for curl
3924:
3925: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3926: results/223.processed: code coverage tests: $.form[ $.table[] ]
3927: test added
3928:
3929: * tests/: 223-curl.html, results/223-curl.processed: more code
3930: coverage tests for curl
3931:
3932: 2016-08-03 moko
3933:
3934: * src/classes/curl.C: dlink(curl_library) now called not once, but
3935: until it will be loaded, allowing to find existing library.
3936:
3937: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3938: results/347-curl.processed: more code coverage tests for curl
3939:
3940: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3941: results/339-curl.processed, results/346-curl.processed: curl
3942: functionality tests
3943:
3944: 2016-08-02 moko
3945:
3946: * tests/: 339.html, results/339.processed: test for tables in
3947: ^file:load[] and ^curl:load[] (commented) added (related to
3948: feature #1042)
3949:
3950: * tests/: 345.html, results/345.processed: code coverage tests for
3951: file class
3952:
3953: * tests/: 344.html, results/344.processed: code coverage tests
3954:
3955: * tests/: 344.html, results/344.processed: mdate removed from
3956: output
3957:
3958: * src/classes/file.C: minor bugfix: is_text should be taked from
3959: fcontent.is_text_mode() if not set (related to feature #1061)
3960:
3961: * tests/: 344.html, results/344.processed: more tests
3962:
3963: * tests/: 343.html, 344.html, results/343.processed,
3964: results/344.processed: tests for ^file::create[ $.from-charset
3965: and $.to-charset ] (related to feature #1061)
3966:
3967: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3968: aset_text_mode argument optimized
3969:
3970: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3971: checkBOM now used in detect_binary_content (related to feature
3972: #1061)
3973:
3974: * src/main/pa_request.C: load_charset no longer required to_upper
3975:
3976: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3977: preserves original file mode (if no $.mode specified)
3978:
3979: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3980: ^file::create now supports $.from-charset[] and $.to-charset
3981: options (implements feature #1061), automatic transcode is done
3982: if text file is created from binary file and charset is detected.
3983:
3984: 2016-07-30 moko
3985:
3986: * src/classes/table.C: ^t.hash[..;] now supported (related to
3987: feature #1057)
3988:
3989: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3990: added (related to feature #1057)
3991:
3992: * tests/: 286.html, results/286.processed: code tests coverage
3993:
3994: 2016-07-29 moko
3995:
3996: * src/classes/table.C: table size should be checked inside menu and
3997: foreach (related to feature #858)
3998:
3999: * src/: classes/curl.C, classes/file.C, classes/string.C,
4000: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
4001: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
4002: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
4003: charsets.get now does str_upper inside (related to feature #1061)
4004:
4005: * tests/: 342.html, results/342.processed: more code coverage tests
4006:
4007: * tests/: 342.html, outputs/342.processed: table menu code coverage
4008: + foreach test added (related to feature #858)
4009:
4010: * tests/: 341.html, results/341.processed: tests for
4011: ^table.hash[]{code} added + code coverage tests (related to
4012: feature #1057)
4013:
4014: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
4015: value} support (implements feature #1057)
4016:
4017: * src/classes/table.C: whitespace
4018:
4019: 2016-07-28 moko
4020:
4021: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
4022: from URL, if not specified query string removed from url-based
4023: filenames in ^curl:load[] and ^file::load[] (related to feature
4024: #1042)
4025:
4026: 2016-07-27 moko
4027:
4028: * tests/: 340.html, results/340.processed: test for
4029: transcode_text_result=false added (related to issue #1042)
4030:
4031: 2016-07-26 moko
4032:
4033: * src/types/pa_vfile.C: file name should not be empty (if file path
4034: is folder and ends with /) (related to feature #1042)
4035:
4036: * src/main/pa_http.C: whitespace optimizaion
4037:
4038: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
4039: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
4040: multiple headers, ^file::load supports headers transcoding
4041: (implements feature #1042)
4042:
4043: 2016-07-25 moko
4044:
4045: * src/include/pa_common.h: PA_DEFAULT added
4046:
4047: 2016-07-22 moko
4048:
4049: * tests/: 338.html, results/338.processed: test for
4050: $date.field(value) added (related to feature #1066)
4051:
4052: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
4053: $date.field(value) now supported for y/m/d/h/m/s (implements
4054: feature #1066)
4055:
1.105 moko 4056: 2016-07-21 moko
4057:
4058: * src/: classes/file.C, classes/image.C, include/pa_common.h,
4059: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
4060: arguments removed; image.C - absolute path shown in exception
4061: (implements feature #1071)
4062:
4063: * tests/: 235.html, results/235.processed: test and test result
4064: updated after static boundary in mail and Errors-To: mail header
4065: removed (related to feature #1047)
4066:
4067: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
4068: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
4069: used, static boundary in mail removed, Errors-To: mail header
4070: removed (implements feature #1047)
4071:
4072: 2016-07-20 moko
4073:
4074: * src/: classes/reflection.C, types/pa_vstateless_class.h:
4075: equest.classes(): Value -> VStateless_class, part 3 (related to
4076: issue #1051)
4077:
4078: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
4079: request.classes(): Value -> VStateless_class, part 2 (related to
4080: issue #1051)
4081:
4082: * tests/results/: 224.processed, 323.processed: classes without
4083: methods should not be methoded (related to issue #1051)
4084:
4085: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
4086: main/compile_tools.h, main/pa_request.C: request.classes(): Value
4087: -> VStateless_class, part 1 (related to issue #1051)
4088:
4089: * tests/: 337.html, results/337.processed: test for
4090: ^reflection:fields_reference[] and VHashReference class added
4091: (related to feature #1072)
4092:
4093: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
4094: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
4095: and VHashReference added, allowing ^reflection:fields_reference[]
4096: implementation (closes feature #1072)
4097:
4098: 2016-07-19 moko
4099:
4100: * tests/: 323.html, results/323.processed: we want to see
4101: "methoded"
4102:
4103: * tests/: 336.html, results/336.processed: test for $BASE:property
4104: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
4105: #1059)
4106:
4107: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
4108: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
4109: somebody_entered_some_class, $BASE:property works again,
4110: ^BASE:method[] bugs fixed (fixes bug #1059)
4111:
4112: 2016-07-14 moko
4113:
4114: * tests/: 335.html, results/335.processed: test for feature #1055
4115: added
4116:
4117: * src/classes/hash.C: bugfix: $._default was not copied if empty
4118: feature: ^hash.contains[_default] added (implements feature
4119: #1055)
4120:
4121: 2016-07-13 moko
4122:
4123: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
4124: should not call @autouse (http://www.parser.ru/forum/?id=83480)
4125:
4126: 2016-07-05 moko
4127:
4128: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
4129: in ^hash.foreach (related to feature #1073)
4130:
4131: 2016-07-04 moko
4132:
4133: * tests/: 134.html, 281.html, results/134.processed,
4134: results/281.processed: tests updated after hash blocking removed
4135: (related to feature #1073)
4136:
4137: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
4138: no longer blocks on change during foreach (implements feature
4139: #1073)
4140:
4141: 2016-06-17 moko
4142:
4143: * tests/: 330.html, results/330.processed: try exception source
4144: test added (related to bug in #1062)
4145:
4146: * tests/: 334.html, results/334.processed: Exception stack trace
4147: test added (related to bug in $1062)
4148:
4149: * src/classes/op.C: Exception trace now correctly restored and
4150: errors reported (related to bug #1062)
4151:
1.104 moko 4152: 2016-05-25 moko
4153:
4154: * src/main/compile.y: minor cleanup + beauty
4155:
4156: 2016-05-24 moko
4157:
4158: * tests/: 333.html, results/333.processed: more exceptions testing
4159:
4160: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
4161: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
4162: features #1056, #1026)
4163:
4164: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
4165: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
4166: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
4167: (implements feature #1056)
4168:
4169: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
4170: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
4171: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
4172: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
4173: feature #1026)
4174:
4175: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
4176: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
4177: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
4178: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
4179: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
4180: feature #1026)
4181:
4182: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
4183: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
4184: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
4185: SYMBOLS_CACHING define implemented (related to feature #1026)
4186:
4187: * src/main/main.vcproj: + ps_symbols
4188:
4189: * src/: include/Makefile.am, include/pa_string.h,
4190: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
4191: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
4192: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
4193: types/pa_vstateless_class.C: initial implementation for symbols
4194: cache (related to feature #1026)
4195:
4196: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
4197:
4198: * src/main/pa_globals.C: minor cleanup
4199:
4200: 2016-05-19 moko
4201:
4202: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
4203: (related to feature #1046)
4204:
4205: * tests/: 331.html, results/331.processed: test for
4206: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
4207: (related to feature #1051)
4208:
4209: * src/main/compile.y:
4210: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
4211: (implements feature #1054)
4212:
4213: 2016-05-18 moko
4214:
4215: * src/types/pa_vtable.C, tests/results/324.processed: no more
4216: "column not found" exception for ^table.no-such-method[] (related
4217: to feature #1046)
4218:
4219: * tests/: 261.html, results/261.processed: test added and updated
4220: after feature #1046 implementation
4221:
4222: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
4223: types/pa_vvoid.h: $string.anything works for whitespace strings,
4224: ^string.contains added for hash compatibility, $string.method no
4225: longer returns stting method (implements feature #1046)
4226:
4227: 2016-05-12 moko
4228:
4229: * src/classes/curl.C: content-type response header no longer
4230: ignored (fixes issue #1045)
4231:
4232: * tests/: 330.html, results/330.processed: test for incomplete
4233: finally execution when break occures added (related to issue
4234: #1077)
4235:
4236: * src/classes/op.C: bugfix: Request::skip reset is called before
4237: executing catch and finally code (fixes issue #1062)
4238:
4239: 2016-05-11 moko
4240:
4241: * tests/: 329.html, results/329.processed: test for invalid
4242: ^break[] behavour added (bug #1077)
4243:
4244: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
4245:
4246: 2016-04-24 moko
4247:
4248: * src/types/pa_vstateless_class.h: warning war
4249:
4250: 2016-04-17 moko
4251:
4252: * tests/: 328.html, results/328.processed: test for
4253: ^break(condition) and ^continue(condition) (related to feature
4254: #1063)
4255:
4256: * src/classes/op.C: ^break(condition) and ^continue(condition)
4257: implemented (feature #1063)
4258:
4259: 2016-04-12 moko
4260:
4261: * tests/results/280.processed: ordered hash now used for class
4262: methods and properties (test results updated for feature #1069)
4263:
4264: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
4265: to xdoc.C as under FreeBSD it was inited after and inheritance
4266: failed (related to issue #1051)
4267:
4268: * tests/: 320.html, results/320.processed: xdoc and xnode methods
4269: are printed to check inheritance (related to feature #1051)
4270:
1.103 moko 4271: 2016-04-09 moko
4272:
4273: * tests/results/320.processed: ordered hash now used for class
4274: methods and properties (test results updated for feature #1069)
4275:
4276: * src/types/pa_vstateless_class.h: ordered hash now used for class
4277: methods and properties (implements feature #1069)
4278:
4279: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
4280: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
4281: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
4282: feature #1051)
4283:
4284: 2016-04-07 moko
4285:
4286: * src/main/execute.C: returned Value in .CLASS case for VJunction
4287: (related to feature #1051)
4288:
4289: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
4290: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
4291: string constants deduplication (related to feature #1051)
4292:
4293: * tests/results/224.processed: test result updated (related to
4294: feature #1051)
4295:
4296: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
4297: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
4298: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
4299: types/pa_vstatus.h: classes hash now contains only
4300: VStateless_class derived objects, .CLASS is also allways
4301: VStateless_class derived object (related to feature #1051).
4302:
4303: 2016-04-06 moko
4304:
4305: * tests/results/323.processed: test result updated after feature
4306: #1051 implementation
4307:
4308: * src/: classes/classes.h, classes/op.C, classes/response.C,
4309: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
4310: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
4311: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
4312: types/pa_vresponse.C, types/pa_vresponse.h,
4313: types/pa_vstateless_class.h: base -> methoded_donor for static
4314: classes, type() moved from VStateless_class to VClass and
4315: Methoded (implements feature #1051)
4316:
4317: 2016-04-04 moko
4318:
4319: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
4320: beauty: put_class added (related to feature #1051)
4321:
4322: 2016-04-01 moko
4323:
4324: * tests/results/: 175.processed, 192.processed, 224.processed,
4325: 229.processed, 244.processed, 246.processed, 316.processed: test
4326: results updated as class.type() removed from error messages, only
4327: type() left (related to feature #1051)
4328:
4329: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
4330: classes/op.C, classes/reflection.C, main/compile.y,
4331: main/compile_tools.h, main/execute.C, main/pa_request.C,
4332: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
4333: types/pa_vmethod_frame.h, types/pa_vobject.h,
4334: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
4335: from VStateless_class, type() is used instead (related to feature
4336: #1051)
4337:
4338: * src/classes/mail.C: old logic restored.
4339:
4340: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
4341: classes/classes.h, classes/curl.C, classes/date.C,
4342: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
4343: classes/hashfile.C, classes/image.C, classes/inet.C,
4344: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
4345: classes/memcached.C, classes/memory.C, classes/reflection.C,
4346: classes/regex.C, classes/response.C, classes/string.C,
4347: classes/table.C, classes/xdoc.C, classes/xnode.C,
4348: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
4349: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
4350: feature #1051)
4351:
4352: 2016-03-30 moko
4353:
4354: * tests/: 327.html, results/224.processed, results/327.processed:
4355: test for TZ specification in ^date::create[], TZ is kept during
4356: ^date::create[$dt] (related to feature #1048)
4357:
4358: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
4359: ^date::create[], TZ is kept during ^date::create[$dt] (implements
4360: feature #1048)
4361:
4362: 2016-03-29 moko
4363:
4364: * tests/: 315.html, results/315.processed: test for timezone format
4365: +HHmm added (related to feature #1065)
4366:
4367: * src/classes/date.C: timezone format +HHmm now supported
4368: (implements feature #1065)
4369:
4370: 2016-03-28 moko
4371:
4372: * tests/: 202.html, results/131.processed, results/202.processed,
4373: results/224.processed, results/256.processed,
4374: results/315.processed: test results updated after %.2d now
4375: default for hours offset in iso-string (was %2d), test for
4376: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4377: added (related to feature #1065)
4378:
4379: 2016-03-27 moko
4380:
4381: * src/types/pa_vdate.C: '+' sign for zero offset (related to
4382: feature #1065)
4383:
4384: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
4385: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
4386: added (implements feature #1065)
4387:
4388: 2016-03-24 moko
4389:
4390: * tests/: 202.html, results/202.processed: test $date.week added
4391: (related to bug #1067)
4392:
4393: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
4394: date (fix for bug #1067)
4395:
4396: 2016-03-10 moko
4397:
4398: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
4399:
1.102 moko 4400: 2015-12-07 moko
4401:
4402: * tests/: 326.html, results/326.processed: test for .CLASS &
4403: .CLASS_NAME optimization added (related to feature #844)
4404:
4405: 2015-11-17 moko
4406:
4407: * tests/: 323.html, results/323.processed: order added
4408:
4409: * tests/: 325.html, results/325.processed: double range test added
4410: (related to bug #1049)
4411:
4412: 2015-11-16 moko
4413:
4414: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
4415: added to disallow NaN and Infinity (fixes bug #1049)
4416:
4417: 2015-11-11 moko
4418:
4419: * tests/324.html: parser 3.4.3 execution support added (related to
4420: feature #1017)
4421:
4422: * tests/: 324.html, results/324.processed: test for
4423: GET_ELEMENT4CALL feature added (feature #1017)
4424:
1.101 moko 4425: 2015-10-29 moko
4426:
4427: * operators.txt: updated for 3.4.4
4428:
4429: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
4430:
4431: * src/main/pa_exec.C: get_exit_status implemented for Windows
4432: (related to bug #1043)
4433:
4434: 2015-10-28 moko
4435:
4436: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
4437: hangup during ^file::exec (fixes bug #1043)
4438:
1.100 moko 4439: 2015-10-27 moko
4440:
4441: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
4442:
1.99 moko 4443: 2015-10-26 moko
4444:
1.100 moko 4445: * tests/322.html, src/classes/reflection.C: arguments reorder
4446: (related to issue #1041)
4447:
4448: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
4449: Copyright year updated
4450:
1.99 moko 4451: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
4452: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
4453: classes/form.C, classes/hash.C, classes/hashfile.C,
4454: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
4455: classes/mail.C, classes/math.C, classes/memcached.C,
4456: classes/memory.C, classes/op.C, classes/reflection.C,
4457: classes/regex.C, classes/response.C, classes/string.C,
4458: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
4459: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
4460: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
4461: include/pa_config_fixed.h, include/pa_config_includes.h,
4462: include/pa_dictionary.h, include/pa_dir.h,
4463: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
4464: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
4465: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
4466: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
4467: include/pa_request_charsets.h, include/pa_request_info.h,
4468: include/pa_sapi.h, include/pa_socks.h,
4469: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
4470: include/pa_stack.h, include/pa_string.h,
4471: include/pa_stylesheet_connection.h,
4472: include/pa_stylesheet_manager.h, include/pa_table.h,
4473: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
4474: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
4475: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
4476: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
4477: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
4478: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
4479: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
4480: main/compile.y, main/compile_tools.C, main/compile_tools.h,
4481: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
4482: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
4483: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
4484: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
4485: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
4486: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
4487: main/pa_string.C, main/pa_stylesheet_connection.C,
4488: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
4489: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
4490: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
4491: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
4492: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
4493: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
4494: targets/isapi/parser3isapi.C, types/pa_junction.h,
4495: types/pa_method.h, types/pa_property.h, types/pa_value.C,
4496: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
4497: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
4498: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
4499: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
4500: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
4501: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
4502: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
4503: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
4504: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
4505: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
4506: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
4507: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
4508: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
4509: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
4510: types/pa_vresponse.C, types/pa_vresponse.h,
4511: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
4512: types/pa_vstateless_object.h, types/pa_vstatus.C,
4513: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
4514: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
4515: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4516: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
4517: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
4518:
4519: * src/targets/cgi/parser3.C: year updated
4520:
4521: * src/classes/reflection.C: VS2003 compatibility fixed (related to
4522: issue #1041)
4523:
4524: * tests/: 323.html, results/323.processed: test for base classes
4525: added
4526:
4527: * tests/: 261.html, results/261.processed: updated after better
4528: error reporting done for $string.key exception
4529:
4530: * src/types/pa_vstring.h: better error report for $string.key
4531: exception
4532:
4533: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
4534: copied as VObject::get_element4call to remove extra virtual call
4535:
4536: * tests/: 322.html, results/322.processed: test for
4537: ^reflection:is[] added (related to feature #1041)
4538:
4539: * src/classes/reflection.C: ^reflection:is empty value is void
4540: (related to feature #1041)
4541:
4542: * src/classes/reflection.C:
4543: ^reflection:is[class_name|code|method;[context;]element_name]
4544: added (implements feature #1041)
4545:
4546: 2015-10-24 moko
4547:
4548: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
4549:
1.98 moko 4550: 2015-10-22 moko
4551:
4552: * tests/: 321.html, results/321.processed: test for
4553: ^reflection:method_info[] file detection added
4554:
4555: * tests/: 320.html, results/320.processed: test for
4556: ^reflection:class_by_name[class_name] added (related to feature
4557: #993)
4558:
4559: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
4560: added (implements feature #993)
4561:
4562: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
4563: (related to feature #1017)
4564:
4565: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
4566: added (related to issue #1039)
4567:
4568: * src/main/pa_request.C: ^throw origin fixed (related to feature
4569: #1039)
4570:
4571: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
4572: for VDate
4573:
4574: * tests/results/182.processed: updated after feature #1038
4575: implemented
4576:
4577: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
4578: compile-time exception origin added (test for feature #1039)
4579:
4580: * src/: include/pa_request.h, main/compile.C, main/compile.y,
4581: main/pa_request.C: exception unification: compile-time exceptions
4582: now have origin, @USE origins also tracked (implements feature
4583: #1039)
4584:
4585: 2015-10-20 moko
4586:
4587: * src/main/pa_request.C: cleanup
4588:
4589: 2015-10-15 moko
4590:
4591: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
4592:
4593: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
4594: types/pa_vtable.C: new feature: no more $table.method and
4595: $hash.method, aliases for _at, _count, _key (related to feature
4596: #1017)
4597:
1.97 moko 4598: 2015-10-14 moko
4599:
1.98 moko 4600: * tests/: 317.html, results/317.processed: test for
4601: ^string.unescape[] added (related to feature #120)
4602:
1.97 moko 4603: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
4604: defined" bug (described in issue #1036)
4605:
4606: * tests/: 247.html, results/247.processed: test for checkBOM added
4607: (test for bug #1037)
4608:
4609: * src/: include/pa_charsets.h, main/pa_charsets.C,
4610: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
4611: it's not enforced, skips BOM signature if it complies charset
4612: (fixes bug #1037)
4613:
4614: 2015-10-13 moko
4615:
4616: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
4617: linking
4618:
4619: * src/classes/inet.C: vs2003 compilation fix
4620:
4621: * src/classes/math.C: warning war
4622:
4623: * src/lib/punycode/pa_punycode.c: warning war
4624:
4625: 2015-10-12 moko
4626:
4627: * src/lib/punycode/pa_punycode.c: warning war
4628:
4629: * parser3.sln: moved parser3 first, to make it default startup
4630: project
4631:
4632: * buildall: parser "mirror" now used for external libs sources
4633: (implements feature #1036)
4634:
4635: * buildall: most external libs are updated to their current
4636: versions (related to feature #1036)
4637:
4638: * src/classes/image.C: more tags added
4639:
4640: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
4641:
4642: 2015-10-11 moko
4643:
4644: * src/classes/curl.C: minor optimization (related to feature #1035)
4645:
4646: 2015-10-09 moko
4647:
4648: * src/classes/curl.C: pa_strdup added for strings from curl
4649: (related to feature #1035)
4650:
4651: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
4652: ULLONG_MAX definition
4653:
4654: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
4655: (implements feature #1035)
4656:
4657: * src/main/pa_charset.C: String::Body(String::C) used
4658:
4659: * src/main/pa_charset.C: exceptions unified
4660:
4661: * src/: include/pa_charset.h, main/pa_charset.C: declarations
4662: unified
4663:
4664: * src/: classes/file.C, classes/image.C, classes/mail.C,
4665: classes/op.C, classes/xdoc.C, classes/xnode.C,
4666: include/pa_string.h, main/pa_request.C, main/pa_string.C,
4667: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
4668: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
4669: String::Body(String::C) constructor added (related to bug #957)
4670:
4671: * src/classes/file.C: minor optimization
4672:
4673: * src/include/pa_hash.h: hash.get(char*) added, to minimize
4674: Cord(char*) autocreation (related to bug #957)
4675:
4676: * src/: classes/string.C, main/untaint.C: minor optimizations
4677:
4678: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
4679: String(char*, Lang, length) removed, String(C(), Lang) used
4680: instead (related to bug #957)
4681:
4682: 2015-10-08 moko
4683:
4684: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
4685: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
4686: main/untaint.C: Now char * is converted to CORD only using
4687: AS_CORD() to check for empty cord bug (fixes bug #957)
4688:
4689: * src/include/pa_hash.h: fixed compilation without
4690: HASH_CODE_CACHING
4691:
4692: * src/classes/string.C:
4693: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
4694: feature #120)
4695:
4696: * src/main/pa_common.C: reduce js flags checks count (related to
4697: feature #120)
4698:
1.96 moko 4699: 2015-10-07 moko
4700:
4701: * tests/: 275.html, results/275.processed: test modified after
4702: unsigned long long int support implemented (feature #1034)
4703:
4704: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
4705: pa_atoul added for unsigned long long int support
4706:
4707: 2015-10-06 moko
4708:
4709: * src/types/pa_vdate.C: INT_MAX used
4710:
4711: 2015-10-03 moko
4712:
4713: * tests/: 302.html, results/302.processed: test for bug #1023
4714: (\u2028, \u2029 escaping) added
4715:
4716: * src/main/untaint.C: \u2028, \u2029 are now escaped in
4717: json:string[] (fixes bug #1023)
4718:
4719: 2015-09-29 moko
4720:
4721: * tests/305.html: try-catch added for OS without ipv6 support
4722:
4723: * src/lib/json/pa_json.C: more unique prefixes for Solaris
4724: compilation
4725:
4726: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
4727: main/execute.C, types/pa_value.h, types/pa_vhash.h,
4728: types/pa_vtable.C, types/pa_vtable.h: get_element4call
4729: implemented to distinguish ^hash.method from $hash.field
4730: (implements feature #1017)
4731:
4732: * src/lib/punycode/pa_punycode.c: warning war
4733:
4734: * src/include/pa_config_includes.h: warning war
4735:
4736: * src/include/pa_config_includes.h: pragma warning actualized a bit
4737:
4738: * src/include/pa_config_includes.h: warning war
4739:
4740: * src/include/pa_hash.h: clang compilation fix
4741:
4742: 2015-09-27 moko
4743:
4744: * src/main/compile.tab.C: Bison 3 is now default
4745:
4746: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
4747:
4748: 2015-09-25 moko
4749:
4750: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
4751: works with undefined HASH_ORDER (related to feature #196)
4752:
4753: 2015-09-24 moko
4754:
4755: * tests/: 027.html, results/027.processed: test modified to test
4756: ^hash.sort (feature #196)
4757:
4758: * src/: classes/hash.C, include/pa_hash.h:
4759: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
4760: added (implements feature #196)
4761:
4762: * tests/: 316.html, results/316.processed: Added test for bug #1025
4763: (exception handling in non-cached ^cache), plus for "it does not
4764: have logical value" and "$exception.handled value must be either
4765: boolean or string 'cache'" exceptions.
4766:
4767: * src/classes/op.C: ^cache: exceptions now handled in non-cached
4768: code (fixes bug #1025)
4769:
1.95 moko 4770: 2015-09-23 moko
4771:
4772: * src/classes/table.C: warning war
4773:
4774: * src/: classes/math.C, types/pa_vcookie.C: warning war
4775:
4776: * src/classes/file.C: warning war
4777:
4778: * src/: include/pa_table.h, main/pa_table.C: warning war
4779:
4780: * src/: main/pa_request.C, classes/date.C: warning war
4781:
4782: * src/: types/pa_vdate.C, classes/op.C: warning war
4783:
4784: * tests/: 122.html, results/122.processed: win sync: to remove
4785: differences with OS that doesn't keep timezone change history
4786:
4787: * src/types/pa_vdate.C: tzset() should be called in Windows after
4788: TZ change (related to feature #36)
4789:
4790: * tests/: 075.html, results/075.processed: win sync: to remove
4791: differences with OS that doesn't keep timezone change history
4792:
4793: * tests/: 315.html, results/315.processed: win sync: to remove
4794: differences with OS that doesn't keep timezone change history
4795:
4796: * tests/: 256.html, results/256.processed: win sync: to remove
4797: differences with OS that doesn't keep timezone change history
4798:
4799: * tests/: 124.html, results/124.processed: win results sync: to
4800: avoid hitting time change hole.
4801:
4802: * src/types/pa_vdate.C: static returned. :)
4803:
4804: 2015-09-22 moko
4805:
4806: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
4807:
4808: * tests/results/131.processed: more tests for feature #1032
4809:
4810: * src/classes/date.C: minor fix related to feature #1032
4811:
4812: * operators.txt: ISO date creation documented (related to feature
4813: #1032)
4814:
4815: * operators.txt: iso-string documented (related to feature #1032)
4816:
4817: * tests/: 315.html, results/315.processed: more tests added
4818: (related to feature #1032)
4819:
4820: * tests/: 131.html, results/131.processed: date range checks
4821: updated (related to feature #36)
4822:
4823: * tests/: 315.html, results/057.processed, results/315.processed:
4824: test added for ISO date support (related to issue #315)
4825:
4826: * src/classes/date.C: more readable exceptions in date creation
4827: (related to ticket #1032)
4828:
4829: 2015-09-18 moko
4830:
4831: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
4832: added (related to issue #1032)
4833:
4834: * tests/results/256.processed, src/classes/json.C: iso-string
4835: documented (related to issue #1032)
4836:
4837: * tests/: 256.html, results/256.processed: ISO date check added
4838: (related to issue #1032)
4839:
4840: * tests/: 057.html, results/057.processed, results/224.processed:
4841: tests results updated after ISO date support implemented (related
4842: to feature #1032)
4843:
4844: * src/: classes/date.C, classes/image.C, types/pa_value.h,
4845: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
4846: ^date::create[string] constructor formalized, ^date.iso-string[]
4847: added (implements feature #1032)
4848:
4849: 2015-09-05 moko
4850:
4851: * operators.txt: actualized
4852:
4853: * operators.txt: date changes documented (related to ticket #36)
4854:
4855: 2015-09-04 moko
4856:
4857: * src/types/pa_vdate.C: warning war
4858:
4859: * src/: classes/op.C, types/pa_vhashfile.C: warning war
4860:
4861: 2015-09-03 moko
4862:
4863: * tests/results/096.processed: test result updated for 0..9999 year
4864: date range support (related to feature #36)
4865:
4866: * tests/: 314.html, results/314.processed: test for
4867: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
4868: bug #1031)
4869:
4870: * src/classes/string.C: Static calls fixed for ^string:base64[],
4871: ^string:idna[], ^string:js-escape[] (closes bug #1031)
4872:
1.116 moko 4873: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
4874: configure.in -> configure.ac
1.95 moko 4875:
1.116 moko 4876: * configure, configure.in, src/include/pa_config_auto.h.in: more
4877: correct timezone check for FreeBSD Warning war: configure.in ->
4878: configure.ac
1.95 moko 4879:
4880: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 4881: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
4882: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
4883: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
4884: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
4885: src/main/Makefile.am, src/targets/apache/Makefile.am,
4886: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 4887: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
4888: check added
4889:
4890: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
4891:
4892: * tests/results/: 124.processed, 224.processed: test resuls updated
4893: for new date implementation (related to feature #36)
4894:
4895: * src/: classes/date.C, classes/image.C, include/pa_common.h,
4896: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
4897: types/pa_vdate.h: new double date implementation with internal
4898: support for extended 0..9999 year range, default timezone support
4899: (related to feature #36)
4900:
4901: 2015-08-28 moko
4902:
4903: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4904: (fixes bug #1030)
4905:
4906: 2015-08-21 moko
4907:
4908: * src/classes/inet.C: snprintf size "bug" commented
4909:
4910: * src/main/pa_common.C: snprintf comments updated
4911:
4912: 2015-08-16 moko
4913:
4914: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4915:
4916: 2015-08-11 moko
4917:
4918: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4919: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4920: can be null (fixes bug #1029)
4921:
4922: 2015-08-06 moko
4923:
1.116 moko 4924: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4925: pa_vdate.C added
1.95 moko 4926:
4927: 2015-08-05 moko
4928:
4929: * tests/: 313.html, results/313.processed: test for
4930: ^table.count[columns] and ^table.flip[] with nameless tables
4931: (feature #1003)
4932:
4933: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4934: max_cell added, now ^table.count[columns] and ^table.flip[] works
4935: correctly for nameless tables (implements feature #1003)
4936:
4937: 2015-08-03 moko
4938:
4939: * tests/312.html: test for ^table.append[$hash] and
4940: ^table.insert[$hash] added (related to feature #1028)
4941:
4942: * src/classes/table.C: ^table.append[$hash] and
4943: ^table.insert[$hash] now supported (implements feature #1028)
4944:
4945: * tests/: 312.html, results/312.processed: test row copy in
4946: ^table.hash[; $.type[table] ] added (related to feature #1016)
4947:
4948: * src/classes/table.C: row copy now created in ^table.hash[;
4949: $.type[table] ] (related to feature #1016)
4950:
4951: 2015-07-29 moko
4952:
4953: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4954: added (related to feature #1016)
4955:
4956: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4957: ^table.delete[] added to delete current row (related to feature
4958: 1016)
4959:
4960: 2015-07-28 moko
4961:
4962: * tests/: 312.html, results/312.processed: test for
4963: $table.column[value] and ^table.insert{row} (related to feature
4964: #1016)
4965:
4966: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4967: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4968: ^table.insert{row} are now implemented (feature #1016)
4969:
4970: * src/include/pa_array.h: Optimization: bool reverse removed from
4971: append(), insert() added, memmove arguments order in remove()
4972: fixed (related to feature #1016)
4973:
4974: 2015-07-23 moko
4975:
4976: * src/classes/json.C: tainted json and empty json exception added
4977: (implements feature #1015)
4978:
4979: * tests/: 311.html, results/311.processed: empty json and tainted
4980: json exception test added (related to issue #1015)
4981:
4982: 2015-07-22 moko
4983:
4984: * tests/: 311.html, results/311.processed: test for UTF-8
4985: processing added
4986:
4987: * tests/: 311.html, results/311.processed: test for
4988: json_exception_with_source added (related to issue #394)
4989:
4990: * src/classes/json.C: json_exception_with_source added (implements
4991: feature #394)
4992:
4993: 2015-06-29 moko
4994:
4995: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4996: directories are now correctly determined if _d_type == DT_UNKNOWN
4997: (closes bug #1027)
4998:
4999: 2015-06-10 moko
5000:
5001: * src/types/pa_vxnode.h: extern "C" not requred and causes build
5002: error if libxml has LIBXML_ICU_ENABLED.
5003:
5004: 2015-06-04 moko
5005:
5006: * tests/099.html: ups, reverting
5007:
5008: * tests/: 099.html, 309.html, 310.html, results/309.processed,
5009: results/310.processed: tests for $response:body[ $.file[] ] and
5010: $response:last-modified added
5011:
5012: * src/main/pa_request.C: last-modified check fixed
5013:
5014: 2015-06-03 moko
5015:
5016: * tests/: 204.html, 205.html, 293.html, results/204.processed,
5017: results/205.processed, results/293.processed: $response:headers
5018: logging added (tests for feature #1007)
5019:
5020: * src/: include/pa_common.h, include/pa_request.h,
5021: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
5022: $response:headers are now in uppercase (closes feature #1007)
5023:
5024: 2015-06-02 moko
5025:
5026: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
5027: build errors reverted for clang compatibility
5028:
5029: 2015-06-01 moko
5030:
5031: * src/include/pa_memory.h: -pedantic build errors fixed
5032:
5033: * src/classes/math.C: -pedantic build error fixed
5034:
5035: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
5036:
5037: 2015-05-31 moko
5038:
5039: * src/classes/table.C: USE_STRINGSTREAM optimized
5040:
5041: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
5042: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
5043: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
5044: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
5045: types/pa_vxnode.h: warning war (-pedantic flag)
5046:
5047: 2015-05-28 moko
5048:
5049: * tests/: 308.html, results/308.processed: test for
5050: ^table::create[$t;], etc work added (related to bug #975)
5051:
5052: * src/classes/table.C: check_option_param removed,
5053: ^table::create[$t;], etc now works (fixes bug #975)
5054:
5055: 2015-05-27 moko
5056:
5057: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
5058: (Debian jessie) fixed (closes issue #1024)
5059:
5060: * tests/Makefile: sort added as in Debian jessie list become
5061: unsorted
5062:
5063: 2015-05-18 moko
5064:
5065: * tests/: 201.html, results/201.processed: test for
5066: ^string.trim[what] feature #1022
5067:
5068: * src/classes/string.C: ^string.trim[what] now supported,
5069: implements feature #1022
5070:
5071: 2015-05-17 moko
5072:
5073: * tests/results/185.processed: test result updated as feature #1021
5074: implemented (left/right accept negative parameter)
5075:
5076: * src/classes/string.C: left/right now accept negative parameter
5077: (implements feature #1021)
5078:
5079: 2015-05-08 moko
5080:
5081: * src/classes/math.C: isalnum -> pa_isalnum
5082:
5083: * src/main/execute.C: optimization in getter-junction processing
5084: (related to issue #997)
5085:
5086: 2015-05-07 moko
5087:
5088: * tests/: 307.html, results/307.processed: test for issue #997
5089: added
5090:
5091: * src/main/execute.C: process_getter result now checked if junction
5092: returned (closes issue #997)
5093:
5094: * tests/: 305.html, results/305.processed: sort added to ignore
5095: different order
5096:
5097: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
5098: assignment (closes issue #994)
5099:
5100: * tests/: 306.html, results/306.processed: test for issue #994
5101: added
5102:
5103: * tests/: 303.html, results/303.processed: two more errors tested
5104:
5105: 2015-05-06 moko
5106:
5107: * tests/: 305.html, results/305.processed: test for name2ip &
5108: ip2name added (related to feature #992)
5109:
5110: * tests/: 303.html, 304.html, results/303.processed,
5111: results/304.processed: tests for idna conversion added (related
5112: to issue #849)
5113:
5114: 2015-05-02 moko
5115:
5116: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
5117: implemented
5118:
5119: 2015-04-30 moko
5120:
5121: * src/main/pa_http.C: idna_host added, related to issue #849
5122:
5123: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
5124: (related to issue #849)
5125:
5126: 2015-04-24 moko
5127:
5128: * src/types/pa_vjunction.C: warning war
5129:
5130: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
5131: unification
5132:
5133: * src/lib/punycode/pa_idna.c: warning war
5134:
5135: 2015-04-22 moko
5136:
5137: * src/main/main.vcproj: punycode include path added
5138:
5139: * src/lib/punycode/pa_idna.c: windows compile error fixed
5140:
5141: * src/lib/punycode/pa_idna.c: warning war
5142:
5143: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
5144: project file added
5145:
5146: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
5147:
5148: * src/include/pa_memory.h: warning war
5149:
5150: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
5151: ^string:idna[xn--...], ^string.idna[] - idna conversion support
5152: implemented (related to feature #849)
5153:
5154: * configure.in, src/main/Makefile.am,
5155: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
5156: libpunycode added in Unix
5157:
5158: 2015-04-21 moko
5159:
5160: * configure.in: large files support
5161:
5162: 2015-04-15 moko
5163:
5164: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
5165: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
5166: pa_punycode.h: initial version for punycode/idna support library
5167: (ticket #849)
5168:
5169: 2015-04-08 moko
5170:
5171: * src/: classes/curl.C, classes/date.C, classes/file.C,
5172: classes/image.C, classes/mail.C, classes/reflection.C,
5173: classes/string.C, classes/xnode.C, include/pa_request.h,
5174: include/pa_string.h, include/pa_stylesheet_connection.h,
5175: main/compile.y, main/compile_tools.h, main/execute.C,
5176: main/pa_common.C, main/pa_request.C, main/pa_string.C,
5177: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
5178: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
5179: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
5180: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
5181: clang compiler warnings (closes issue #1018)
5182:
5183: * src/include/pa_string.h: String::Body comparation operators with
5184: char * added (related to issue #958)
5185:
5186: 2015-04-07 moko
5187:
5188: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
5189: pa_malloc/pa_free to remove system malloc/free usage (related to
5190: issue #1018)
5191:
5192: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
5193: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
5194: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
5195: main/pa_http.C, main/pa_request.C, main/pa_string.C,
5196: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
5197: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
5198: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
5199: malloc/strdup/free replaced with pa_ version and checks for
5200: accidental use of non-pa_ version added (related to issue #1018)
5201:
5202: 2015-04-03 moko
5203:
5204: * buildall: pcre-8.33 -> pcre-8.36
5205:
5206: * src/: main/compile.y, classes/form.C, classes/mail.C,
5207: classes/op.C, classes/string.C, main/compile.tab.C,
5208: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
5209: main/pa_sql_driver_manager.C, types/pa_vfile.C,
5210: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
5211: ticket #958)
5212:
5213: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
5214: main/pa_common.C, main/pa_http.C, main/pa_request.C,
5215: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
5216: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
5217: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
5218: $request:headers, $request:method added (implements feature
5219: #1007)
5220:
5221: 2015-03-17 misha
5222:
5223: * tests/302.html: - test for
5224: ^json:string[...;$._default[method-name]]
5225:
5226: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
5227: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
5228: option $._default[method-name] is specified in ^json:string[], a
5229: method with specified name will be called for classes/objects
5230: serialization ( new feature: #982 )
5231:
5232: 2015-03-16 misha
5233:
5234: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
5235: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
5236: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
5237: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
5238: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
5239: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
5240: types/pa_vmemory.h, types/pa_vmethod_frame.C,
5241: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
5242: types/pa_vrequest.h, types/pa_vstateless_class.C,
5243: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
5244: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
5245: $var.CLASS_NAME now have special opcodes. This can be switched
5246: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
5247: on pa_opcode.h ( new feature: #844 )
5248:
5249: 2015-03-15 misha
5250:
5251: * tests/075.html: - test for $response:header[]
5252:
5253: * src/types/pa_vresponse.C: - $response:header[] deletes header
5254: that was set earlie ( new feature: #1001 )
5255:
5256: 2015-03-12 misha
5257:
5258: * tests/246.html: - more tests for ^hash._at[]
5259:
5260: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
5261: accepts second param [key|value|hash] ( new feature: #1012 )
5262:
5263: 2015-03-09 moko
5264:
5265: * src/types/pa_vmail.C: exception for everything but
5266: $mail:received, closes issue #1011
5267:
5268: 2015-02-20 moko
5269:
5270: * tests/: 275.html, results/275.processed: hex detection in
5271: pa_atoui fix test (closes issue #1010)
5272:
5273: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
5274: issue #1010)
5275:
5276: 2015-02-17 moko
5277:
5278: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
5279: tainted.
5280:
5281: 2015-02-03 misha
5282:
5283: * tests/301.html: - test for ^json:string($double) causes
5284: exception. bugfix: #1008
5285:
5286: * src/classes/json.C: - ^json:string($double) causes exception.
5287: bugfix: #1008
5288:
5289: * tests/014.html: - updated for work with ^hash.delete[]
5290:
5291: 2015-01-12 misha
5292:
5293: * src/: classes/form.C, include/pa_common.h,
5294: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
5295: types/pa_vform.h: - supports body with PUT method as well ( new
5296: feature: #1006 )
5297:
5298: * src/classes/file.C: - warnings war
5299:
5300: 2015-01-11 misha
5301:
5302: * tests/300.html: - test for ^hash.delete[] is added
5303:
5304: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
5305: feature: #989 ) - tiny optimization in intersects
5306:
5307: 2015-01-06 moko
5308:
5309: * src/types/pa_vmail.C: file names transcode added, to and cc added
5310: with transcode, attachments detection fixed
5311:
5312: * src/main/pa_request.C: filling mail received after cgi/auto.p
5313: load to allow charset switch (related to issue #996)
5314:
5315: 2014-12-31 moko
5316:
5317: * src/types/pa_vmail.C: from and subject now transcoded if not
5318: UTF-8 source charset (fixes issue 996)
5319:
5320: * src/main/pa_exception.C: fixed string from stack bug (closes
5321: issue #1000)
5322:
5323: 2014-12-11 misha
5324:
5325: * src/types/pa_vhashfile.C: - check if key is not empty before
5326: access ( bug fix: #1005 )
5327:
5328: 2014-11-13 misha
5329:
5330: * src/main/compile.y: - PC.append does not reset to false while
5331: creating a new class. bugfix: #990
5332:
5333: * tests/299.html: - test for creation class after working with
5334: partial class (create+append)
5335:
5336: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
5337: #995
5338:
5339: * tests/232.html: - test for @get[def] added
5340:
5341: 2014-10-12 moko
5342:
5343: * src/lib/pcre/pcre_internal.vcproj: correct path
5344:
5345: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
5346: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
5347: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
5348: targets/apache/ApacheModuleParser3.vcproj,
5349: targets/apache/ApacheModuleParser3Core.vcproj,
5350: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5351: types/types.vcproj: project GUID inserted in *.vcproj for correct
5352: conversion in newer VS versions
5353:
5354: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
5355: pcre_internal.vcproj added
5356:
5357: 2014-08-28 moko
5358:
5359: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
5360: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
5361: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
5362:
5363: 2014-06-30 misha
5364:
5365: * tests/298.html: - tests for ^reflection:def[class;className]
5366: added
5367:
5368: * src/classes/reflection.C: - ^reflection:def[class;className]
5369: added ( new feature: #918 )
5370:
5371: 2014-06-29 misha
5372:
5373: * src/classes/table.C: - ^table::create[unsupported data] -
5374: exception comment changed to "body must be table or code" ( bug
5375: fix: #951 )
5376:
5377: * tests/: 261.html, results/261.processed: - tests for
5378: ^json:string[...;$.void[null|string]] added
5379:
5380: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
5381: option $.void[string|null] added to ^json:string[...] ( new
5382: feature: #952 )
5383:
5384: 2014-06-28 moko
5385:
5386: * src/classes/curl.C: $.charset now processed before other curl
5387: options (closes issue #980)
5388:
5389: 2014-05-23 misha
5390:
5391: * src/classes/json.C: - bug fix: #987
5392:
5393: 2014-05-04 misha
5394:
5395: * tests/: 253.html, 253_json.txt: - test for
5396: ^json:parse[$.int(false)] is added
5397:
5398: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
5399: default true). The option is similar to $.double(bool) but for
5400: integers.
5401:
5402: 2014-05-01 moko
5403:
5404: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
5405: #12 )
5406:
5407: 2014-04-16 moko
5408:
5409: * src/main/pa_http.C: response-charset option should finally work
5410: now (fix for issue #867)
5411:
5412: * src/main/pa_http.C: response-charset option should work now (fix
5413: for issue #867)
5414:
5415: 2014-03-07 moko
5416:
5417: * buildall: libgc moved
5418:
5419: * buildall: libgc moved
5420:
5421: 2013-12-29 moko
5422:
5423: * src/classes/string.C: ^string:js-unescape result now tainted,
5424: closes issue #966
5425:
5426: * tests/: 186.html, results/186.processed: ^string:js-unescape
5427: result now tainted, issue #966
5428:
5429: 2013-12-03 moko
5430:
5431: * src/: classes/memcached.C, types/pa_vmemcached.C,
5432: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
5433: option was added for http://www.parser.ru/forum/?id=79343
5434:
5435: * src/classes/file.C: bugfix for
5436: http://www.parser.ru/forum/?id=79337
5437:
5438: 2013-11-05 moko
5439:
5440: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
5441:
5442: * src/main/pa_globals.C: spelling fixed
5443:
5444: 2013-10-29 moko
5445:
5446: * src/lib/json/json.vcproj: json.c -> pa_json.C
5447:
5448: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
5449: #892
5450:
5451: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
5452: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
5453: exceptions to be thrown thougth json library), related to issue
5454: #892
5455:
5456: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
5457: related to issue #896
5458:
5459: 2013-10-24 moko
5460:
5461: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
5462:
5463: 2013-10-23 moko
5464:
5465: * README: actualization
5466:
5467: 2013-10-22 moko
5468:
5469: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
5470: compatibility patch from Sergey Kirpichev
5471:
5472: * tests/: 297.html, results/297.processed: non-working getter fix
5473: test for issue #948
5474:
5475: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
5476: called when saving value of $match variable in ^string.match[] to
5477: increase compatibility (related to issue #948).
5478:
5479: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
5480: usage optimization
5481:
5482: 2013-10-21 moko
5483:
5484: * tests/: 182.html, results/182.processed: local path removed for
5485: compatibility
5486:
5487: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
5488: results/244.processed, results/253.processed,
5489: results/254.processed, results/275.processed,
5490: results/281.processed: try_catch -> try-catch
5491:
5492: * tests/: 288.html, 294.html, 296.html, results/288.processed,
5493: results/294.processed, results/296.processed: try_catch ->
5494: try-catch
5495:
5496: 2013-10-20 moko
5497:
5498: * tests/: 296.html, results/296.processed: test for xsl exception
5499: for issue #938 added.
5500:
5501: * src/: include/pa_xml_exception.h,
5502: main/pa_stylesheet_connection.C: forgotten to be replaced
5503: XmlException is now replaced (once again closes issue #938)
5504:
5505: 2013-10-18 moko
5506:
5507: * buildall: disable clock_gettime detection to avoid librt linking
5508: (which in turn depends on libpthread), related to issue #943
5509:
5510: 2013-10-18 misha
5511:
5512: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
5513: lib/smtp/smtp.vcproj, main/main.vcproj,
5514: targets/apache/ApacheModuleParser3Core.vcproj,
5515: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
5516: types/types.vcproj: - new locations for libxml2 includes where
5517: added to vcproj files
5518:
5519: 2013-10-18 moko
5520:
5521: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
5522: fix
5523:
5524: * tests/: 295.html, results/295.processed: test for issue #948
5525: updated
5526:
5527: * src/classes/table.C: hopefully last lost part for issue #948 fix.
5528: :)
5529:
5530: * tests/: 295.html, results/295.processed: test for issue #948
5531: added
5532:
5533: * src/: classes/hash.C, classes/string.C, classes/table.C,
5534: include/pa_request.h, types/pa_method.h: for getters and setters
5535: to be executed request.put_element should be called, not
5536: context.put_element (fixes issue #948)
5537:
5538: 2013-10-17 moko
5539:
5540: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
5541: LIBXML2_NEW_BUFFER check (closes issue #943)
5542:
5543: * buildall: libxml 2.9.1 build is broken --without-reader.
5544:
5545: 2013-10-16 moko
5546:
5547: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
5548:
5549: * tests/: 294.html, results/294.processed: test for issue #938
5550:
5551: * src/: classes/xdoc.C, classes/xnode.C,
5552: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
5553: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
5554:
5555: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
5556: libxslt-1.1.26 -> libxslt-1.1.28
5557:
5558: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
5559: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
5560: to '?', related to issue #938
5561:
5562: 2013-10-15 moko
5563:
5564: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
5565: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
5566: minor optimizations (closes issue #896)
5567:
5568: * tests/results/: 292.processed, 293.processed: results updated to
5569: comply with issue #896
5570:
5571: * tests/: 292.html, 293.html, results/292.processed,
5572: results/293.processed: tests for json escaping
5573:
5574: 2013-10-14 moko
5575:
5576: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
5577: and cleanup, code moved from .h to .C, no changes in code
5578:
5579: 2013-10-12 moko
5580:
5581: * tests/results/119.processed: updated test result commited
5582:
5583: * tests/: 291.html, results/291.processed: test for issue #894
5584: added
5585:
5586: * src/types/pa_wcontext.h: base methods call support function
5587: get_somebody_entered_some_class should not be true forever, as
5588: wcontext can have many get_elements calls (fixes issue #894)
5589:
5590: 2013-10-11 moko
5591:
5592: * tests/: 290.html, results/290.processed: test for junction GPF
5593: issue #942 added
5594:
5595: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
5596: to native method fixed (closes issue #942)
5597:
5598: * tests/: 158.html, results/158.processed: test for csv-string[]
5599: added
5600:
5601: * src/classes/table.C: minor fixes for table.csv-string[] (closes
5602: feature #907)
5603:
5604: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
5605: feature #907)
5606:
5607: 2013-10-09 moko
5608:
5609: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
5610: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
5611: types/pa_vstateless_class.C: GET_default, SET_default now works
5612: properly not only in objects, but in classes as well (closes
5613: issue #903)
5614:
5615: * tests/: 289.html, results/289.processed: GET/SET_default now
5616: works in classes, not only objects, test case added, related to
5617: issue #903
5618:
5619: * tests/: 288.html, results/288.processed: test for endless
5620: recursion bug added (related to issue #903)
5621:
5622: 2013-10-05 moko
5623:
5624: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
5625: classes/table.C, main/execute.C, types/pa_method.h,
5626: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
5627: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
5628: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
5629: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
5630: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
5631: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
5632: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
5633: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5634: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
5635: optimization: put_element no longer has "bool areplace" argument,
5636: related to issue #903
5637:
5638: 2013-10-03 moko
5639:
5640: * tests/results/182.processed: result for $.replace(false) test
5641: commited
5642:
5643: * src/classes/date.C: ^date::create(number) processed correctly
5644: (fixes issue #901)
5645:
5646: * src/classes/image.C: as_no_junction removed, as param can be
5647: expression (closes issue #931)
5648:
5649: * tests/233.html: test for issue #931 added
5650:
5651: 2013-10-02 moko
5652:
5653: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
5654: modified, test for $.replace(false) added
5655:
5656: * src/main/compile_tools.h: forgotten class replace returned. :)
5657:
5658: 2013-09-30 moko
5659:
5660: * tests/: 141.html, results/141.processed: md5 tainting test added
5661:
5662: * src/: classes/op.C, include/pa_request.h, main/compile.y,
5663: main/compile_tools.h, main/pa_request.C: allow_class_replace
5664: implemented; $.replace option added to ^process and ^use
5665:
5666: 2013-08-27 moko
5667:
5668: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
5669: cstr_to_string_body_untaint should be called with charsets for
5670: possible uri language and connection for possible sql language.
5671: related to issue #857
5672:
5673: * buildall: and -> or fixed
5674:
5675: 2013-08-26 moko
5676:
5677: * buildall: prepare_ functions logic changed to support
5678: gc-7.2d.tar.gz extracting to gc-7.2 directory
5679:
5680: 2013-08-23 moko
5681:
5682: * src/include/pa_config_fixed.h: gc and xml libs are now linked
5683: statically
5684:
5685: 2013-08-22 moko
5686:
5687: * src/classes/string.C: String::Empty used (related to issue #912)
5688: append_know_length removed (related to old GPF bug)
5689:
5690: 2013-08-21 moko
5691:
5692: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
5693:
5694: * src/classes/math.C: ^math:digest[...;$file] support added
5695: (related to ticket #857
5696:
5697: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
5698: implemented
5699:
5700: * src/types/pa_vhashfile.h: warning war
5701:
5702: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
5703: include/pa_request.h, main/pa_request.C, types/pa_value.h:
5704: anti_endless_json_string_recoursion removed from request;
5705: json_string_recoursion added to json_options; $.indent[indent
5706: value] now supported and passed within recoursion closes feature
5707: #937
5708:
5709: * tests/: 287.html, results/287.processed: test for feature #937
5710:
5711: 2013-07-31 moko
5712:
5713: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
5714: compilation having #define _S
5715:
5716: * src/main/pa_globals.C: cleanup
5717:
5718: 2013-07-30 moko
5719:
5720: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
5721: main/pa_common.C: vs2003 warning war
5722:
5723: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
5724:
5725: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
5726:
5727: * src/lib/md5/pa_sha2.c: warning war
5728:
5729: 2013-07-29 moko
5730:
5731: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
5732: patches from github
5733:
5734: * src/: classes/bool.C, classes/double.C, classes/int.C,
5735: classes/memcached.C, include/pa_config_includes.h,
5736: types/pa_vfile.C, types/pa_vfile.h: warning war
5737:
5738: * src/lib/json/json.vcproj: C++ -> C
5739:
5740: * src/lib/json/: json.c, pa_json.C: C++ warning revert
5741:
5742: * src/lib/json/: json.c, pa_json.C: windows compatibility
5743:
5744: * src/lib/json/: json.c, pa_json.C: windows compatibility
5745:
5746: * src/lib/json/: json.c, pa_json.C: warning war
5747:
5748: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
5749:
5750: * src/include/pa_config_fixed.h: uint16_t added
5751:
5752: * configure.in: uint16_t check added
5753:
5754: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 5755: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
5756: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
5757: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
5758: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 5759:
5760: 2013-07-25 moko
5761:
5762: * parser3.sln: dependencies added
5763:
5764: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
5765: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
5766: module support
5767:
5768: * src/targets/apache/mod_parser3_core.C: win32 cleanup
5769:
5770: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
5771:
5772: 2013-07-23 moko
5773:
5774: * src/: include/pa_memory.h, main/pa_memory.C: non-working
5775: PA_DEBUG_GC_MEMORY removed
5776:
5777: * src/: main/pa_globals.C, targets/cgi/parser3.C:
5778: PA_DEBUG_DISABLE_GC compilation fix
5779:
5780: * src/: classes/op.C, classes/table.C, include/pa_request.h,
5781: main/pa_request.C: outdated RESOURCES_DEBUG removed
5782:
5783: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
5784: garbage cleanup
5785:
5786: * src/main/pa_common.C: warning war
5787:
5788: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
5789:
5790: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
5791: minor cleanup
5792:
5793: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
5794: uses cygwin, not WIN32 implementation
5795:
5796: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
5797: able to exec shell scripts
5798:
5799: * src/classes/math.C: ifdef WIN32 cleanup
5800:
5801: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
5802:
5803: * src/classes/curl.C: LT_MODULE_EXT used
5804:
5805: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
5806:
5807: 2013-07-22 moko
5808:
5809: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
5810: includes fix
5811:
5812: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
5813:
5814: * configure.in, src/include/pa_config_includes.h,
5815: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
5816: src/main/pa_exec.C: includes cleanup
5817:
5818: * src/targets/cgi/parser3.C: 2012->2013
5819:
5820: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
5821:
5822: * configure.in, src/include/pa_config_includes.h,
5823: src/include/pa_http.h, src/lib/json/JSON_parser.h,
5824: src/main/pa_random.C, src/main/pa_socks.C,
5825: src/types/pa_vstatus.C: cygwin support cleanup
5826:
5827: * configure.in: dirent.h check added
5828:
5829: * src/: include/pa_config_includes.h, include/pa_dir.h,
5830: main/pa_dir.C: includes cleanup, dirent.h check added filePath
5831: not copied
5832:
5833: 2013-07-21 moko
5834:
5835: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
5836:
5837: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
5838: parser3.vcproj: unused getopt.h / getopt.c removed
5839:
5840: * operators.txt, src/classes/file.C, tests/022.html,
5841: tests/results/022.processed: ^file:list[path][$.filter[regexp]
5842: $.stat(true)] usage commented
5843:
5844: * configure.in, src/classes/file.C, src/include/pa_dir.h,
5845: src/main/pa_dir.C: ^file:list[] now has dir column and when
5846: $.stat(true) it has size/*date columns modified patch from misha@
5847: that closes issue #914.
5848:
5849: * src/: include/pa_config_includes.h, main/pa_globals.C:
5850: PA_RELEASE_ASSERTS removed
5851:
5852: * src/lib/md5/pa_md5c.c: minor cleanup
5853:
5854: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
5855: localeconv()->decimal_point usage remoed (related to issue #934)
5856:
5857: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
5858: cordprnt.c removed
5859:
5860: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
5861: pa-include/pa_errno.h, pa-include/pa_file_io.h,
5862: pa-include/pa_strings.h: includes cleanup
5863:
5864: * src/lib/md5/pa_md5c.c: headers cleanup
5865:
5866: 2013-07-20 moko
5867:
5868: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
5869: cleanup
5870:
5871: 2013-07-19 moko
5872:
5873: * src/classes/math.C: extern "C" added for crypt
5874:
5875: 2013-07-18 moko
5876:
5877: * src/classes/math.C: fix redhat7.2 build
5878:
5879: 2013-07-17 moko
5880:
5881: * configure.in, src/include/pa_config_includes.h,
5882: src/include/pa_config_fixed.h: headers actualized (inttypes.h
5883: added for uint8/32/64_t)
5884:
5885: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
5886: pa_config_includes.h used for uint32/64_t
5887:
5888: 2013-07-16 moko
5889:
5890: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
5891: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
5892: war
5893:
5894: * src/main/compile.tab.C: compile.y was updated
5895:
5896: * src/main/compile.y: warning war
5897:
5898: * src/: include/pa_exception.h, main/pa_exception.C,
5899: main/pa_xml_exception.C: warning war
5900:
5901: * src/: include/pa_common.h, main/pa_common.C: warning war
5902:
5903: * configure.in: beauty :)
5904:
5905: * tests/: 141.html, results/141.processed: sha256/512 added
5906:
5907: 2013-07-13 moko
5908:
5909: * src/lib/md5/md5.vcproj: sha2 added
5910:
5911: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5912: classes/math.C: sha2 support (sha256/sha512 digest)
5913:
5914: 2013-07-08 moko
5915:
5916: * src/classes/image.C: directory read or other read problem message
5917: fixed (related to issue #933)
5918:
5919: 2013-07-07 moko
5920:
5921: * AUTHORS: + misha + moko. :)
5922:
5923: 2013-07-06 moko
5924:
5925: * src/: classes/curl.C, include/pa_globals.h,
5926: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5927: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5928: for lt_dlinit to be called once and lt_dlexit called at right
5929: place (related to issue #925)
5930:
5931: 2013-07-04 moko
5932:
5933: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5934: VString::as_vfile now uses vfile.set_binary_string to avoid
5935: content-type to be set, as it brokes badly designed logic in
5936: response output. This hopefully finishes issue #928.
5937:
5938: * tests/results/: 256.processed, 286.processed: file now displayed
5939: as name, size, mode, content-type
5940:
5941: * src/main/pa_common.C: read error now reported cottectly (fixes
5942: issue #933
5943:
5944: 2013-06-28 moko
5945:
5946: * tests/: 286.html, results/286.processed: test extended
5947:
5948: * tests/: 286.html, results/286.processed: Test for issue #928
5949: added. it tests default content-type change.
5950:
5951: * src/types/pa_vfile.C: closes issue #928 - default content-type
5952: now updated
5953:
5954: 2013-06-25 moko
5955:
5956: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5957: content-type for text/binary files without name added;
5958: ^file::create[$f;...] options now works properly and $f
5959: properties are default (fixes issue #928)
5960:
5961: 2013-05-16 misha
5962:
5963: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5964: added
5965:
5966: * src/main/pa_table.C: - a tiny memory optimisation while creating
5967: table if specified limit is bigger than source rows count
5968:
5969: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5970: added ( new feature: #858 )
5971:
5972: 2013-04-29 moko
5973:
5974: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5975: $.ipresolve(0|1|2) added (closes issue #891)
5976:
5977: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5978:
5979: 2013-04-24 moko
5980:
5981: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5982: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5983: types/pa_vmemcached.h: ^memcache.release[] added, calls
5984: memcached_quit (refs #893)
5985:
5986: 2013-04-22 moko
5987:
5988: * src/: include/pa_string.h, main/pa_common.C: no more double
5989: slashes in file path (fixes bug #872)
5990:
5991: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5992: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5993: #739)
5994:
5995: * tests/results/266.processed: $.max_params added (feature #915)
5996:
5997: * src/: include/pa_common.h, main/pa_http.C: response-charset
5998: option added to file::load (closes issue #867)
5999:
6000: 2013-04-20 misha
6001:
6002: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
6003: commited
6004:
6005: 2013-03-15 misha
6006:
6007: * src/classes/: hash.C, table.C: - Optimisation: do not create
6008: multiple empty strings while ::sql. uae String::Empty instead
6009:
6010: 2013-03-14 misha
6011:
6012: * src/classes/reflection.C: - for user classes
6013: ^reflection:method_info[] returns $.max_params and $.extra_param
6014: with $.call_type if they available ( new feature: #915 )
6015:
6016: * src/classes/file.C: - ^file:delete[] now supports an option
6017: $.exception(false) that suppress any exception while deleting
6018: file ( new feature: #916 )
6019:
6020: * src/classes/curl.C: - parsing cookies after curl:load now should
6021: work :)
6022:
6023: 2013-03-12 misha
6024:
6025: * src/types/pa_vfile.C: - if specified file_name is empty string
6026: set default name for the file
6027:
6028: 2013-03-11 misha
6029:
6030: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
6031: also available in $f.cookies
6032:
6033: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
6034: moved to a separate method
6035:
6036: 2013-03-10 moko
6037:
6038: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
6039: added
6040:
6041: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
6042: removed (declared by autoconf)
6043:
6044: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
6045: uint32_t define
6046:
6047: 2013-03-10 misha
6048:
6049: * src/classes/file.C: ^file:delete and ^file:move now support
6050: option $.keep-empty-dirs(true) ( new feature: #884 )
6051:
6052: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
6053: empty dirs is added
6054:
6055: 2013-03-10 moko
6056:
6057: * src/classes/: bool.C, double.C, int.C: default can be present,
6058: but default check removed from ^int/double/bool.int/double/bool
6059: for string.int/double/bool compatibility (related to issue #913)
6060:
6061: * src/classes/string.C: ^string.int/dobule/bool no longer
6062: internally throws exception if default is present (closes issue
6063: #913)
6064:
6065: 2013-03-09 misha
6066:
6067: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
6068: optimisations ( #845 )
6069:
6070: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
6071:
6072: 2013-03-08 moko
6073:
6074: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
6075: creates correct table (fixes issue #910)
6076:
6077: * src/classes/op.C: r.connection() -> r.connection(false) to allow
6078: use outside of 'connect' operator (fixes issue #911)
6079:
6080: * tests/results/: 096.processed, 122.processed: test results
6081: updated as doubles now printed with 15 significant digits, not 5
6082: (fixes issue #882)
6083:
6084: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
6085: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
6086:
6087: 2013-02-21 moko
6088:
6089: * src/classes/table.C: _locate_name_value does not check arguments
6090: count, so we check it in advance (fixes issue #905)
6091:
6092: 2012-10-23 moko
6093:
6094: * buildall: old shell for and echo compatibility (for six)
6095:
6096: 2012-10-19 moko
6097:
6098: * buildall: --strip added --disable-safe-mode listed in usage
6099:
6100: 2012-10-17 misha
6101:
6102: * src/classes/op.C: - apply-taint should not throw "outside
6103: connect" exception with sql lang now
6104:
6105: 2012-10-17 moko
6106:
6107: * src/main/pa_request.C: bugfix: safe mode should be inited for
6108: each request (for apache module)
6109:
6110: 2012-09-26 moko
6111:
6112: * src/doc/doxygen.cfg: png -> svg
6113:
6114: 2012-09-25 moko
6115:
6116: * tests/: 141.html, results/141.processed: md5 hmac added, long key
6117: test added
6118:
6119: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
6120: double use when key is long
6121:
6122: 2012-09-16 moko
6123:
6124: * src/classes/math.C: Format -> Method Encode -> Format
6125:
6126: * tests/: 141.html, results/141.processed: math:digest hmac test
6127: added
6128:
6129: 2012-09-14 moko
6130:
6131: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
6132: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
6133: implementation added
6134:
6135: 2012-09-12 moko
6136:
6137: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
6138: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
6139: targets.dox and string.dox slightly actualized
6140:
6141: 2012-08-31 moko
6142:
6143: * ChangeLog: now generated with patched cvs2cl.pl
6144:
6145: 2012-07-29 moko
6146:
6147: * tests/285.html, src/main/execute.C, tests/results/285.processed:
6148: result should be pushed after VMethodFrame destructor is called,
6149: as it deletes junctions from stack params (fixes issue #868)
6150:
6151: 2012-07-23 moko
6152:
6153: * INSTALL, README: buildall script usage documented, other outdated
6154: info updated.
6155:
6156: * buildall-with-xml, buildall-without-xml: replaced by buildall
6157:
6158: 2012-07-21 moko
6159:
6160: * buildall: glib does not compile when threads are disabled...
6161:
6162: * src/types/pa_vmail.C: g_assertion fixes for empty input
6163:
6164: * src/types/pa_vmail.C: yet another fix (strange GPF on object
6165: unref, can't unref nested objects)
6166:
6167: * src/types/pa_vmail.C: another check added
6168:
6169: 2012-07-19 moko
6170:
6171: * buildall: usage added
6172:
6173: * buildall: new buildall script that unites buildall-with-xml,
6174: buildall-without-xml, --with-apache and --with-mailreceive
6175:
6176: * configure.in: support for static gmime and dynamic glib linking.
6177: fixes for FreeBSD
6178:
6179: 2012-07-17 moko
6180:
6181: * configure.in: --with-mailreceive replaced
6182: --with-static-mailreceive and --with-shared-mailreceive pathlink
6183: removed
6184:
6185: 2012-07-16 moko
6186:
6187: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
6188: capitalized, content now decoded and text content converted to
6189: $request:charset. all properties are accessed by functions, this
6190: ready for dynamic load.
6191:
6192: 2012-06-28 moko
6193:
1.116 moko 6194: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
6195: 32 bit
1.95 moko 6196:
6197: 2012-06-27 moko
6198:
6199: * buildall-with-xml, buildall-without-xml: fetch requires -p for
6200: passive ftp
6201:
6202: * src/lib/ltdl/ltdl.vcproj: release build fixed
6203:
6204: * configure.in: 3.4.2 RC -> 3.4.2
6205:
6206: 2012-06-22 moko
6207:
6208: * src/types/pa_vfile.C: returned empty mode to stated files (issue
6209: #815)
6210:
6211: * tests/: 284.html, results/284.processed: output options test
6212: (feature #265)
6213:
6214: 2012-06-22 misha
6215:
6216: * tests/215.html: - little changes
6217:
6218: 2012-06-21 moko
6219:
6220: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
6221: types/pa_vxdoc.h: output_options returned and used (bugfix for
6222: feature #265)
6223:
6224: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
6225: breaks long .*, default 10M restored. (issue #216)
6226:
6227: * tests/: 283.html, results/283.processed: test for issue #815
6228: added
6229:
6230: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
6231: again, cstrm not required.
6232:
6233: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
6234: Win32 and broken FreeBSD (issue #45)
6235:
6236: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
6237:
6238: * src/main/pa_string.C: warnings war
6239:
6240: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
6241: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
6242: main/pa_socks.C, targets/apache/pa_threads.C,
6243: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6244: types/pa_vstatus.C: compilation under cygwin fixed
6245:
6246: 2012-06-19 moko
6247:
6248: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
6249: Windows fixed
6250:
6251: * parser3.sln: removed antique pcre_ctype
6252:
6253: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
6254:
6255: * src/include/pa_config_fixed.h: undefined reference to
6256: __imp__pcre_* fix for Windows
6257:
6258: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 6259: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
6260: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
6261: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
6262: define fixed
1.95 moko 6263:
6264: 2012-06-18 moko
6265:
6266: * src/classes/memcached.C: flush -> clear
6267:
6268: * src/classes/memcached.C: memcached does not support quotes even
6269: in server name
6270:
6271: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6272: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
6273: called on open to check servers existance. $.key(true) syntax
6274: now supported
6275:
6276: 2012-06-17 moko
6277:
6278: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
6279: cleanup
6280:
6281: * src/classes/table.C, tests/282.cfg, tests/282.html,
6282: tests/results/282.processed: encloser at the EOF bug fixed,
6283: incorrectly enclosed data now processed more logicaly (fixes
6284: #339)
6285:
6286: 2012-06-15 moko
6287:
6288: * buildall-without-xml: sync with buildall-with-xml
6289:
6290: * buildall-with-xml: download auto-detected between fetch and curl
6291:
6292: * configure.in: --with-gc and --with-pcre now also processed
6293: correctly
6294:
1.116 moko 6295: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
6296: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
6297: should be run on rol1 using automake / aclocal (GNU automake)
6298: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 6299:
6300: * configure.in: new PARSER_VERSION logic
6301:
6302: * src/include/pa_version.h: new pa_version.h logic
6303:
6304: * src/: classes/curl.C, classes/file.C, classes/image.C,
6305: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
6306: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
6307: feols_normalized -> fis_text_content set_binary added
6308:
6309: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
6310:
6311: 2012-06-15 misha
6312:
6313: * src/: classes/curl.C, classes/file.C, classes/image.C,
6314: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
6315: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
6316: ^file::create[text;content] EOLs in content now is normalized. (
6317: new feature: #815 )
6318:
6319: 2012-06-15 moko
6320:
6321: * configure.in: --disable-version-update added to disable version
6322: update with host information (for debian package) whitespace
6323: optimized
6324:
6325: * configure.in: version changed to 3.4.2 RC no-pic added for
6326: libtool
6327:
6328: * src/include/pa_version.h: Nice pa_version.h default. Please keep
6329: it.
6330:
6331: 2012-06-14 moko
6332:
6333: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
6334: tests/results/281.processed: "hash flocked" error removed for
6335: safe operations like ^h._count[] ( new feature: #335 )
6336:
1.116 moko 6337: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 6338:
6339: * buildall-with-xml, buildall-without-xml: --with-static -> --with
6340:
6341: * configure.in: --with-static/shared xml replaced with --with-xml,
6342: xml compilation check added
6343:
6344: * configure.in: --with-static/shared-gc, --with-static-pcre are
6345: replaced with --with-gc and --with-pcre test for pcre linking
6346: added
6347:
6348: 2012-06-13 moko
6349:
6350: * configure.in: apxs2 check optimized
6351:
6352: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
6353: .la, includes optimized
6354:
6355: * buildall-with-xml: --with-pic looks better for -fPIC
6356:
6357: * configure.in: switched to convenience library in static linking
6358:
6359: * src/targets/apache/Makefile.am: switched to convenience library
6360: usage to avoid libtool warnings
6361:
6362: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
6363: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
6364: smtp/Makefile.am: switched to convenience library usage
6365:
6366: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
6367:
6368: * src/targets/apache/Makefile.am: updated for libtool usage
6369:
6370: * buildall-without-xml: --with-included-ltdl added
6371:
6372: * buildall-without-xml: sync with buildall-with-xml
6373:
6374: * buildall-with-xml: --with-included-ltdl added $cflags added for
6375: -fPIC for x64 $download added for wget success check added
6376:
6377: * buildall-without-xml: --with-dynamic-stdcpp removed
6378:
6379: * configure.in: disable-static returned
6380:
6381: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
6382: LIBTOOLFLAGS
6383:
6384: 2012-06-12 moko
6385:
6386: * configure.in, src/targets/cgi/Makefile.am: disable-static not
6387: compatible with LIBTOOLFLAGS for unknown reasons
6388:
6389: * buildall-with-xml: --with-dynamic-stdcpp removed
6390:
6391: * configure.in: static/dynamic -lstdc++ linking option removed
6392: apxs2 check added
6393:
6394: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
6395: option removed
6396:
6397: 2012-06-10 moko
6398:
6399: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
6400: added
6401:
6402: * src/targets/cgi/pp3.cmd: old PAF stuff
6403:
1.116 moko 6404: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
6405: beauty
1.95 moko 6406:
6407: * depcomp: from libtool 2.4.2
6408:
6409: * configure.in: ltdl directory removed, it has correct Makefile.in
6410:
6411: 2012-06-09 moko
6412:
1.116 moko 6413: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
6414: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 6415: autogenerated files updated after libtool update
6416:
1.116 moko 6417: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
6418: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 6419: config_auto.h.in, config_fixed.h, configure, configure.ac,
6420: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
6421: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
6422: config/compile, config/config.guess, config/config.sub,
6423: config/depcomp, config/install-sh, config/ltmain.sh,
6424: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
6425: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
6426: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
6427: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
6428: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
6429: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
6430: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
6431: m4/lt~obsolete.m4: libtool updated to version 2.4.2
6432:
6433: * configure.in: preparation for new libtool
6434:
6435: * configure.in: Some beauty added :)
6436:
6437: * src/targets/apache/Makefile.am: := -> =
6438:
6439: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
6440: again. :)
6441:
6442: * src/include/pa_config_includes.h, configure.in: limits.h added,
6443: previously was taken from pcre_internal.h. :)
6444:
6445: * src/lib/pcre/Makefile.am: config.h returned
6446:
6447: * src/lib/pcre/config.h: still need this. :)
6448:
6449: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
6450:
6451: * configure.in: --with-charsets removed; --with-mysql-client & co
6452: removed
6453:
6454: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
6455: now in parser tree, no need to copy
6456:
6457: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
6458: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
6459: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
6460: debian/patches/101_pcre.patch - local copy of pcre_internal.h
6461: extracts now used old trash removed
6462:
6463: * etc/parser3.charsets/Makefile.am: charsets now in share
6464: (debian/patches/104_automake.patch) + all charsets are copied
6465:
6466: * buildall-with-xml, buildall-without-xml: curl option removed +
6467: extra arguments now supported
6468:
6469: 2012-06-08 misha
6470:
6471: * src/classes/table.C: - one params.as_hash usage was rolled back:
6472: the 2nd option in ^table.hash[] could be hash or table so
6473: .as_hash will throw an exception when table option is specified
6474:
6475: * src/: classes/curl.C, classes/file.C, classes/hash.C,
6476: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
6477: classes/table.C, classes/void.C, classes/xdoc.C,
6478: include/pa_exception.h, types/pa_vmethod_frame.C,
6479: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
6480: and improved (whitespaces are allowed as empty options) -
6481: MethodParams::as_table is added - above methods are used for
6482: parsing methods' options ( new feature: #9 )
6483:
6484: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
6485: to vclass. now class fields can be accessible as a hash:
6486: $h[^hash::create[$asd:CLASS]]
6487:
6488: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
6489: have get_fields method so their fields can be accessed with
6490: ^reflection:fields[...] & ^reflection:field[...]
6491:
6492: 2012-06-06 misha
6493:
6494: * tests/280.html: - tests for
6495: ^reflection:method[obj-or-class;method],
6496: ^reflection:field[obj-or-class;field] and
6497: ^reflection:fields[obj-or-class] are added
6498:
6499: 2012-06-05 misha
6500:
6501: * src/classes/reflection.C: - ^reflection:method[class or
6502: object;method name] and ^reflection:field[class or object;field
6503: name] are added
6504:
6505: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
6506: is used
6507:
6508: * src/types/pa_method.h: - Method::as_vjunction method is added
6509:
6510: 2012-06-05 moko
6511:
1.116 moko 6512: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 6513:
6514: * src/classes/memcached.C: flish ttl fixed
6515:
6516: 2012-06-04 moko
6517:
6518: * src/classes/json.C, src/classes/op.C, tests/279.html,
6519: tests/results/279.processed: ^json:parse[] now supports $.taint
6520: option (new feature #833)
6521:
6522: 2012-06-04 misha
6523:
6524: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
6525: - search_stop method was moved from pa_vcookie.C to pa_common.C
6526:
6527: 2012-06-03 misha
6528:
6529: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
6530: cookies are parced and stored into $.cookies ( new feature: #31 )
6531:
6532: 2012-05-30 misha
6533:
6534: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
6535: incomplete class into a scope while @USE is found
6536:
6537: * src/main/compile.y: - add incomplete class into a scope while
6538: @USE and @CLASS instructions are found ( bugfix: #838 )
6539:
6540: 2012-05-30 moko
6541:
6542: * src/types/pa_vclass.C, tests/278.html,
6543: tests/results/278.processed: removed "property has no getter
6544: method" exception when GET_DEFAULT present (fixes #269)
6545:
6546: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
6547: $._default
6548:
6549: 2012-05-29 moko
6550:
6551: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
6552: uninitialized values usage (new feature: #154)
6553:
6554: 2012-05-28 moko
6555:
6556: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
6557: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
6558: src/types/pa_vdate.h, src/types/pa_vdouble.h,
6559: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
6560: src/types/pa_vobject.C, src/types/pa_vobject.h,
6561: src/types/pa_vstring.h, src/types/pa_vtable.C,
6562: tests/results/277.processed, src/types/pa_vtable.h,
6563: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
6564: ^json:string[$o; $.default[$method]] implemented for VObject (new
6565: feature #803)
6566:
6567: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
6568: tests/results/277.processed: json numbers are now treated as
6569: double ( new feature: #834 )
6570:
6571: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
6572: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
6573: added for out of range checks, zero division in vint/vdouble
6574: check added ( fixes #832 )
6575:
6576: * tests/: 275.html, results/275.processed: tests for pa_atoui added
6577: ( fixes #832 )
6578:
6579: 2012-05-28 misha
6580:
6581: * buildall-with-xml: - --without-lzma option is added to libxml2
6582: configure
6583:
6584: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
6585: added - tests for unsupported values for options $.file, $.table
6586: and $.date are added
6587:
6588: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
6589: accepts "stat" $.file[] option's value in addition to existed
6590: "text" and "base64" ( new feature: #835 )
6591:
6592: * tests/276.html: - test for
6593: ^reflection:delete[$object-or-class;field-name]
6594:
6595: * src/classes/reflection.C: -
6596: ^reflection:delete[$object-or-class;field-name] is added ( new
6597: feature: #268 )
6598:
6599: 2012-05-27 misha
6600:
6601: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
6602:
6603: 2012-05-24 misha
6604:
6605: * src/include/pa_common.h: - method lastposafter was removed
6606:
6607: * src/classes/file.C: - use strrpbrk & rskipchars instead of
6608: lastposafter - ^file:dirname[] & Co proper handle windows file
6609: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
6610: work as *nix commands
6611:
6612: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
6613:
6614: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
6615: rskipchars were added
6616:
6617: * tests/270.html: - more tests for ^file:find[]
6618:
6619: * tests/065.html: - more tests for ^file:dirname[] & Co
6620:
6621: * src/include/pa_version.h: - must be "win32" here. it is
6622: auto-generated on *nix
6623:
6624: 2012-05-24 moko
6625:
6626: * src/classes/math.C: ^math:convert[] now supports uint32 and
6627: throws overflow exception ( new feature: #830 )
6628:
6629: * tests/: 275.html, results/275.processed: test for ^math:convert[]
6630: uint32 support and overflow added ( new feature: #830 )
6631:
6632: 2012-05-23 moko
6633:
6634: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
6635: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
6636: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
6637: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
6638: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
6639: types/pa_vregex.h, types/pa_vstateless_class.C,
6640: types/pa_vstateless_class.h, types/pa_vstring.h,
6641: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
6642: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
6643: "return string as-is" removed from as_expr_result. ( new feature:
6644: #831 )
6645:
6646: * tests/results/244.processed: test changed after bug #782 fix
6647: commited
6648:
6649: * tests/results/229.processed: test results for bug #782 commited
6650:
6651: * tests/: 254.html, results/254.processed: uid now just compared,
6652: not printed. :)
6653:
6654: 2012-05-20 moko
6655:
6656: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
6657: feature: #341 )
6658:
6659: * tests/: 254.html, results/254.processed: test for
6660: ^reflection:uid[] added
6661:
6662: * tests/: 254.html, results/254.processed: test for
6663: ^reflection:uid[$obj] added
6664:
6665: 2012-05-17 misha
6666:
6667: * src/main/untaint.C: - do not replace ' char by _26 while
6668: exploding filespec-tainting ( new feature: #829 )
6669:
6670: 2012-05-12 moko
6671:
6672: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
6673: not.
6674:
6675: 2012-05-08 moko
6676:
6677: * src/types/pa_vmethod_frame.h: bug #782 fixed
6678:
6679: * tests/229.html: test for bug #782
6680:
6681: * tests/results/259.processed, src/main/pa_request.C,
6682: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
6683: src/types/pa_vstring.h, src/types/pa_vvoid.C,
6684: src/types/pa_vvoid.h: feature #154 - first empty param now
6685: string; defined locals are empty strings; $STRICT-VARS(true)
6686: added
6687:
6688: 2012-04-27 moko
6689:
1.116 moko 6690: * src/targets/apache/Makefile.am:
1.95 moko 6691: ../../lib/memcached/libmemcached.a added
6692:
6693: 2012-04-27 misha
6694:
6695: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
6696: ( #827 )
6697:
6698: 2012-04-25 moko
6699:
6700: * src/: classes/json.C, classes/memcached.C,
6701: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6702: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
6703: implemented.
6704:
6705: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
6706:
6707: 2012-04-23 moko
6708:
6709: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6710: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6711: types/pa_vmemcached.h: open allows options hash for new
6712: memcached(options) function
6713:
6714: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
6715: not appended
6716:
6717: 2012-04-21 moko
6718:
6719: * src/classes/curl.C: '' added. :)
6720:
6721: * src/classes/classes.vcproj: new curl.h location
6722:
6723: * src/classes/curl.C: verbose output redirection from stderr to
6724: file curl option added
6725:
6726: 2012-04-20 moko
6727:
6728: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
6729: contains what we need from curl, #ifdef HAVE_CURL removed
6730:
1.116 moko 6731: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 6732: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 6733: src/lib/Makefile.am, src/lib/curl/Makefile.am,
6734: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 6735: configure option
6736:
6737: 2012-04-19 moko
6738:
6739: * src/: classes/double.C, classes/inet.C, classes/int.C,
6740: classes/string.C, lib/gc/include/gc_allocator.h,
6741: types/pa_vform.C: PVS-Studio detected errors fixes, unused
6742: options from sql_result_string removed. (closes issue #468)
6743:
6744: * src/types/pa_vmemcached.C: empty string fix
6745:
6746: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
6747: pa_vstring.C, pa_vstring.h: serialization helpers moved to
6748: pa_vmemcached.C
6749:
6750: 2012-04-18 moko
6751:
6752: * src/targets/apache/mod_parser3.c: "Parser3 module requires
6753: apache2-mpm-prefork" error displayed in threaded mpm.
6754:
6755: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6756: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
6757: installed (issue #354)
6758:
6759: 2012-04-16 moko
6760:
6761: * src/types/pa_vmemcached.C: call to memcached_result_create and
6762: memcached_result_free removed
6763:
6764: 2012-04-14 moko
6765:
6766: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
6767:
6768: * src/types/pa_vmemcached.C: check_key added and used
6769:
6770: 2012-04-13 moko
6771:
6772: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
6773: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
6774: Serialization_data now added and used, VString now serialized
6775: with languages into memcached.
6776:
6777: 2012-03-28 moko
6778:
6779: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
6780: lib/memcached/pa_memcached.h: result lengths added
6781:
6782: 2012-03-27 moko
6783:
6784: * src/types/pa_vmemcached.C: strdup added
6785:
6786: 2012-03-24 moko
6787:
6788: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
6789: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
6790: types/pa_vmemcached.h: memcached: mget, flush, fttl added
6791:
6792: 2012-03-20 moko
6793:
1.116 moko 6794: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 6795:
6796: * src/targets/cgi/Makefile.am: cleanup
6797:
6798: * src/: types/Makefile.am, types/pa_vmemcached.C,
6799: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
6800:
6801: * src/: classes/Makefile.am, classes/memcached.C,
6802: lib/memcached/Makefile.am, lib/memcached/constants.h,
6803: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
6804: lib/memcached/types.h, lib/Makefile.am: memcached initial
6805:
6806: 2012-03-16 moko
6807:
6808: * src/main/execute.C: ident now works under Linux + ident displays
6809: filenames (closes issue #818)
6810:
1.116 moko 6811: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 6812: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
6813: pa_vmethod_frame_local.h removed
6814:
6815: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
6816: classes/classes.h, classes/curl.C, classes/date.C,
6817: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
6818: classes/hashfile.C, classes/image.C, classes/inet.C,
6819: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
6820: classes/memory.C, classes/op.C, classes/reflection.C,
6821: classes/regex.C, classes/response.C, classes/string.C,
6822: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
6823: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
6824: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
6825: include/pa_config_fixed.h, include/pa_config_includes.h,
6826: include/pa_dictionary.h, include/pa_dir.h,
6827: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
6828: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
6829: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
6830: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
6831: include/pa_request_charsets.h, include/pa_request_info.h,
6832: include/pa_sapi.h, include/pa_socks.h,
6833: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
6834: include/pa_stack.h, include/pa_string.h,
6835: include/pa_stylesheet_connection.h,
6836: include/pa_stylesheet_manager.h, include/pa_table.h,
6837: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
6838: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
6839: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
6840: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
6841: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
6842: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
6843: main/compile.tab.C, main/compile.y, main/compile_tools.C,
6844: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
6845: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
6846: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
6847: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
6848: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
6849: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
6850: main/pa_string.C, main/pa_stylesheet_connection.C,
6851: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
6852: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
6853: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
6854: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
6855: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
6856: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
6857: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
6858: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
6859: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
6860: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
6861: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
6862: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
6863: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
6864: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
6865: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
6866: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
6867: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
6868: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
6869: types/pa_vmemory.h, types/pa_vmethod_frame.C,
6870: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
6871: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
6872: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
6873: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
6874: types/pa_vresponse.h, types/pa_vstateless_class.C,
6875: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
6876: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
6877: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
6878: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
6879: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
6880: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
6881: ident now works under Linux + ident displays filenames (closes
6882: issue #818) Copyright updated
6883:
6884: 2012-03-13 moko
6885:
6886: * src/main/pa_string.C: compilation fix for feature #741
6887:
6888: 2012-03-09 misha
6889:
6890: * tests/193.html: - tests for ^string:base64[encoded] are updated
6891:
6892: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
6893: now detects invalid base64 chars in the middle of encoded stricg
6894: ( new feature: #55 )
6895:
6896: * src/include/pa_exception.h: - new exception type for base64
6897: decoding is added
6898:
6899: 2012-03-06 misha
6900:
6901: * tests/274.html: - tests for ^date::today[] and
6902: ^date.sql-string[datetime|date|time] are added
6903:
6904: * src/classes/date.C: - constructor ^date::today[] is added ( new
6905: feature: #811 ) - ^date.sql-string[] now can accept one param --
6906: strings "datetime", "date" or "time" - comments tidying up
6907:
6908: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6909: date and time
6910:
6911: 2012-03-03 misha
6912:
6913: * tests/193.html: - tests for
6914: ^string:base64[encoded;$.strict(true)] are added
6915:
6916: * tests/results/auto.p: - try-catch operator is added
6917:
6918: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6919: main/pa_common.C: - $.strict(true|false) option is added to
6920: base64 decode methods ( new feature: #55 )
6921:
6922: * src/main/pa_common.C: - base64 decode memory usage was decreased
6923: ( new feature: #819 )
6924:
6925: 2012-02-28 moko
6926:
6927: * src/classes/hash.C: ident test
6928:
6929: 2012-02-27 misha
6930:
6931: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6932:
6933: 2012-01-08 misha
6934:
6935: * tests/273.html: - tests for ^string.replace[from;to] are added
6936:
6937: * src/: classes/string.C, include/pa_dictionary.h,
6938: main/pa_dictionary.C, main/pa_string.C: -
6939: ^string.replace[from;to] is added ( new feature: #741 ) -
6940: ^string.replace[one subst here] is slightly optimized
6941:
6942: 2011-12-07 misha
6943:
6944: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6945: named table with one empty column ( bugfix: #63 )
6946:
6947: 2011-11-30 misha
6948:
6949: * src/classes/json.C: - it's possible to set user's method for
6950: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6951: #763 )
6952:
6953: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6954:
6955: 2011-11-23 misha
6956:
6957: * src/: classes/curl.C, classes/file.C, classes/image.C,
6958: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6959: types/pa_vfile.h, types/pa_vform.C: - constructor
6960: ^file::create[mode;filename;content[;options]] now accepts binary
6961: mode and file-content - new constructor's format:
6962: ^file::create[string-or-file-content[;$.name[filename]
6963: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6964: feature: #65 )
6965:
6966: * src/: include/pa_request.h, main/pa_request.C: - new method
6967: mime_type_of(const String*) is added
6968:
6969: * src/include/pa_exception.h: - new exception constant
6970: FILE_NAME_MUST_BE_SPECIFIED is added
6971:
6972: * src/classes/table.C: - bug with negative offset transformed into
6973: a feature. it means pointing to a row from the end of the table (
6974: new feature: #810 )
6975:
6976: 2011-11-19 misha
6977:
6978: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6979: â ìåòîäå _select ( new feature: #810 )
6980:
6981: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6982: options were specified together is simplified
6983:
6984: 2011-11-12 misha
6985:
6986: * src/main/pa_request.C: - forgotten fix for escaping filename in
6987: HTTP content-disposition header (a part of bug #361 )
6988:
6989: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6990: checks for ancestors' classes as well ( new feature: #456 )
6991:
6992: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6993: "without cycle" now have types "parser.break" and
6994: "parser.continue" instead of "parser.runtime" ( new feature: #799
6995: )
6996:
6997: 2011-11-11 misha
6998:
6999: * tests/results/: 099.processed, 100.processed, 205.processed,
7000: 237.processed: - since bug #361 was fixed the content of filename
7001: in HTTP headers is quoted
7002:
7003: * tests/results/270.processed: - result for test 270
7004:
7005: * tests/: 065.html, results/065.processed: - more tests for
7006: ^file:basename[] & Co were added
7007:
7008: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
7009:
7010: * tests/270.html: - tests for ^file:find[] are added
7011:
7012: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
7013: using option $.charset. option $.engoding is still supported but
7014: these options can not be specified together
7015:
7016: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
7017: comparation charset name with string "UTF-8" ( bugfix: #759 )
7018:
7019: 2011-10-11 misha
7020:
7021: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
7022: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
7023: #622)
7024:
7025: 2011-09-30 misha
7026:
7027: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
7028: exception "saving stat-ed file" ( bugfix: #395 )
7029:
7030: 2011-05-30 misha
7031:
7032: * src/classes/string.C: - fixed bug which was added with
7033: params.as_hash into string:sql
7034:
7035: 2011-05-29 misha
7036:
7037: * src/types/pa_value.C: - filename in content-disposition header
7038: must be quoted ( bugfix: #361 )
7039:
7040: 2011-05-27 misha
7041:
7042: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
7043: created file
7044:
7045: * src/classes/: hash.C, mail.C: - little tunning with get_hash
7046: usage
7047:
7048: * src/include/pa_exception.h: - one more string for exception was
7049: added
7050:
7051: 2011-05-25 misha
7052:
7053: * tests/269.html: - tests for checking input params in some dom
7054: methods
7055:
7056: * src/classes/: xdoc.C, xnode.C: - validation of some input params
7057: was added. it isn't possible not wo create xdoc with invalid
7058: tagName. ( bugfix: #160 )
7059:
7060: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
7061: string "data must be string" was mover from pa_exception.h to
7062: pa_xml_exception.h
7063:
7064: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
7065: as_xmlncname, as_xmlname and as_xmlnsuri were added
7066:
7067: * src/main/pa_xml_exception.C: - XmlException accepts more options
7068:
7069: * src/include/pa_xml_exception.h: - XmlException accepts more
7070: options - XML-related exception's strings were added
7071:
7072: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
7073: output_options were removed)
7074:
7075: 2011-05-19 misha
7076:
7077: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
7078: params.as_hash is used more while parsing methods hash-options
7079:
7080: 2011-05-18 misha
7081:
7082: * operators.txt: - info about json-serialization of xdoc was added
7083:
7084: * tests/256.html: - tests for json-serialization xdoc were added
7085:
7086: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
7087:
7088: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
7089: classes/json.C, classes/xdoc.C: - now json:string can serialize
7090: xdoc-objects. options (the same as ^xdoc.string[]) could be
7091: specified in $.xdoc[] ( new feature: #265 )
7092:
7093: 2011-05-15 misha
7094:
7095: * tests/268.html: - tests for ^table.count[with options] were added
7096:
7097: * src/classes/table.C: - method ^table.count[] now can accept
7098: options ( new feature: #93 ): ^table.count[column] returns number
7099: of columns for named table; ^table.count[cells] returns number of
7100: cells in the current row; ^table.count[] & ^table.count[rows]
7101: return number of rows in a table.
7102:
7103: * tests/267.html: - test for checking switch/case in boolean mode
7104: was added
7105:
7106: * src/classes/op.C: - if switch's or case's value is bool, they are
7107: compared as bool values, not as double values: new feature: #351
7108:
7109: 2011-05-06 misha
7110:
7111: * tests/242.html: - EOL before EOF was added
7112:
7113: * tests/169.html: - tests for splitting empty string and void were
7114: added
7115:
7116: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
7117: returned table with one empty cell)
7118:
7119: 2011-04-03 misha
7120:
7121: * src/include/pa_version.h, configure.in: - version in head was
7122: changed to 3.4.2b
7123:
7124: 2011-03-30 misha
7125:
7126: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
7127: as well ( new feature #294 )
7128:
7129: 2011-03-29 misha
7130:
7131: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
7132: limited to approx. 6 MB. previous limits were too big for real
7133: life. bugfix: #216
7134:
7135: 2011-03-04 moko
7136:
7137: * etc/parser3.charsets/cp866.cfg: Conforms to
7138: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
7139:
7140: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
7141: vlalek@
7142:
7143: 2011-02-22 misha
7144:
7145: * src/include/pa_charset.h, operators.txt: - some methods mustn't
7146: be under #ifdef XML or parser can't be compiled without xml
7147: support
7148:
7149: 2011-02-21 misha
7150:
1.116 moko 7151: * src/targets/apache/: Makefile.am: - mention
1.95 moko 7152: ApacheModuleParser3.vcproj was removed
7153:
7154: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
7155: removed)
7156:
7157: 2011-02-20 misha
7158:
7159: * tests/: 266.html, 266.p: - tests for checking $.inherited and
7160: $.overridden in ^reflection:method_info[...] were added
7161:
7162: * src/classes/reflection.C: - beautifying result of
7163: ^reflection:method_info[] ($.overridden/inherited)
7164:
7165: 2011-02-18 misha
7166:
7167: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
7168: and pa_isalnum instead of isalpha and isalnum - bug with
7169: redundand quoting lowercased latin chars while building email
7170: body was fixed
7171:
7172: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
7173: added (they check for latin chars only)
7174:
7175: 2011-02-16 misha
7176:
7177: * src/main/pa_charset.C: - bugfix: in some cases the calculating
7178: string size for transcoding gave too small value (should ever
7179: look for availability char in dest charset inspite of the char
7180: size)
7181:
7182: 2011-02-04 moko
7183:
7184: * tests/223.html: header values now not url-encoded (issue #195)
7185:
7186: 2011-02-01 misha
7187:
7188: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
7189:
7190: 2011-01-31 misha
7191:
7192: * src/main/pa_request.C: - throw exception if param file_name in
7193: use_file is empty
7194:
7195: 2011-01-08 moko
7196:
7197: * src/classes/curl.C: compilations errors fixed
7198:
7199: 2010-12-29 moko
7200:
7201: * tests/: 265.html, results/265.processed: test for issue #200
7202: added
7203:
7204: * src/main/pa_string.C: empty regex result check added (fixes issue
7205: #200)
7206:
7207: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
7208:
7209: * tests/results/223.processed: header values now not url-encoded
7210: (issue #195)
7211:
7212: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
7213: main/untaint.C: L_HTTP_HEADER now used in http headers values,
7214: pa_http_safe_header_name added for headers names (fixes bug #195)
7215:
7216: 2010-12-18 misha
7217:
7218: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
7219: => pa-include
7220:
7221: 2010-11-28 moko
7222:
7223: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
7224:
7225: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
7226: -> pa
7227:
7228: * configure.in: apr -> pa
7229:
7230: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
7231:
7232: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
7233: classes/Makefile.am, types/Makefile.am: apr -> pa
7234:
7235: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
7236: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
7237: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
7238: pa-include/pa_apr.h, pa-include/pa_errno.h,
7239: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
7240: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
7241: module apr name conflict resolved)
7242:
7243: 2010-11-27 misha
7244:
7245: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
7246: libbz2
7247:
7248: 2010-11-26 misha
7249:
7250: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
7251: warnings removed
7252:
7253: 2010-11-25 moko
7254:
7255: * operators.txt: $.indent(true)
7256:
7257: * operators.txt: another bugfix. :)
7258:
7259: * operators.txt: bugfix. :)
7260:
7261: * buildall-with-xml: libxml2-2.7.8 + with-apache
7262:
7263: 2010-11-24 moko
7264:
1.116 moko 7265: * configure: apxs support
1.95 moko 7266:
7267: * configure.in: apxs support -Bstatic gc removed for OS X
7268:
7269: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
7270:
7271: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
7272: THREAD_LOCAL usage
7273:
7274: * src/: classes/curl.C, include/pa_config_includes.h,
7275: main/pa_globals.C: THREAD_LOCAL defined and used
7276:
7277: 2010-11-23 moko
7278:
7279: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
7280: should be passed to pa_sleep, and only fractional part (bugfix:
7281: #188)
7282:
7283: * src/targets/apache/mod_parser3.c: 1.3 compatibility
7284:
7285: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
7286: GC_dont_gc=1, as in cgi version
7287:
7288: * src/targets/apache/mod_parser3.c: warning war
7289:
7290: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7291: pa_httpd.h: version removed, some trash removed
7292:
7293: * src/targets/apache/mod_parser3.c: version removed (we don't want
7294: to show it), warning war
7295:
7296: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7297: pa_httpd.h: parser_status_allowed removed + merge config
7298: functions removed (override is the default) + beauty
7299:
7300: * src/: include/pa_request.h, main/pa_request.C,
7301: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
7302: hide $status used in apache module removed
7303:
7304: 2010-11-18 moko
7305:
7306: * operators.txt: $.table[compact] added for ^json:string[]
7307:
7308: 2010-11-16 moko
7309:
7310: * src/targets/apache/mod_parser3.c: some cleanup done
7311:
7312: * src/main/untaint.C: bugfix: first, second String::Body argument
7313: is hashcode; second, info.fragment_begin is original, not
7314: resulting length
7315:
7316: * src/classes/file.C: new feature: $.stdin now untainted
7317:
7318: * tests/results/264.processed: new feature: $.stdin[] now untainted
7319:
7320: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
7321:
7322: * src/classes/op.C: ^apply-taint[] method added
7323:
7324: * tests/: 264.html, results/264.processed: ^apply-taint[] test
7325: added; $.stdin untaint test added
7326:
7327: 2010-11-15 moko
7328:
7329: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
7330: removed
7331:
7332: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
7333: pa_httpd.h: 2x2 calculated under apache2. :)
7334:
7335: 2010-11-13 moko
7336:
7337: * src/targets/apache/mod_parser3.c: initial changes to build module
7338: with apache 2.x includes
7339:
7340: * src/targets/apache/: Makefile.am, mod_parser3.c,
7341: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
7342: united apache 1.3 / apache 2.x DSO module
7343:
7344: 2010-11-09 moko
7345:
7346: * src/types/pa_method.h: check added to dissallow @method[name;*]
7347: syntax
7348:
7349: * tests/: 263.html, results/263.processed: test from method[*args]
7350: added
7351:
7352: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
7353: number of params can now be passed to a method declared with *arg
7354:
7355: 2010-11-06 moko
7356:
7357: * src/classes/table.C: formating fixed. :)
7358:
7359: * src/classes/table.C: closes #4: ^table.select now supports
7360: $.limit(), $.offset, $.reverse() options
7361:
7362: * tests/: 262.html, results/262.processed: test for ^table:select
7363: with options added (feature #4)
7364:
7365: * src/include/pa_array.h: remove function added
7366:
7367: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
7368: object in get_element/put_element, using static one.
7369:
7370: 2010-11-04 moko
7371:
7372: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
7373: options is passed
7374:
7375: * tests/: 256.html, results/256.processed: $.table[compact] feature
7376: now tested; k and p in handler now tested.
7377:
7378: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
7379: $.table[compact] feature added
7380:
7381: * src/classes/json.C: key is now passed to handler in
7382: value_json_string; ^json:string result now process tainting
7383: inside and returns clean string, related to issue #153
7384:
7385: * src/main/untaint.C: bugfix: charset can be null (in
7386: ^string:save[] as example), thus check is added
7387:
7388: 2010-10-31 moko
7389:
7390: * src/classes/string.C: error message changed (fixes issue #149)
7391:
7392: 2010-10-29 moko
7393:
7394: * src/main/pa_http.C: ":port" is now added to "Host:" header if
7395: port is not default (fixes issue #155); exception on invalid port
7396: added.
7397:
7398: * src/main/untaint.C: '*' is now not urlencoded to allow header
7399: "Accept: */*" to be passed
7400:
7401: 2010-10-28 moko
7402:
7403: * src/classes/curl.C: bugfix: detect_charset() was throwing
7404: exception on unknown charset even if response_charset was
7405: specified
7406:
7407: 2010-10-27 moko
7408:
7409: * src/classes/string.C: ^string.append removed for void
7410: compatibility
7411:
7412: 2010-10-26 moko
7413:
7414: * src/classes/json.C: libjson supports array at top level, we too
7415: (GPF fixed)
7416:
7417: 2010-10-25 moko
7418:
7419: * tests/: 253.html, results/253.processed: libjson supports array
7420: at top level, parser now supports it as well.
7421:
7422: * tests/261.html, tests/results/261.processed,
7423: src/types/pa_vstring.h: empty string is now void compatible
7424: (allows $empty.key)
7425:
7426: 2010-10-22 misha
7427:
7428: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
7429: while adding additional expires checkout)
7430:
7431: * tests/030.html: - test for session cookie was added
7432:
7433: 2010-10-21 moko
7434:
7435: * src/: classes/string.C, classes/void.C, main/execute.C,
7436: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
7437: string (feature #111)
7438:
7439: * tests/: 261.html, results/261.processed: checks void from string
7440: inheritance (feature #111)
7441:
7442: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
7443: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
7444: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
7445: now true by default
7446:
7447: 2010-10-17 moko
7448:
7449: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
7450: upload now uses binary blocks instead of L_FILE_POST tainting.
7451: (bugfix: #128)
7452:
7453: * tests/: 223.html, results/223.processed: binary file upload test
7454: added, GPF (issue #128) also checked in this test
7455:
7456: 2010-10-13 misha
7457:
7458: * tests/260.html: - test for math:convert
7459:
7460: * src/classes/math.C: - error in math:convert was fixed
7461:
7462: * operators.txt: - info about
7463: ^math:convert[number](from-base;to-base) was added
7464:
7465: * src/classes/math.C: - method
7466: ^math:convert[number](from-base;to-base) for converting number
7467: represention from one base to another was added ( new feature:
7468: #23 )
7469:
7470: 2010-10-13 moko
7471:
7472: * src/main/compile.tab.C: [] now is empty string, not void
7473:
7474: * src/main/compile.y: [] now is empty string, not void
7475:
7476: * src/types/pa_vvoid.h: void now passed as parameter
7477:
7478: * tests/: 259.html, results/259.processed: to test difference
7479: between void and empty string (see ticket #111)
7480:
7481: * tests/results/152.processed: $sEmpty[] is now empty string, not
7482: void
7483:
7484: * tests/256.html: $s[$void] is no longer empty string
7485:
7486: * tests/254.html: empty string is no longer void
7487:
7488: 2010-10-12 misha
7489:
7490: * src/types/pa_vcookie.C: - check if $.expires value can be
7491: converted to date during cookies set up ( bugfix: #104 )
7492:
7493: * tests/041.html: - more tests for ^table.locate were added
7494:
7495: * src/classes/table.C: - ^table.locate[field;value;options] didn't
7496: work ( bugfix: #129 ) - exception comment for incorrect options
7497: ^table.locate[field;value;options] was fixed
7498:
7499: 2010-10-10 moko
7500:
7501: * src/: classes/reflection.C, main/execute.C: constructor returning
7502: another object feature returned
7503:
7504: * tests/results/258.processed: test result updated as constructor
7505: returning another object feature returned
7506:
7507: * tests/: 258.html, results/258.processed: test for constructor
7508: returning another object
7509:
7510: 2010-10-08 misha
7511:
7512: * tests/257.html: - whitespaces after @METACOMMANDS and their
7513: options shouldn't cause exceptions any longer
7514:
7515: 2010-10-06 moko
7516:
7517: * src/classes/: hash.C, table.C: length from sql server is now
7518: ignored, as sql string can contain 0x00 inside (bugfix: #119)
7519:
7520: 2010-10-02 misha
7521:
7522: * operators.txt: - the X mark was removed from ^cache[file]. it is
7523: usable to delete cache file.
7524:
7525: 2010-10-02 moko
7526:
7527: * tests/: 253.html, results/253.processed: hook_key added for key
7528: checking
7529:
7530: * src/classes/json.C: null key bug fixed
7531:
7532: 2010-09-29 misha
7533:
7534: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
7535:
7536: 2010-09-25 moko
7537:
7538: * src/classes/json.C: small fixed
7539:
7540: * tests/results/: 253.processed, 255.processed: just updated
7541:
7542: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
7543: results/255.processed: charset transcode test added for
7544: json:parse
7545:
7546: 2010-09-24 moko
7547:
7548: * src/types/pa_value.h: warning war :)
7549:
7550: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
7551: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
7552: ^json:string
7553:
7554: 2010-09-22 moko
7555:
7556: * src/main/pa_charset.C: parser charset tables declare only
7557: white-space before 0x20, thus adding the missing chars
7558:
7559: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
7560: to http://unicode.org/Public/MAPPINGS/VENDORS/
7561:
7562: 2010-09-21 misha
7563:
7564: * src/main/compile.y: - some semicolons were added (VS2010 don't
7565: want to compile grammar if they are absent)
7566:
7567: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
7568:
7569: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
7570:
7571: * src/main/main.vcproj: - path to bison is changed
7572:
7573: 2010-09-21 moko
7574:
1.116 moko 7575: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
7576: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
7577: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 7578:
7579: 2010-09-20 misha
7580:
7581: * src/types/pa_vtable.C: - add EOLs while json-serializing table
7582:
7583: * src/classes/json.C: - add EOL while json-serializing hash
7584:
7585: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
7586: compilers don't like 'ES'.
7587:
7588: 2010-09-17 misha
7589:
7590: * operators.txt: - info about json class was added
7591:
7592: * src/classes/json.C: - ^json:string[object]
7593:
7594: * src/: include/pa_request.h, main/pa_request.C: - stuff for
7595: preventing infinite recursion while executing json:string was
7596: added
7597:
7598: * src/include/pa_string.h: - method append_quoted was added
7599:
7600: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
7601: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
7602: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
7603: was added to Value & Co
7604:
7605: * src/classes/date.C: - methods get_gmt_string and get_sql_string
7606: were used
7607:
7608: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
7609: were added
7610:
7611: 2010-09-10 moko
7612:
7613: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7614: die_or_abort (backport from 3.4.1)
7615:
7616: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
7617: die_or_abort (bugfix: #106)
7618:
7619: 2010-09-09 moko
7620:
7621: * src/classes/json.C: warning war. :)
7622:
7623: 2010-09-08 misha
7624:
7625: * src/lib/json/Makefile.am: - additional include directories were
7626: added (for pa_memory.h and gc.h)
7627:
7628: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
7629: compile as C++ instead default - additional include directory was
7630: added (for gc.h)
7631:
7632: * src/types/pa_vform.C: - little code reformating
7633:
7634: * src/classes/file.C: - $.content-type option now can be specified
7635: in ^file::create ( new feature: #102 )
7636:
7637: 2010-09-08 moko
7638:
7639: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
7640: pa_malloc/pa_free
7641:
7642: 2010-09-07 moko
7643:
7644: * tests/results/254.processed: VStateless_class:put_element
7645: exception was fixed
7646:
7647: * src/types/: pa_value.h, pa_vstateless_class.h: now
7648: VStateless_class:put_element barks self.type, not this.type
7649: (bugfix: #105)
7650:
7651: 2010-09-06 moko
7652:
7653: * src/classes/reflection.C: bugfix: new String() is required for
7654: exception handling
7655:
7656: * tests/: 254.html, results/254.processed: test modified
7657:
7658: 2010-09-05 moko
7659:
7660: * tests/: 254.html, results/254.processed: ^reflection:copy test
7661: added
7662:
7663: * src/: classes/reflection.C, include/pa_request.h:
7664: ^reflection:copy implemented (new feature: #100)
7665:
7666: 2010-09-03 moko
7667:
7668: * src/lib/json/JSON_parser.C: c++ compatiblity
7669:
7670: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
7671: option testing added
7672:
7673: 2010-09-02 moko
7674:
7675: * src/classes/json.C: $.distinct[first|last|all] added
7676:
7677: 2010-09-01 moko
7678:
7679: * tests/results/253.processed: json test result
7680:
7681: * tests/: 253.html, 253_json.txt: json test added
7682:
7683: * src/classes/json.C: json.C update to actual version + hash key
7684: creation bugfix
7685:
7686: 2010-08-31 misha
7687:
7688: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
7689: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
7690: src/lib/Makefile.am, src/classes/Makefile.am,
7691: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
7692: json library was added
7693:
7694: 2010-08-30 moko
7695:
7696: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
7697: types/pa_vobject.C: cosmetic optimization in
7698: request:execute_method usage
7699:
7700: * src/: include/pa_charset.h, main/pa_charset.C: small
7701: optimization, just to decrease number of lines. :)
7702:
7703: 2010-08-27 misha
7704:
7705: * src/classes/op.C: - taint[json] was added
7706:
7707: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
7708: were added
7709:
7710: * src/main/pa_exec.C: - warning fix was rolled back.
7711:
7712: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
7713: include/pa_string.h: - taint[json] was added - escaping was
7714: slightly modified
7715:
7716: 2010-08-25 misha
7717:
7718: * src/classes/file.C: - typo in file:sql exception was fixed
7719:
7720: * src/main/pa_exec.C: - warning about declared and not used
7721: variable forced_allow was removed
7722:
7723: 2010-08-14 misha
7724:
7725: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
7726: were removed
7727:
7728: 2010-08-11 moko
7729:
7730: * tests/: 249.html, results/249.processed: default setter and
7731: anti-recursive default getter test added
7732:
7733: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
7734: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
7735: types/pa_vobject.h, types/pa_vstateless_class.C,
7736: types/pa_vstateless_class.h: default setter support +
7737: anti-recursive default getter support ( new feature: #13 )
7738:
7739: * src/include/pa_hash.h: optimization: threshold member removed
7740: from hash, reducing sizeof(hash)
7741:
7742: 2010-08-10 misha
7743:
7744: * tests/196.html: - junction-method was added to the test
7745:
7746: * tests/248.html: - ups. typo :)
7747:
7748: * tests/248.html: - test for checking .match with 4 params
7749:
7750: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
7751: 247_windows1251.txt: - test for "transcode file from utf-8 to
7752: $request:charset during loading if the BOM code is detected"
7753:
7754: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
7755: $request:charset during loading if the BOM code is detected ( new
7756: feature: #98 )
7757:
7758: 2010-08-05 misha
7759:
7760: * src/classes/image.C: - ^image.replace now can accept only 2
7761: params. in this case the whole image is affected ( new feature:
7762: #95 )
7763:
7764: 2010-08-04 misha
7765:
7766: * tests/246.html: - test tor ^hash._at[] was added
7767:
7768: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
7769: #53 )
7770:
7771: * src/include/pa_hash.h: - methods for accessing the first and the
7772: last values of ordered hash were added (first_value and
7773: last_value)
7774:
7775: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
7776: (similar to others file's methods):
7777: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
7778: #68 )
7779:
7780: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
7781:
7782: 2010-08-01 moko
7783:
7784: * src/classes/op.C: to correctly process $result[] in code, called
7785: from ^process
7786:
7787: * tests/245.html: $result in ^process[] test added
7788:
7789: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
7790: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
7791: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
7792: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
7793: caller, self) op_call(VMethodFrame &frame, bool constructing)
7794: removed, construct(class,method) added
7795:
7796: * tests/results/: 192.processed, 244.processed: request::construct
7797: added
7798:
7799: * tests/: 244.html, 245.html, results/244.processed,
7800: results/245.processed: object creation exceptions and ^process
7801: tests added
7802:
7803: 2010-07-28 misha
7804:
7805: * tests/make_tests.cmd: - win32 EOLs
7806:
7807: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
7808: tests on Win32 were added (The system timezone should be GMT+3)
7809:
7810: 2010-07-26 misha
7811:
7812: * tests/: 212.html, results/212.processed: - sizes were removed
7813: mecause they could be different on different OSs
7814:
7815: * tests/065.html: - make it "win32 friendly"
7816:
7817: 2010-07-25 misha
7818:
7819: * src/main/compile.y: - all EOLs between methods are removed during
7820: compilation ( new feature: #47 )
7821:
7822: * tests/results/149.processed: - prepare tests to trim trailing
7823: methods' EOLs
7824:
7825: * tests/149.html: - prepare tests to trim trailing methods' EOLs
7826:
7827: * tests/: results/006.processed, results/014.processed, 006.html,
7828: 014.html, 022.html: - prepare tests to trim trailing methods'
7829: EOLs
7830:
7831: * tests/: 059.html, 071.html, 149.html, results/059.processed,
7832: results/071.processed, results/022.processed: - prepare tests to
7833: trim trailing methods' EOLs
7834:
7835: * tests/: results/073.processed, results/109.processed,
7836: results/142.processed, results/144.processed,
7837: results/149.processed, 073.html, 096.html, 109.html, 142.html,
7838: 144.html: - prepare tests to trim trailing methods' EOLs
7839:
7840: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
7841: 149.html, 152.html, results/096.processed, results/107.processed,
7842: results/109.processed, results/142.processed,
7843: results/144.processed: - prepare tests to trim trailing methods'
7844: EOLs
7845:
7846: 2010-07-24 moko
7847:
7848: * tests/results/: 156.processed, 224.processed: fix for #54 changed
7849: the hash order in this test
7850:
7851: * tests/014.html: to check hash order, hash no is longer sorted
7852: before print
7853:
7854: * src/include/pa_hash.h: hash copy constructor now keeps order
7855: (bugfix: #54)
7856:
7857: 2010-07-23 moko
7858:
7859: * tests/results/224.processed: @auto[] is no longer inherited
7860:
7861: * src/types/pa_vstateless_class.C, tests/227.html,
7862: tests/results/227.processed: @auto[] is no longer inherited
7863: (bugfix: #57)
7864:
7865: 2010-07-22 misha
7866:
7867: * src/classes/table.C: - don't skip comment lines during
7868: table::load if encloser or separator is set as '#' ( new feature:
7869: #30 )
7870:
7871: * src/targets/cgi/parser3.C: - don't run as cgi if
7872: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
7873: #12 )
7874:
7875: * src/classes/file.C: - set PARSER_VARSION env before external
7876: script executing
7877:
7878: 2010-07-13 misha
7879:
7880: * tests/058.html: - test for suppressing @border was added - test
7881: for user attribute was added
7882:
7883: * tests/results/186.processed: unescaping from \uXXXX
7884:
7885: * tests/186.html: unescaping from \uXXXX
7886:
7887: * tests/: 239.html, results/239.processed: method call type
7888:
7889: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
7890: $junction_method.CLASS_NAME (+CLASS)
7891:
7892: 2010-07-07 misha
7893:
7894: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
7895: *nix
7896:
7897: 2010-07-05 misha
7898:
7899: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7900: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7901: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7902: comment strings "options must be hash", "options must be hash,
7903: not code" and "called with invalid option" were replaced by
7904: constatns - exception comment string "invalid option passed" was
7905: replaced by "called with invalid option" (now in different
7906: methods are the same exception comment string)
7907:
7908: * src/include/pa_exception.h: - more exception strings were defined
7909:
7910: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7911: types/pa_vstateless_class.h: - now we can define possible
7912: method's call type ( new feature: #5 ) 1.
7913: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7914: methods 2. @static:method[params] (only static keyword could be
7915: used here) -- for specified methods
7916:
7917: * src/main/pa_common.C: - junction points should not be deleted on
7918: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7919: cleanup
7920:
7921: 2010-07-03 misha
7922:
7923: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7924: results/158.processed, results/160.processed,
7925: results/161.processed, results/162.processed,
7926: results/163.processed: - prepare tests to trim trailing methods'
7927: EOLs
7928:
7929: * tests/results/169.processed: - prepare tests to trim trailing
7930: methods' EOLs
7931:
7932: * tests/results/: 168.processed, 169.processed: - prepare tests to
7933: trim trailing methods' EOLs
7934:
7935: * tests/: results/170.processed, results/167.processed,
7936: results/168.processed, results/169.processed, 167.html, 168.html,
7937: 169.html: - prepare tests to trim trailing methods' EOLs
7938:
7939: * tests/: results/170.processed, results/171.processed,
7940: results/172.processed, results/173.processed,
7941: results/174.processed, results/175.processed, 170.html, 171.html,
7942: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7943: trailing methods' EOLs
7944:
7945: * tests/: results/176.processed, results/180.processed,
7946: results/184.processed, results/185.processed,
7947: results/191.processed, results/192.processed,
7948: results/196.processed, results/197.processed,
7949: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7950: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7951: to trim trailing methods' EOLs
7952:
7953: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7954: results/199.processed, results/208.processed,
7955: results/209.processed, results/213.processed,
7956: results/214.processed: - prepare tests to trim trailing methods'
7957: EOLs
7958:
7959: 2010-06-29 misha
7960:
7961: * tests/: 220.html, 218.html, results/218.processed,
7962: results/215.processed, results/217.processed, 215.html, 217.html:
7963: - prepare tests to trim trailing methods' EOLs
7964:
7965: * tests/: results/224.processed, 224.html, 223.html,
7966: results/223.processed, results/220.processed: - prepare tests to
7967: trim trailing methods' EOLs
7968:
7969: * tests/results/: 226.processed, 230.processed: - prepare tests to
7970: trim trailing methods' EOLs
7971:
7972: * tests/: 229.html, results/229.processed: - prepare tests to trim
7973: trailing methods' EOLs
7974:
7975: * tests/: 232.html, 235.html, results/232.processed,
7976: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7977: results/226.processed, results/227.processed,
7978: results/228.processed, results/230.processed: - prepare tests to
7979: trim trailing methods' EOLs
7980:
7981: 2010-06-16 moko
7982:
7983: * tests/: 229.html, results/229.processed: elseif now supported in
7984: ^if
7985:
7986: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7987:
7988: 2010-06-03 misha
7989:
7990: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7991: instead of memcopy for overlaped regions
7992:
7993: 2010-05-25 misha
7994:
7995: * src/main/pa_common.C: - wanring about unused vars was removed
7996:
7997: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7998: get_method_filename was moved to execute.C
7999:
8000: 2010-05-23 misha
8001:
8002: * src/main/pa_request.C: - more accurate detection of method's file
8003:
8004: 2010-05-22 misha
8005:
8006: * src/classes/reflection.C: - bugfix: core during detection of
8007: .file if filespec isn't detected successfully
8008:
8009: 2010-05-20 misha
8010:
8011: * src/main/pa_request.C: - fix in get_method_filename
8012:
8013: * src/include/pa_request.h: - new feature: #24 -- searching
8014: included file in @USE/^use is changed. if its filespec doesn't
8015: start from '/' it will be searched in caller file directory
8016:
8017: * src/classes/reflection.C: - ^reflection:method_info returns file
8018: where the method is defined
8019:
8020: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
8021: classes/op.C: - new feature: #24 -- searching included file in
8022: @USE/^use is changed. if its filespec doesn't start from '/' it
8023: will be searched in caller file directory
8024:
8025: * src/: classes/file.C, include/pa_common.h: - method lastposafter
8026: is moved to pa_common.h
8027:
8028: 2010-05-18 misha
8029:
8030: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
8031: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
8032: cookie parser decode \uXXXX as well as %uXXXX
8033:
8034: 2010-05-17 misha
8035:
8036: * src/classes/curl.C: beauty: - unused param is removed in method
8037: _curl_version_action - some spaces were removed or replaced by
8038: tabs
8039:
8040: * src/classes/table.C: - bugfix: #72 core with empty value during
8041: ^table.hash[...;name_of_the_last_column][$.type[string]]
8042:
8043: 2010-05-16 misha
8044:
8045: * src/classes/curl.C: new: #61 more curl options were added
8046: (contributed by Sumo)
8047:
8048: 2010-04-29 pretender
8049:
8050: * src/main/pa_string.C: fixes #63 Split result from empty string
8051: now empty string.
8052:
8053: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
8054: string type.
8055:
8056: 2010-04-28 pretender
8057:
8058: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
8059: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
8060: macrodefinition removed
8061:
8062: 2010-04-19 pretender
8063:
8064: * src/main/execute.C: fixes #60 Stacktrace now contains info for
8065: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
8066:
8067: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
8068: fixes #64 Now file.missing exception generates in unsafe mode to.
8069:
8070: * src/classes/file.C: fixes #48 Now not throw "not save environment
8071: variable" exception in grpunlim version.
8072:
8073: 2010-04-05 misha
8074:
8075: * src/classes/string.C: - new feature: 4th param was added to
8076: match. if specified its value is returned in case of nothing was
8077: found
8078:
8079: 2010-04-01 misha
8080:
8081: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
8082: multiple execution of /a/b/auto.p
8083:
8084: 2010-03-19 misha
8085:
8086: * src/main/execute.C: - core in $table1.$table2 was fixed
8087:
8088: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
8089:
8090: 2010-01-27 misha
8091:
8092: * src/main/pa_common.C: - bugfix: there are no excaption.type if
8093: trying to open file by path /existing-file/non-exixting-file
8094:
8095: 2010-01-26 misha
8096:
8097: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
8098: was added (returns file)
8099:
8100: 2009-12-22 misha
8101:
8102: * src/classes/curl.C: - method 'option' was renamed to 'options' -
8103: now parser doesn't have class curl if it was built without it
8104:
8105: 2009-12-15 misha
8106:
8107: * configure.in: - little cheat with curl include dir was added
8108:
8109: 2009-12-05 misha
8110:
8111: * src/classes/curl.C: - some fixes
8112:
8113: 2009-12-04 misha
8114:
8115: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
8116: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
8117: buildall-with-xml, buildall-without-xml, configure.in: - curl
8118: class was added
8119:
8120: * src/include/pa_hash.h: - hash-iterator was added
8121:
8122: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
8123: was added to pcre
8124:
8125: 2009-11-27 misha
8126:
8127: * src/classes/image.C: - don't add @border attribute to output of
8128: ^image.html[] if it was specified by user with empty value
8129:
8130: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
8131: root element and we are trying to access .documentElement
8132:
8133: 2009-11-11 misha
8134:
8135: * src/classes/table.C: - in ^table.flip[] look at number of columns
8136: instead of number of items in first row for named tables
8137:
8138: 2009-11-10 misha
8139:
8140: * operators.txt: - info about hash-options in ^file::create was
8141: added
8142:
8143: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
8144: added
8145:
8146: 2009-11-09 misha
8147:
8148: * buildall-with-xml: - moving to libxml 2.7.6
8149:
8150: * tests/236.html: - tests for comparations cords with functions
8151: were added
8152:
8153: * src/include/pa_string.h: - optimisation: cacheing of cstr was
8154: added
8155:
8156: * src/main/pa_http.C: - little optimisation
8157:
8158: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
8159: GPF mallocs + stringstream (table.save)
8160:
8161: * src/classes/file.C: - file::create now accepts 4th param: options
8162: with $.charset
8163:
8164: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
8165: bug in cord (comparation cords with functions was buggy)
8166:
8167: 2009-11-06 misha
8168:
8169: * src/main/pa_string.C: - bugfix: calculation string.length
8170: sometimes was buggy
8171:
8172: * src/classes/string.C: - bugfix: Temp_value_element wasn't
8173: destroyed if exception occured during match/replace
8174:
8175: * src/: main/pa_charset.C, include/pa_charset.h: - method
8176: lengthUTF8Char was added
8177:
8178: * src/classes/op.C: - clean tainting lang was added for user's
8179: usage
8180:
8181: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
8182: fixed: checkouts are required after GC_MALLOC
8183:
8184: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
8185:
8186: * operators.txt: - actually, there is no ^untaint[xml] in
8187: file::create
8188:
8189: 2009-10-15 misha
8190:
8191: * tests/: 235.html, 235_attach.txt: - tests for preparing email
8192: were added
8193:
8194: * tests/234.html: - more tests for checking ^taint[uri] escaping
8195: were added
8196:
8197: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
8198: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
8199: hacking: for dealing with transcoding+^taint[uri]
8200: transcode_and_untaint was replaced by untaint_and_transcode
8201:
8202: 2009-10-13 misha
8203:
8204: * tests/: 121.html, results/121.processed: - test transcoding +
8205: url-escaping now
8206:
8207: * tests/results/auto.p: - more helpers' methods were added
8208:
8209: * src/main/pa_globals.C: - die instead of abort
8210:
8211: 2009-10-06 misha
8212:
8213: * src/main/pa_common.C: - don't allocate memory during
8214: capitalization if input string is already capitalized
8215:
8216: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
8217:
8218: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
8219: use format function because it calls malloc
8220:
8221: * src/include/pa_common.h: - more capitalized headers were added
8222:
8223: * src/main/pa_common.C: - in safe mode clear executable bits during
8224: file writing
8225:
8226: 2009-10-05 misha
8227:
8228: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
8229:
8230: 2009-10-03 misha
8231:
8232: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
8233: ^img.text[] & ^img.length[] can work in utf-8 now
8234:
8235: * src/: include/pa_charset.h, main/pa_charset.C: - class
8236: UTF8_string_iterator was added
8237:
8238: * src/classes/image.C: - respect utf-8 when calculate alphabet
8239: length
8240:
8241: * src/classes/mail.C: - check from before get message.cstr
8242:
8243: 2009-10-02 misha
8244:
8245: * tests/233.html: - test for image.font, image.length, image.text
8246: with text in utf-8 were added
8247:
8248: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
8249:
8250: * buildall-with-xml, buildall-without-xml: - comment about gc
8251: version for freebsd 4 was added
8252:
8253: 2009-10-01 misha
8254:
8255: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
8256: terminator) - read_pipe were slightly optimized
8257:
8258: 2009-09-28 misha
8259:
8260: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
8261: removed
8262:
8263: * src/types/pa_vmail.C: - forgot about space after ':'
8264:
8265: * src/types/pa_vmail.C: - escape filenames while preparing mail
8266: body - small simplifications
8267:
8268: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
8269: inout params like pa_base64
8270:
8271: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
8272: option $.debug-print(1) was added to mail:send - changes for
8273: using uue_encode which uses less memory
8274:
8275: * src/main/pa_common.C: - pa_base64_encode uses less memory now
8276:
8277: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
8278: memory now
8279:
8280: 2009-09-26 misha
8281:
8282: * src/types/pa_vmail.C: - default encoding now is base64
8283:
8284: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
8285:
8286: 2009-09-25 misha
8287:
8288: * src/types/pa_vmail.C: - capitalization of headers was added to
8289: sending mail as well
8290:
8291: * buildall-with-xml: - catalog package was removed from libxml
8292:
8293: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
8294: win32 absolute path
8295:
8296: * src/include/pa_common.h: - one more capitalized header was added
8297:
8298: 2009-09-22 misha
8299:
8300: * INSTALL: - comment about building just httpd binary while
8301: building apache module was added
8302:
8303: 2009-09-21 misha
8304:
8305: * buildall-with-xml: - moving to the latest versions of xml libs:
8306: libxml 2.7.4 and libxslt 1.1.25
8307:
8308: 2009-09-19 misha
8309:
8310: * tests/231.html: - test for encoding cookie in win-1251
8311:
8312: 2009-09-18 misha
8313:
8314: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
8315: object] were added
8316:
8317: * operators.txt: - info about method ^reflection:fields[class or
8318: object] was added
8319:
8320: * src/classes/reflection.C: - method ^reflection:fields[class or
8321: object] was added
8322:
8323: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
8324: methods get_fields were added
8325:
8326: * tests/232.html: - tests for @GET[name]
8327:
8328: * src/classes/table.C: - some changes in handling hash-options for
8329: creare, join and locate
8330:
8331: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
8332: defined with option: the type of requested value
8333:
8334: 2009-09-17 misha
8335:
8336: * tests/212.html: - tests for .pattern and .options were added
8337:
8338: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
8339: $regex.options were added
8340:
8341: 2009-09-11 misha
8342:
8343: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
8344: rewrited. it checks not just one case of sending cookies during
8345: file::load[http], but also sending headers and fields (including
8346: files)
8347:
8348: 2009-09-10 misha
8349:
8350: * src/main/untaint.C: - workaround in file-spec lang for old Macs
8351: was removed => now parser can open files with Russian 'r' in
8352: filename
8353:
8354: * src/main/untaint.C: - bugfix: client charset whould be analized
8355: while escaping cookies but now source charset
8356:
8357: * src/main/pa_http.C: - bugfix: the values of http headers didn't
8358: ^tainted[uri] so it was possible to make request with incorrect
8359: http header
8360:
8361: * src/main/pa_http.C: - capitalization of http headers during
8362: file::load[http was slightly changes - bugfix: all headers which
8363: parser sends during file::load[http should be transcoded and only
8364: then escaped
8365:
8366: * src/main/untaint.C: - a bit more comments were added
8367:
8368: * src/classes/: file.C, string.C: - types where changes (minus 2
8369: warnings)
8370:
8371: * src/include/pa_common.h: - 2 capitalized strings for making http
8372: headers during file::load[http were added
8373:
8374: 2009-09-08 misha
8375:
8376: * operators.txt: - changes in file.save and string.save were added
8377:
8378: * tests/: 230.html, 230.txt: - tests for checking options in
8379: file.save and string.save were added
8380:
8381: * src/main/pa_request.C: - http headers names, which are passed to
8382: SAPI::add_header_attribute are lowercased now (it'll be
8383: capitalized in that method)
8384:
8385: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
8386: classes/string.C: - file_write accepts Request_charsets and asked
8387: charset and cound transcode content before writing - string.save
8388: and file.save have option $.charset now
8389:
8390: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
8391: classes/xdoc.C: - file_write accepts Request_charsets and asked
8392: charset and cound transcode content before writing
8393:
8394: * src/include/pa_exception.h: - new exception comment string was
8395: defined
8396:
8397: 2009-09-07 misha
8398:
8399: * src/main/compile.y: - grammar $name\ name stops now for regex
8400: sub-pattern\s
8401:
8402: 2009-09-04 misha
8403:
8404: * src/main/pa_http.C: - capitalization of http headers during
8405: file::load[http was implemented
8406:
8407: 2009-09-03 misha
8408:
8409: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
8410: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
8411: types/pa_vmail.C, targets/cgi/parser3.C,
8412: targets/isapi/parser3isapi.C: - back to storing response http
8413: headers in lowercase - capitalize them during output
8414:
8415: 2009-08-31 misha
8416:
8417: * src/classes/table.C: - allow call with any brackets (it could be
8418: useful in methods with explict result declaration)
8419:
8420: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
8421: correctly if $request:charset==koi8-r
8422:
8423: 2009-08-30 misha
8424:
8425: * src/: include/pa_common.h, main/pa_request.C: - http headers were
8426: changed: content-type => Content-type and so on
8427:
8428: * src/classes/file.C, src/include/pa_common.h,
8429: src/include/pa_request.h, src/main/pa_http.C,
8430: src/main/pa_request.C, src/types/pa_vcookie.C,
8431: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
8432: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
8433: tests/results/002.processed, tests/results/003.processed,
8434: tests/results/004.processed, tests/results/005.processed,
8435: tests/results/006.processed, tests/results/007.processed,
8436: tests/results/008.processed, tests/results/009.processed,
8437: tests/results/010.processed, tests/results/011.processed,
8438: tests/results/012.processed, tests/results/013.processed,
8439: tests/results/014.processed, tests/results/015.processed,
8440: tests/results/016.processed, tests/results/017.processed,
8441: tests/results/018.processed, tests/results/019.processed,
8442: tests/results/020.processed, tests/results/021.processed,
8443: tests/results/022.processed, tests/results/023.processed,
8444: tests/results/024.processed, tests/results/025.processed,
8445: tests/results/026.processed, tests/results/027.processed,
8446: tests/results/028.processed, tests/results/029.processed,
8447: tests/results/030.processed, tests/results/031.processed,
8448: tests/results/032.processed, tests/results/033.processed,
8449: tests/results/034.processed, tests/results/035.processed,
8450: tests/results/036.processed, tests/results/037.processed,
8451: tests/results/038.processed, tests/results/039.processed,
8452: tests/results/040.processed, tests/results/041.processed,
8453: tests/results/042.processed, tests/results/043.processed,
8454: tests/results/044.processed, tests/results/045.processed,
8455: tests/results/046.processed, tests/results/047.processed,
8456: tests/results/048.processed, tests/results/049.processed,
8457: tests/results/050.processed, tests/results/051.processed,
8458: tests/results/052.processed, tests/results/053.processed,
8459: tests/results/054.processed, tests/results/055.processed,
8460: tests/results/056.processed, tests/results/057.processed,
8461: tests/results/058.processed, tests/results/059.processed,
8462: tests/results/060.processed, tests/results/061.processed,
8463: tests/results/062.processed, tests/results/063.processed,
8464: tests/results/064.processed, tests/results/065.processed,
8465: tests/results/066.processed, tests/results/067.processed,
8466: tests/results/068.processed, tests/results/069.processed,
8467: tests/results/070.processed, tests/results/071.processed,
8468: tests/results/072.processed, tests/results/073.processed,
8469: tests/results/074.processed, tests/results/075.processed,
8470: tests/results/076.processed, tests/results/077.processed,
8471: tests/results/078.processed, tests/results/079.processed,
8472: tests/results/080.processed, tests/results/081.processed,
8473: tests/results/082.processed, tests/results/083.processed,
8474: tests/results/084.processed, tests/results/085.processed,
8475: tests/results/086.processed, tests/results/087.processed,
8476: tests/results/088.processed, tests/results/089.processed,
8477: tests/results/090.processed, tests/results/091.processed,
8478: tests/results/092.processed, tests/results/093.processed,
8479: tests/results/094.processed, tests/results/095.processed,
8480: tests/results/096.processed, tests/results/097.processed,
8481: tests/results/098.processed, tests/results/099.processed,
8482: tests/results/100.processed, tests/results/101.processed,
8483: tests/results/102.processed, tests/results/103.processed,
8484: tests/results/104.processed, tests/results/105.processed,
8485: tests/results/106.processed, tests/results/107.processed,
8486: tests/results/108.processed, tests/results/109.processed,
8487: tests/results/110.processed, tests/results/111.processed,
8488: tests/results/112.processed, tests/results/113.processed,
8489: tests/results/114.processed, tests/results/115.processed,
8490: tests/results/116.processed, tests/results/117.processed,
8491: tests/results/118.processed, tests/results/119.processed,
8492: tests/results/120.processed, tests/results/121.processed,
8493: tests/results/122.processed, tests/results/123.processed,
8494: tests/results/124.processed, tests/results/125.processed,
8495: tests/results/126.processed, tests/results/127.processed,
8496: tests/results/128.processed, tests/results/129.processed,
8497: tests/results/130.processed, tests/results/131.processed,
8498: tests/results/132.processed, tests/results/133.processed,
8499: tests/results/134.processed, tests/results/135.processed,
8500: tests/results/136.processed, tests/results/138.processed,
8501: tests/results/139.processed, tests/results/140.processed,
8502: tests/results/141.processed, tests/results/142.processed,
8503: tests/results/143.processed, tests/results/144.processed,
8504: tests/results/145.processed, tests/results/146.processed,
8505: tests/results/147.processed, tests/results/148.processed,
8506: tests/results/149.processed, tests/results/150.processed,
8507: tests/results/151.processed, tests/results/152.processed,
8508: tests/results/153.processed, tests/results/154.processed,
8509: tests/results/155.processed, tests/results/156.processed,
8510: tests/results/157.processed, tests/results/158.processed,
8511: tests/results/159.processed, tests/results/160.processed,
8512: tests/results/161.processed, tests/results/162.processed,
8513: tests/results/163.processed, tests/results/164.processed,
8514: tests/results/165.processed, tests/results/166.processed,
8515: tests/results/167.processed, tests/results/168.processed,
8516: tests/results/169.processed, tests/results/170.processed,
8517: tests/results/171.processed, tests/results/172.processed,
8518: tests/results/173.processed, tests/results/174.processed,
8519: tests/results/175.processed, tests/results/176.processed,
8520: tests/results/177.processed, tests/results/178.processed,
8521: tests/results/179.processed, tests/results/180.processed,
8522: tests/results/181.processed, tests/results/182.processed,
8523: tests/results/183.processed, tests/results/184.processed,
8524: tests/results/185.processed, tests/results/186.processed,
8525: tests/results/187.processed, tests/results/188.processed,
8526: tests/results/189.processed, tests/results/190.processed,
8527: tests/results/191.processed, tests/results/192.processed,
8528: tests/results/193.processed, tests/results/194.processed,
8529: tests/results/195.processed, tests/results/196.processed,
8530: tests/results/197.processed, tests/results/198.processed,
8531: tests/results/199.processed, tests/results/200.processed,
8532: tests/results/201.processed, tests/results/202.processed,
8533: tests/results/203.processed, tests/results/204.processed,
8534: tests/results/205.processed, tests/results/206.processed,
8535: tests/results/207.processed, tests/results/208.processed,
8536: tests/results/209.processed, tests/results/210.processed,
8537: tests/results/211.processed, tests/results/212.processed,
8538: tests/results/213.processed, tests/results/214.processed,
8539: tests/results/215.processed, tests/results/216.processed,
8540: tests/results/217.processed, tests/results/218.processed,
8541: tests/results/219.processed, tests/results/220.processed,
8542: tests/results/221.processed, tests/results/222.processed,
8543: tests/results/223.processed, tests/results/224.processed,
8544: tests/results/225.processed, tests/results/226.processed,
8545: tests/results/227.processed, tests/results/228.processed,
8546: tests/results/229.processed: - http headers were changed:
8547: content-type => Content-type and so on
8548:
8549: 2009-08-27 misha
8550:
8551: * src/: main/pa_random.C, include/pa_random.h,
8552: targets/cgi/parser3.C: - year was updated :)
8553:
8554: 2009-08-26 misha
8555:
8556: * tests/: 224.html, 224.p: - test for creating of parser object
8557: using constructor without params - little bugfix in test
8558:
8559: * src/main/compile_tools.h: - bugfix: should't call autouse while
8560: checking existed class while processing partial option
8561:
8562: * src/classes/reflection.C: - bugfix: core when creating object
8563: with reflection and constructor doesn't have params
8564:
8565: 2009-08-24 misha
8566:
8567: * tests/229.html: - tests for checking the number of parameters
8568: were added
8569:
8570: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
8571: number of method's parameters wasn't checked correctly (the bug
8572: was introduced in 3.4.0)
8573:
8574: 2009-08-22 misha
8575:
8576: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
8577: transcoded, but tainted pieces are escaped only when
8578: content-type==url-encoding
8579:
8580: * tests/228.html: - test for checking
8581: ^file::load[http://...;$.body[]]
8582:
8583: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
8584: post charset was too early (charsets is empty at this moment)
8585:
8586: 2009-08-21 misha
8587:
8588: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
8589: main/untaint.C: - some fixes with transcode+untaint
8590:
8591: 2009-08-15 misha
8592:
8593: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
8594: was increaced to 100 (was 50)
8595:
8596: * tests/227.html: - test for checking overriding properties in
8597: static classes was added
8598:
8599: * tests/: 226.html, 226.p: - test for @autoload[] was added
8600:
8601: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
8602: main/execute.C, main/pa_request.C, classes/reflection.C: -
8603: autouse was implemented
8604:
8605: 2009-08-14 misha
8606:
8607: * src/classes/reflection.C: - outdated checkout was removed
8608:
8609: * src/classes/reflection.C: - optimization - method ^dynamical was
8610: added.
8611:
8612: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
8613: types/pa_vstateless_class.h, main/execute.C: - optimization
8614:
8615: * src/types/pa_vclass.C: - exception if base on sytem class
8616:
8617: 2009-08-12 misha
8618:
8619: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
8620: pa_vstateless_class.h: - little optimisation
8621:
8622: 2009-08-11 misha
8623:
8624: * tests/224.html: - method_params => method_info - checking for
8625: $.inherited
8626:
8627: * src/classes/reflection.C, operators.txt: - method method_params
8628: was renamed to method_info and now it returns class name, if
8629: method was defined in ancestor
8630:
8631: * tests/225.html: - tests for cheching properties in hierarhical
8632: classes were added
8633:
8634: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
8635: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8636: main/compile.y, main/execute.C, classes/classes.C: - problems
8637: with properties in new classes implementation were fixed
8638:
8639: 2009-08-10 misha
8640:
8641: * src/main/execute.C: - now constructor shouldn't be defined in
8642: class. it could be defined in parent.
8643:
8644: 2009-08-09 misha
8645:
8646: * src/classes/reflection.C: - ^reflection:methods doesn't return
8647: base's methods
8648:
8649: 2009-08-08 misha
8650:
8651: * src/: classes/classes.h, classes/date.C, classes/file.C,
8652: classes/form.C, classes/hash.C, classes/hashfile.C,
8653: classes/image.C, classes/mail.C, classes/op.C,
8654: classes/reflection.C, classes/regex.C, classes/string.C,
8655: classes/table.C, classes/xdoc.C, classes/xnode.C,
8656: classes/xnode.h, include/pa_hash.h, main/execute.C,
8657: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
8658: types/pa_method.h, types/pa_property.h, types/pa_value.C,
8659: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
8660: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
8661: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
8662: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
8663: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
8664: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
8665: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
8666: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
8667: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
8668: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
8669: types/pa_vresponse.C, types/pa_vresponse.h,
8670: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
8671: types/pa_vstateless_object.h, types/pa_vstatus.C,
8672: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
8673: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
8674: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
8675: types/pa_wwrapper.h, types/types.vcproj: - new classes
8676: implementation
8677:
8678: * buildall-with-xml, buildall-without-xml: - gc has a bug if
8679: USE_MUNMAP is used. so it is disabled as a workaround.
8680:
8681: 2009-08-05 misha
8682:
8683: * src/: main/pa_common.C, include/pa_common.h: - not needed
8684: parameter was removed
8685:
8686: * src/main/pa_http.C: - bugfix: error was during detecting
8687: content-type of file which was loaded by http
8688:
8689: 2009-08-01 misha
8690:
8691: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
8692: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
8693: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
8694: can't be disabled with defines any longer
8695:
8696: 2009-07-29 misha
8697:
8698: * src/classes/reflection.C, tests/results/224.processed: - for
8699: native methods with any call type now returned empty call_type
8700: value
8701:
8702: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
8703: classes/table.C, include/pa_hash.h, include/pa_request.h,
8704: main/pa_request.C: - break in cycles was optimized
8705:
8706: * INSTALL: - more defines were described
8707:
8708: 2009-07-28 misha
8709:
8710: * operators.txt: - some changes in information about reflection
8711: class
8712:
8713: * tests/: 224.html, 224.p: - tests for reflection class
8714:
8715: * src/classes/reflection.C: - some bugs were fixed, method classes
8716: was added, refactoring
8717:
8718: 2009-07-26 misha
8719:
8720: * src/classes/classes.vcproj: - reflection class wass added to
8721: project
8722:
8723: * operators.txt: - information about reflection class was added
8724:
8725: * src/classes/reflection.C: - class was redesigned
8726:
8727: 2009-07-24 misha
8728:
8729: * src/classes/: Makefile.am, reflection.C: - class reflection was
8730: added
8731:
8732: * src/types/pa_vstateless_class.h: - method for reflection method's
8733: in classes was added
8734:
8735: 2009-07-22 misha
8736:
8737: * src/main/compile_tools.h: - bugfix: $object.$var was
8738: over-optimized. it failed if $object1.$object2.field
8739:
8740: 2009-07-16 misha
8741:
8742: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
8743: lib/cord/cordxtra.c, lib/cord/include/cord.h,
8744: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
8745: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
8746: one more arg: length of cord
8747:
8748: 2009-07-15 misha
8749:
8750: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
8751: tainted in ^file::load[http://...;$.cookies[]]
8752:
8753: * src/classes/: op.C, regex.C, string.C: - new string with
8754: exception was used
8755:
8756: * src/include/pa_exception.h: - new string with exception was added
8757:
8758: * tests/223.html: - test for checking cookie-encoding during
8759: ^file::load[http was added
8760:
8761: * tests/: 221.html, 222.html: - tests for checking type of
8762: $table.fields.field were added
8763:
8764: * src/types/pa_vtable.C: - not used var decl was removed
8765:
8766: * src/include/pa_string.h: - use cached string length in Body::mid.
8767: it improves speed of match with brackets in pattern
8768:
8769: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
8770: outside
8771:
8772: 2009-07-14 misha
8773:
8774: * src/types/pa_vtable.C: - $table.fields.a return string even if
8775: column is empty (sometime returned void) - $table.fields was
8776: added for nameless tables
8777:
8778: * src/targets/cgi/getopt.c: - one warning resolved
8779:
8780: * src/main/pa_string.C: - potentian bug fixed
8781:
8782: * src/classes/op.C: - small optimization in taint/untaint
8783:
8784: 2009-07-13 misha
8785:
8786: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
8787: added
8788:
8789: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
8790: souldn't add the attribut to output
8791:
8792: 2009-07-11 misha
8793:
8794: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8795: stack size was increaced to 2MB (default=1MB)
8796:
8797: 2009-07-08 misha
8798:
8799: * src/main/pa_string.C: - link to UTF-8 description was added
8800:
8801: * src/include/pa_hash.h: - hash keeps element's order in more
8802: places (ex: ._keys[])
8803:
8804: * tests/220.html: - test for checking order of elements in hash in
8805: foreach was added
8806:
8807: * tests/172.html: - small changes in printing hash
8808:
8809: * tests/129.html: - small changes in printing hash
8810:
8811: * src/: include/pa_common.h, include/pa_hash.h,
8812: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
8813: types/pa_vmethod_frame.h: - hash now keeps order of elements
8814:
8815: * tests/014.html: - small changes in printing hash
8816:
8817: 2009-07-07 misha
8818:
8819: * src/classes/op.C: - new taint language "parser-code" was added
8820:
8821: * tests/219.html: - test for auto untaint parser code in process
8822: was added
8823:
8824: * src/classes/op.C: - tainted pieces in body of process are
8825: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
8826:
8827: * src/: include/pa_string.h, main/untaint.C: - new language
8828: L_PARSER_CODE for auto-untaint in process was added
8829:
8830: * src/: classes/file.C, classes/hash.C, classes/image.C,
8831: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
8832: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
8833: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
8834: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
8835: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
8836: code cleanup
8837:
8838: 2009-07-06 misha
8839:
8840: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
8841: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
8842: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8843:
8844: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
8845: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
8846: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
8847: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
8848: should be used
8849:
8850: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
8851: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
8852: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
8853: untaint_cstr[m] should be used
8854:
8855: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
8856: deleted. taint_cstr[m] and untaint_cstr[m] should be used
8857:
8858: * tests/218.html: - test for checking automatic file-spec-taint was
8859: added
8860:
8861: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
8862: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
8863: classes/file.C, classes/hash.C, classes/image.C,
8864: classes/string.C, classes/table.C, classes/void.C,
8865: classes/xdoc.C: - optimizations and simplification of
8866: string.cstr(...)
8867:
8868: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
8869: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
8870: - optimizations and simplification of string.cstr(...)
8871:
8872: 2009-07-04 misha
8873:
8874: * tests/217.html: - test for recursion detection was added
8875:
8876: * src/: types/types.vcproj, main/main.vcproj,
8877: classes/classes.vcproj, targets/cgi/parser3.vcproj,
8878: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
8879: from .vcproj
8880:
8881: * src/types/pa_wwrapper.h: - dynamic_cast was removed
8882:
8883: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
8884: uploading files and case-insensitive http-method were added
8885:
8886: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
8887: tainted pattern in ^file:list[] was added
8888:
8889: 2009-07-03 misha
8890:
8891: * src/: classes/classes.vcproj, main/main.vcproj,
8892: types/types.vcproj, targets/cgi/parser3.vcproj,
8893: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
8894: for dynamic_cast) - little options changes
8895:
8896: * src/main/pa_http.C: - file::load[http works now with uploading
8897: files _and_ changing $.charset
8898:
8899: 2009-06-29 misha
8900:
8901: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8902: while creating pattern
8903:
8904: 2009-06-25 misha
8905:
8906: * src/classes/image.C, operators.txt: - options' names for
8907: ^image.font were changed to $.space, $.width and $spacing -
8908: default space width now == gif's width
8909:
8910: 2009-06-24 misha
8911:
8912: * tests/215.html: - tests for $file.mode were added
8913:
8914: * operators.txt: - added info about $file.mode and changes in
8915: ^image.font[
8916:
8917: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8918: param now could be omited - third param now could be hash (with
8919: all widths options: $.space-width, $.letter-width) - it's
8920: possible to specify tracking ($.letter-space)
8921:
8922: * src/classes/file.C: - file objects now could have mode field
8923: (text|binary)
8924:
8925: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8926:
8927: 2009-06-23 misha
8928:
8929: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8930: trim can work with utf-8 chars now
8931:
8932: 2009-06-20 misha
8933:
8934: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8935: was implemented
8936:
8937: * src/classes/table.C: - string length cacheing was implemented
8938:
8939: * src/include/pa_string.h: - string length cacheing was implemented
8940:
8941: 2009-06-17 misha
8942:
8943: * src/main/execute.C: - value param was removed from
8944: WContext::WContext
8945:
8946: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8947: pa_wwrapper.h: - value param was removed from WContext::WContext
8948: - field wcontext was removed from VCodeFrame (using fparent
8949: instead)
8950:
8951: * tests/214.html: - test with hash copying
8952:
8953: 2009-06-16 misha
8954:
8955: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8956: strings doesn't work in expression anymore
8957:
8958: * src/main/execute.C: - less calls for get_constructing() - little
8959: refactoring
8960:
8961: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8962: include/pa_request.h: - less calls for get_constructing()
8963:
8964: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8965: introduced with OPTIMIZE_SINGLE_STRING optimization
8966:
8967: 2009-06-14 misha
8968:
8969: * src/: classes/date.C, classes/file.C, classes/hash.C,
8970: classes/hashfile.C, classes/image.C, classes/regex.C,
8971: classes/table.C, classes/xdoc.C, classes/xnode.h,
8972: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8973: types/pa_vstateless_class.h, main/execute.C: - create object for
8974: storing object's fields only for parser objects
8975:
8976: 2009-06-13 misha
8977:
8978: * buildall-with-xml, buildall-without-xml: - new option was added
8979: for building GC (it slightly reduces memory usage)
8980:
8981: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8982: single string write
8983:
8984: * src/main/execute.C: - bytecode optimization of ^class:constructor
8985: - optimization of single string write
8986:
8987: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8988: - bytecode optimization of ^class:constructor
8989:
8990: 2009-06-09 misha
8991:
8992: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8993: main (better compatibility)
8994:
8995: 2009-06-08 misha
8996:
8997: * src/main/compile.y: - I've forgot to commit it :(
8998:
8999: 2009-06-07 misha
9000:
9001: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
9002: WITH_READ and WITH_ROOT
9003:
9004: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9005: execute.C: - more optimizations for WITH_SELF, WITH_READ and
9006: WITH_ROOT - little refactoring
9007:
9008: 2009-06-06 misha
9009:
9010: * tests/213.html: - tests for 3rd match string-param were added
9011:
9012: * src/classes/string.C: - 3rd match param could be string now
9013:
9014: * src/main/: compile.y, compile_tools.h: - much more bytecode's
9015: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
9016: GET_OBJECT_ELEMENT
9017:
9018: 2009-06-05 misha
9019:
9020: * src/main/pa_http.C: - bugfix: content-length was not calculated
9021: if $.body was specified
9022:
9023: 2009-06-04 misha
9024:
9025: * src/classes/op.C: - optimizing write_assign_lang in connect
9026:
9027: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
9028:
9029: * src/main/execute.C: - little refactoring - optimizing
9030: write_assign_lang in taint/untaint
9031:
9032: * src/include/pa_opcode.h: - little refactoring
9033:
9034: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
9035: main/compile_tools.h, main/execute.C: - optimizations for
9036: $self.field, ^self.method, $self.field[...] and $self.field(...)
9037: were added
9038:
9039: 2009-06-03 misha
9040:
9041: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
9042:
9043: 2009-06-02 misha
9044:
9045: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
9046: include/pa_opcode.h: - refactoring in last optimizations
9047: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
9048: now but code is much easy and it is ready for further
9049: improvements.
9050:
9051: 2009-05-27 misha
9052:
9053: * src/: types/pa_junction.h, types/pa_vjunction.C,
9054: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
9055: changed in destructing junctions
9056:
9057: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
9058: String:Body
9059:
9060: 2009-05-26 misha
9061:
9062: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
9063: one method detect_charset was deleted - bug was fixed in this
9064: method (error while detecting charset in content_type withot last
9065: ';')
9066:
9067: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
9068: once
9069:
9070: 2009-05-25 misha
9071:
9072: * src/classes/file.C: - bugfix: file::exec didn't work after
9073: optimizing of helper_length
9074:
9075: 2009-05-24 misha
9076:
9077: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
9078: were added - little refactoring
9079:
9080: * src/main/execute.C: - core while printing in debug log
9081: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
9082: optimisations were added
9083:
9084: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
9085: were added
9086:
9087: 2009-05-23 misha
9088:
9089: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
9090: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
9091: CORD_cat optimization
9092:
9093: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
9094: - call constr optimisation under separate define now
9095:
9096: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
9097: in $b should be string, not void
9098:
9099: * src/main/compile.y: - little fix for rem-cut optimisation
9100:
9101: * src/: include/pa_opcode.h, main/compile_tools.C,
9102: main/compile_tools.h, main/execute.C: - optimisations for
9103: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
9104:
9105: * INSTALL: - description of some #defined were added
9106:
9107: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
9108: before 1st access (memory usage is reduced if don't access to
9109: .text field)
9110:
9111: * src/include/pa_array.h: - array grows step now not static (it
9112: reduces numbers of reallocs)
9113:
9114: 2009-05-20 misha
9115:
9116: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
9117: $.b(2), $c[d] and $.e[f] was added
9118:
9119: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9120: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
9121: $.e[f] was added
9122:
9123: * src/main/execute.C: - debug printing moved in defines
9124:
9125: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
9126: and little refactoring for OP_GET_OBJECT_ELEMENT +
9127: OP_GET_OBJECT_VAR_ELEMENT optimisation
9128:
9129: 2009-05-19 misha
9130:
9131: * src/main/: compile.y, compile_tools.C, compile_tools.h,
9132: execute.C: - $a.$b & ^a.$b bytecode optimisation
9133:
9134: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
9135: ^a.$b optimisation)
9136:
9137: * src/main/compile.y: - compiler now generate new opcodes:
9138: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
9139: ^a.b - compiler now cut off ^rem{ with all content ; any number
9140: of params }
9141:
9142: * src/main/execute.C: - code for handle new opcodes
9143: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
9144:
9145: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
9146: added for LA2V and LA2S
9147:
9148: * src/include/pa_opcode.h: - new defines which can be used for
9149: disable some bytecode optimisation and new opcodes were added
9150:
9151: 2009-05-17 misha
9152:
9153: * src/lib/cord/cordxtra.c: - bugfix.
9154:
9155: * tests/212.html: - .size[] and .study_size[] were added to tests
9156:
9157: * operators.txt: - info about regex class was added
9158:
9159: * tests/212.html: - tests for regex class were added
9160:
9161: 2009-05-16 misha
9162:
9163: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
9164: gc7.1
9165:
9166: * tests/022.html: - test for ^file:list[path;] (empty second param)
9167: was added
9168:
9169: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
9170: param) should work
9171:
9172: 2009-05-15 misha
9173:
9174: * src/classes/table.C: - automatically disable stringstream usage
9175: on freebsd4
9176:
9177: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
9178: scope
9179:
9180: * tests/211.html: - test with different types of access to hash was
9181: added
9182:
9183: * tests/210.html: - test which checks for loosing tainting in
9184: hash's keys was added
9185:
9186: * tests/208.html: - some parser work added. or stime == 0 %-)
9187:
9188: * src/lib/cord/cordbscs.c: - little hack was added to cord
9189:
9190: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
9191:
9192: * src/include/pa_version.h, configure.in: - moko have made a lot of
9193: optimisations for increacing version number more dramatically :)
9194:
9195: * src/classes/date.C: - little refactoring: use constructor which
9196: accepts formated string
9197:
9198: * src/: include/pa_string.h, main/pa_string.C: - String constructor
9199: which can print formatted string was added
9200:
9201: 2009-05-14 misha
9202:
9203: * src/include/pa_string.h: - type was fixed
9204:
9205: * src/: classes/hashfile.C, classes/op.C,
9206: include/pa_cache_managers.h, include/pa_charset.h,
9207: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
9208: include/pa_request.h, include/pa_sql_driver_manager.h,
9209: include/pa_string.h, include/pa_stylesheet_manager.h,
9210: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
9211: main/pa_charsets.C, main/pa_string.C,
9212: main/pa_stylesheet_connection.C, types/pa_value.h,
9213: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9214: types/pa_vobject.C, types/pa_vstateless_class.C,
9215: types/pa_vstateless_class.h: - hash_code caching was implemented
9216: (seaches should be faster now)
9217:
9218: * src/: classes/file.C, classes/hash.C, classes/image.C,
9219: classes/string.C, classes/table.C, include/pa_string.h,
9220: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
9221: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
9222: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
9223: types/pa_vrequest.C: - String constructors don't have that stupid
9224: true/false param which means 'tainted'. they accept lang instead.
9225:
9226: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
9227: with OPTIMIZE_RESULT
9228:
9229: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
9230: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
9231:
9232: 2009-05-13 misha
9233:
9234: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
9235: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
9236: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9237: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
9238: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
9239: main/pa_common.C, main/pa_request.C, main/pa_string.C,
9240: include/pa_string.h, classes/date.C, classes/file.C,
9241: classes/hash.C, classes/image.C, classes/string.C,
9242: classes/table.C, classes/xdoc.C: - result optimisation -
9243: helper_length parameter removed from string constructors
9244:
9245: 2009-05-11 misha
9246:
9247: * tests/209.html: - tests for ^hash::create[hash] were added
9248:
9249: * tests/208.html: - tests for $status:rusage, $status:memory,
9250: ^memory:compact[] were added
9251:
9252: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
9253: log10 were added
9254:
9255: * tests/206.html: - test for try with finally was added
9256:
9257: 2009-05-10 misha
9258:
9259: * tests/205.html: - test for ^file::create[...] was added
9260:
9261: * tests/204.html: - test for ^response:clear[] was added
9262:
9263: * tests/038.html: - tests for trigonometric functions were added
9264:
9265: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
9266: added - more tests for .add, .sub, .union, .intersects and
9267: .intersections
9268:
9269: * tests/065.html: - test for ^file:dirname was added
9270:
9271: * tests/030.html: - test for $cookie:fields was added
9272:
9273: * tests/203.html: - test for ^h._keys[column name] was added
9274:
9275: * tests/201.html: - tests for .trim were added
9276:
9277: * tests/202.html: - tests for last-day,
9278: date:calendar[type](YYYY;MM;DD) were added
9279:
9280: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
9281: .offset[type](N) were added
9282:
9283: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
9284: and .pos[c](N) were added
9285:
9286: * tests/141.html: - test for math:sha1 was added
9287:
9288: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
9289:
9290: 2009-05-09 misha
9291:
9292: * src/main/compile.y: - rollback
9293:
9294: 2009-05-05 misha
9295:
9296: * src/main/pa_exec.C: - little optimisation: somewhere length() was
9297: replaced by is_empty()
9298:
9299: * src/: include/pa_string.h, main/pa_charset.C: - little
9300: optimisation: somewhere length() was replaced by is_empty()
9301:
9302: * src/classes/table.C: - little optimisation: somewhere length()
9303: was replaced by is_empty()
9304:
9305: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
9306: classes/op.C, classes/table.C, main/pa_exception.C: - little
9307: optimisation: somewhere length() was replaced by is_empty()
9308:
9309: 2009-05-04 misha
9310:
9311: * src/: types/pa_method.h, types/pa_vstateless_class.C,
9312: types/pa_vstateless_class.h, main/execute.C,
9313: include/pa_request.h, classes/hash.C, classes/op.C,
9314: classes/table.C: - more optimisations were added: some operators
9315: don't switch write context anylonger
9316:
9317: 2009-05-01 misha
9318:
9319: * src/main/compile.y: - slightly more opcode optimisations for
9320: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
9321:
9322: * src/main/execute.C: - simplifying process for getters
9323:
9324: 2009-04-30 misha
9325:
9326: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
9327:
9328: * tests/results/199.processed: - test for checking $result into
9329: ^rem was added
9330:
9331: * tests/199.html: - test for checking $result into ^rem was added
9332:
9333: * tests/: 022.html, 096.html: - þsort after :list was asses (on
9334: some OS it returns list in different order)
9335:
9336: * src/: include/pa_array.h, include/pa_request.h,
9337: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
9338: changes in stack impl - get_element() optimisation: 3rd param
9339: removed - bugfix: problems with reading empty input param -
9340: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
9341:
9342: * tests/results/198.processed: - test for reading empty local var
9343: was added
9344:
9345: * tests/198.html: - test for reading empty local var was added
9346:
9347: 2009-04-29 misha
9348:
9349: * src/main/compile.y: - bugfix: couldn't compile because
9350: OP_VALUE__GET_ELEMENT should be unde #ifdef
9351:
9352: * src/: include/pa_array.h, include/pa_opcode.h,
9353: include/pa_request.h, main/compile.y, main/execute.C,
9354: main/pa_request.C, types/pa_vmethod_frame.C,
9355: types/pa_vmethod_frame.h: - we can work without opcode
9356: OP_STORE_PARAM, so it was removed
9357:
9358: 2009-04-28 misha
9359:
9360: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
9361: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
9362: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
9363: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
9364: 4.
9365: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
9366:
9367: * src/main/compile_tools.h: - new stuff for op-codes optimisation
9368:
9369: * src/: main/pa_string.C, classes/string.C: - !length() =>
9370: is_empty()
9371:
9372: 2009-04-27 misha
9373:
9374: * src/types/pa_vregex.h: - back explicit vars initialisation
9375:
9376: 2009-04-24 misha
9377:
9378: * src/classes/string.C: - ups. typo fixed
9379:
9380: * src/main/execute.C: - more replacements '*new VBool' to
9381: 'VBool::get' - checks for ^break[], ^continue[] and
9382: parser.interrupted were optimised
9383:
9384: * src/classes/string.C: - number of params.count() calls was
9385: slightly reduced
9386:
9387: 2009-04-23 misha
9388:
9389: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9390: make it x64 friendly
9391:
9392: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
9393: parser is x64 friendly now
9394:
9395: 2009-04-22 misha
9396:
9397: * src/types/pa_vhashfile.C: - coder friendly exception about
9398: exceeding record size was added
9399:
9400: * src/classes/file.C: - use vregex object instead of direct calls
9401: methods from pcre lib
9402:
9403: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
9404: classes/string.C: - use vregex object instead of direct calls
9405: methods from pcre lib
9406:
9407: * src/: include/pa_common.h, main/pa_common.C: - method
9408: print_pcre_exec_error_text was moved to class vregex
9409:
9410: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
9411: was added
9412:
9413: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
9414: - class vregex was added
9415:
9416: 2009-04-21 misha
9417:
9418: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
9419:
9420: * src/: types/pa_junction.h, types/pa_value.C,
9421: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
9422: types/pa_wcontext.h, main/execute.C, classes/op.C: -
9423: junction-optimisation (destructors)
9424:
9425: * src/include/pa_array.h: - free under if now
9426:
9427: 2009-04-19 misha
9428:
9429: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
9430:
9431: 2009-04-18 misha
9432:
9433: * src/include/pa_version.h:
9434: :q :
9435:
9436: CV:
9437: ----------------------------------------------------------------------
9438:
9439: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
9440: refactoring
9441:
9442: * src/: include/pa_array.h, include/pa_hash.h,
9443: types/pa_vmethod_frame.h: - destructors under #ifdef now
9444:
9445: * src/include/pa_memory.h: - define for using destructors was added
9446:
9447: * src/: types/pa_method.h, types/pa_vstateless_class.C,
9448: main/execute.C: - some junctions will be cached now
9449:
9450: * src/include/pa_hash.h: - hash destructor frees pairs now
9451:
9452: * src/include/pa_array.h: - inline was added to destructor
9453:
9454: * src/types/pa_method.h: - comment was changed
9455:
9456: 2009-04-17 misha
9457:
9458: * src/: include/pa_array.h, include/pa_hash.h,
9459: types/pa_vmethod_frame.h: - destructors were added
9460:
9461: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
9462: renamed to always_use_result
9463:
9464: * src/main/: compile.y, compile_tools.h: - rollback changes in
9465: compiler: full backward compatibility is better
9466:
9467: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
9468: result in var's hash
9469:
9470: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9471: optimisation in method_frame
9472:
9473: * src/include/pa_array.h: - optimisation in array (allocate
9474: elements only when needed)
9475:
9476: * src/types/pa_vresponse.C: - check for $response:headers field
9477: before looking at custom fields
9478:
9479: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
9480: not needed to check existance var with name 'result' in var's
9481: hash
9482:
9483: * src/main/compile.y: - compiler was changed: now it detects
9484: writings to $result and set flag writo_to_result in method
9485:
9486: * src/classes/string.C: - little optimisation: no needed to write
9487: number with lang
9488:
9489: * src/main/pa_charset.C: - methods readChar and skipChar which is
9490: used for read utf8-strings were renamed - is_escaped was renamed
9491: to isEscaped (to the same name convention)
9492:
9493: * src/: types/pa_method.h, main/compile_tools.h: - flag
9494: write_to_result added. compiler get this info from code.
9495:
9496: 2009-04-16 misha
9497:
9498: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
9499: String only before 1st write
9500:
9501: * src/include/pa_string.h: - not needed template removed
9502:
9503: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
9504: types/pa_vjunction.C, types/pa_vproperty.C,
9505: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
9506: main/pa_request.C, classes/bool.C, classes/double.C,
9507: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
9508: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
9509: bool objects)
9510:
9511: 2009-04-15 misha
9512:
9513: * src/lib/cord/cordxtra.c: - more optimisation
9514:
9515: * src/: include/pa_string.h, main/untaint.C: - String::append
9516: optimisation
9517:
9518: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
9519: then get and can sometime be used)
9520:
9521: * src/main/pa_string.C: - String::length optimisation
9522:
9523: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
9524: these methods read different strings
9525:
9526: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
9527: fresult_initial_void removed + some optimisation - if $result
9528: defined we don't write to context anymore
9529:
9530: * src/main/pa_charset.C: - readChar => skipChar (in this place we
9531: need just skip char)
9532:
9533: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9534: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
9535: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
9536:
9537: * src/types/pa_vvoid.h: - added get() method for retreave one
9538: instance
9539:
9540: 2009-04-11 misha
9541:
9542: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
9543:
9544: * tests/197.html: - test for parser://test in xml was added
9545:
9546: * src/classes/string.C: - small optimisation
9547:
9548: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
9549: optimisation
9550:
9551: 2009-04-10 misha
9552:
9553: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
9554: to pcre-7.8
9555:
9556: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
9557:
9558: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
9559: added
9560:
9561: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
9562: $request:CLASS_NAME were added
9563:
9564: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
9565: were added
9566:
9567: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
9568: $env:CLASS_NAME were added
9569:
9570: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
9571: '@todo' now
9572:
9573: * src/targets/cgi/parser3.C: - size_t -> int for calming down
9574: compirer
9575:
9576: * src/main/pa_string.C: - little code cleanup
9577:
9578: * src/main/pa_common.C: - describe one more UTF-8 related error
9579: during PCRE compile/execute
9580:
9581: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
9582: normalizing todo-comments: '@todo' now
9583:
9584: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
9585:
9586: * src/main/pa_charset.C: - type changed for making compiler happy
9587:
9588: 2009-03-10 misha
9589:
9590: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
9591: in main()
9592:
9593: 2009-02-01 misha
9594:
9595: * src/main/pa_http.C: - bugfix: double CRLF before the end of
9596: boundary
9597:
9598: 2009-01-25 misha
9599:
9600: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
9601:
9602: * src/classes/file.C: - more changes for parsing different number
9603: of params for file::load
9604:
9605: * tests/193.html: - tests for exception while base64-decode binary
9606: to string was added
9607:
9608: * tests/192.html: - tests for file::load with different number of
9609: options
9610:
9611: * src/classes/math.C: - ups. forgot '+1'
9612:
9613: * src/: classes/table.C, classes/file.C, include/pa_common.h,
9614: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
9615: main/pa_http.C: - ^file::load[...;http://...;] now can post files
9616: (new option $.encode[multipart-form/data] should be specified) -
9617: $.method[] option for file::load now is not case-sensitive
9618:
9619: * src/: include/pa_string.h, main/untaint.C: - for file post the
9620: new taint language L_FILE_POST was added
9621:
9622: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
9623: main/main.vcproj, classes/math.C, include/Makefile.am: - some
9624: stuff was moved to separate files
9625:
9626: 2009-01-23 misha
9627:
9628: * src/classes/math.C: - little optimisation in ^math:sha1[] -
9629: spaces to tabs were converted
9630:
9631: 2009-01-12 misha
9632:
9633: * src/main/pa_http.C: - value of $.method[] option force uppercased
9634: now
9635:
9636: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
9637: types/pa_vform.C, types/pa_vmail.C: - some constants changed
9638: their names
9639:
9640: * src/main/pa_common.C: - changes in formating
9641:
9642: * src/: classes/file.C, main/pa_http.C: - some constants changed
9643: their names
9644:
9645: * src/include/pa_http.h: - some spaces were converted to tabs
9646:
9647: * src/include/pa_common.h: - some constants changed their names
9648:
9649: * src/classes/file.C: - fixed 4-th paramether for file::load -
9650: little code rewriting
9651:
9652: * src/types/pa_vfile.C: - little code rewriting
9653:
9654: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
9655: types/pa_value.h: - some formating changes
9656:
9657: * src/include/pa_common.h: - some formating spaces transformed to
9658: tabs
9659:
9660: * src/classes/string.C: - exception while base64-decode binary to a
9661: string
9662:
9663: 2009-01-11 misha
9664:
9665: * configure.in: - version changed to 3.3.1b
9666:
9667: 2008-09-05 misha
9668:
9669: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
9670: release_3_3_0 on 2008-09-05 10:59:35 +0000
9671:
9672: 2008-09-04 misha
9673:
9674: * tests/: 130.html, 131.html: - these exceptions not typeless
9675: anymore
9676:
9677: * src/classes/op.C: - exception with 'invalid taint language' not
9678: typeless anylonger
9679:
9680: * src/classes/image.C: - some exceptions while operations with
9681: image not typeless anymore
9682:
9683: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
9684: main/pa_exec.C, main/pa_http.C: - some exceptions while
9685: operations with files not typeless anymore
9686:
9687: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
9688: types/pa_vdate.h: - exceptions while checking date range not
9689: typeless anymore
9690:
9691: * src/include/pa_exception.h: - exception type string for invalid
9692: date range was added
9693:
9694: 2008-09-03 misha
9695:
9696: * src/: classes/file.C, main/pa_string.C: - exception while pce
9697: operations not typeless anymore
9698:
9699: * src/include/pa_exception.h: - exception type for pce operations
9700: was added
9701:
9702: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
9703: and .CLASS_NAME insite classes
9704:
9705: * src/classes/table.C: - don't save table header whiile
9706: ^table.save[append;filename] if file exists
9707:
9708: 2008-09-02 misha
9709:
9710: * src/main/compile.y, src/main/compile_tools.h,
9711: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
9712: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
9713: renamed to partial and it login changed: we must mark class as
9714: partial for allow their modifications in future.
9715:
9716: 2008-08-29 misha
9717:
9718: * tests/results/022.processed: - testing taint[regex] in mask for
9719: file:list
9720:
9721: * tests/022.html: - testing taint[regex] in mask for file:list
9722:
9723: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
9724: for file:list was added
9725:
9726: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
9727: file:list
9728:
9729: 2008-08-26 misha
9730:
9731: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
9732: last derived object
9733:
9734: * src/classes/image.C: - many strings "image.format" replaced by
9735: IMAGE_FORMAT constant string - handle GPS info while parse exif -
9736: understand some more exif tags
9737:
9738: * src/include/pa_exception.h: - string "image.format" was added
9739:
9740: 2008-08-21 misha
9741:
9742: * src/: main/pa_string.C, classes/file.C: - use method for print
9743: pcre_exec text error
9744:
9745: * src/main/pa_common.C: - method for print pcre_exec text error was
9746: added
9747:
9748: * src/include/pa_common.h: - method declaration for print pcre_exec
9749: text error was added
9750:
9751: 2008-08-19 misha
9752:
9753: * src/main/execute.C: - bugfix: opcodes must be in separate
9754: namespace while debug execution as well
9755:
9756: * tests/: 015.html, results/015.processed: - test for escaping some
9757: parser chars was added
9758:
9759: 2008-08-18 misha
9760:
9761: * tests/: 190.html, 190.p, results/190.processed: - test for
9762: $caller.self.field + default getter in one class was added
9763:
9764: * tests/: 189.html, results/189.processed: - test for
9765: ^date::create[date object]
9766:
9767: * tests/: 188.html, results/188.processed: - tests for match with
9768: UTF-8 strings
9769:
9770: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
9771: ^string.match[]
9772:
9773: * ChangeLog: - parser 3.3.0 beta13
9774:
9775: 2008-08-15 misha
9776:
1.116 moko 9777: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
9778: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
9779: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
9780: dftables.c: - old PCRE files removed
1.95 moko 9781:
9782: * src/lib/pcre/config.h: - configuration for PCRE library
9783:
9784: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
9785: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
9786:
9787: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
9788: library and set flag UTF8 if $request:charset is UTF-8
9789:
9790: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
9791: include/pa_config_fixed.h: - moved to new PCRE library
9792:
9793: * src/: main/main.vcproj, types/types.vcproj,
9794: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
9795: win32\pcre instead of parser3\src\lib\pcre
9796:
9797: * src/: include/pa_opcode.h, include/pa_operation.h,
9798: main/compile.C, main/compile.y, main/compile_tools.C,
9799: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
9800: opcodes were moved to separate namespace
9801:
9802: 2008-08-14 misha
9803:
9804: * src/types/pa_vstateless_class.C: - newline at the end missed
9805:
9806: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
9807: tainting
9808:
9809: 2008-08-11 misha
9810:
9811: * tests/: 187.html, 187.p, results/187.processed: - tests for
9812: $caller.self, $caller.self.field and $caller.self.field[value]
9813: were added
9814:
9815: * src/types/pa_vmethod_frame.h: - still need to check 'self'
9816: runtime as well (for $caller.self)
9817:
9818: 2008-07-25 misha
9819:
9820: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
9821: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
9822: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
9823: tests with international characters
9824:
9825: 2008-07-23 misha
9826:
9827: * src/main/pa_http.C: - escape $cookies as %uXXXX while
9828: file::load[...;http://
9829:
9830: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
9831: now everywhere in separate namespace
9832:
9833: * src/types/pa_vmethod_frame.h: - looking for caller before looking
9834: for vars
9835:
9836: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
9837: can be escaped by '^'
9838:
9839: 2008-07-22 misha
9840:
9841: * src/classes/string.C, tests/186.html: - names changes:
9842: escape=>js-escape, unescape=>js-unescape
9843:
9844: 2008-07-21 misha
9845:
9846: * tests/results/186.processed: - test for string escape/unescape
9847:
9848: * tests/186.html: - test for string escape/unescape
9849:
9850: * src/classes/string.C: - string has escape and unescape methods
9851: now
9852:
9853: * src/: include/pa_string.h, main/pa_string.C: - escape method was
9854: added
9855:
9856: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
9857: method-layers added (with different params)
9858:
9859: 2008-07-18 misha
9860:
9861: * tests/results/185.processed: - test for ^str.pos[substr](offset)
9862: was added
9863:
9864: * tests/185.html: - test for ^str.pos[sub](offset) added
9865:
9866: * src/classes/string.C, src/classes/void.C, operators.txt: -
9867: ^string.pos[substr](offset) -- 2nd param accepted now
9868:
9869: * src/main/pa_string.C: - .pos works fine with offset for utf-8
9870: strings
9871:
9872: 2008-07-17 misha
9873:
9874: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
9875: helper length added for mid for small optimisation
9876:
9877: 2008-07-16 misha
9878:
9879: * tests/: 185.html, results/185.processed: - tests for
9880: length/left/right/mid/pos with utf-8 strings
9881:
9882: * src/classes/string.C: - left/right/mid/length/pos works fine for
9883: utf-8 strings
9884:
9885: * src/main/untaint.C: - comments removed
9886:
9887: * src/: include/pa_string.h, main/pa_string.C,
9888: include/pa_charset.h, main/pa_charset.C: - methods for working
9889: with pos/mid for strings in utf-8 were added
9890:
9891: 2008-07-15 misha
9892:
9893: * tests/: 184.html, results/184.processed: - test for case body as
9894: expression: $var(^switch(1){^case(1)(true)..})
9895:
9896: * src/classes/op.C: - case body can be expression now:
9897: $var(^switch(1){^case(1)(true)..})
9898:
9899: * tests/: results/183.processed, 183.html: - added test for testing
9900: new cookie encoding (%uXXXX)
9901:
9902: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9903: decoding for backward compatibility they decoded from %XX in
9904: request:charset too
9905:
9906: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9907: - cookie class now decode cookies before first access after last
9908: request:charset changing (as form class).
9909:
9910: * src/main/pa_charset.C: - added method escape for escaping cookies
9911: as %uXXXX - before transcode calculate required space for dest
9912: string. it reduce mem usage for transcode
9913:
9914: * src/include/pa_charset.h: - added method escape for escaping
9915: cookies as %uXXXX
9916:
9917: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9918: was added. will used for escaping cookies as %uXXXX
9919:
9920: * src/include/pa_common.h: - escape method has new option for skip
9921: converting '+' to a space char
9922:
9923: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9924: transcode - escape method has new option for skip converting '+'
9925: to a space char
9926:
9927: 2008-07-08 misha
9928:
9929: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9930: (no UE if more then 1 case matches anylonger) - optimization:
9931: doing searching.as_string() || searching.as_double() only once
9932:
9933: 2008-07-04 misha
9934:
9935: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9936: now ^date::create[date object] works
9937:
9938: * src/classes/string.C: - left and right added as aliases for start
9939: and end in ^string.trim[]
9940:
9941: 2008-07-03 misha
9942:
9943: * src/classes/file.C: - allow $.limit for file::sql as well
9944:
9945: * src/classes/file.C: - allow $.offset option for file::sql - force
9946: send limit=1 to query for use sql specifics authomatically
9947:
9948: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9949: if $.limit value if empty. autoconvert it as everywere
9950:
9951: 2008-07-02 misha
9952:
9953: * configure.in: - time to change version number to 3.3.0 %-)
9954:
9955: * src/include/pa_version.h: - time to change version number to
9956: 3.3.0 %-)
9957:
9958: 2008-06-26 misha
9959:
9960: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9961: $.limit(0) fixes
9962:
9963: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9964: - $.limit(0) fixes
9965:
9966: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9967: new API)
9968:
9969: * src/: include/pa_sql_driver_manager.h,
9970: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9971: classes/op.C: - document_root added
9972:
9973: * src/main/compile.tab.C: - error message was changed
9974:
9975: 2008-06-25 misha
9976:
9977: * src/main/compile.y: - error message was changed
9978:
9979: 2008-06-24 misha
9980:
9981: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9982:
9983: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9984: tests for @OPTIONS\nappend
9985:
9986: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9987:
9988: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9989:
9990: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9991:
9992: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9993: compile.y
9994:
9995: 2008-06-17 misha
9996:
9997: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9998: compilation: ^if(default){true. it's incorrect. must be
9999: exception}
10000:
10001: 2008-06-16 misha
10002:
10003: * tests/: 181.ent, 181.html, results/181.processed: - test for
10004: checking external reference loading with 'http://localhost'
10005: prefix while creating xdoc
10006:
10007: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
10008: ^math:long2ip[] and ^math:ip2long[]
10009:
10010: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
10011: added which use scalar stateless class method when user object
10012: used in scalar context - use get_scalar_value when user object
10013: requested in scalar context
10014:
10015: * src/main/pa_common.C: - size must be int but not size_t or we
10016: can't compare with 0 sprintf result
10017:
10018: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
10019: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
10020: with internal switch between local/global vars
10021:
10022: * src/types/pa_vclass.C: - register scalar if method @GET[] was
10023: specified
10024:
10025: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
10026: pa_vstateless_object.h: - stateless class and object now has
10027: private scalar field and getter/setter for working with it
10028:
10029: * src/classes/math.C: - methods math:long2ip & math:ip2long were
10030: moved to inet static class
10031:
10032: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
10033: class added (^inet:aton[IP], ^inet:ntoa(number))
10034:
10035: * tests/: 180.html, results/180.processed: - tests for
10036: ^math:long2ip(long) and ^math:ip2long[IP]
10037:
10038: * src/classes/math.C: - ^math:ip2long[IP] added
10039:
10040: 2008-06-11 misha
10041:
10042: * src/main/pa_xml_io.C: - use file_read_text again because of we
10043: need cut BOM code and remove DOS newline chars. but don't
10044: transcode it anyway.
10045:
10046: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
10047: main/pa_http.C: - option for disable transcoding while file_read
10048: and file_read_text added
10049:
10050: 2008-06-10 misha
10051:
10052: * tests/: 179.html, 179.p, results/179.processed: - test for many
10053: classes in 1 file
10054:
10055: * src/main/: compile.C, compile_tools.h: - compile return list of
10056: classes now.
10057:
10058: * src/main/: compile.y, compile.tab.C: - compile return list of
10059: classes now. internals.
10060:
10061: * src/main/pa_request.C: - compile return list of classes now. try
10062: call @conf and @auto for each returned class
10063:
10064: * src/include/pa_request.h: - compile return list of classes now
10065:
10066: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
10067: return list of classes when compile buf)
10068:
10069: 2008-06-07 misha
10070:
10071: * src/main/pa_request.C: - constructing VRequest object with 3rd
10072: param -- form
10073:
10074: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
10075: 3rd param: form. needed for get post_charset
10076:
10077: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
10078: added
10079:
10080: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
10081: types/pa_vform.C, types/pa_vform.h: - some polish
10082:
10083: 2008-06-06 misha
10084:
10085: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
10086: charset and decode chars from it but not from response:charset
10087:
10088: * src/main/pa_http.C: - detect_charset moved out of here
10089:
10090: * src/: include/pa_common.h, main/pa_common.C: - more helpers
10091: methods moved here - unescape_chars accepn one charset now
10092:
10093: * src/main/pa_http.C: - new constants used - don't allow
10094: $.content-type in ^file::load[;http://;$.method[POST]] - add
10095: charset info while ^file::load[;http://;$.method[POST]] - option
10096: $.omit-post-charset(true) added to ^file::load[;http://] for
10097: disabling charset during post
10098:
10099: * src/types/pa_vform.C: - new constants used
10100:
10101: * src/include/pa_common.h: - some constants were added
10102:
10103: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
10104: instead of StrEqNc
10105:
10106: * src/main/pa_common.C: - new method for caseless search
10107: c-substring in c-string - use isxdigit instead of is_hex_digit
10108:
10109: * src/include/pa_common.h: - new method for caseless search
10110: c-substring in c-string
10111:
10112: 2008-06-05 misha
10113:
10114: * tests/results/178.processed: - test for testing default getter
10115:
10116: * tests/178.html: - test for testing default getter
10117:
10118: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
10119: for test for testing default getter
10120:
10121: * src/main/execute.C: - default getter soul
10122:
10123: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
10124: requested objects' field not found
10125:
10126: * src/types/pa_vclass.C: - register default getter if defined - get
10127: default getter if requested field not found
10128:
10129: * src/types/pa_vstateless_object.h: - method get_default_getter was
10130: added
10131:
10132: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10133: pointer to default getter and methods for get/set it were added
10134:
10135: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
10136: auto_name field (for default getter)
10137:
10138: 2008-06-04 misha
10139:
10140: * src/main/pa_xml_io.C: - load external xml in binary mode (no
10141: transcoding, no cutting BOM code, no fixing line breaks) and get
10142: it to libxml "as is"
10143:
10144: 2008-06-03 misha
10145:
10146: * src/main/pa_common.C: - use store_Char instead of
10147: transcodeCharFromUTF8
10148:
10149: * src/: include/pa_charset.h, main/pa_charset.C: - method
10150: store_Char added, transcodeCharFromUTF8 -- removed
10151:
10152: 2008-06-02 misha
10153:
10154: * tests/: results/177.processed, 177.html: - test for checking
10155: .[acm]date after local ^file::load[] was added
10156:
10157: * tests/: results/176.processed, 176.html: - test for checking
10158: @OPTION\locals + @method[vars][locals] added
10159:
10160: * tests/results/auto.p: - CLASS_PATH specified for checking use
10161:
10162: 2008-05-30 misha
10163:
10164: * src/main/: compile.y, compile.tab.C: - changes in compiler:
10165: @OPTION\nlocals + @method[vars][;locals;] were added
10166:
10167: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
10168: moved to separate method op_code - switch from VMethodFrame to
10169: VMethodFrameGlobal + VMethodFrameLocal
10170:
10171: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
10172: was moved to separate method op_code
10173:
10174: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
10175: VMethodFrame now
10176:
10177: * src/types/pa_vstateless_class.h: - stateless class have bool flag
10178: all_vars_local as well
10179:
10180: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
10181: pa_vmethod_frame_local.h, Makefile.am: - who children for
10182: VMethodFrame were added: one (global) works as VMethodFrame
10183: before and second (local) write all vars in self vars scope
10184:
10185: * src/types/pa_method.h: - method has bool flag all_vars_local now
10186:
10187: 2008-05-29 misha
10188:
10189: * tests/: 129.html, results/129.processed: - more tests for
10190: ^table.hash[]
10191:
10192: * src/classes/hash.C: - ^hash::sql has a new option:
10193: $.type[hash|string|table] as ^table.hash[] one.
10194:
10195: * src/classes/op.C: - ^try has 3rd param now: finally code which
10196: executed anyway after try or catch section
10197:
10198: 2008-05-27 misha
10199:
10200: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
10201: must not fail if $.distinct(1) wasn't specified
10202:
10203: 2008-05-26 misha
10204:
10205: * src/classes/op.C: - allow ^throw[my type]
10206:
10207: 2008-05-22 misha
10208:
10209: * configure.in, configure: - version number updated to 3.2.4b
10210:
10211: * src/classes/: op.C, string.C: - trim format string before
10212: eval/format
10213:
10214: * tests/: results/175.processed, 175.html: - more tests for
10215: different format strings in .format[]
10216:
10217: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
10218: as well (not only %XX)
10219:
10220: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
10221: charset specified - checks for format before print number
10222: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
10223: (instead of tabs) removed
10224:
10225: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
10226: charset specified
10227:
10228: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
10229: char in requested charset from utf code was added
10230:
10231: 2008-05-19 misha
10232:
10233: * tests/: 174.html, results/174.processed: - test for
10234: ^hashfile.cleanup[] added
10235:
10236: * src/classes/hashfile.C: - optimization: don't create any key or
10237: value variable if it's name weren't specified
10238: (^hf.foreach[;v]{...})
10239:
10240: 2008-05-16 misha
10241:
10242: * src/classes/hash.C: - optimization: don't create any key variable
10243: if variable name wasn't specified (^h.foreach[;v]{...})
10244:
10245: 2008-05-15 misha
10246:
10247: * src/classes/op.C: - small changes
10248:
10249: * src/classes/hashfile.C: - code reformating (as hash.foreach)
10250:
10251: * src/classes/hash.C: - calculate var_context once before foreach
10252:
10253: 2008-05-14 misha
10254:
10255: * src/classes/hashfile.C: - incorrect vars context calculation for
10256: ^hashfile.foreach[;]{} fixed
10257:
10258: * src/classes/: hash.C, table.C: - little optimisation
10259:
10260: * src/classes/file.C: - bugfix: double absolute path while loading
10261: file
10262:
10263: * tests/: 174.html, results/174.processed: - tests for hashfile
10264: were added
10265:
10266: * buildall-with-xml: - moving to libxslt 1.1.24
10267:
10268: 2008-04-30 misha
10269:
10270: * src/classes/file.C: - stat file while loading (local only) so
10271: .adate, .mdate and .cdate available without additional ::stat
10272:
10273: 2008-04-28 misha
10274:
10275: * src/classes/file.C: - $.name and $.content-type available for
10276: stated file
10277:
10278: 2008-04-14 misha
10279:
10280: * src/targets/cgi/parser3.C: - new year in copyright %-)
10281:
10282: * src/include/pa_version.h: - new version number in head
10283:
10284: 2008-04-10 misha
10285:
10286: * tests/: 080.html, results/080.processed: - cut '0' from
10287: exponential part because of on diff OS it differ (20 or 020 for
10288: ex)
10289:
10290: * tests/: 119.html, results/119.processed: - check for encoding
10291: while creating xdoc
10292:
10293: 2008-04-09 misha
10294:
10295: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
10296:
10297: * src/main/pa_common.C: - comment added
10298:
10299: * src/classes/date.C: - little refactoring
10300:
10301: 2008-04-07 misha
10302:
10303: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
10304: style of ^table.save[]: prepare one big string and sabe it at
10305: once. it's safe on freebsd 4.x but use much more memory.
10306:
10307: * buildall-with-xml, buildall-without-xml: - option
10308: --disable-stringstream added (under comment. use it on freebsd
10309: 4.x)
10310:
10311: 2008-02-22 misha
10312:
10313: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
10314: specified together in file::load[;http] - get back transcoding
10315: $.body[] in file::load[;http]
10316:
10317: 2008-02-21 misha
10318:
10319: * src/classes/date.C: - ^date.gmt-string[] was added
10320:
10321: * src/types/pa_value.C: - method for output date in RFC 822 format
10322: moved to pa_common.h
10323:
10324: * src/include/pa_common.h: - method for output date in RFC 822
10325: format moved here from pa_value.C
10326:
10327: * src/types/pa_vmail.C: - fixed core in sending mail with
10328: attachment in simple mode ($.file[file here]) introduced in 3.2.2
10329:
10330: 2008-02-20 misha
10331:
10332: * src/main/pa_http.C: - transcode $.headers before escaping into
10333: specified charset while ^file::load[...;http://...] (L_URI
10334: instead of L_HTTP_HEADER) - $.cookies param available in
10335: ^file::load[;http://...] now (but we don't parse set-cookies from
10336: response yet) (cookies not transcoded as common $cookies)
10337:
10338: 2008-02-19 misha
10339:
10340: * src/main/pa_request.C: - rollback: we mustn't force taint
10341: $response:field values because in this case
10342: $response:locateion[http://...] don't works.
10343:
10344: 2008-02-15 misha
10345:
10346: * src/classes/op.C: - little refactoring
10347:
10348: * src/main/pa_http.C: - taint names of $.headers for load[;http
10349:
10350: * src/main/pa_request.C: - force taint values of $response:field
10351:
10352: 2008-02-14 misha
10353:
10354: * src/main/pa_request.C: - $response:field transcoded to
10355: $response:charset before escaping now
10356:
10357: * src/main/pa_http.C: - some outdated comments removed
10358:
10359: * src/classes/date.C: - lastdat -> last-day
10360:
10361: * src/classes/date.C: - ^date:lastday(year;month) and
10362: ^date.lastday[] were added - little code refactoring - comments
10363: changes
10364:
10365: * tests/: 159.html, results/159.processed: - test for number of
10366: days in February
10367:
10368: * src/types/pa_value.C: - fixes in code formatting
10369:
10370: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
10371: and comments
10372:
10373: 2008-02-13 misha
10374:
10375: * src/main/pa_common.C: - bugfix for february at leap year
10376:
10377: 2008-01-28 misha
10378:
10379: * tests/: 160.html, results/160.processed: - more test for cache
10380: added
10381:
10382: * src/classes/op.C: - bugfix: cache body executed twice if contains
10383: unhandled exception
10384:
10385: 2008-01-25 misha
10386:
10387: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
10388: bug when hashfile became inavailable after memory:compact)
10389:
10390: * src/lib/sdbm/apr_strings.C: - +arp_malloc
10391:
10392: 2008-01-22 misha
10393:
10394: * src/classes/table.C: - little refactiring and exception texts
10395: changes in method ^table.hash[]
10396:
10397: * src/types/pa_vcookie.C: - link to cookie specification changed
10398:
10399: 2008-01-21 misha
10400:
10401: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
10402: file::exec/cgi
10403:
10404: * src/classes/file.C: - bugfix: core while processing headers if
10405: executed cgi script don't return content
10406:
10407: 2008-01-18 misha
10408:
10409: * buildall-with-xml: - move to libxml2 version 2.6.31
10410:
10411: * src/include/pa_version.h, configure.in: - version number updated
10412: to '3.2.3b'
10413:
10414: 2007-12-28 misha
10415:
10416: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
10417: hash.contains
10418:
10419: 2007-12-27 misha
10420:
10421: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10422: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
10423: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
10424: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
10425: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10426: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
10427: src/targets/cgi/parser3.vcproj,
10428: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
10429: back to VS2003 because of Apache 1.3 module can't work if it was
10430: built in VS 2005. with cgi all file so VS2003 project files can
10431: be easy converted to the new format.
10432:
10433: 2007-12-04 misha
10434:
10435: * src/types/pa_vcode_frame.h: - changes in comment
10436:
10437: 2007-11-29 misha
10438:
10439: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
10440: intercept strings any longer
10441:
10442: * tests/: 173.html, results/173.processed: - tests for
10443: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
10444: but not in main code frame
10445:
10446: * tests/: 172.html, results/172.processed: - more tests for pass
10447: objects from code frames
10448:
10449: 2007-11-27 misha
10450:
10451: * tests/: 152.html, results/152.processed: - tests for converting
10452: strings 'true'/'false' to bool were added
10453:
10454: * tests/152.html: - added checks for converting strings
10455: 'true'/'false' to bool
10456:
10457: * src/classes/string.C: - ^srting.bool[] now can convert to bool
10458: not only strings with numbers but with values 'true'/'false' as
10459: well
10460:
10461: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
10462: for parser3.log increased
10463:
10464: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
10465:
10466: * src/include/pa_common.h: - remove_crlf return cstring size now
10467:
10468: * src/include/pa_types.h: - constant with buffer size for
10469: parser3.log added
10470:
10471: 2007-11-16 misha
10472:
10473: * tests/cat.sh: - script for tests for file::exec/cgi
10474:
10475: * tests/171.html: - tests for file::exec/cgi
10476:
10477: * tests/results/171.processed: - tests results for file::exec/cgi
10478:
10479: 2007-11-15 misha
10480:
10481: * src/main/pa_exec.C: - fixed incorrect exec code for unix
10482:
10483: * src/classes/file.C: - .body must be set before analyzing cgi
10484: headers
10485:
10486: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
10487: only if exec/cgi return anything.
10488:
10489: 2007-11-14 misha
10490:
10491: * operators.txt: - info about new text|binary option for
10492: file::exec/cgi was added
10493:
10494: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
10495: ^file:exec[[text|binary];script;...]
10496:
10497: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
10498: classes/string.C, classes/table.C: - more text strings moved to
10499: the one place
10500:
10501: 2007-11-09 misha
10502:
10503: * src/types/pa_vrequest.C: - $request:argv must be taint
10504:
10505: * ChangeLog: - $request:argv [patch from Sumo]
10506:
10507: * operators.txt: - $request:argv
10508:
10509: * src/: include/pa_request_info.h, types/pa_vrequest.C,
10510: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
10511:
10512: 2007-10-25 misha
10513:
10514: * buildall-with-xml, buildall-without-xml: - options preparations
10515: for ./configure rewrited
10516:
10517: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
10518: error occure in unhandled_exception finally fixed
10519:
10520: 2007-10-23 misha
10521:
10522: * tests/: 170.html, results/170.processed: - test for
10523: @method[][result]
10524:
10525: * operators.txt: - added info about node.prefix and
10526: node.namespaceURI
10527:
10528: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
10529:
10530: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
10531: added for node and attribute
10532:
10533: 2007-10-22 misha
10534:
10535: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
10536:
10537: * src/main/pa_request.C: - added const content-transfer-encoding
10538:
10539: * src/include/pa_request.h: - added const content-transfer-encoding
10540: - ups. constants must be in lowercase (for search)
10541:
10542: * src/types/pa_vmail.C: - more constants used -
10543: content-transfer-encoding: 8bit added
10544:
10545: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
10546:
10547: * src/include/pa_request.h: - more constants
10548:
10549: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
10550: ommit anymore if $.content-disposition was specified - little
10551: refactoring
10552:
10553: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
10554:
10555: 2007-10-17 misha
10556:
10557: * operators.txt: - info about
10558: table::create[nameless]{data}[>options<] was added
10559:
10560: * src/main/: compile.tab.C, compile.y: - if error occure while
10561: compile method don't put this method in methods table anymore.
10562: in other case the parser coredumped if @unhandled_exception
10563: method can't be compiled because of parser.compile error.
10564:
10565: * src/main/execute.C: - little code reformating
10566:
10567: * src/main/pa_request.C: - little code reformating - comment
10568: changed
10569:
10570: 2007-10-16 misha
10571:
10572: * tests/: 035.html, results/035.processed: - tests
10573: table::create[]{}[options] added
10574:
10575: * src/classes/table.C: - table::create[]{} now accept 3rd param:
10576: options (only $.seperator[] yet)
10577:
10578: 2007-10-10 misha
10579:
10580: * src/classes/table.C: - some contstants moved to pa_common.h -
10581: some code changes
10582:
10583: 2007-10-02 misha
10584:
10585: * src/main/pa_uue.C: - memory usage during uuencode reduced more
10586: then three time as much. but base64 encoding method still use
10587: less memory anyway.
10588:
10589: 2007-09-17 misha
10590:
10591: * operators.txt: - added info about $cookie:fields
10592:
10593: * src/types/pa_vcookie.C: - $cookie:fields available now
10594:
10595: * src/classes/hash.C: - some stuff for use with .for_each moved to
10596: common
10597:
10598: * src/include/pa_common.h: - some stuff for use with .for_each
10599: moved here
10600:
10601: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
10602:
10603: 2007-09-14 misha
10604:
10605: * buildall-with-xml: - new xml libs again =)
10606:
10607: 2007-08-28 misha
10608:
10609: * operators.txt: - texts about ^table.columns[[column name]] and
10610: ^string.split[...][v][column name] were added
10611:
10612: * tests/: 168.html, 169.html, results/168.processed,
10613: results/169.processed: - tests for ^table.columns[[column name]]
10614: and ^string.split[...][v][column name] were added
10615:
10616: * src/classes/table.C: - new option ^table.columns[[column name]]
10617: was added
10618:
10619: * src/classes/string.C: - new option ^string.split[...;v;[column
10620: name]]
10621:
10622: * src/include/pa_exception.h: - error text message for
10623: ^hash._keys[], ^table.columns[] and ^string.split[]
10624:
10625: 2007-08-27 misha
10626:
10627: * src/main/untaint.C: - try to fix coredump on unix if print to
10628: body ^taint[sql][something] outside of connect
10629:
10630: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
10631: outside of connect
10632:
10633: * buildall-with-xml, buildall-without-xml: - strip parser3 was
10634: added (commented by default)
10635:
10636: 2007-08-20 misha
10637:
10638: * operators.txt: - comment about new method ^node.hasAttributes[]
10639: was added
10640:
10641: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
10642: duplicated exception text strings were removed
10643:
10644: * src/include/pa_exception.h: - more exception text strings moved
10645: here
10646:
10647: * src/classes/table.C: - some duplicate exceptions' text strings
10648: removed
10649:
10650: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
10651: xdoc.C, xnode.C: - some duplicate exceptions' text strings
10652: removed
10653:
10654: * src/include/pa_exception.h: - some exception text strings movet
10655: to pa_exception
10656:
10657: * tests/: 149.html, results/149.processed: - test for
10658: ^xnode.hasAttributes[] was added - some code changes
10659:
10660: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
10661: added
10662:
10663: 2007-08-17 misha
10664:
10665: * tests/: results/006.processed, results/059.processed, 006.html,
10666: 059.html: - more tests for match
10667:
10668: * tests/: 129.html, results/129.processed: - tests for
10669: ^table.hash[...][$.type[string|hash|table]] added
10670:
10671: * src/targets/cgi/parser3.C: - little syntax changes
10672:
10673: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
10674: syntax changes
10675:
10676: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
10677: messages in parser3.log switched off by default. If someone
10678: really still need it: use $SIGPIPE(1)
10679:
10680: 2007-08-08 misha
10681:
10682: * buildall-with-xml, buildall-without-xml: - remove libs source
10683: files by default since now
10684:
10685: 2007-08-07 misha
10686:
10687: * buildall-without-xml: - some option syntax changes
10688:
10689: * buildall-with-xml: - compile libxml2 without http support - some
10690: option syntax changes
10691:
10692: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
10693:
10694: 2007-08-06 misha
10695:
10696: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
10697:
10698: * tests/: 160.html, results/160.processed: - cache test was
10699: rewrited
10700:
10701: 2007-07-06 misha
10702:
10703: * tests/: 153.html, results/153.processed: - added test for
10704: ^math:sha1[string]
10705:
10706: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
10707: transcoded
10708:
10709: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
10710: were added
10711:
10712: 2007-06-28 misha
10713:
10714: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
10715: some incorrect chars
10716:
10717: 2007-06-19 misha
10718:
10719: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
10720: were moved on top because of gcc 4 had a problems during
10721: building.
10722:
10723: 2007-06-18 misha
10724:
10725: * tests/results/019.processed: - new image commited
10726:
10727: 2007-06-09 misha
10728:
10729: * src/classes/: op.C, table.C: - in while and table.select method
10730: as_expression used now
10731:
10732: * src/types/pa_vmethod_frame.h: - method as_expression was added
10733:
10734: 2007-06-08 misha
10735:
10736: * tests/: 166.html, results/166.processed: - test for
10737: ^match[...][n]
10738:
10739: * tests/: 165.html, results/165.processed: - tests for loops
10740:
10741: * src/lib/cord/include/private/cord_pos.h: - back to origin value
10742: because of no speed/memory optimisation but some proglems with
10743: long cycles occure
10744:
10745: 2007-06-06 misha
10746:
10747: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
10748: ^table.select(true) and ^table.select(1) didn't works because of
10749: awaiting junction-param only. fixed.
10750:
10751: 2007-05-24 misha
10752:
10753: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
10754: with 0.5 secs interval
10755:
10756: * src/classes/op.C: - cache was rewrited. I hope it works with
10757: locking system now on unix
10758:
10759: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
10760: system locks which wait till other threads release it but try get
10761: lock, if fail wait 1 sec and make 10 attempts.
10762:
10763: * src/include/pa_os.h: - consts for blocking locks + some comments
10764: were added
10765:
10766: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
10767: opening files
10768:
10769: * src/classes/table.C: - changes in includes. if unclude <sstream>
10770: after our classes on unix it can't be build
10771:
10772: * src/types/pa_vhashfile.C: - not needed code removed
10773:
10774: 2007-05-23 misha
10775:
10776: * src/: classes/file.C, classes/op.C, main/pa_common.C,
10777: include/pa_common.h: - cosmetic changes
10778:
10779: 2007-05-18 misha
10780:
10781: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
10782: often. it's give some speed increasing
10783:
10784: * tests/results/160.processed: - returned time corrected
10785:
10786: * tests/160.html: - time increased because on unix 1 mean nothing
10787: :(
10788:
10789: * operators.txt: - added info about ^hash.contain[key]
10790:
10791: * src/classes/hash.C: - added ^hash.contain[key]
10792:
10793: * src/include/pa_hash.h: - added method for checking key exists in
10794: hash
10795:
10796: 2007-05-07 misha
10797:
10798: * src/include/pa_string.h: - was compilation error during build on
10799: freebsd4
10800:
10801: 2007-05-03 misha
10802:
10803: * src/classes/table.C: - option $.type[hash|string|table] was added
10804: for ^table.hash[]
10805:
10806: * src/classes/file.C: - comment removed
10807:
10808: 2007-04-26 misha
10809:
10810: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
10811: real files doesn't opened in place anymore
10812:
10813: 2007-04-24 misha
10814:
10815: * src/classes/math.C: - I thought one more time and remove lg(N) :)
10816:
10817: * src/include/pa_exception.h: "static" removed
10818:
10819: 2007-04-23 misha
10820:
10821: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
10822:
10823: * src/classes/math.C: added: - ^math:ln(N) (the same as
10824: ^math:log(N)) - ^math:lg(N)
10825:
10826: * tests/: 097.html, results/097.processed: - charsets converstion
10827: during ^file::load[text;http://...] added
10828:
10829: * tests/: 164.html, results/164.processed: - check for set expires
10830: as a date
10831:
10832: * tests/: 164.html, results/164.processed: - test for hashfile
10833:
10834: * src/classes/hashfile.C: - little comment changes
10835:
10836: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
10837: access
10838:
10839: * src/: classes/date.C, classes/double.C, classes/file.C,
10840: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
10841: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
10842: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
10843: classes/xnode.h, include/pa_request.h, main/execute.C,
10844: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10845: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
10846: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
10847: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
10848: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
10849: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
10850: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10851: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
10852: "parser.runtime" strings were removed
10853:
10854: * src/classes/hashfile.C: - with .clear[] called files_delete()
10855: now.
10856:
10857: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
10858:
10859: * src/include/pa_exception.h: - string constant with
10860: "parser.runtime" text was added
10861:
10862: 2007-04-20 misha
10863:
10864: * operators.txt: - some comments changing
10865:
10866: * operators.txt: - added info about .^hashfile.release[],
10867: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
10868:
10869: * configure: =cheching for unsetenv
10870:
10871: * src/classes/hashfile.C: - ^hashfile.cleanup[],
10872: ^hashfile.release[] were added
10873:
10874: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
10875: ^string.match[][] understand new option now: return number of
10876: matches but not table wit results
10877:
10878: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
10879: reopen now
10880:
10881: * src/classes/op.C: - bug. must be false
10882:
10883: * configure.in: - checking for unsetenv was added
10884:
10885: * src/types/pa_vform.C: - some comments
10886:
10887: 2007-04-18 misha
10888:
10889: * buildall-with-xml: moving to libxml2-2.6.28
10890:
10891: * buildall-with-xml, buildall-without-xml: added commented lines
10892: with --disable-safe-mode option
10893:
10894: * operators.txt: - info about $form:files
10895:
10896: 2007-04-17 misha
10897:
10898: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10899: $form:files was added
10900:
10901: * tests/: 163.html, results/163.processed: removing auto format
10902:
10903: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10904:
10905: 2007-04-16 misha
10906:
10907: * tests/: 163.html, results/163.processed: - test for .int[],
10908: floor, round, ceiling and .format[]
10909:
10910: * src/classes/file.C: - little optimization for getting args in
10911: exec/cgi
10912:
10913: 2007-04-13 misha
10914:
10915: * src/classes/file.C: - arguments for file::exec/cgi can be
10916: specified now as s table with one column
10917:
10918: 2007-03-27 misha
10919:
10920: * tests/: 162.html, results/162.processed: - test for
10921: ^table.select(^condition[$t])
10922:
10923: * tests/results/auto.p: - load windows-1251 charset for some tests
10924:
10925: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10926:
10927: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10928: 161_windows1251.txt: - added test for
10929: ^file::load[text;/local/file.txt;$.charset[...]]
10930:
10931: * tests/: results/013.processed, 013.html: - added test for
10932: checking $._default value while hash modifications
10933:
10934: * tests/: 160.html, results/160.processed: - add test for
10935: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10936:
10937: 2007-03-22 misha
10938:
10939: * src/include/pa_common.h: - "charset" string defined for
10940: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10941:
10942: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10943: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10944: added - not needed transcodes were removed from
10945: ^file::load[...;http://...]
10946:
10947: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10948: added
10949:
10950: * src/classes/date.C: - date.week was fixed
10951:
10952: * operators.txt: - added info about date.weekyear
10953:
10954: * tests/: 159.html, results/159.processed: - tests for date.week
10955: and date.weekyear added
10956:
10957: 2007-03-15 misha
10958:
10959: * src/classes/table.C: - enclose column numbers for nameless tables
10960: as well
10961:
10962: 2007-03-14 misha
10963:
10964: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10965:
10966: * src/classes/table.C: - table.save optimization: now required much
10967: less memory
10968:
10969: 2007-03-13 misha
10970:
10971: * tests/results/: 158.processed, 158.processes: - tests for
10972: table.save/table.load
10973:
10974: * tests/: 158.html, results/158.processes: - tests for
10975: table.save/table.load
10976:
10977: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10978:
10979: * buildall-with-xml: - pattern needed now for building
10980:
10981: * tests/results/097.processed: - added test results for xdoc::load
10982: & xdoc::load[http://...]
10983:
10984: * tests/097.html: - added test for xdoc::load
10985:
10986: 2007-03-12 misha
10987:
10988: * tests/: 107.html, results/107.processed: - added test for xpath
10989: '//man'
10990:
10991: 2007-03-01 misha
10992:
10993: * tests/: 097.html, results/097.processed: - added test for
10994: creating xdoc from file
10995:
10996: * tests/: results/157.processed, 157.html: - added test for
10997: file:move
10998:
10999: 2007-02-28 misha
11000:
11001: * src/classes/xdoc.C: - another attempt
11002:
11003: * src/classes/xdoc.C: - roll back last changes for a while
11004:
11005: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
11006:
11007: * src/classes/file.C: - under lock we create non-exist dir anyway
11008:
11009: * tests/results/099.processed: - ever send content-disposition to
11010: client with file
11011:
11012: * tests/157.html: + test for file:copy
11013:
11014: 2007-02-26 misha
11015:
11016: * src/classes/file.C: - some similar strings moved to #define
11017: instead of to be copy/pasted many times
11018:
11019: * src/types/pa_vfile.h: - class name string ("file") moved to
11020: #define
11021:
11022: 2007-02-20 misha
11023:
11024: * configure.in: - added some strings for sqlite detection
11025:
11026: 2007-02-19 misha
11027:
11028: * operators.txt: - some comments changes
11029:
11030: * buildall-with-xml, buildall-without-xml: - some modifications
11031:
11032: 2007-02-17 misha
11033:
11034: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
11035:
11036: * src/main/pa_request.C: - damn, i forgot to commit it while I
11037: change console behaviour
11038:
11039: 2007-02-12 misha
11040:
11041: * src/targets/cgi/parser3.C: - don't print headers if
11042: $console:line[data] was used during cgi execution.
11043:
11044: * src/types/pa_vconsole.h: - console class have bool flag now which
11045: marked as 'true' if class was used.
11046:
11047: * tests/: 152.html, results/152.processed: - more types was added
11048: to test 152
11049:
11050: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
11051: adding 'bool' (^if($image){} caused exception)
11052:
11053: 2007-02-09 misha
11054:
11055: * tests/: 152.html, results/152.processed: - test alightly updated
11056:
11057: * tests/: 152.html, results/152.processed: - test rewrited
11058:
11059: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
11060: bugfix. I broke xdoc & xnode in expression
11061:
11062: 2007-02-08 misha
11063:
11064: * tests/: 152.html, results/152.processed: - add test for checking
11065: 'def' for void, string, bool, int & double
11066:
11067: 2007-02-07 misha
11068:
11069: * operators.txt: - ^file:base64[filespec] was added
11070:
11071: * tests/results/153.processed: - result test for
11072: ^file:base64[filespec] was updated
11073:
11074: * tests/153.html: - test for ^file:base64[filespec] was added
11075:
11076: * src/types/pa_vconsole.h: - little optimization
11077:
11078: * src/classes/file.C: - ^file:base64[filespec]
11079:
11080: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
11081:
11082: * src/include/pa_common.h: - declarations for
11083: ^file:base64[filespec]
11084:
11085: * src/types/pa_vcookie.C: - little optimization
11086:
11087: 2007-02-06 misha
11088:
11089: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
11090: were temporary commented
11091:
11092: * src/types/pa_vbool.h: - bugfix
11093:
11094: * tests/156.html: - added test for bool cookie
11095:
11096: * src/types/pa_vcookie.h: - not needed string "cookie" removed
11097:
11098: * tests/: 155.html, results/155.processed: - added test for check
11099: $.encloser[] option for table save/load
11100:
11101: * tests/: 153.html, 154.html, todo.txt: - two more tests added
11102:
11103: 2007-02-05 misha
11104:
11105: * tests/results/152.processed: - newline at the end was missed
11106:
11107: * tests/results/141.processed: - math:md5 must be lowercased
11108:
11109: * src/targets/cgi/parser3.C: - 2007 in help ;)
11110:
11111: 2007-02-03 misha
11112:
11113: * tests/results/: 150.processed, 151.processed, 152.processed: -
11114: test for bool added and some content length fixes
11115:
11116: * tests/152.html: - test for bool added
11117:
11118: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
11119:
11120: * operators.txt: - info bool class was added
11121:
1.116 moko 11122: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 11123: classes/classes.vcproj, classes/double.C, classes/int.C,
11124: classes/string.C, classes/void.C, classes/xnode.C,
11125: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
11126: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
11127: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
11128: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11129: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
11130: types/types.vcproj: - bool class was added
11131:
11132: * src/main/pa_request.C: - fix
11133:
11134: 2007-01-18 misha
11135:
11136: * src/: main/pa_string.C, classes/string.C: - return table during
11137: ^string.match[][] even if no matched found.
11138:
11139: 2006-12-20 misha
11140:
11141: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
11142: http://www.parser.ru/forum/?id=55598 ]
11143:
11144: 2006-12-19 misha
11145:
11146: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
11147: details: http://www.parser.ru/forum/?id=52359
11148:
11149: * src/main/pa_request.C: - always set content-disposition for
11150: $response:body[hash here]. more details:
11151: http://www.parser.ru/forum/?id=52130
11152:
11153: 2006-12-07 misha
11154:
11155: * operators.txt: - added info about bool params in cookie set
11156:
11157: * src/types/pa_vcookie.C: - bool param in cookies available now
11158: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
11159: ]
11160:
11161: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
11162: was added
11163:
11164: 2006-12-02 misha
11165:
11166: * src/classes/file.C: - file_block_read used instead of native read
11167:
11168: * src/main/pa_common.C: - added file_block_read with read error
11169: detection - file_block_read used instead of native read
11170:
11171: * src/include/pa_common.h: - added file_block_read declaration
11172:
11173: 2006-12-01 misha
11174:
11175: * operators.txt: - info about $var.CLASS_NAME was added
11176:
11177: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
11178: $var.CLASS_NAME added
11179:
11180: * operators.txt: - added info about ^file:copy[]
11181:
11182: * src/classes/file.C: - ^file:copy[from;fo] was added
11183:
11184: 2006-11-20 misha
11185:
11186: * src/classes/date.C: - bug fix :)
11187:
11188: 2006-11-17 misha
11189:
11190: * src/include/pa_common.h: - array in crc32 calculation was changed
11191: to static
11192:
11193: * src/main/pa_common.C: - little optimization in getMonthDays -
11194: small changes in crc32 calculation
11195:
11196: * src/classes/date.C: - not needed code was removed
11197:
11198: 2006-11-16 misha
11199:
11200: * src/types/pa_vmail.C: - fix missed brakes
11201:
11202: * src/types/pa_vmail.C: - mail:send now set content-type:
11203: multipart/related instead of multipart/mixed if file have
11204: $.content-id[]
11205:
11206: 2006-11-15 misha
11207:
11208: * src/types/pa_vdouble.h: abs -> fabs
11209:
11210: 2006-11-14 misha
11211:
11212: * operators.txt: - added info about ^file.md5[] and
11213: ^file:md5[file-name]
11214:
11215: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
11216: added
11217:
11218: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
11219: FILE_BUFFER_SIZE
11220:
11221: * src/classes/math.C: - hex_string was moved to pa_common.h
11222:
11223: * src/include/pa_common.h: - hex_string was moved from math.C -
11224: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
11225:
11226: * src/types/pa_vdouble.h: - incorrect frac detection with negative
11227: values was fixed
11228:
11229: 2006-11-13 misha
11230:
11231: * operators.txt: - added info about ^math:crc32[string],
11232: ^file:crc32[file-name] & ^file.crc32[]
11233:
11234: * src/classes/math.C: - added ^math:crc32[string]
11235:
11236: * src/classes/file.C: - some comments were changed - added
11237: ^file:crc32[file-name] and ^file.crc32[]
11238:
11239: * src/: include/pa_common.h, main/pa_common.C: - some functions for
11240: crc32 calculation added
11241:
11242: 2006-11-03 misha
11243:
11244: * src/include/pa_array.h: - not needed variable removed
11245:
11246: * tests/: 150.html, 151.html, results/150.processed,
11247: results/151.processed: - 2 tests were added
11248:
11249: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
11250: with $.reverse(1) were fixed
11251:
11252: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
11253: query converted to $.charset during ^file::load[http://...]
11254:
11255: 2006-11-02 misha
11256:
11257: * src/include/pa_table.h: ups. forget '=' char
11258:
11259: * src/include/pa_table.h: - one more fix in
11260: .locate[...][$.reverse(1)]
11261:
11262: 2006-11-01 misha
11263:
11264: * src/classes/math.C: - bug fix, details:
11265: http://www.parser.ru/forum/?id=53360
11266:
11267: * src/include/pa_table.h: - bug fix during ^table.locate( condition
11268: false for all records )[$.reverse(1)]
11269:
11270: * src/main/pa_http.C: - second param for this mid method is length
11271: but not end_index so this method has error and can't detect
11272: charsets in next content-types: Content-type: text/html;
11273: charset="windows-1251" Content-type: text/html;
11274: charset="windows-1251"; Content-type: text/html;
11275: charset=windows-1251;
11276:
11277: only Content-type: text/html; charset=windows-1251 was fine
11278:
11279: 2006-10-31 misha
11280:
11281: * src/classes/file.C: - empty args in file::exec removed now
11282:
11283: 2006-09-03 paf
11284:
11285: * src/classes/file.C: proper tainting of
11286: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
11287:
11288: 2006-06-09 paf
11289:
11290: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
11291:
11292: * src/classes/table.C: formatting
11293:
11294: * src/classes/table.C: incorporated patch from misha: Sent:
11295: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
11296: ignoring string options for ^table.save[]
11297:
11298: * src/classes/hash.C: incorporated patch from misha Sent:
11299: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
11300: $hash._default disappear while
11301:
11302: * operators.txt: ^mail:send[ $.file1[ $.value[file]
11303: $.format[!uue|!base64] << new base64 option. default uue ] ]
11304:
11305: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
11306: PM Subject: patch for base64 in ^mail:send[] %-)
11307:
11308: 2006-04-09 paf
11309:
11310: * src/main/compile.tab.C: ` change compiled
11311:
11312: * gnu.vcproj, operators.txt, parser3.sln,
11313: src/classes/classes.vcproj, src/classes/file.C,
11314: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
11315: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
11316: src/classes/xnode.C, src/include/pa_array.h,
11317: src/include/pa_config_fixed.h, src/include/pa_dir.h,
11318: src/include/pa_memory.h, src/include/pa_request.h,
11319: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
11320: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
11321: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
11322: src/lib/pcre/pcre_dftables.vcproj,
11323: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
11324: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
11325: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
11326: src/main/pa_cache_managers.C, src/main/pa_charset.C,
11327: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
11328: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
11329: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
11330: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
11331: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
11332: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
11333: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11334: src/types/pa_value.h, src/types/pa_vcookie.C,
11335: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
11336: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11337: src/types/pa_vstatus.C, src/types/types.vcproj,
11338: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
11339: ^menu, ^hash/hashfile.foreach
11340:
11341: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
11342: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
11343: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
11344: src/classes/xnode.C, src/include/pa_array.h,
11345: src/include/pa_config_fixed.h, src/include/pa_dir.h,
11346: src/include/pa_memory.h, src/include/pa_request.h,
11347: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
11348: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
11349: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
11350: src/lib/pcre/pcre_dftables.vcproj,
11351: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
11352: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
11353: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
11354: src/main/pa_cache_managers.C, src/main/pa_charset.C,
11355: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
11356: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
11357: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
11358: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
11359: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
11360: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
11361: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
11362: src/types/pa_value.h, src/types/pa_vcookie.C,
11363: src/types/pa_vmail.C, src/types/pa_vresponse.C,
11364: src/types/pa_vstatus.C, src/types/types.vcproj,
11365: tests/descript.ion: ! switched to VS2005 (projects and
11366: object<info explicitly typed>.for_each(, info)) +
11367: $response:field[] setting void means removing + grammar $name`
11368: name stops now, for mysql `$field` + started ^break[]
11369: ^continue[], in ^for. TODO: to other iterators (while, menu,
11370: foreach) + all log messages += [uri=, method=, cl=]
11371:
11372: * buildall-with-xml: merged . ftp paths update
11373:
11374: * buildall-with-xml: . ftp paths update
11375:
11376: 2006-03-04 paf
11377:
11378: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
11379: checks++ [thanks to Igor Zinkovsky for detailed report]
11380:
11381: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
11382: Igor Zinkovsky for detailed report]
11383:
11384: 2006-03-01 paf
11385:
11386: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11387: \n to ' ' in
11388:
11389: 2006-02-18 paf
11390:
11391: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
11392: \n to ' ' in
11393:
11394: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
11395:
11396: 2006-02-03 paf
11397:
11398: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
11399: base64
11400:
11401: * src/main/pa_common.C: ! bugfix: decoding from base64
11402:
11403: 2006-01-20 paf
11404:
11405: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11406: economy fix
11407:
11408: * src/classes/: table.C: merged from HEAD ! bugfix
11409: ^table.save[$.encloser-s now handled properly
11410:
11411: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
11412: handled properly
11413:
11414: 2006-01-19 paf
11415:
11416: * buildall-with-xml, buildall-without-xml: merged from HEAD !
11417: libgc:USE_MUNMAP activates merging of free memory blocks which
11418: helps a lot in our case: after transform we want
11419: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
11420:
11421: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
11422: economy fix
11423:
11424: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
11425: activates merging of free memory blocks which helps a lot in our
11426: case: after transform we want CORD(main.result)->cstr[big
11427: malloc]->transcode[big malloc]
11428:
11429: 2006-01-17 paf
11430:
11431: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
11432: before reading them. got rid of reallocs = became quicker and
11433: less fragmentated
11434:
11435: 2005-12-29 paf
11436:
1.116 moko 11437: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
11438: configure, configure.in, src/include/pa_version.h,
11439: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 11440: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
11441: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
11442: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
11443: src/lib/ltdl/missing: . merged from 3.2.1
11444:
1.116 moko 11445: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
11446: packaged when 'make dist', so do configure companion files in
11447: src/lib/ltdl
11448:
11449: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
11450: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
11451: missing: . now config_auto.h is created with configure [were
11452: constant]
1.95 moko 11453:
11454: * INSTALL: . references to documentation and some clarification
11455:
11456: * buildall-with-xml, buildall-without-xml: . farawell doc
11457: indication
11458:
1.116 moko 11459: * Makefile.am: . dist+=buildall*
1.95 moko 11460:
11461: 2005-12-28 paf
11462:
11463: * configure: . 3.2.1
11464:
11465: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
11466: simplify build process, see INSTALL
11467:
11468: 2005-12-26 paf
11469:
11470: * configure: ver
11471:
11472: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
11473: version
11474:
11475: 2005-12-21 paf
11476:
11477: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
11478: compiled with bison 1.875b, it reports unexpected token names
11479:
11480: 2005-12-19 paf
11481:
11482: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
11483: holds a link to xmlNode to prevent premature gc(xmlNode)
11484:
11485: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
11486: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
11487: src/main/main.vcproj, src/main/pa_globals.C,
11488: src/targets/cgi/parser3.vcproj,
11489: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
11490: configure, configure.in, src/include/pa_version.h: . killing
11491: gdome [what a relief]
11492:
11493: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
11494: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
11495: run_parser.sh, results/001.processed, results/002.processed,
11496: results/003.processed, results/004.processed,
11497: results/005.processed, results/006.processed,
11498: results/008.processed, results/009.processed,
11499: results/010.processed, results/011.processed,
11500: results/012.processed, results/013.processed,
11501: results/014.processed, results/015.processed,
11502: results/016.processed, results/017.processed,
11503: results/018.processed, results/020.processed,
11504: results/021.processed, results/022.processed,
11505: results/023.processed, results/024.processed,
11506: results/025.processed, results/026.processed,
11507: results/027.processed, results/028.processed,
11508: results/029.processed, results/030.processed,
11509: results/031.processed, results/032.processed,
11510: results/033.processed, results/034.processed,
11511: results/035.processed, results/036.processed,
11512: results/037.processed, results/038.processed,
11513: results/039.processed, results/040.processed,
11514: results/041.processed, results/042.processed,
11515: results/043.processed, results/044.processed,
11516: results/045.processed, results/046.processed,
11517: results/047.processed, results/048.processed,
11518: results/049.processed, results/050.processed,
11519: results/051.processed, results/052.processed,
11520: results/053.processed, results/054.processed,
11521: results/055.processed, results/056.processed,
11522: results/057.processed, results/058.processed,
11523: results/059.processed, results/060.processed,
11524: results/061.processed, results/062.processed,
11525: results/063.processed, results/064.processed,
11526: results/065.processed, results/066.processed,
11527: results/067.processed, results/068.processed,
11528: results/069.processed, results/070.processed,
11529: results/071.processed, results/072.processed,
11530: results/073.processed, results/074.processed,
11531: results/075.processed, results/076.processed,
11532: results/077.processed, results/078.processed,
11533: results/079.processed, results/080.processed,
11534: results/081.processed, results/082.processed,
11535: results/083.processed, results/084.processed,
11536: results/085.processed, results/086.processed,
11537: results/087.processed, results/088.processed,
11538: results/089.processed, results/090.processed,
11539: results/091.processed, results/092.processed,
11540: results/093.processed, results/094.processed,
11541: results/095.processed, results/096.processed,
11542: results/097.processed, results/099.processed,
11543: results/100.processed, results/101.processed,
11544: results/102.processed, results/104.processed,
11545: results/105.processed, results/106.processed,
11546: results/107.processed, results/108.processed,
11547: results/109.processed, results/110.processed,
11548: results/111.processed, results/112.processed,
11549: results/113.processed, results/114.processed,
11550: results/115.processed, results/117.processed,
11551: results/119.processed, results/120.processed,
11552: results/121.processed, results/122.processed,
11553: results/123.processed, results/124.processed,
11554: results/125.processed, results/126.processed,
11555: results/127.processed, results/128.processed,
11556: results/129.processed, results/130.processed,
11557: results/131.processed, results/132.processed,
11558: results/133.processed, results/134.processed,
11559: results/135.processed, results/136.processed,
11560: results/138.processed, results/139.processed,
11561: results/140.processed, results/141.processed,
11562: results/142.processed, results/143.processed,
11563: results/144.processed, results/145.processed,
11564: results/146.processed, results/147.processed,
11565: results/148.processed, results/149.processed, results/auto.p: .
11566: now works if we turn off default auto.p
11567:
1.116 moko 11568: * configure: . makes
1.95 moko 11569:
11570: * src/types/pa_vxnode.C: . less warnings
11571:
11572: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
11573: tests/145.html, tests/149.html, tests/descript.ion,
11574: tests/outputs/d.cmd, tests/results/142.processed,
11575: tests/results/143.processed, tests/results/144.processed,
11576: tests/results/145.processed, tests/results/146.processed,
11577: tests/results/147.processed, tests/results/148.processed,
11578: tests/results/149.processed: . removed .nodeValue from all node
11579: types other than 5 (grabbed piece from gdome)
11580:
11581: * tests/: 137.html, results/137.processed: . not handled this case
11582: yet. code does not hang from inserting parent into child,
11583: considering thing minor issue -- nodes are removed from source
11584: anyway, don't know why shold that be an error after all
11585:
11586: * src/targets/cgi/parser3.C: . style
11587:
11588: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
11589: xdoc too [were barking "not element"]
11590:
11591: 2005-12-16 paf
11592:
11593: * tests/: 146.html, 147.html, 148.html: . more tests
11594:
11595: * src/classes/xnode.C: . also bark on possible errors
11596:
11597: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
11598: props
11599:
11600: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
11601: main/compile.y: merged from HEAD ! fixed overoptimized
11602: ^call(false) case. (confused it with ^call[] case)
11603:
11604: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
11605: ^call(false) case. (confused it with ^call[] case)
11606:
11607: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
11608:
11609: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
11610: results/001.processed, results/002.processed,
11611: results/003.processed, results/004.processed,
11612: results/005.processed, results/006.processed,
11613: results/008.processed, results/009.processed,
11614: results/010.processed, results/011.processed,
11615: results/012.processed, results/013.processed,
11616: results/014.processed, results/015.processed,
11617: results/016.processed, results/017.processed,
11618: results/018.processed, results/019.processed,
11619: results/020.processed, results/021.processed,
11620: results/022.processed, results/023.processed,
11621: results/024.processed, results/025.processed,
11622: results/026.processed, results/027.processed,
11623: results/028.processed, results/029.processed,
11624: results/030.processed, results/031.processed,
11625: results/032.processed, results/033.processed,
11626: results/034.processed, results/035.processed,
11627: results/036.processed, results/037.processed,
11628: results/038.processed, results/039.processed,
11629: results/040.processed, results/041.processed,
11630: results/042.processed, results/043.processed,
11631: results/044.processed, results/045.processed,
11632: results/046.processed, results/047.processed,
11633: results/048.processed, results/049.processed,
11634: results/050.processed, results/051.processed,
11635: results/052.processed, results/053.processed,
11636: results/054.processed, results/055.processed,
11637: results/056.processed, results/057.processed,
11638: results/058.processed, results/059.processed,
11639: results/060.processed, results/061.processed,
11640: results/062.processed, results/063.processed,
11641: results/064.processed, results/065.processed,
11642: results/066.processed, results/067.processed,
11643: results/068.processed, results/069.processed,
11644: results/070.processed, results/071.processed,
11645: results/072.processed, results/073.processed,
11646: results/074.processed, results/075.processed,
11647: results/076.processed, results/077.processed,
11648: results/078.processed, results/079.processed,
11649: results/080.processed, results/081.processed,
11650: results/082.processed, results/083.processed,
11651: results/084.processed, results/085.processed,
11652: results/086.processed, results/087.processed,
11653: results/088.processed, results/089.processed,
11654: results/090.processed, results/091.processed,
11655: results/092.processed, results/093.processed,
11656: results/094.processed, results/095.processed,
11657: results/096.processed, results/097.processed,
11658: results/099.processed, results/101.processed,
11659: results/102.processed, results/104.processed,
11660: results/105.processed, results/106.processed,
11661: results/107.processed, results/108.processed,
11662: results/109.processed, results/110.processed,
11663: results/111.processed, results/112.processed,
11664: results/113.processed, results/114.processed,
11665: results/115.processed, results/116.processed,
11666: results/117.processed, results/118.processed,
11667: results/119.processed, results/120.processed,
11668: results/121.processed, results/122.processed,
11669: results/123.processed, results/124.processed,
11670: results/125.processed, results/126.processed,
11671: results/127.processed, results/128.processed,
11672: results/129.processed, results/130.processed,
11673: results/131.processed, results/132.processed,
11674: results/133.processed, results/134.processed,
11675: results/135.processed, results/136.processed,
11676: results/137.processed, results/138.processed,
11677: results/139.processed, results/140.processed,
11678: results/141.processed: . refreshed old tests, made them work
11679: without auto.p (in utf8) . things noted: . gif got encoded
11680: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
11681: some strange year)
11682:
11683: * INSTALL: . revived linux libgc fix
11684:
11685: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
11686: glib/gdome in INSTALL and patches]
11687:
11688: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11689: include/pa_charset.h, include/pa_config_includes.h,
11690: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
11691: include/pa_xml_exception.h, lib/cord/Makefile.am,
11692: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
11693: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
11694: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
11695: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
11696: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
11697: types/pa_vxnode.h: . started killing gdome
11698:
11699: 2005-12-13 paf
11700:
11701: * src/main/: pa_request.C: merged from HEAD ! when code in
11702: @unhandled_exception thrown another exception, print correct
11703: origin (earlier code in catch of exception inside of
11704: @unhandled_exception grabbed parent_frame(original_exception)
11705: origin and printed it, instead of true origin)
11706:
11707: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
11708: another exception, print correct origin (earlier code in catch of
11709: exception inside of @unhandled_exception grabbed
11710: parent_frame(original_exception) origin and printed it, instead
11711: of true origin)
11712:
11713: 2005-12-09 paf
11714:
11715: * INSTALL: . updated INSTALL doc to work around linux stack base
11716: detection problem, due to change in gc6.4 code
11717:
11718: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
11719: ignored in ^string.matched :(
11720:
11721: * src/main/pa_string.C: ! regex tainting were ignored in
11722: ^string.matched :(
11723:
11724: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
11725: src/include/pa_config_fixed.h, src/include/pa_version.h,
11726: src/main/compile.y, src/main/compile_tools.h,
11727: src/main/pa_charset.C, src/main/pa_common.C,
11728: src/main/pa_globals.C, src/main/pa_string.C,
11729: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
11730: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
11731:
11732: 2005-12-08 paf
11733:
11734: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
11735: 500 chars now handled OK [were wrapped on 500th char according to
11736: rfc, but sendmail failed to unwrap it properly]
11737:
11738: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
11739: handled OK [were wrapped on 500th char according to rfc, but
11740: sendmail failed to unwrap it properly]
11741:
11742: * src/targets/isapi/parser3isapi.C: . less warnings
11743:
11744: * src/targets/isapi/parser3isapi.C: . undone some strange change
11745: since 3.1.5
11746:
11747: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
11748: link fixes
11749:
11750: * src/: classes/date.C, include/pa_config_fixed.h,
11751: main/compile.tab.C, main/compile.y, main/compile_tools.h,
11752: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
11753: main/pa_string.C, targets/cgi/getopt.c: . less warnings
11754:
11755: * src/include/pa_config_fixed.h: . removed outdated string origins
11756: [in current storage scheme there's no place for them. someday we
11757: can add third CORD to store origins and special version of parser
11758: which stores origins there [separate binary]]
11759:
11760: 2005-12-07 paf
11761:
11762: * src/targets/isapi/parser3isapi.C: . now links in release mode
11763:
11764: * src/include/pa_version.h: makefiles
11765:
11766: * src/include/pa_version.h: . not beta
11767:
11768: * configure, configure.in, src/include/pa_version.h: not beta
11769:
11770: 2005-12-06 paf
11771:
11772: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
11773: [some details here http://i2/tasks/edit/?id=4869912143891354460]
11774: decided to undo the change ^call[$void] passes void. now it will
11775: pass empty string again.
11776:
11777: * src/main/: compile.tab.C, compile.y: . version readded
11778:
11779: * src/classes/op.C: . in this version there is no ^switch[$nothing]
11780: = ^switch[void] problem
11781:
11782: 2005-12-01 paf
11783:
11784: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
11785: caused ^case[string] to be coerced to double since searching
11786: value were not string (it was vvoid)
11787:
11788: * src/classes/op.C: . bugfix ^switch[$void_value] caused
11789: ^case[string] to be coerced to double since searching value were
11790: not string (it was vvoid)
11791:
11792: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
11793: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
11794:
11795: 2005-11-30 paf
11796:
11797: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
11798: win32 must putenv("TZ="), on unix works only putenv("TZ")
11799:
11800: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
11801: putenv("TZ="), on unix works only putenv("TZ")
11802:
11803: * INSTALL: . xml libs versions updated
11804:
11805: * src/main/pa_globals.C: //20051130 trying to remove this, author
11806: claims that fixed a lot there // 20040920 for now both
11807: workarounds needed. wait for new libxml/xsl versions
11808:
11809: 2005-11-28 paf
11810:
11811: * src/classes/table.C: merged from HEAD: ! nameless table has
11812: columns==0
11813:
11814: * src/classes/table.C: ! nameless table has columns==0
11815:
11816: * src/main/pa_http.C: merged from HEAD: ! status line check made
11817: earlier [was totally wrong]
11818:
11819: * src/main/pa_http.C: ! status line check made earlier [was totally
11820: wrong]
11821:
11822: 2005-11-25 paf
11823:
11824: * src/include/pa_array.h: -this reduces speed(table::load) strange.
11825: undoing for now...
11826:
11827: * src/include/pa_version.h: -this reduces speed(table::load),
11828: strange. undoing
11829:
11830: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
11831:
11832: * src/classes/op.C: + ^while(){}[SEPARATOR]
11833:
11834: * src/include/pa_array.h: + optimistics added: all arrays (table
11835: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
11836: this speeds things up and saves memory a LOT! (not noticed
11837: negative effect on syntetic tests, future will tell...)
11838:
11839: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
11840: changed gc_malloc implementation, which obscured profiling
11841:
11842: * src/classes/table.C: merged from HEAD: + optimized
11843: table::load/sql, now row ArrayString-s allocated with
11844: columns.count() elements and don't always grow from
11845: count=3[realloc,realloc]
11846:
11847: * src/classes/table.C: + optimized table::load/sql, now row
11848: ArrayString-s allocated with columns.count() elements and don't
11849: always grow from count=3[realloc,realloc]
11850:
11851: * src/classes/table.C: merged from HEAD: . ^table.save unused
11852: buffer after save
11853:
11854: * src/classes/table.C: . ^table.save unused buffer after save
11855:
11856: 2005-11-24 paf
11857:
11858: * configure.in: . merged glib2-config patch
11859:
11860: * configure.in: + trying to find glib2-config
11861:
11862: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11863: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
11864: file/dir_readable to simple file/dir_exist, this would help in
11865: situations "class not found because .p file has bad rights" << in
11866: that case error would be explicit "access denied to 'this' file"
11867:
1.116 moko 11868: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 11869:
11870: * src/: classes/file.C, include/pa_common.h, main/execute.C,
11871: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
11872: to simple file/dir_exist, this would help in situations "class
11873: not found because .p file has bad rights" << in that case error
11874: would be explicit "access denied to 'this' file"
11875:
11876: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
11877: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11878: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
11879: ^file::exec/cgi[script;$.charset[changed]
11880: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11881: encoded in $.charset charset
11882:
11883: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
11884: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
11885: encoded in $.charset charset
11886:
11887: * src/: include/Makefile.am, include/pa_common.h,
11888: include/pa_http.h, main/Makefile.am, main/main.vcproj,
11889: main/pa_common.C, main/pa_http.C: . extracted http:// into
11890: separate file [preparation for
11891: ^file::cgi[script;$.form[$.field1[]
11892:
11893: 2005-11-22 paf
11894:
11895: * src/: include/pa_version.h, main/compile.tab.C: makefiles
11896:
11897: * acinclude.m4, configure.in: . merged underquting fixes
11898:
1.116 moko 11899: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11900:
11901: * src/classes/op.C: . overmerged a little
11902:
11903: * src/main/compile.tab.C: Makefile
11904:
11905: * src/main/: pa_common.C: . less gcc warnings
11906:
11907: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11908: now reports original exception if we have no old cache
11909:
11910: * src/classes/op.C: + $exception.handled[cache] now reports
11911: original exception if we have no old cache
11912:
11913: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11914: from HEAD: + ^taint/untaint[regex] << escapes these:
11915: \^$.[]|()?*+{}
11916:
11917: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11918: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11919:
11920: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11921: getenv-ed variable, which does not work both on win32&unix.
11922: copied old TZ value now
11923:
11924: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11925: stored pointer to getenv-ed variable, which does not work both on
11926: win32&unix. copied old TZ value now
11927:
11928: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11929: getenv-ed variable, which does not work both on win32&unix.
11930: copied old TZ value now
11931:
11932: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11933: access to internal hash
11934:
11935: * src/types/pa_vresponse.C: + $response:headers access to internal
11936: hash
11937:
11938: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11939: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11940: isapi] this reduces number of "GC Warning: Repeated allocation of
11941: very large block" messages to only important onces
11942:
11943: * src/targets/isapi/parser3isapi.C: +
11944: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11945: isapi] this reduces number of "GC Warning: Repeated allocation of
11946: very large block" messages to only important onces
11947:
11948: * src/classes/string.C: merged from HEAD: + removed limitation on
11949: ^string/int/double:sql{}[$.default[({param style})] ]
11950:
11951: * src/classes/string.C: + removed limitation on
11952: ^string/int/double:sql{}[$.default[({param style})] ]
11953:
11954: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11955: with ?params or $.form option" limitation
11956:
11957: * src/main/pa_common.C: + removed "use either uri with ?params or
11958: $.form option" limitation
11959:
11960: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11961: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11962: ^file::base64[encoded] decode
11963:
11964: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11965: main/pa_common.C: + ^file.base64[] encode +
11966: ^file::base64[encoded] decode
11967:
11968: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11969: ^string:base64[encoded] decode
11970:
11971: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11972: ^string:base64[in] encode + ^string.base64[] decode
11973:
11974: 2005-11-21 paf
11975:
11976: * src/classes/file.C: + merged from HEAD:
11977: ^file::create[text;file.xml;^untaint[xml]{data}]
11978:
11979: * src/classes/file.C: +
11980: ^file::create[text;file.xml;^untaint[xml]{data}]
11981:
11982: * src/main/pa_request.C: ! merged: $response:body[file] now
11983: differes from :download, it does not return content-disposition
11984: at all now [previusely it returned valueless content-disposition]
11985:
11986: * src/main/pa_request.C: ! $response:body[file] now differes from
11987: :download, it does not return content-disposition at all now
11988: [previusely it returned valueless content-disposition]
11989:
11990: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11991: literals, reverted to just vvod, recreating empty array with each
11992: void_value token. that's absolutely needed, since that array
11993: grows
11994:
11995: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11996: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11997: types/pa_vmethod_frame.h: + merged: expression literals:
11998: true/false. ^format[$.indent(true)]
11999:
12000: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
12001: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
12002: types/pa_vmethod_frame.h: + expression literals: true/false.
12003: ^format[$.indent(true)]
12004:
12005: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
12006: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
12007: i386-pc-win32)"
12008:
12009: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
12010: $env:PARSER_VERSION reports "3.1.5beta (compiled on
12011: i386-pc-win32)"
12012:
12013: 2005-11-18 paf
12014:
12015: * src/classes/: double.C, int.C: ! ^int/double:sql{select
12016: null}[$.default(123)] will now return default value
12017:
12018: * src/classes/op.C: + merged ^cache[] << returns current cache
12019: expiration time
12020:
12021: * src/classes/op.C: + ^cache[] << returns current cache expiration
12022: time
12023:
12024: * src/classes/table.C: ! merged ^table::create[not'nameless';
12025: failed << Exception.problem_source pointed to local var!
12026:
12027: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
12028: Exception.problem_source pointed to local var!
12029:
12030: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
12031: now loads VFile.ptr!=0, so such files can be saved now
12032:
12033: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
12034: loads VFile.ptr!=0, so such files can be saved now
12035:
12036: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
12037: only . and .. now removed from list [were removed all .*]
12038:
12039: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
12040: .. now removed from list [were removed all .*]
12041:
12042: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
12043: open error now checked, were not :( [stole that piece from apache
12044: 1.3 sources]
12045:
12046: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
12047: checked, were not :( [stole that piece from apache 1.3 sources]
12048:
12049: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
12050: untainting of @main result if returned by $result or
12051: $response:body
12052:
12053: * src/main/pa_request.C: ! ensured proper untainting of @main
12054: result if returned by $result or $response:body
12055:
12056: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
12057: issue: now tries to guess content-length and allocates one big
12058: piece if possible [regretfully gc_realloc works as malloc+free,
12059: leaving lots of holes behind]
12060:
12061: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
12062: fixed file load memory issue: now tries to guess content-length
12063: and allocates one big piece if possible [regretfully gc_realloc
12064: works as malloc+free, leaving lots of holes behind]
12065:
12066: 2005-11-16 paf
12067:
12068: * src/: include/pa_common.h, classes/file.C, classes/table.C,
12069: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
12070: table::save with enclosers now doubles them: "->"" !
12071: table::save/load do not remove elements from options hash
12072:
12073: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
12074: [were overoptimized ^if(double_literal), compiler confused
12075: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
12076:
12077: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
12078: [were overoptimized ^if(double_literal), compiler confused
12079: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
12080:
12081: * src/: classes/file.C, classes/table.C, include/pa_common.h,
12082: main/pa_common.C: ! table::save with enclosers now doubles them:
12083: "->"" ! table::save/load do not remove elements from options hash
12084:
12085: 2005-11-03 paf
12086:
1.116 moko 12087: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
12088: compilation, not all makefiles liked that
1.95 moko 12089:
12090: 2005-08-30 paf
12091:
12092: * src/classes/op.C: merge . speedup check of [DEFAULT]
12093:
12094: * src/classes/op.C: . speedup check of [DEFAULT]
12095:
12096: 2005-08-26 paf
12097:
12098: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
12099:
12100: * src/: classes/date.C, types/pa_vdate.h: + date.week
12101:
12102: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
12103: complains about bad!=nameless
12104:
12105: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
12106: about bad!=nameless
12107:
12108: * src/classes/: hash.C, string.C, table.C, void.C: merged !
12109: optional options were allowed to be empty. were checked
12110: if(is_string), changed to !defined||is_string to allow void
12111:
12112: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
12113: classes/string.C, classes/table.C, classes/void.C: ! optional
12114: options were allowed to be empty. were checked if(is_string),
12115: changed to !defined||is_string to allow void
12116:
12117: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
12118: as_junction where they needed as_int/double, so failed with
12119: recent "(const) now no junction" optimization
12120:
12121: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
12122: merged ! many classes/* used as_junction where they needed
12123: as_int/double, so failed with recent "(const) now no junction"
12124: optimization
12125:
12126: * src/: classes/double.C, classes/int.C, classes/math.C,
12127: classes/op.C, classes/string.C, classes/table.C,
12128: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
12129: used as_junction where they needed as_int/double, so failed with
12130: recent "(const) now no junction" optimization
12131:
12132: 2005-08-24 paf
12133:
12134: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
12135: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
12136: stripped it
12137:
12138: 2005-08-09 paf
12139:
12140: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
12141: not cleared
12142:
12143: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12144: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12145: classes/hashfile.C, classes/image.C, classes/int.C,
12146: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12147: classes/response.C, classes/string.C, classes/table.C,
12148: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12149: include/pa_array.h, include/pa_cache_managers.h,
12150: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12151: include/pa_config_fixed.h, include/pa_config_includes.h,
12152: include/pa_dictionary.h, include/pa_dir.h,
12153: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12154: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12155: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12156: include/pa_request_charsets.h, include/pa_request_info.h,
12157: include/pa_sapi.h, include/pa_socks.h,
12158: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12159: include/pa_stack.h, include/pa_string.h,
12160: include/pa_stylesheet_connection.h,
12161: include/pa_stylesheet_manager.h, include/pa_table.h,
12162: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12163: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12164: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12165: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12166: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12167: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12168: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12169: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12170: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12171: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12172: main/pa_sql_driver_manager.C, main/pa_string.C,
12173: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
12174: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
12175: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
12176: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
12177: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12178: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
12179: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
12180: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
12181: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
12182: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
12183: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
12184: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
12185: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12186: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
12187: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
12188: types/pa_vmemory.h, types/pa_vmethod_frame.C,
12189: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12190: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
12191: types/pa_vresponse.C, types/pa_vresponse.h,
12192: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12193: types/pa_vstateless_object.h, types/pa_vstatus.C,
12194: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
12195: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
12196: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12197: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12198: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
12199:
12200: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
12201: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
12202: speedup consequent checks in vmethod_frame
12203:
12204: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
12205: not cleared
12206:
12207: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
12208: params: 50 max (were 10)
12209:
12210: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
12211: params: 50 max (were 10)
12212:
12213: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
12214: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
12215: pa_wcontext.h: + ^call[$void] param inside now is void (were:
12216: empty string) ! simplified (double) speedup consequent checks in
12217: vmethod_frame
12218:
12219: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
12220: optimized constants in expressions vstring->vdouble + optimized
12221: ^call(vdouble), no junction creation, no calls later
12222:
12223: 2005-08-08 paf
12224:
12225: * src/main/: compile.tab.C, compile.y, compile_tools.C,
12226: compile_tools.h: merged + optimized constants in expressions
12227: vstring->vdouble + optimized ^call(vdouble), no junction
12228: creation, no calls later
12229:
12230: * src/types/pa_vdouble.h: merged . double values without fractional
12231: part now default printed as %.0f instead of %g
12232:
12233: * src/types/pa_vdouble.h: . double values without fractional part
12234: now default printed as %.0f instead of %g
12235:
12236: * src/classes/hashfile.C: . merged ! second hashfile::open would
12237: cause an exception
12238:
12239: * src/classes/hashfile.C: ! second hashfile::open would cause an
12240: exception
12241:
12242: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
12243: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12244: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12245: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12246: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
12247: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12248: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12249: types/pa_vresponse.h, types/pa_vstateless_class.C,
12250: types/pa_vstateless_object.h, types/pa_vvoid.h,
12251: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
12252: merged VJunction(new Junction) optimization from 3.1.4
12253:
12254: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
12255: types/pa_vstateless_class.C: + optimized new VJunction(new
12256: Junction(params)) to new VJunction(params), thousands of mallocs
12257: removed
12258:
12259: 2005-08-05 paf
12260:
12261: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
12262: types/pa_vdouble.h, types/pa_vmethod_frame.C,
12263: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
12264: creation, no calls later
12265:
12266: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12267: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12268: classes/hashfile.C, classes/image.C, classes/int.C,
12269: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12270: classes/response.C, classes/string.C, classes/table.C,
12271: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12272: include/pa_array.h, include/pa_cache_managers.h,
12273: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12274: include/pa_config_fixed.h, include/pa_config_includes.h,
12275: include/pa_dictionary.h, include/pa_dir.h,
12276: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12277: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12278: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12279: include/pa_request_charsets.h, include/pa_request_info.h,
12280: include/pa_sapi.h, include/pa_socks.h,
12281: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12282: include/pa_stack.h, include/pa_string.h,
12283: include/pa_stylesheet_connection.h,
12284: include/pa_stylesheet_manager.h, include/pa_table.h,
12285: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12286: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12287: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12288: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12289: lib/smtp/smtp.h, main/compile.C, main/compile.y,
12290: main/compile_tools.C, main/compile_tools.h, main/execute.C,
12291: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
12292: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
12293: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
12294: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
12295: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
12296: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
12297: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
12298: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
12299: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
12300: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12301: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12302: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12303: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12304: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12305: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12306: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12307: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
12308: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
12309: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
12310: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
12311: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
12312: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12313: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12314: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12315: types/pa_vstateless_object.h, types/pa_vstatus.C,
12316: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
12317: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
12318: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12319: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12320: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
12321:
12322: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
12323: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
12324: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
12325: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
12326: main/compile.y, main/compile_tools.C, main/compile_tools.h,
12327: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
12328: optimized constants in expressions vstring->vdouble
12329:
12330: 2005-07-29 paf
12331:
12332: * src/types/pa_vclass.C: . shaped up error messages a bit
12333:
12334: * src/types/pa_vclass.C: + property getter can now be overridden
12335:
12336: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
12337: bug fix: static parent fields were not replaced in case
12338: $derived:field[put] + property setter can now be overridden
12339:
12340: 2005-07-28 paf
12341:
12342: * configure, configure.in, src/classes/classes.h,
12343: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
12344: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
12345: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
12346: src/classes/xnode.h, src/include/pa_hash.h,
12347: src/include/pa_version.h, src/main/execute.C,
1.116 moko 12348: src/types/Makefile.am, src/types/pa_method.h,
12349: src/types/pa_value.h, src/types/pa_vclass.C,
12350: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
12351: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
12352: src/types/pa_vcookie.h, src/types/pa_vhash.h,
12353: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
12354: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
12355: src/types/pa_vobject.C, src/types/pa_vobject.h,
12356: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
12357: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
12358: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
12359: src/types/pa_vstateless_class.h,
1.95 moko 12360: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
12361: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
12362: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
12363: dynamic_fields_join
12364:
12365: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
12366: classes/xnode.C, include/pa_hash.h, main/execute.C,
12367: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12368: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12369: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12370: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12371: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12372: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12373: types/pa_vresponse.h, types/pa_vstateless_object.h,
12374: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
12375: types/pa_wwrapper.h: ! restored put_element('replace' param), and
12376: restored its checks in vobject.put_element->static fields |
12377: dynamic properties
12378:
12379: 2005-07-27 paf
12380:
12381: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
12382: is some old code containing @set_name $name
12383:
12384: * src/types/pa_vobject.h: . fixed warning
12385:
12386: * configure, configure.in, src/include/pa_version.h,
1.116 moko 12387: src/types/Makefile.am: 3.2.0beta started
1.95 moko 12388:
12389: * src/: classes/xnode.C, include/pa_hash.h,
12390: types/pa_vstateless_class.C: ! new asserts were all false.
12391: regretfully reverted them all to checks
12392:
12393: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12394: classes/op.C, main/execute.C, types/pa_method.h,
12395: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12396: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12397: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12398: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12399: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12400: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12401: types/pa_vstateless_object.h, types/pa_vvoid.h,
12402: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12403: joined_dynamic_fields: removed unused param from put_method
12404: (returned to 3 params)
12405:
12406: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
12407: joined_dynamic_fields: dynamic get/set works with overriding
12408: props [alpha2]
12409:
12410: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
12411: works [alfa]
12412:
12413: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
12414: classes/op.C, include/pa_hash.h, main/execute.C,
12415: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
12416: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12417: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
12418: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
12419: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12420: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12421: types/pa_vresponse.h, types/pa_vstateless_class.C,
12422: types/pa_vstateless_object.h, types/pa_vvoid.h,
12423: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
12424: joined_dynamic_fields: just compiled
12425:
12426: * src/: classes/date.C, classes/file.C, classes/hash.C,
12427: classes/hashfile.C, classes/image.C, classes/table.C,
12428: classes/xdoc.C, classes/xnode.h, main/execute.C,
12429: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
12430: types/pa_vstateless_class.h: joined_dynamic_fields: started
12431:
12432: * src/types/pa_vobject.C: . object setters [only started, does not
12433: work yet]
12434:
12435: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
12436: object setters [only started, does not work yet]
12437:
12438: 2005-07-26 paf
12439:
12440: * src/: include/pa_request.h, main/execute.C: . properties: set
12441: works [alpha2]. for classes. todo: for objects
12442:
12443: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
12444: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
12445: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12446: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
12447: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
12448: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
12449: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
12450: types/pa_vstateless_object.h, types/pa_vvoid.h,
12451: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
12452: properties: set works [alpha1]
12453:
12454: 2005-07-25 paf
12455:
12456: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
12457: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
12458: properties: started, get works [alpha1, other approach]
12459:
12460: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
12461: properties: started, get works [alpha2]
12462:
12463: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
12464: pa_vstateless_class.h: . properties: started, get works [alpha]
12465:
12466: 2005-07-15 paf
12467:
12468: * src/: classes/classes.h, classes/op.C, main/execute.C,
12469: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
12470: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
12471: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
12472: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12473: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
12474: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
12475: types/pa_vresponse.C, types/pa_vresponse.h,
12476: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
12477: types/pa_vstateless_object.h, types/pa_vvoid.h,
12478: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
12479: types/pa_wwrapper.h, types/types.vcproj: + started property
12480: [getters work but think of changing them too to precaching]
12481:
12482: 2005-07-08 paf
12483:
12484: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
12485: gpf
12486:
12487: 2005-06-28 paf
12488:
12489: * src/: classes/file.C, main/untaint.C: ! string invariant violated
12490: in passing empty strings to file::exec/cgi environment
12491:
12492: 2005-06-06 paf
12493:
12494: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
12495: ^table:sql ^hash:sql now DO process $.bind option
12496:
12497: 2005-05-24 paf
12498:
12499: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
12500: $.limit] now work again [support was broken in 3.1.4]
12501:
12502: * src/: main/pa_string.C, classes/op.C: . steps toward removing
12503: ALL_INTERIOR_POINTERS
12504:
12505: 2005-05-12 paf
12506:
12507: * configure: 3.1.5beta
12508:
12509: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
12510:
12511: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
12512: $.limit] now work again [support was broken in 3.1.4]
12513:
12514: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
12515: line-width [was refusing to fill if line-width >1, thanks to
12516: Seras <seras@pinxit.lt> for repro case
12517:
12518: 2005-04-25 paf
12519:
12520: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
12521: correctly
12522:
12523: 2005-04-19 paf
12524:
12525: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
12526: in VString violating invariant!!
12527:
12528: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
12529: getenv("TZ")==null
12530:
12531: 2005-04-08 paf
12532:
12533: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
12534: bugfix: when there is no char in charset one byte produces 6
12535: (ÿ <<max). increased buffer size!
12536:
12537: 2005-03-23 paf
12538:
12539: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
12540: ^date.sql-string now takes TZ into account
12541:
12542: 2005-03-16 paf
12543:
12544: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
12545: gcc 3.4
12546:
12547: * src/types/pa_vhash.C: . warning about eof eol
12548:
12549: 2005-02-17 paf
12550:
12551: * operators.txt, src/classes/op.C: + operator ^sleep(double
12552: seconds)
12553:
12554: 2005-02-02 paf
12555:
12556: * src/classes/xnode.C: beauty: removed needless includes
12557:
12558: 2005-01-31 paf
12559:
12560: * src/types/pa_vmail.C: change: $.partX now always 1... change:
12561: $.partNoNumber now alias to $.part1
12562:
12563: * src/types/pa_vmail.C: change: incoming letter part contains
12564: "content-disposition" header with any value? now considering that
12565: part to be "file#" [for text/plain text/html were $.text#
12566: $.html#]
12567:
12568: * INSTALL: updatet to latest working versions available
12569:
12570: 2005-01-20 paf
12571:
12572: * configure.in, src/include/pa_version.h: version
12573:
12574: 2005-01-19 paf
12575:
1.116 moko 12576: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
12577: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
12578: couple warnings in parser3.C
1.95 moko 12579:
12580: 2004-12-23 paf
12581:
12582: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
12583:
12584: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
12585: dir to directory of script (when shbang used), not to directory
12586: of its interpreter
12587:
12588: * src/include/pa_version.h: compiled on win32...
12589:
12590: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
12591: we need more hspace
12592:
12593: * configure, configure.in, src/include/pa_version.h: configured
12594: host to pa_version. will be displayed everywhere
12595:
12596: * src/main/pa_request.C: new: @unhandled_exception can prevent
12597: exception from being logged by setting $exception.handled(1)
12598:
12599: * operators.txt, src/classes/file.C: change:
12600: ^file::sql{query}[[options]] options: $.name[file name]
12601: $.content-type[application/what]
12602:
12603: * src/: include/pa_common.h, main/pa_common.C,
12604: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
12605: new file
12606:
12607: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
12608: bugfix: table->hash now regards _default
12609:
12610: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
12611: created by accessing $name_of_method it acquired bad self=closest
12612: methodframe; instead of proper self (current class)
12613:
12614: * src/types/pa_vhashfile.C: bugfix: reading empty string from
12615: hashfile produced bad cord
12616:
12617: 2004-12-10 paf
12618:
12619: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
12620: subsequent failures though defined in .h
12621:
12622: * src/main/pa_common.C: comment on volatile
12623:
12624: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
12625: alarm function were not used since the beginning due to stupid
12626: error [setsigjmp were not checked in configure.in]
12627:
12628: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
12629: unix too
12630:
12631: * src/main/pa_common.C: http: exception status of send/recv errors
12632: change to most probable http.timeout
12633:
12634: * src/main/pa_common.C: win32: http connection $.timeout option now
12635: works [setsockopt on send/receive]
12636:
12637: 2004-12-08 paf
12638:
12639: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
12640: cstr-ed knowing mail charset, and untainting uri lang now knows
12641: proper charset
12642:
12643: 2004-11-24 paf
12644:
12645: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
12646:
12647: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
12648: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
12649:
12650: 2004-11-12 paf
12651:
12652: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
12653: [since 3.0.4]
12654:
12655: 2004-11-09 paf
12656:
12657: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
12658: writes basics to c:\parser3.log
12659:
12660: 2004-10-21 paf
12661:
12662: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
12663: tainted strings [were returning clean onces]
12664:
12665: 2004-10-15 paf
12666:
12667: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
12668: cycles(i=1; i=2), which was wrong, now does ONE
12669:
12670: 2004-10-12 paf
12671:
12672: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
12673:
12674: 2004-10-07 paf
12675:
12676: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
12677: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
12678: release asserts
12679:
12680: * src/: main/pa_string.C, include/pa_string.h: debugger help:
12681: String.dump() to stdout in detailed form [were String.v() in
12682: short form]
12683:
12684: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
12685: \t\r\n as @#| and truncates long char sequences less
12686:
12687: 2004-10-06 paf
12688:
12689: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
12690: win32 beauty: socket errors properly decoded
12691:
12692: 2004-10-05 paf
12693:
12694: * src/: include/pa_request.h, main/pa_request.C: bugfix:
12695: request::configure_user/admin done always, even if no
12696: file-to-process useful in @unhandled_exception [say, if they
12697: would want to mail by SMTP something]
12698:
12699: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
12700: now performed prior to file loading [and @auto executing] thus
12701: making $cookie:value available in @auto and in
12702: @unhandled_exception when IIS is configured to run interpreter
12703: even if no file exist
12704:
12705: 2004-09-20 paf
12706:
12707: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
12708: somewhere where it should have called xmlMalloc and it calls
12709: xmlFree when it should have not called it. inserted two
12710: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
12711: xmlFree just ignored. put away a testcase, maybe someday libxml
12712: author would fix all that. until that day: we have SLOW garbage
12713: collecting when many xml objects are alive hint: do
12714: ^memory:compact[] before xdoc::create
12715:
12716: 2004-09-17 paf
12717:
12718: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
12719: error from 3.0.8 version]
12720:
12721: 2004-09-14 paf
12722:
12723: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
12724: part bugfix: hashfile.foreach iterated only part if hashfile were
12725: modified inside
12726:
12727: 2004-09-13 paf
12728:
12729: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
12730: [were as octal]
12731:
12732: * src/types/pa_vhashfile.C: beauty: not reproduced
12733: $hashfile.key[$novalue] bug [reported by motorin], inserted
12734: safety-check
12735:
12736: * src/types/pa_vhashfile.C: change: empty keys now error in parser
12737: [not something obscure from sdbm lib]
12738:
12739: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
12740: = strerror now returnes something and we can properly report that
12741: to client
12742:
12743: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
12744: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
12745:
12746: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12747: [tainted as-is] this helps //[space][newline] to remain as-is and
12748: not be unnecessary optimized away [ruining javascript]
12749:
12750: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
12751: [tainted as-is]
12752:
12753: * src/classes/mail.C: bugfix: typo error
12754:
12755: 2004-09-09 paf
12756:
12757: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
12758: separators bugfix: loads header with endings \r\n\r\n and \n\n
12759: (bloody yandex.server)
12760:
12761: 2004-09-06 paf
12762:
12763: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
12764: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
12765: encoded
12766:
12767: 2004-09-01 paf
12768:
12769: * src/types/pa_vmail.C: change: multipart/mixed changed to
12770: multipart/related outlook express have no problems showing
12771: unrelated attachments. todo: someday figure out a way of
12772: multipart/mixed multipart/related text/html
12773: image/xxx application/octet-stream << true attachments
12774:
12775: * src/types/pa_vmail.C: new:
12776: ^mail:send[$.file[$.content-disposition can be overriden new:
12777: empty mail header fields removed from letter
12778:
12779: * src/: classes/mail.C, include/pa_config_fixed.h,
12780: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
12781: ^mail:send[ $.file[ $.any[header]
12782:
12783: 2004-08-30 paf
12784:
12785: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
12786: warnings
12787:
12788: * src/main/pa_common.C: beauty: do not bother with charset
12789: detection when ^file::load[binary
12790:
12791: 2004-08-27 paf
12792:
12793: * src/main/pa_common.C: hack: for yandex.server http server
12794:
12795: 2004-08-18 paf
12796:
12797: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
12798: possibly-chunked response
12799:
12800: 2004-08-17 paf
12801:
12802: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12803: $f.content-type now = that of http response
12804:
12805: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
12806: $f.content-type now = that of http response
12807:
12808: 2004-07-30 paf
12809:
12810: * src/: include/pa_request.h, main/pa_request.C,
12811: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
12812: win32: system&parser exceptions in release mode reported properly
12813: parser exception in exception handler WERE mistakenly reported as
12814: system exception, without details [in apache & isapi] +some
12815: beauty in exception text
12816:
12817: * src/: include/pa_exception.h, main/pa_request.C,
12818: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
12819: release mode reported properly parser exception in exception
12820: handler WERE mistakenly reported as system exception, without
12821: details
12822:
12823: * src/main/execute.C: beauty: simplified system exception handling
12824:
12825: 2004-07-29 paf
12826:
12827: * src/classes/table.C: bugfix:
12828: ^table.save[export.csv;$.separator[^;]] now works fine [separator
12829: were ignored, and \t used unconditionally]
12830:
12831: * src/types/Makefile.am: added vhash.c
12832:
12833: 2004-07-28 paf
12834:
12835: * src/: classes/date.C, classes/image.C, classes/math.C,
12836: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
12837: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
12838: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
12839: failed on russian letters
12840:
12841: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
12842: bugfix: isspace((unsigned char)c) everywhere. failed on russian
12843: letters
12844:
12845: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
12846: as 'currentDirectory' parameter to CreateProcess
12847:
12848: 2004-07-27 paf
12849:
12850: * src/targets/cgi/parser3.vcproj: beauty: win32:
12851: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
12852: from release somewhere [to help searching for unhandled system
12853: exceptions]
12854:
12855: * src/types/pa_vdate.h: check: for invalid datetime after temporary
12856: TZ shift
12857:
12858: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
12859: but also in ctor
12860:
12861: 2004-07-26 paf
12862:
12863: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
12864: src/main/pa_request.C, src/types/pa_vfile.h,
12865: src/types/pa_vhash.C, src/types/pa_vhash.h,
12866: src/types/types.vcproj: new: $response:body/download[
12867: $.file[name on disk] $.name[of file for user]
12868: $.mdate[date of last-modified. default from directory] ]
12869:
12870: * src/classes/file.C: moving file:send somewhere else..
12871:
12872: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
12873: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
12874: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
12875: $response:download[ $.filename[filename] $.option[] ,, ]
12876:
12877: * src/classes/file.C: beauty: invalid mode thoroughly reported
12878:
12879: 2004-07-21 paf
12880:
12881: * src/types/pa_vmail.C: bugfix: too long header values now splitted
12882: to several lines
12883:
12884: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
12885:
12886: note: ms outlook[!express] shows only first 255 characters of
12887: subject
12888:
12889: 2004-07-15 paf
12890:
12891: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
12892: off]
12893:
12894: 2004-07-14 paf
12895:
12896: * src/classes/table.C: bugfix: $.bind values now got untainted
12897: according to lang [were: as-is]
12898:
12899: 2004-07-07 paf
12900:
12901: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12902: checked that
12903:
12904: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12905: now untainted according to their languages. were: as-is.
12906: EVERYWHERE
12907:
12908: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12909: environment string now untainted according to their languages.
12910: were: as-is. EVERYWHERE
12911:
12912: * src/main/pa_exec.C: bufix: on unix environment string now
12913: untainted according to their languages. were: as-is. on win32:
12914: ok
12915:
12916: * parser3.vssscc: ...would not go unnoticed
12917:
12918: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12919: fails. in case on input appears nonutf, those bytes will be
12920: printed in %HH form. that can be easily decoded/recovered.
12921:
12922: this form is quite noticable, and hopefully would not go noticed
12923:
12924: 2004-07-06 paf
12925:
12926: * src/main/pa_exec.C: bufix: on unix environment string now
12927: untainted according to their languages. were: as-is. on win32:
12928: ok
12929:
12930: 2004-07-01 paf
12931:
12932: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12933: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12934: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12935: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12936: main/main.vcproj, targets/cgi/parser3.vcproj,
12937: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12938: option: global optimization ON
12939:
12940: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12941: to do xdoc::create{invalid chars} standard disables chars less
12942: then \x20, except tab, cr, lf.
12943:
12944: changed tainting so that those become '!'
12945:
12946: 2004-06-25 paf
12947:
12948: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12949: int on odd address [prev bugfix failed due to superwize
12950: optimizer, which turned memcpy into same 'ld' asm command]
12951:
12952: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12953: int on odd address
12954:
12955: 2004-06-22 paf
12956:
12957: * src/sql/pa_sql_driver.h: note: about possible optimization
12958:
12959: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12960: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12961: src/include/pa_config_includes.h: new: ^void:sql{call
12962: paf(:a)}[ $.bind[ $.a[2]
12963: ] ] output variables work. todo: check in out
12964: variables
12965:
12966: 2004-06-18 paf
12967:
12968: * src/: classes/file.C, classes/hash.C, classes/string.C,
12969: classes/table.C, classes/void.C, include/pa_globals.h,
12970: include/pa_sql_connection.h, main/compile.tab.C,
12971: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12972: $.bind[ $.a[2] ]
12973: ] input variables work. todo:output
12974:
12975: * src/targets/cgi/parser3.C: bugfix: iis specific
12976: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12977: /_bug.html?404;http://hpsv/test/
12978: --------------------------------------------------------------------------------
12979: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12980: --------------------------------------------------------------------------------
12981: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12982:
12983: 2004-06-16 paf
12984:
12985: * src/targets/cgi/parser3.C: new: iis specific
12986: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12987: $request:query
12988: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12989: $form:fields IIS-STATUS="404"
12990: IIS-DOCUMENT="http://server/_bug.html" f="v"
12991:
12992: todo: isapi too
12993:
12994: 2004-05-26 paf
12995:
12996: * src/include/pa_version.h: 3.1.3
12997:
12998: * operators.txt: beauty: removed outdated level 'table'
12999:
13000: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
13001:
13002: * src/main/pa_string.C: beauty: removed 3 warnings
13003:
13004: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
13005: classes/op.C: beauty: removed outdated level 'table'
13006:
13007: 2004-05-25 paf
13008:
13009: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
13010: implementation. mistery: how anything worked
13011:
13012: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
13013: changed, it is now safe to use url if pointers to it are stored
13014: to gc mem
13015:
13016: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
13017: unknown errors reported and not cause SIGSEGV now
13018:
13019: 2004-05-24 paf
13020:
13021: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13022: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
13023: less memory: CORD_chars_block originally intended to ... it was
13024: good that CORD_chars_block were not used: it consumes more memory
13025: [and, might be slow too] undoing that. [and removed that func so
13026: that it would not confuse parser developer in future]
13027:
13028: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
13029: less memory: CORD_chars_block originally intended to
13030: speedup/reduce mem usage were forgotten, and were used stupid
13031: CORD_chars
13032:
13033: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
13034:
13035: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
13036: BIGENDIAN processors space-conserving mech failed, causing
13037: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
13038: (1|2|3));
13039:
13040: 2004-05-14 paf
13041:
13042: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
13043: bugfix: void now has vfile value, and $response:body[] works OK
13044:
13045: 2004-05-12 paf
13046:
13047: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
13048: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
13049: sources to use is_defined() {return as_bool();} along VBool
13050:
13051: 2004-05-11 paf
13052:
13053: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
13054: referencing to local objects
13055:
13056: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
13057: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
13058: left intact
13059:
13060: 2004-04-15 paf
13061:
13062: * src/classes/date.C: merged: beauty: unused var removed
13063:
13064: * src/classes/date.C: beauty: unused var removed
13065:
13066: * src/include/: pa_exec.h: bugfix: interface without pointer
13067: provoked bug
13068:
13069: 2004-04-09 paf
13070:
13071: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
13072:
13073: * src/types/pa_vform.C: bugfix: form:imap were incorrect
13074:
13075: 2004-04-08 paf
13076:
13077: * src/classes/date.C: new: ^date::create[y-m-d
13078: h-M-s>>.milliseconds<<] now allowed, ignored so far
13079:
13080: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
13081:
13082: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
13083: to consult default catalog [usually, that file belongs to other
13084: user/group]
13085:
13086: 2004-04-06 paf
13087:
13088: * src/main/pa_common.C: beauty: gcc warning removed
13089:
13090: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
13091: accept that trick, trying other
13092:
13093: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
13094: explicit result problem
13095:
13096: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
13097: explicit result problem
13098:
13099: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
13100: explicit result problem
13101:
13102: * operators.txt, src/classes/string.C: new: ^string.append[string]
13103:
13104: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
13105: main/execute.C: attempt_check_call_in_explicit_result_mode:
13106: failed
13107:
13108: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
13109: http://i.p.a.ddress gethostbyaddr added [on some platforms
13110: gethostbyname failed with such 'domains'] now checked properly,
13111: were: needless reverse/forward dns lookup
13112:
13113: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
13114: http://i.p.a.ddress gethostbyaddr added [on some platforms
13115: gethostbyname failed with such 'domains'] now checked properly,
13116: were: needless reverse/forward dns lookup
13117:
13118: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
13119: @method[][result] means "no string output here" moved to lexical
13120: level [on grammar level it were too difficult]
13121:
13122: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
13123: src/main/compile.y, src/main/compile_tools.h,
13124: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
13125: @method[][result] means "no string output here", implemented part
13126: of that idea: compiler throws away string literal generation
13127: code. and barks nonwhitespace chars
13128:
13129: * operators.txt: truth: removed comment about $ORIGIN
13130:
13131: 2004-04-05 paf
13132:
13133: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
13134: src/include/pa_version.h, src/main/pa_common.C,
13135: src/targets/isapi/parser3isapi.C: merged with 3.1.3
13136:
13137: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
13138: Konstantin Tomashevitch [mailto:konst@design.ru]
13139:
13140: * src/doc/html2chm.cmd: beauty: no need in bg here
13141:
13142: * src/doc/sources2html.cmd: beauty: same window, in bg it
13143: interfered with FAR console
13144:
13145: * configure, configure.in: 3.1.3
13146:
13147: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
13148:
13149: * src/main/pa_common.C: removed warning
13150:
13151: * src/include/pa_version.h: 3.1.3
13152:
13153: 2004-04-02 paf
13154:
13155: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
13156:
13157: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
13158: allows to specify where to put parser log file
13159:
13160: 2004-04-01 paf
13161:
13162: * src/classes/table.C: bugfix: bugfix: table::load last line
13163: without tab and enter were ignored
13164:
13165: * src/: include/pa_cache_managers.h, include/pa_globals.h,
13166: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
13167: main/pa_socks.C, targets/cgi/parser3.C,
13168: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
13169: bugfix: sql connections now are disconnected
13170:
13171: 2004-03-30 paf
13172:
13173: * src/classes/table.C: bugfix: table::load last line without tab
13174: and enter were ignored
13175:
13176: * src/classes/table.C: bufix: if last table lines were commented,
13177: gpfed
13178:
13179: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
13180: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
13181: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
13182: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
13183: doc/methoded.dox, doc/object.dox, doc/string.dox,
13184: doc/targets.dox, doc/value.dox, include/pa_version.h,
13185: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
13186: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
13187: bugfixes from 3.1.2, changed version to 3.1.3beta
13188:
13189: 2004-03-29 paf
13190:
13191: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
13192: causes gpf
13193:
13194: * src/doc/: ClassExample1.dox, ClassExample2.dox,
13195: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
13196: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
13197: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
13198: value.dox: translated to english
13199:
13200: 2004-03-25 paf
13201:
13202: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
13203: parser3project dependency removed
13204:
13205: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
13206: bugfix: refused to compile without xml
13207:
13208: * src/types/pa_vform.C: beauty: removed warning
13209:
13210: * src/classes/classes.vcproj: merged bugfix: now all compiles in
13211: any folder [removed last ;) folder dependency]
13212:
13213: * src/classes/classes.vcproj: bugfix: now all compiles in any
13214: folder [removed last ;) folder dependency]
13215:
13216: * src/include/pa_version.h: release
13217:
13218: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
13219:
13220: * src/classes/table.C: beauty: comment& more meaningful error
13221: message
13222:
13223: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
13224: $.hash[$.column_value1(true) ... ] [were producing some strang
13225: thing]
13226:
13227: 2004-03-23 paf
13228:
13229: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
13230: and http status line parsing checked number of columns in table
13231: [user reported an assert]
13232:
13233: * operators.txt: example: on hashfile
13234:
13235: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
13236: bugfix: junction reattach now actually reattaches a junction to
13237: new wcontext [were only assigning it to junction, which caused
13238: junction tracking to loose junction, and it's context were not
13239: killed, and it tried to process in invalid context, gpf]
13240:
13241: * src/targets/cgi/parser3.C: debug helper added
13242:
13243: 2004-03-19 paf
13244:
13245: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
13246: "type(type)" in braces
13247:
13248: 2004-03-10 paf
13249:
13250: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
13251: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
13252: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
13253: solution to search-in-namespaces problem:
13254: $xdoc.search-namespaces.x[http://pif.design.ru/]
13255: $nodes[^xdoc.select[//x:second]]
13256:
13257: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
13258: expression][[NAMESPACES HASH]] allows to search for info in
13259: namespaces
13260:
13261: $nodes[^xdoc.select[//x:second][
13262: $.x[http://pif.design.ru/] ]]
13263:
13264: 2004-03-09 paf
13265:
13266: * operators.txt, src/main/pa_common.C: new:
13267: ^file::load[...][options] $.form[
13268: !$.field1[string]
13269: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
13270: ] !$.body[string]
13271:
13272: GET ?here notGET(POST, HEAD, others) in content-type:
13273: application/x-www-form-urlencoded
13274:
13275: todo: upload files ability
13276:
13277: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
13278: properly, done
13279:
13280: 2004-03-05 paf
13281:
13282: * operators.txt, src/main/pa_common.C: new: file::load[;http://
13283: GET/POST $.form[$.fields started, not tested yet
13284: todo:$.field[table] for multiple values
13285:
13286: * operators.txt: new: http:// options $.user $.password basic
13287: authorization
13288:
13289: * src/main/pa_common.C: beauty: link to rtf added
13290:
13291: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
13292: new: http:// options $.user $.password basic authorization
13293:
13294: * src/main/pa_common.C: beauty: removed needless vars
13295:
13296: * operators.txt: new: pgsql option [like that recently added to
13297: oracle driver] ClientCharset=parser-charset <<
13298: charset in which parser thinks client works
13299:
13300: * operators.txt: new: odbc option [like that recently added to
13301: oracle driver] ClientCharset=parser-charset <<
13302: charset in which parser thinks client works
13303:
13304: * src/sql/pa_sql_driver.h: beauty: important warning added
13305:
13306: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
13307: char!
13308:
13309: * etc/parser3.charsets/windows-1251.cfg: typo
13310:
13311: 2004-03-04 paf
13312:
13313: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
13314: cached, sql transcoding now goes faster
13315:
13316: * operators.txt: new: mysql option [like that recently added to
13317: oracle driver] ClientCharset=parser-charset <<
13318: charset in which parser thinks client works
13319:
13320: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
13321: typo error
13322:
13323: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
13324: chars commented
13325:
13326: 2004-03-03 paf
13327:
13328: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
13329: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
13330:
13331: 2004-03-02 paf
13332:
13333: * operators.txt: new[update typo]: !^void.left(n)
13334: nothing !^void.right(n) nothing !^void.mid(p[;n])
13335: nothing
13336:
13337: * operators.txt, src/classes/void.C: new: !^void.left(n)
13338: nothing !^void.right(n) nothing !^void.pos(p[;n])
13339: nothing
13340:
13341: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
13342: ^file::sql[[name_to_become_$.name]]{} query result must be one
13343: row with columns: first: data second: file name third:
13344: content-type
13345:
13346: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
13347: ^connect gets properly escaped string, which can be passed to
13348: request now this for mysql only. it's up to parser sql driver to
13349: fix zeros properly
13350:
13351: * INSTALL: note: added on building apache with this option:
13352: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
13353:
13354: 2004-03-01 paf
13355:
13356: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
13357: extension memory:compact befor processingrequest
13358:
13359: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
13360: call sole column of result
13361:
13362: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
13363: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
13364: pixel color
13365:
13366: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
13367: beauty: image -- less checks [were ugly impl]
13368:
13369: * src/classes/string.C: bugfix: ^string.left/right/mid with
13370: negative values now considered bad
13371:
13372: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
13373:
13374: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
13375: options now have unified defaults [after transform
13376: indent/omit-xml-declaration/standalone 'default' erroreously
13377: meant 'true']
13378:
13379: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
13380: added [on some platforms gethostbyname failed with such
13381: 'domains']
13382:
13383: * src/include/pa_config_auto.h.in: no select check, no define
13384:
13385: * src/classes/string.C: feature: ^string.trim both parameters may
13386: be empty-strings, meaning kind=both chars=whitespaces
13387:
13388: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
13389: exist
13390:
13391: * src/classes/string.C: check: trim 'chars' must not be empty,
13392: exception if it is
13393:
13394: * src/classes/string.C: changed: ^string.trim [] << both,
13395: whitespaces [start|both|end] << kind, whitespaces
13396: [start|both|end;chars] full
13397:
13398: 2004-02-27 paf
13399:
13400: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
13401: method: ^string.trim[start|both|end[;chars]] default
13402: 'chars' -- whitespace chars finished
13403:
13404: * operators.txt, src/classes/string.C, src/include/pa_string.h,
13405: src/main/pa_string.C: new method:
13406: ^string.trim[start|both|end[;chars]] default 'chars' --
13407: whitespace chars started, only start works
13408:
13409: * src/main/compile.C: bugfix: line numbers after
13410: ^process{}[$.line(-10]] can be negative, allowed to print they as
13411: signed
13412:
13413: * src/main/untaint.C: speed: there's no \n chars in output
13414: [normally], so no need to optimize them they could be retrived
13415: from databases, though. but 1. should be replaced 2. if not
13416: optimized, no harm done
13417:
13418: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
13419: ^file::exec/cgi could return invalid status & zombie child can
13420: remain for short period until process exists [very bad in
13421: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
13422:
13423: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
13424: malicious SMTP server to attack as by returning too long status
13425: responses http://i2/tasks/edit/?id=4629448401140924947
13426:
13427: 2004-02-26 paf
13428:
13429: * operators.txt: feature: ^process...{CODE}[now has options] which
13430: are $.main[to what to rename @main] $.file[file,
13431: from which (user says) goes that CODE] $.lineno(line
13432: number in that file, where CODE starts. may be negative)
13433:
13434: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13435: src/main/compile.C, src/main/compile_tools.h,
13436: src/main/pa_request.C: feature: ^process...{CODE}[now has
13437: options] which are $.main[to what to rename @main]
13438: $.file[file, from which (user says) goes that CODE]
13439: $.lineno(line number in that file, where CODE starts. may be
13440: negative)
13441:
13442: 2004-02-25 paf
13443:
1.116 moko 13444: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
13445: old @charsetsdir@ recently erased from configure.in]
1.95 moko 13446:
13447: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
13448: produces hash of column=>1
13449:
13450: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
13451: with incomplete errno constants set
13452:
13453: 2004-02-24 paf
13454:
13455: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
13456: "man select"
13457:
13458: * src/main/pa_os.C: beauty: <0 better then ==-1
13459:
13460: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
13461:
13462: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
13463:
1.116 moko 13464: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 13465:
13466: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
13467: unix: steps to work on unix [extracted 'to']
13468:
13469: * src/classes/mail.C: smtp on unix: steps to work on unix
13470:
13471: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
13472:
1.116 moko 13473: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
13474: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
13475: unix [testing on solaris]
1.95 moko 13476:
13477: 2004-02-20 paf
13478:
13479: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
13480: pointing that out
13481:
13482: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
13483: fixed again [same solution, mistanenly removed one line]
13484:
13485: 2004-02-19 paf
13486:
13487: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
13488: date::create from bad datetime in spring daylightsaving hole now
13489: OK for all platforms [on some platforms it failed]
13490:
13491: * src/classes/: date.C, image.C: beauty: date::create[bad date time
13492: in daylightsaving hole] now throws error
13493:
13494: * src/classes/date.C: comment: mistake fixed
13495:
13496: 2004-02-18 paf
13497:
13498: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
13499: now renderes in $request:charset, but in header puts
13500: $response:charset todo: make that default only so that coder
13501: could override that
13502:
13503: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
13504: turns off omit-xml-declaration
13505:
13506: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
13507: /.xsl for sample
13508:
13509: 2004-02-17 paf
13510:
13511: * src/classes/xdoc.C: beauty: needless helper class removed
13512:
13513: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
13514: copied extra time
13515:
13516: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
13517: part of libxml
13518:
13519: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
13520: libxml to do the work] <xsl:output method="html"
13521: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
13522: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
13523: />
13524:
13525: * src/classes/xdoc.C: beauty: no <meta ... charset generated
13526:
13527: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
13528: caused assertion
13529:
13530: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
13531: could hang. now such add does nothing, sub clears $hash
13532:
13533: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
13534: not made quoted-printable
13535:
13536: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
13537: string invariant
13538:
13539: 2004-02-16 paf
13540:
13541: * src/main/pa_globals.C: bugfix: xml errors copy from library now
13542: cleared [were not cleared properly]
13543:
13544: 2004-02-13 paf
13545:
1.116 moko 13546: * src/include/pa_version.h: prerelease
1.95 moko 13547:
13548: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
13549: used, introducing dependencies timestamp check
13550:
13551: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13552: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
13553: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
13554: .xsl.stamp now not used, introducing dependencies timestamp check
13555:
1.150 moko 13556: * configure.in: auto.p: @conf made relative
1.95 moko 13557:
13558: 2004-02-12 paf
13559:
13560: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
13561: ruined empty <input type=file> submits. parser thought there were
13562: nameless empty file and $form:field got value of type 'file'
13563:
13564: * INSTALL: --without-threads
13565:
13566: * src/include/pa_sapi.h: 2004
13567:
13568: 2004-02-11 paf
13569:
13570: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13571: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13572: classes/hashfile.C, classes/image.C, classes/int.C,
13573: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13574: classes/response.C, classes/string.C, classes/table.C,
13575: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13576: include/pa_array.h, include/pa_cache_managers.h,
13577: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13578: include/pa_config_fixed.h, include/pa_config_includes.h,
13579: include/pa_dictionary.h, include/pa_dir.h,
13580: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
13581: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
13582: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
13583: include/pa_request_charsets.h, include/pa_request_info.h,
13584: include/pa_socks.h, include/pa_sql_connection.h,
13585: include/pa_sql_driver_manager.h, include/pa_stack.h,
13586: include/pa_string.h, include/pa_stylesheet_connection.h,
13587: include/pa_stylesheet_manager.h, include/pa_table.h,
13588: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13589: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
13590: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
13591: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
13592: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
13593: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
13594: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
13595: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
13596: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
13597: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
13598: main/pa_sql_driver_manager.C, main/pa_string.C,
13599: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
13600: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
13601: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13602: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
13603: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
13604: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
13605: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
13606: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
13607: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
13608: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
13609: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
13610: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13611: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13612: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13613: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13614: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13615: types/pa_vresponse.h, types/pa_vstateless_class.C,
13616: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13617: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13618: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13619: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13620: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13621: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
13622:
13623: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
13624: debug version of gc.dll
13625:
13626: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13627: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
13628: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
13629: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
13630: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
13631: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
13632: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
13633: processes
13634:
13635: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
13636: main/pa_globals.C, targets/cgi/parser3.vcproj,
13637: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
13638: changes to reflect libxml xsl new folders
13639:
13640: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13641: lib/smtp/smtp.vcproj, main/main.vcproj,
13642: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
13643: to reflect libxml xsl new folders
13644:
13645: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
13646: lib/smtp/smtp.vcproj, main/main.vcproj,
13647: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
13648: types/types.vcproj: started changes to reflect libxml xsl new
13649: folders
13650:
13651: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
13652: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
13653: src/main/compile.tab.C, src/main/main.vcproj,
13654: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
13655: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13656: started changes to reflect libxml xsl new folders
13657:
13658: 2004-02-10 paf
13659:
13660: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
13661: compile. recommened latest libxml up to date
13662:
13663: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
13664: pattern compilation errors", on which spent 4 hours worktime. use
13665: versions higher than that. recommended now latest up to date
13666:
13667: 2004-02-06 paf
13668:
13669: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
13670: beauty: unified destructing style
13671:
13672: * src/main/untaint.C: beauty: removed old def/ifdef
13673:
13674: * src/main/untaint.C: beauty: coredump @unknown untaint language
13675: now
13676:
13677: 2004-02-03 paf
13678:
13679: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
13680: targets/isapi/parser3isapi.C, types/pa_value.C,
13681: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
13682: then %ld/%lu
13683:
13684: * src/main/pa_common.C: typo: %l -> %u
13685:
13686: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
13687: in attributes or documents-results of transform now not xx;
13688:
13689: * src/classes/xnode.C: memleaks found: not fixed yet. todo
13690:
13691: * src/main/pa_charset.C: bugfix: forgot to undo some
13692:
13693: * src/main/pa_charset.C: beauty: uncomment
13694: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
13695: libraries
13696:
13697: 2004-02-02 paf
13698:
13699: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
13700: $cookie:example[ $.value[value] $.path[/there/] ]
13701:
13702: $cookie:example[ $.value[] $.expires[session]
13703: $.path[/there/] $.domain[test.com] ]
13704:
13705: * src/types/pa_vform.C: bugfix: empty values with
13706: enctype=multipart/form-data now produce entries in $form:tables
13707: <form method=post enctype=multipart/form-data> <input type=hidden
13708: name=a> <input type=hidden name=b>
13709:
13710: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
13711: <hr> <pre>$request:body
13712:
13713: 2004-01-30 paf
13714:
13715: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
13716: or documents-results of transform now not xx;
13717:
13718: * src/classes/date.C: bugfix: ^date::create[invalid fields now
13719: produce exception.
13720:
13721: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
13722: bugfix: ^date::create[invalid fields now produce exception.
13723:
13724: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
13725: year] now produces exception. todo: check other fields
13726:
13727: 2004-01-29 paf
13728:
13729: * src/include/pa_memory.h: typo error
13730:
13731: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
13732: more byte then specified, then zeroed it << useless and
13733: potentially harmful(could gpf)
13734:
13735: 2004-01-22 paf
13736:
13737: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
13738:
13739: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
13740: optimization
13741:
13742: * src/main/untaint.C: bugfix: whitespace now optimized properly
13743: [were bug: ^taint[1 & 2]="1 &2"
13744:
13745: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
13746: errors
13747:
13748: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
13749: overflow
13750:
13751: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
13752: error-reporting code * in parser-error reporting code [when no
13753: @unhandled_exception defined]
13754:
13755: fixed in one place: my *snprintf override
13756:
13757: 2004-01-13 paf
13758:
13759: * operators.txt: typo erro
13760:
13761: 2003-12-25 paf
13762:
13763: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
13764: garbled [pieces after zero bytes were removed]
13765:
13766: 2003-12-22 paf
13767:
1.116 moko 13768: * src/include/Makefile.am: bugfix: removed from dist:
13769: src/include/pa_config_auto.h which were configured for
1.95 moko 13770: make-dist-platform and badly updated proper config file in target
13771: [when .tar used for updating existing source tree]
13772:
13773: * ChangeLog, operators.txt, src/classes/op.C,
13774: src/include/pa_sql_connection.h,
13775: src/include/pa_sql_driver_manager.h,
13776: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
13777: feature: sql introducing ability to transcode charsets
13778:
13779: 2003-12-19 paf
13780:
13781: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
13782: error message
13783:
13784: * src/main/pa_charset.C: bugfix: memory for charsethandler
13785: structure for libxml now allocated properly
13786:
13787: 2003-12-17 paf
13788:
13789: * src/types/pa_vfile.C: beauty: removed outdated cast
13790:
13791: * src/main/pa_common.C: bugfix: empty http response caused gpf
13792:
13793: * src/include/pa_string.h: bugfix: removed too strong a assert
13794:
13795: * src/main/pa_globals.C: bugfix: removed false warning [warning:
13796: unreported xmlGenericErrors]
13797:
13798: 2003-12-15 paf
13799:
13800: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
13801: works}
13802:
13803: 2003-12-11 paf
13804:
13805: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
13806: id
13807: !$status:tid thread id
13808:
13809: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
13810: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
13811: bugfix(solaris): removed dependency on object initialization
13812: order [one more place]
13813:
13814: * src/: classes/file.C, classes/mail.C, classes/op.C,
13815: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
13816: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
13817: understand that
13818:
13819: * src/: classes/file.C, classes/mail.C, classes/op.C,
13820: classes/xdoc.C, include/pa_cache_managers.h,
13821: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13822: include/pa_stylesheet_manager.h, main/pa_request.C,
13823: main/pa_stylesheet_manager.C, types/pa_vimage.C,
13824: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
13825: ctor call [relying on implicit String::Body(cstr) call]
13826:
13827: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
13828: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
13829: object initialization order [two places]
13830:
13831: 2003-12-10 paf
13832:
13833: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
13834: << time now ok
13835:
13836: * operators.txt, src/main/pa_sql_driver_manager.C,
13837: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
13838: operational
13839:
13840: * ChangeLog, operators.txt, src/classes/xdoc.C,
13841: src/include/pa_charset.h, src/include/pa_sql_connection.h,
13842: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
13843: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
13844: back operational
13845:
13846: 2003-12-02 paf
13847:
13848: * src/types/pa_vmail.C: bugfix:
13849: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
13850: as-is forced]
13851:
13852: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
13853: exceptions out of libxml callbacks: reimplemented error handling
13854: of http://localhost, parser://method and safemode check callbacks
13855:
13856: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
13857: [merged from HEAD]
13858:
13859: * src/classes/image.C: nothing: comment removed
13860:
13861: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
13862: addresses to int
13863:
13864: 2003-12-01 paf
13865:
13866: * src/main/pa_xml_io.C: bugfix: typo
13867:
13868: * src/main/pa_globals.C: bugfix: win32: compile prob
13869:
13870: * src/classes/xdoc.C: bugfix: typo
13871:
13872: * src/main/pa_xml_io.C: todo: safe mode check not to throw
13873: exception
13874:
13875: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
13876:
13877: 2003-11-28 paf
13878:
13879: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
13880: all xml documents read
13881:
13882: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
13883:
13884: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
13885: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
13886: replaced original open mech of xdoc::create & co to use libxml
13887: open, so that this would work for root document todo: safe mode
13888: checks to libxml: ideally to some 1 point
13889:
13890: * src/main/pa_xml_io.C: comment
13891:
13892: * operators.txt, src/main/pa_xml_io.C: leading / in
13893: http://parser[abscent params]
13894:
13895: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
13896: works. todo: maybe replace original open mech of xdoc::create &
13897: co to use libxml open, so that this would work for root document
13898:
13899: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13900: "parser://method/params/here"> <test> &test^; </test> }]
13901:
13902: ^taint[^xdoc.string[]]
13903:
13904: @method[param] <!ENTITY test
13905: "test-entity-value+$form:user+$param!">
13906:
13907: 2003-11-27 paf
13908:
13909: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13910:
13911: * src/classes/date.C: bugfix: typo error
13912:
13913: 2003-11-26 paf
13914:
13915: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13916: src/main/Makefile.am, src/main/main.vcproj,
13917: src/main/pa_globals.C, src/main/pa_request.C,
13918: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13919: xml errors to hash<thread_id,error> reorganization: xml io moved
13920: to pa_xml_io.C/h
13921:
13922: * src/types/pa_value.h: warnings: --
13923:
13924: 2003-11-25 paf
13925:
13926: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13927: whatever)
13928:
13929: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13930: a, (c?x:y, z)
13931:
13932: * src/main/untaint.C: bugfix: consequences of not reading this
13933: comment: CORD_pos_chars_left /* Number of characters in cache.
13934: <= 0 ==> none */
13935:
13936: * src/include/pa_array.h: removed needless checks
13937:
13938: 2003-11-24 paf
13939:
13940: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13941: removed limit: now $form:xxx can be accessed anytime, even in
13942: @auto/conf [and request/response:charset still can be changed
13943: anytime]
13944:
13945: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13946: now not transcodes response body
13947:
13948: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13949: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13950: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13951: $xdoc.firstChild.firstChild.nodeValue[different]
13952: ^taint[^xdoc.string[]]
13953:
13954: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13955: workaround: static Hash::allocates -> static Hash_allocates
13956:
13957: 2003-11-21 paf
13958:
1.116 moko 13959: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13960: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13961: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13962:
13963: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13964:
13965: * src/classes/mail.C: bugfix: typo
13966:
13967: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13968: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13969: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13970: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13971: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13972: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13973:
13974: * src/main/pa_exec.C: bug in safe mode
13975:
13976: * src/include/Makefile.am: pa_xml_exception.h
13977:
13978: * src/targets/isapi/parser3isapi.C: more warnings --
13979:
13980: 2003-11-20 paf
13981:
13982: * src/: classes/math.C, classes/op.C, classes/string.C,
13983: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13984: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13985: --
13986:
13987: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13988: more warnings --
13989:
13990: * src/classes/xdoc.C: more warnings --
13991:
13992: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13993:
13994: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13995: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13996:
13997: * src/: classes/date.C, classes/file.C, classes/hash.C,
13998: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13999: classes/table.C, include/pa_cache_managers.h,
14000: include/pa_stylesheet_connection.h, main/pa_request.C,
14001: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
14002: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
14003: --
14004:
14005: * src/main/: execute.C, pa_request.C: old forgotten todo: when
14006: can't report problem (undefined @unhandled_exception) problem
14007: source string were not reported
14008:
14009: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14010: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14011: classes/hashfile.C, classes/image.C, classes/int.C,
14012: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
14013: classes/response.C, classes/string.C, classes/table.C,
14014: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14015: include/pa_array.h, include/pa_cache_managers.h,
14016: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
14017: include/pa_config_fixed.h, include/pa_dictionary.h,
14018: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
14019: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
14020: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
14021: include/pa_request.h, include/pa_request_charsets.h,
14022: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
14023: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14024: include/pa_stack.h, include/pa_string.h,
14025: include/pa_stylesheet_connection.h,
14026: include/pa_stylesheet_manager.h, include/pa_table.h,
14027: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
14028: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
14029: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
14030: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14031: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
14032: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
14033: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
14034: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
14035: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
14036: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
14037: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
14038: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
14039: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
14040: targets/isapi/parser3isapi.C, types/pa_junction.h,
14041: types/pa_method.h, types/pa_value.C, types/pa_value.h,
14042: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
14043: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
14044: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
14045: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
14046: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14047: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
14048: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14049: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
14050: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
14051: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
14052: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
14053: types/pa_vresponse.h, types/pa_vstateless_class.C,
14054: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14055: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
14056: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
14057: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14058: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
14059: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
14060: const IDENT
14061:
14062: * src/: include/pa_array.h, include/pa_pool.h,
14063: include/pa_request.h, include/pa_string.h, include/pa_table.h,
14064: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
14065: types/pa_wcontext.h: more warnings --
14066:
14067: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
14068: classes/file.C, classes/hash.C, classes/hashfile.C,
14069: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14070: classes/memory.C, classes/op.C, classes/string.C,
14071: classes/table.C, classes/xdoc.C, classes/xnode.C,
14072: include/pa_config_includes.h, include/pa_operation.h,
14073: include/pa_sql_connection.h, include/pa_table.h,
14074: include/pa_types.h, lib/ltdl/config_fixed.h,
14075: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
14076: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
14077: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
14078: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
14079: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
14080: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
14081: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
14082: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
14083: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
14084: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
14085: types/pa_vmail.C, types/pa_vobject.C,
14086: types/pa_vstateless_class.h, types/pa_vtable.C,
14087: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14088: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
14089: on all projects (except libltdl=off & libsdbm=level3) found
14090: several unitialized vars
14091:
14092: 2003-11-19 paf
14093:
14094: * src/classes/op.C: more ansi C++ comp
14095:
14096: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14097: src/main/pa_request.C: ^cache[...]{body}{catch block with
14098: $exception.handled[cache] meaning "get expired cache, if any.
14099: else error"}
14100:
14101: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
14102: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
14103: ^cache[...]{body}{catch code with $exception.cache field}
14104:
14105: 2003-11-12 paf
14106:
14107: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
14108: [copy/paste bug]
14109:
14110: 2003-11-11 paf
14111:
14112: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
14113: failed]
14114:
14115: 2003-11-10 paf
14116:
14117: * src/types/pa_vconsole.h: flush
14118:
14119: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
14120: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
14121: read/write [for nntp]
14122:
14123: * operators.txt: mysql: transaction support: ?autocommit=0
14124:
14125: * operators.txt: comment: updated
14126:
14127: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
14128: serialize version and exipire now removes entries
14129:
14130: * operators.txt: ^hashfile.delete[] removes files altogether [and
14131: dir, if could]
14132:
14133: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
14134: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
14135: removes files altogether [and dir, if could]
14136:
14137: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
14138: nonexistent pair. .c coded that that was error. fixed
14139:
14140: * src/types/pa_vhashfile.C: sdbm: exception type change to
14141: file.access [regretfull can't split it to different exceptions
14142: without modifying sdbm source wich would prefer not to]
14143:
14144: 2003-11-07 paf
14145:
14146: * src/: classes/date.C, classes/file.C, classes/hash.C,
14147: classes/hashfile.C, classes/image.C, classes/table.C,
14148: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
14149: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
14150: main/execute.C, main/main.vcproj, main/pa_pool.C,
14151: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
14152: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
14153: types/pa_vstateless_class.h: resurrected: pool idea. now only for
14154: destructing objects at request processing end
14155:
14156: 2003-11-06 paf
14157:
14158: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
14159: updates
14160:
14161: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
14162: to include sdbm
14163:
1.116 moko 14164: * src/include/: pa_config_includes.h, pa_version.h: our
14165: replacements of max& co only for cpp
1.95 moko 14166:
14167: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
14168: upper dir, .am updated
14169:
14170: * tests/todo.txt: hashfile: done
14171:
14172: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
14173: expiration [time in value. todo: move time to key]
14174:
14175: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
14176:
14177: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
14178: to do that in foreach, no errors, but surely wrong]
14179:
14180: * operators.txt, src/types/pa_vhashfile.C,
14181: src/types/pa_vhashfile.h: hashfile: clear and proper locking
14182:
14183: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
14184: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
14185: foreach
14186:
14187: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
14188: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
14189:
14190: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
14191: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
14192:
14193: * src/: include/pa_memory.h, targets/cgi/parser3.C,
14194: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
14195: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
14196: get/put [raw]
14197:
14198: * src/: classes/op.C, main/pa_os.C: just linked
14199:
14200: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
14201: XmlException changes
14202:
14203: * src/: include/pa_charset.h, include/pa_globals.h,
14204: include/pa_stylesheet_connection.h, main/pa_exception.C:
14205: XmlException changes
14206:
14207: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
14208:
14209: * src/: include/pa_common.h, include/pa_exception.h,
14210: main/main.vcproj, main/pa_common.C, include/pa_os.h,
14211: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
14212: main/pa_xml_exception.C: locking move to pa_os [along with
14213: pa_sleep] apr-impl locking done
14214:
14215: * configure, configure.in, operators.txt, parser3.sln,
14216: src/classes/classes.vcproj, src/classes/hashfile.C,
14217: src/classes/xdoc.C, src/include/pa_config_fixed.h,
14218: src/include/pa_exception.h, src/include/pa_globals.h,
14219: src/include/pa_memory.h, src/include/pa_version.h,
14220: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
14221: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
14222: src/main/compile.tab.C, src/main/main.vcproj,
14223: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
14224: src/types/Makefile.am, src/types/pa_vhash.C,
14225: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
14226: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
14227: again with sdbm from apache
14228:
14229: 2003-11-05 paf
14230:
14231: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
14232: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
14233: \parser3project dir anymore
14234:
14235: * src/main/pa_charset.C: bugfix: had broken binary search [copied
14236: thoughtlessly from xalan]
14237:
14238: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
14239: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
14240: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
14241:
14242: * src/main/helpers/CaseFolding.txt:
14243: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
14244:
14245: 2003-11-04 paf
14246:
14247: * operators.txt: comment: ^mail:send[$.options[
14248:
14249: * src/classes/table.C: compiled on unix
14250:
1.116 moko 14251: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 14252:
14253: * src/classes/mail.C: compiled on unix
14254:
14255: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
14256: src/types/pa_vmail.h: !^mail:send[
14257: $.options[unix: string to append to sendmail command
14258: line]
14259:
14260: * operators.txt, src/classes/table.C, src/main/pa_string.C,
14261: tests/todo.txt: ^table.save[... $.separator[^#09]
14262: $.encloser["] <nothing> by default
14263:
14264: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
14265: !$.separator[^#09] !$.encloser["] <nothing> by
14266: default
14267:
14268: 2003-11-03 paf
14269:
14270: * operators.txt, src/classes/table.C, src/main/pa_common.C:
14271: ^table::load[; options: !$.column-separator[^#09]
14272: !$.column-encloser["]
14273:
14274: * operators.txt, src/include/pa_config_fixed.h,
14275: src/types/pa_vrequest.C: $request:document-root
14276:
14277: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
14278: [already included into uri=xxx]
14279:
14280: * operators.txt, src/classes/image.C, tests/todo.txt:
14281: ^image.gif[filename] for $response:download
14282:
14283: * src/classes/date.C: minor precaution
14284:
14285: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
14286: !^date.unix-timestamp[]
14287:
14288: 2003-10-30 paf
14289:
14290: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
14291: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
14292:
14293: * src/classes/: date.C, image.C: improvement diagnostics:
14294: $now[^date::create[$undefined]] now is error
14295:
14296: * src/main/pa_common.C: read errors would now be reported 'actually
14297: read -1 bytes'
14298:
14299: 2003-10-24 paf
14300:
14301: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
14302: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
14303: src/main/Makefile.am, src/targets/cgi/Makefile.am,
14304: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
14305:
14306: 2003-10-22 paf
14307:
14308: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
14309:
14310: 2003-10-21 paf
14311:
14312: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
14313: fixed: string.match[g] without <'> option produced columns with
14314: NULL's, which gpf'ed at table.save time
14315:
14316: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
14317: recoursion' message with intensive throw-catches fixed: incorrect
14318: name and line (one name upper then needed) in error message about
14319: problems inside try block
14320:
14321: 2003-10-10 paf
14322:
14323: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
14324: check offset argument for validity did that in String::Body::pos
14325: myself http://i2/tasks/edit/?id=4577425257580789777
14326:
14327: 2003-10-07 paf
14328:
14329: * src/main/: compile.tab.C, compile.y: ^if ( better error:
14330: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
14331:
14332: 2003-10-03 paf
14333:
14334: * parser3.sln, src/include/pa_dictionary.h,
14335: src/main/pa_dictionary.C, src/main/pa_string.C,
14336: src/targets/cgi/parser3.vcproj: dictionary optimized by
14337: precalculating cstr&length
14338:
14339: 2003-10-02 paf
14340:
14341: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14342: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
14343: main/pa_stylesheet_manager.C: bugfix: ^throw context were
14344: saved/restored incompletely http://www.parser.ru/forum/?id=21484
14345:
14346: 2003-09-30 paf
14347:
14348: * src/main/pa_string.C: string::replace bug fix [were ignoring
14349: occurrances after lang-mismatched
14350:
14351: 2003-09-29 paf
14352:
14353: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
14354: helper
14355:
14356: * src/main/pa_string.C: string::serialize bug fix with
14357: zero-terminator
14358:
14359: * src/classes/table.C: ^nameless_table.save column row now has no
14360: \t at the end
14361:
14362: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
14363: @postprocess now takes $response:body/download
14364:
14365: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
14366: error message
14367:
14368: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
14369:
14370: * src/classes/table.C: bugfix: flip: must produce nameless
14371: http://i2/tasks/edit/?id=4573405524674081244
14372:
14373: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
14374: main/helpers/simple_folding.pl: utf-8 upper/lower
14375:
14376: * src/main/pa_common.C: bugfix: utf signature were not ignored due
14377: to typo error http://i2/tasks/edit/?id=4573354650786434584
14378:
14379: 2003-09-26 paf
14380:
14381: * src/main/untaint.C: removed needless field
14382:
14383: * src/main/untaint.C: removed needless const
14384:
14385: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
14386: String.for_each bug fixed [omited one-char cases]
14387:
14388: * src/include/pa_stack.h: bugfix: before collecting garbage,
14389: runtime-executor stack were cleared... BADLY
14390:
14391: * src/main/pa_string.C: ^stirng.replace code used old
14392: param-convention on langs.append, fixed that search fo the like,
14393: found none
14394:
14395: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
14396: string::serialize/deserialize implemented Language enum assigned
14397: meaningful letters [more convinient for debugging. read warning
14398: before adding/changing anything]
14399:
14400: 2003-09-25 paf
14401:
14402: * src/: include/pa_string.h, include/pa_version.h,
14403: main/pa_string.C, main/untaint.C: templates and anonymous unions
14404: differences on unix
14405:
14406: * parser3.sln, src/classes/file.C, src/classes/image.C,
14407: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
14408: src/classes/xdoc.C, src/classes/xnode.C,
14409: src/include/pa_cache_managers.h, src/include/pa_charset.h,
14410: src/include/pa_charsets.h, src/include/pa_common.h,
14411: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
14412: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
14413: src/include/pa_table.h, src/lib/cord/cordbscs.c,
14414: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
14415: src/lib/cord/include/cord.h, src/main/compile.tab.C,
14416: src/main/compile_tools.h, src/main/pa_charset.C,
14417: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
14418: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14419: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
14420: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
14421: src/types/pa_vmail.C, src/types/pa_vmath.C,
14422: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
14423: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
14424:
14425: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
14426: functions aligned to that of eeparser3 look
14427:
14428: * src/lib/cord/cordprnt.c: removed warnings
14429:
14430: 2003-09-24 paf
14431:
14432: * src/: classes/file.C, classes/image.C, classes/mail.C,
14433: classes/op.C, classes/xdoc.C, classes/xnode.C,
14434: include/pa_cache_managers.h, include/pa_charset.h,
14435: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
14436: include/pa_sql_driver_manager.h, include/pa_string.h,
14437: include/pa_stylesheet_manager.h, include/pa_table.h,
14438: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
14439: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
14440: main/pa_sql_driver_manager.C, main/pa_string.C,
14441: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
14442: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
14443: types/pa_vstateless_class.h, types/pa_vstatus.C,
14444: types/pa_vxnode.C: v() functions of String::Body,
14445: String::Languages and String itself StringBody->String::Body
14446:
14447: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14448: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
14449: never optimized anything. todo: somehow speed up harder cases:
14450: concatenationA+concatenationB when last block of A and first of B
14451: contain same letters
14452:
14453: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14454: lib/cord/include/cord.h: langs: speed up by joining adjucent
14455: blocks of same char [CORD_append_block]
14456:
14457: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14458: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
14459: save space by extending blocks when appending block with c ==
14460: lastblock.c
14461:
14462: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
14463: working yet :( but more working &understood :)
14464:
14465: * src/: classes/table.C, include/pa_string.h,
14466: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
14467:
14468: 2003-09-23 paf
14469:
14470: * src/main/untaint.C: $a[ok!] $a works!
14471:
14472: * src/main/untaint.C: something even more works :)
14473:
14474: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
14475: something more works :)
14476:
14477: * src/: include/pa_string.h, lib/cord/cordbscs.c,
14478: lib/cord/cordxtra.c: something already works :)
14479:
14480: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
14481: serialize&deserialize
14482:
14483: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
14484: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
14485: main/untaint.C: main idea implemented, details left
14486:
14487: 2003-09-22 paf
14488:
14489: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
14490:
14491: * src/classes/xnode.C: copy/paste comment bugfix
14492:
14493: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
14494: allocator returns 0, just die.
14495: http://i2/tasks/edit/?id=4570798492410259445
14496:
14497: * src/classes/xdoc.C: copy/paste comment bugfix
14498:
14499: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
14500: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
14501: xnode: getAttributeNS setAttributeNS removeAttributeNS
14502: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
14503:
14504: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
14505: chars due to bitwise operation signed-char error]
14506:
14507: 2003-09-19 paf
14508:
14509: * src/types/pa_wcontext.C: output message: more practical
14510: suggestion
14511:
14512: * src/main/pa_common.C, operators.txt: merged
14513: $f[^file::load[binary;http://...]] $f.tables
14514:
14515: 2003-09-02 paf
14516:
14517: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
14518: flush stdout without referencing 'stdout' symbol. to hell with
14519: non-ansi libraries without 'stdout' symbol
14520:
14521: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
14522: unix (users reported problems with some old libc)
14523:
14524: * src/types/pa_vdate.h: forgot initializer
14525:
14526: 2003-09-01 paf
14527:
14528: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
14529: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
14530: zone]
14531:
14532: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
14533:
14534: 2003-08-19 paf
14535:
14536: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
14537: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
14538: simplified a little
14539:
14540: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
14541: [lost fix from 3.0.8]
14542:
14543: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
14544: visible here }
14545:
14546: bug fix
14547:
14548: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
14549:
14550: * src/main/compile.tab.C: initialized couple of variables about
14551: which user reported runtime problems when parser were compiled
14552: with VC7, warning level4. study shows that later in bison
14553: they've fixed that. would migrate to latest bison someday
14554:
14555: * src/types/pa_vmail.C: turned off recoding in gmime (were still
14556: recoding headers)
14557:
14558: * src/types/pa_vmail.C: works as before, same charset problems:
14559: gmime recodes to UTF-8 only headers, not body. so not recoding
14560: anything for now
14561:
14562: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
14563: problems with body
14564:
14565: * src/types/pa_vmail.C: mail_receive just compiled
14566:
14567: 2003-08-18 paf
14568:
14569: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
14570: main/main.vcproj, types/types.vcproj: win32: continued process
14571: detaching from \parser3project directory
14572:
14573: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
14574: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
14575: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
14576: src/lib/pcre/pcre_dftables.dsp,
14577: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
14578: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
14579: src/types/types.dsp: moved to MSVC 7
14580:
14581: * gnu.vcproj.vspscc, parser3.vssscc,
14582: src/classes/classes.vcproj.vspscc,
14583: src/lib/cord/cord.vcproj.vspscc,
14584: src/lib/ltdl/libltdl.vcproj.vspscc,
14585: src/lib/md5/md5.vcproj.vspscc,
14586: src/lib/pcre/pcre_dftables.vcproj.vspscc,
14587: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
14588: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
14589: src/targets/isapi/parser3isapi.vcproj.vspscc,
14590: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
14591: moved to MSVC 7
14592:
14593: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
14594: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
14595: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
14596: src/lib/pcre/pcre_dftables.vcproj,
14597: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
14598: src/targets/cgi/parser3.vcproj,
14599: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
14600: new VS project files
14601:
14602: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
14603: .NET to detect Jalindi Igloo capabilities.
14604:
14605: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 14606: src/classes/classes.awk, src/doc/footer.htm,
14607: src/include/pa_config_fixed.h, src/include/pa_version.h,
14608: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 14609: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
14610: src/types/pa_vmail.C: merged 3.1.0 latest changes
14611:
14612: 2003-08-15 paf
14613:
14614: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14615: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
14616:
14617: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
14618: non-ascii <yyy> now encoded correctly
14619:
14620: 2003-07-29 paf
14621:
1.116 moko 14622: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
14623: dist
1.95 moko 14624:
14625: * src/types/pa_vmail.C: just started --with-mail-receive
14626:
14627: 2003-07-28 paf
14628:
1.116 moko 14629: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
14630: dependence in src/classes, src/lib/gc now in dist
1.95 moko 14631:
14632: * src/main/pa_string.C: ^cache bug fix [were not working at all]
14633:
14634: 2003-07-25 paf
14635:
14636: * src/doc/footer.htm: year
14637:
14638: 2003-07-24 paf
14639:
14640: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
14641: fix
14642:
14643: * src/include/pa_version.h: release
14644:
1.116 moko 14645: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 14646:
14647: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
14648: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
14649: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
14650: getting rid of win32xml pseudo project
14651:
14652: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
14653:
1.116 moko 14654: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
14655: configure.in, operators.txt, parser3.dsw,
1.95 moko 14656: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 14657: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 14658: src/classes/classes.C, src/classes/classes.awk,
14659: src/classes/classes.dsp, src/classes/classes.h,
14660: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14661: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14662: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14663: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14664: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14665: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14666: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
14667: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 14668: src/include/pa_array.h, src/include/pa_cache_managers.h,
14669: src/include/pa_charset.h, src/include/pa_charsets.h,
14670: src/include/pa_common.h, src/include/pa_config_auto.h.in,
14671: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
14672: src/include/pa_dictionary.h, src/include/pa_dir.h,
14673: src/include/pa_exception.h, src/include/pa_exec.h,
14674: src/include/pa_globals.h, src/include/pa_hash.h,
14675: src/include/pa_memory.h, src/include/pa_opcode.h,
14676: src/include/pa_operation.h, src/include/pa_pool.h,
14677: src/include/pa_pragma_pack_begin.h,
1.95 moko 14678: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
14679: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
14680: src/include/pa_sapi.h, src/include/pa_socks.h,
14681: src/include/pa_sql_connection.h,
14682: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
14683: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
14684: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14685: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 14686: src/include/pa_uue.h, src/lib/Makefile.am,
14687: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
14688: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
14689: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
14690: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 14691: src/lib/cord/include/ec.h,
14692: src/lib/cord/include/private/Makefile.am,
14693: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 14694: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
14695: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 14696: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 14697: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
14698: src/main/compile_tools.C, src/main/compile_tools.h,
14699: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
14700: src/main/pa_cache_managers.C, src/main/pa_charset.C,
14701: src/main/pa_charsets.C, src/main/pa_common.C,
14702: src/main/pa_dictionary.C, src/main/pa_dir.C,
14703: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 14704: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
14705: src/main/pa_request.C, src/main/pa_socks.C,
14706: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14707: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 14708: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
14709: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
14710: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
14711: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
14712: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
14713: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
14714: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 14715: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
14716: src/targets/isapi/parser3isapi.dsp,
14717: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 14718: src/types/pa_junction.h, src/types/pa_method.h,
14719: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 14720: src/types/pa_vclass.C, src/types/pa_vclass.h,
14721: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14722: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14723: src/types/pa_vdouble.h, src/types/pa_venv.h,
14724: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14725: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14726: src/types/pa_vimage.C, src/types/pa_vimage.h,
14727: src/types/pa_vint.h, src/types/pa_vjunction.h,
14728: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
14729: src/types/pa_vmath.h, src/types/pa_vmemory.h,
14730: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14731: src/types/pa_vobject.C, src/types/pa_vobject.h,
14732: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14733: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14734: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14735: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14736: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14737: src/types/pa_vstring.h, src/types/pa_vtable.C,
14738: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14739: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14740: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14741: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14742: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
14743: HEAD
14744:
14745: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
14746: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
14747: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
14748: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
14749: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
14750: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
14751: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
14752: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
14753: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
14754: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
14755: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
14756: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
14757: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
14758: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
14759: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
14760: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
14761: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
14762: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
14763: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
14764: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
14765: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
14766: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
14767: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
14768: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
14769: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
14770: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
14771: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
14772: outputs/create-dir, results/001.processed, results/002.processed,
14773: results/003.processed, results/004.processed,
14774: results/005.processed, results/006.processed,
14775: results/007.processed, results/008.processed,
14776: results/009.processed, results/010.processed,
14777: results/011.processed, results/012.processed,
14778: results/013.processed, results/014.processed,
14779: results/015.processed, results/016.processed,
14780: results/017.processed, results/018.processed,
14781: results/019.processed, results/020.processed,
14782: results/021.processed, results/022.processed,
14783: results/023.processed, results/024.processed,
14784: results/025.processed, results/026.processed,
14785: results/027.processed, results/028.processed,
14786: results/029.processed, results/030.processed,
14787: results/031.processed, results/032.processed,
14788: results/033.processed, results/034.processed,
14789: results/035.processed, results/036.processed,
14790: results/037.processed, results/038.processed,
14791: results/039.processed, results/040.processed,
14792: results/041.processed, results/042.processed,
14793: results/043.processed, results/044.processed,
14794: results/045.processed, results/046.processed,
14795: results/047.processed, results/048.processed,
14796: results/049.processed, results/050.processed,
14797: results/051.processed, results/052.processed,
14798: results/053.processed, results/054.processed,
14799: results/055.processed, results/056.processed,
14800: results/057.processed, results/058.processed,
14801: results/059.processed, results/060.processed,
14802: results/061.processed, results/062.processed,
14803: results/063.processed, results/064.processed,
14804: results/065.processed, results/066.processed,
14805: results/067.processed, results/068.processed,
14806: results/069.processed, results/070.processed,
14807: results/071.processed, results/072.processed,
14808: results/073.processed, results/074.processed,
14809: results/075.processed, results/076.processed,
14810: results/077.processed, results/078.processed,
14811: results/079.processed, results/080.processed,
14812: results/081.processed, results/082.processed,
14813: results/083.processed, results/084.processed,
14814: results/085.processed, results/086.processed,
14815: results/087.processed, results/088.processed,
14816: results/089.processed, results/090.processed,
14817: results/091.processed, results/092.processed,
14818: results/093.processed, results/094.processed,
14819: results/095.processed, results/096.processed,
14820: results/097.processed, results/098.processed,
14821: results/099.processed, results/100.processed,
14822: results/101.processed, results/102.processed,
14823: results/103.processed, results/104.processed,
14824: results/105.processed, results/106.processed,
14825: results/107.processed, results/108.processed,
14826: results/109.processed, results/110.processed,
14827: results/111.processed, results/112.processed,
14828: results/113.processed, results/114.processed,
14829: results/115.processed, results/116.processed,
14830: results/117.processed, results/118.processed,
14831: results/119.processed, results/120.processed,
14832: results/121.processed, results/122.processed,
14833: results/123.processed, results/124.processed,
14834: results/125.processed, results/126.processed,
14835: results/127.processed, results/128.processed,
14836: results/129.processed, results/130.processed,
14837: results/131.processed, results/132.processed,
14838: results/133.processed, results/134.processed,
14839: results/135.processed, results/136.processed,
14840: results/137.processed, results/138.processed,
14841: results/139.processed, results/140.processed,
14842: results/141.processed: merged(copied) to HEAD from template_gc
14843:
14844: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
14845: towards \parser3project not having to be in root
14846:
14847: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
14848: module compiled [were minor unnecessary changes in lib/md5
14849: interface]
14850:
14851: * src/include/pa_version.h: release
14852:
14853: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
14854:
14855: * src/classes/math.C: merged uuid bugfix
14856:
14857: * tests/: 141.html, results/141.processed: fixed bug with
14858: too-small-a-buffer
14859:
14860: * src/classes/math.C: uuid bugfix
14861:
14862: * tests/: 141.html, Makefile, results/005.processed,
14863: results/030.processed, results/075.processed,
14864: results/078.processed: to reflect date format change (were -
14865: become ' ')
14866:
14867: * src/classes/math.C: uuid bugfix
14868:
14869: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
14870: debug/release changes
14871:
14872: * src/lib/md5/pa_md5c.c: PA_ -> pa_
14873:
14874: 2003-07-23 paf
14875:
14876: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14877: renamed a little [to move to comman naming conv]
14878:
1.116 moko 14879: * src/targets/Makefile.am: apache13 splitted to simplify apache
14880: build
1.95 moko 14881:
14882: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
14883: main/pa_request.C, main/pa_sql_driver_manager.C,
14884: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
14885: stack top_index() fixed
14886:
14887: * src/main/pa_globals.C: minor style changes
14888:
14889: * src/: classes/op.C, include/pa_sql_connection.h: connection
14890: closing/caching fixed [connections were not closed/put to cache]
14891:
14892: 2003-07-22 paf
14893:
14894: * INSTALL: gc part updated stightly
14895:
14896: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
14897: new sapi interface
14898:
14899: * src/classes/file.C: comment on OS
14900:
14901: * src/main/pa_string.C: removed reduntant invariant check [there is
14902: one deeper in cord lib]
14903:
14904: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14905:
14906: * src/main/pa_memory.C: out of memory is no longer coredump
14907:
14908: * INSTALL: disable-threads adviced
14909:
14910: 2003-07-21 paf
14911:
1.116 moko 14912: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14913:
14914: * src/classes/file.C: file::exec/cgi environment variables now must
14915: be UPPERCASE and A-Z 0-9 _-
14916:
14917: * src/classes/file.C: env passing fixed
14918:
14919: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14920:
14921: * src/main/pa_common.C: http:// CRLF now
14922:
14923: 2003-07-02 paf
14924:
14925: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14926: fields to reflect their real meaning
14927:
14928: 2003-06-27 paf
14929:
14930: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14931: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14932: file::exec/cgi .charset
14933:
14934: 2003-06-26 paf
14935:
14936: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14937: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14938: src/classes/table.C: fixed several uninitialized local
14939: structures. notably ^hash.foreach now inserts delimiters
14940: properly [were inserting it before first body]
14941:
14942: 2003-06-24 paf
14943:
14944: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14945:
14946: 2003-06-20 paf
14947:
14948: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14949: src/main/pa_globals.C: introducing
14950: $f[^file::load[binary;http://...]] $f.tables
14951:
14952: 2003-06-06 paf
14953:
14954: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14955: table. [were method lookup: inconsistent]
14956:
14957: 2003-06-02 paf
14958:
14959: * src/include/pa_memory.h: empty string clone fixed to return
14960: writable memory
14961:
14962: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14963: were not appended] which violated string invariant
14964:
14965: 2003-05-30 paf
14966:
14967: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14968: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14969:
14970: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14971: GMT ; RFC 822, updated by RFC 1123
14972:
14973: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14974: targets/isapi/parser3isapi.C: initialized request_info properly
14975:
14976: * src/classes/xnode.C: found minor bug, commended for future
14977:
14978: 2003-05-28 paf
14979:
14980: * src/classes/form.C: request_info.content_length can't be <0,
14981: size_t for some time
14982:
14983: 2003-05-26 paf
14984:
14985: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14986: forgotten <0 changed to !=STRING_NOT_FOUND
14987:
14988: * src/classes/math.C: merged ffffu from HEAD
14989:
14990: 2003-05-11 paf
14991:
14992: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14993:
14994: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14995: premature doc free. transformed document had xmlDoc reference
14996: stored to non-gc-memory (libgdome) added holding-reference
14997:
14998: 2003-04-29 paf
14999:
15000: * src/main/pa_globals.C: started digging on double free. on win32
15001: found that that's perfectly normal.
15002:
15003: 2003-04-25 paf
15004:
15005: * src/classes/table.C: table.join bug fix [bad limit check]
15006:
15007: * src/classes/math.C: merged from HEAD: simpiler hash_string
15008:
15009: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
15010: print anything. changed to quicker and simplier code
15011:
15012: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
15013: strict a check]
15014:
15015: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
15016:
15017: 2003-04-24 paf
15018:
15019: * src/include/pa_table.h: too strict assert loosened
15020:
15021: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
15022: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
15023: report
15024:
15025: 2003-04-21 paf
15026:
1.116 moko 15027: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 15028:
15029: * src/main/pa_globals.C: pcre memory management changed to use GC
15030: memory
15031:
15032: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
15033: xmlMallocAtomic [author agreed to my suggestion], used that
15034:
15035: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
15036:
15037: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
15038: types/pa_vmail.C: attributed_meaning_to_string added
15039: L_UNSPECIFIED piece which was sortof OK, but violated string
15040: invariant [assertion barked on that] changed to L_PASS_APPEND,
15041: made that param obligatory
15042:
15043: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
15044: fixed [assert helped]
15045:
15046: * src/include/pa_string.h: assert added [looking for bug]
15047:
15048: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
15049: names on Win32 considered disk-global
15050:
15051: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
15052: considered disk-global
15053:
15054: 2003-04-18 paf
15055:
15056: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
15057: filenames
15058:
15059: * src/main/untaint.C: enabled '~' letter in filenames
15060:
15061: 2003-04-16 paf
15062:
15063: * src/classes/file.C: small bug introduced in autoptr times fixed
15064:
15065: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
15066: HEAD
15067:
1.116 moko 15068: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 15069:
15070: 2003-04-15 paf
15071:
15072: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
15073: src/lib/md5/pa_md5c.c, tests/141.html,
15074: tests/results/141.processed: merged from head ^math:uuid[]
15075: ^math:uid64[] ^math:md5[string]
15076:
15077: test added: 141.html
15078:
15079: * operators.txt, src/classes/math.C: ^math:uid64[]
15080:
15081: * src/classes/math.C: ^math:uuid[]
15082:
15083: * operators.txt, src/classes/math.C: ^math:uuid[]
15084:
15085: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
15086: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
15087:
15088: * operators.txt, src/classes/file.C, src/include/pa_common.h,
15089: src/include/pa_config_fixed.h, src/main/pa_common.C:
15090: ^file::load[mode;name; $.offset $.limit
15091:
15092: 2003-04-14 paf
15093:
15094: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
15095: started ^math:md5
15096:
15097: * src/classes/table.C, src/include/pa_array.h,
15098: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
15099: tests/results/140.processed: table $.reverse option works in
15100: create&co table $.distinct[tables] bug fix merged
15101:
15102: * src/: classes/table.C, include/pa_table.h: table
15103: $.distinct[tables] bug fixed
15104:
15105: * src/classes/table.C: more warnings
15106:
15107: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
15108: removed checks in table::set_current, moved them back to
15109: table::locate implemented table::create/join ñ $.reverse
15110:
15111: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
15112: removed checks in table::set_current, moved them back to
15113: table::locate
15114:
15115: 2003-04-11 paf
15116:
15117: * operators.txt, src/classes/date.C, src/classes/table.C,
15118: src/include/pa_array.h, src/include/pa_common.h,
15119: src/include/pa_config_includes.h, src/include/pa_string.h,
15120: src/include/pa_table.h, src/main/pa_request.C,
15121: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15122: src/main/pa_table.C: merged from HEAD from
15123: before_append_array_limit_sense_change to
15124: after_append_array_limit_sense_change
15125:
15126: * src/classes/table.C: typo
15127:
15128: * operators.txt, src/classes/date.C, src/classes/table.C,
15129: src/include/pa_array.h, src/include/pa_common.h,
15130: src/include/pa_config_includes.h, src/include/pa_globals.h,
15131: src/include/pa_table.h, src/main/pa_array.C,
15132: src/main/pa_globals.C, src/main/pa_request.C,
15133: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15134: src/main/pa_table.C: append_array_limit_sense_change locate
15135: accepts options same as create new option: $.reverse(1) [do not
15136: work in table::create]
15137:
15138: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
15139: (stat xxx,
15140:
15141: * src/classes/: table.C: typo
15142:
15143: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
15144: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
15145: results/130.processed, results/131.processed,
15146: results/132.processed, results/133.processed,
15147: results/134.processed, results/135.processed,
15148: results/136.processed, results/137.processed,
15149: results/138.processed, results/139.processed: added few mustfail
15150: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
15151: date/time 132.html mustfail: access to junction outside of
15152: context 133.html mustfail: access to junction outside of context,
15153: case version 134.html mustfail: hash: adding a key inside of
15154: foreach 135.html mustfail: modifying system class 136.html
15155: mustfail: $.name outside of $hash[here] 137.html mustfail:
15156: appendChild without import 138.html mustfail: invalid encoding
15157: inside of xml 139.html mustfail: bad XPath
15158:
15159: * operators.txt, src/classes/table.C, tests/084.html,
15160: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
15161: tests/129.html, tests/results/125.processed,
15162: tests/results/126.processed, tests/results/127.processed,
15163: tests/results/128.processed, tests/results/129.processed: merged
15164: from HEAD ^table.hash[key][$.distinct[tables]]
15165:
15166: maked appropriate tests [changed one old nonconforming]
15167:
15168: * operators.txt, src/classes/table.C:
15169: ^table.hash[key][$.distinct[tables]]
15170:
15171: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
15172: merged fix for found very old xml (dom) bug: were passing
15173: domString objects and later ERROREOUSLY freed them
15174:
15175: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
15176: src/main/pa_charset.C: re-added libgdome patch. regretfully
15177: libgdome bug can not be worked around
15178:
15179: 2003-04-10 paf
15180:
15181: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
15182: found very old xml (dom) bug: were passing domString objects and
15183: later ERROREOUSLY freed them
15184:
15185: * src/doc/string.dox, src/include/pa_memory.h,
15186: src/include/pa_string.h, src/lib/cord/cordbscs.c,
15187: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
15188: tests/123.html, tests/124.html, tests/results/001.processed,
15189: tests/results/002.processed, tests/results/003.processed,
15190: tests/results/004.processed, tests/results/005.processed,
15191: tests/results/006.processed, tests/results/008.processed,
15192: tests/results/009.processed, tests/results/010.processed,
15193: tests/results/011.processed, tests/results/012.processed,
15194: tests/results/013.processed, tests/results/014.processed,
15195: tests/results/015.processed, tests/results/016.processed,
15196: tests/results/017.processed, tests/results/018.processed,
15197: tests/results/020.processed, tests/results/021.processed,
15198: tests/results/022.processed, tests/results/023.processed,
15199: tests/results/024.processed, tests/results/025.processed,
15200: tests/results/026.processed, tests/results/027.processed,
15201: tests/results/028.processed, tests/results/029.processed,
15202: tests/results/030.processed, tests/results/031.processed,
15203: tests/results/032.processed, tests/results/033.processed,
15204: tests/results/034.processed, tests/results/035.processed,
15205: tests/results/036.processed, tests/results/037.processed,
15206: tests/results/038.processed, tests/results/039.processed,
15207: tests/results/040.processed, tests/results/041.processed,
15208: tests/results/042.processed, tests/results/043.processed,
15209: tests/results/044.processed, tests/results/045.processed,
15210: tests/results/046.processed, tests/results/047.processed,
15211: tests/results/048.processed, tests/results/049.processed,
15212: tests/results/050.processed, tests/results/051.processed,
15213: tests/results/052.processed, tests/results/053.processed,
15214: tests/results/054.processed, tests/results/055.processed,
15215: tests/results/056.processed, tests/results/057.processed,
15216: tests/results/058.processed, tests/results/059.processed,
15217: tests/results/060.processed, tests/results/061.processed,
15218: tests/results/062.processed, tests/results/063.processed,
15219: tests/results/064.processed, tests/results/065.processed,
15220: tests/results/066.processed, tests/results/067.processed,
15221: tests/results/068.processed, tests/results/069.processed,
15222: tests/results/070.processed, tests/results/071.processed,
15223: tests/results/072.processed, tests/results/073.processed,
15224: tests/results/074.processed, tests/results/075.processed,
15225: tests/results/076.processed, tests/results/077.processed,
15226: tests/results/078.processed, tests/results/079.processed,
15227: tests/results/080.processed, tests/results/081.processed,
15228: tests/results/082.processed, tests/results/083.processed,
15229: tests/results/084.processed, tests/results/085.processed,
15230: tests/results/086.processed, tests/results/087.processed,
15231: tests/results/088.processed, tests/results/089.processed,
15232: tests/results/090.processed, tests/results/091.processed,
15233: tests/results/092.processed, tests/results/093.processed,
15234: tests/results/094.processed, tests/results/095.processed,
15235: tests/results/096.processed, tests/results/097.processed,
15236: tests/results/101.processed, tests/results/102.processed,
15237: tests/results/104.processed, tests/results/105.processed,
15238: tests/results/106.processed, tests/results/107.processed,
15239: tests/results/108.processed, tests/results/109.processed,
15240: tests/results/110.processed, tests/results/111.processed,
15241: tests/results/112.processed, tests/results/113.processed,
15242: tests/results/114.processed, tests/results/115.processed,
15243: tests/results/116.processed, tests/results/117.processed,
15244: tests/results/118.processed, tests/results/119.processed,
15245: tests/results/120.processed, tests/results/121.processed,
15246: tests/results/122.processed, tests/results/123.processed,
15247: tests/results/124.processed: new convention: char* never 0.
15248: assert in cord on that
15249:
15250: * src/main/pa_charset.C: couple more asserts
15251:
15252: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
15253: speedup
15254:
15255: * src/main/pa_charset.C: couple assertions on fantastic situations
15256: added [may be those is the case now?]
15257:
15258: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
15259: that's memory from gc_malloc, not from g_malloc :(, but would
15260: hope]
15261:
15262: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
15263: that's memory from gc_malloc, not from g_malloc :(, but would
15264: hope]
15265:
15266: * src/main/pa_charset.C: checked custom malloc for returning 0
15267:
15268: 2003-04-09 paf
15269:
15270: * src/classes/date.C: merged ^date.roll changes
15271:
15272: * src/classes/date.C: ^date.roll bug fix
15273:
15274: * src/classes/date.C: ^date.roll now throws less errors: month
15275: shifts handles end of month situation by reducing day number
15276: hour-hole shift reduces hour to recover
15277:
15278: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
15279: Sort by function time
15280:
15281: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
15282: http:// $.charset[] param done
15283:
15284: * tests/: 122.html, results/122.processed: 122 date test <= and ==
15285: added [after volatile fix. passes on win&intel-solaris]
15286:
15287: 2003-04-08 paf
15288:
15289: * src/: classes/file.C, classes/op.C, classes/table.C,
15290: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
15291: include/pa_common.h, include/pa_request_charsets.h,
15292: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15293: main/pa_exec.C, main/pa_request.C, main/untaint.C,
15294: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
15295: types/pa_vresponse.C: started http:// $.charset[] param and
15296: http response charset detection just compiled. todo:test
15297:
15298: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
15299:
15300: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
15301: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
15302: types/pa_vmail.C: changed transcode param converntion along with
15303: string creating convention -- all strings are zero-terminated,
15304: this allowed to fix one remaining String("123", 2) case
15305:
15306: * src/: classes/date.C, classes/file.C, classes/hash.C,
15307: classes/op.C, classes/string.C, classes/table.C,
15308: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
15309: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
15310: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15311: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
15312: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
15313: violated String::invariant. started fixing [not compiled now]
15314:
15315: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
15316: main/compile.tab.C, main/compile.y, main/pa_string.C,
15317: main/untaint.C, targets/cgi/parser3.C: number of string style
15318: improvements & optimizations
15319:
15320: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
15321: :(]
15322:
15323: * src/main/untaint.C: removed redundant & in CORD_pos param passing
15324: [for it's a pointer really]
15325:
15326: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
15327: 'n' param. worked that around
15328:
15329: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
15330: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
15331: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
15332: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
15333: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
15334:
15335: Thanks for the bug report and patch.
15336:
15337: I hadn't looked at this code in a while. Reading it now, it
15338: seems to me that the tests should also be ">= MAX_DEPTH" to
15339: comply with the invariant, though that may not matter a lot. I
15340: changed that, too.
15341:
15342: Hans
15343:
15344: 2003-04-07 paf
15345:
15346: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
15347: merged from head:safe mode error message now includes numbers
15348:
15349: * src/main/execute.C: n-th attempt to make a=a work with double.
15350: problem: as_double returns it's result in fp-register compiler
15351: optimizes access to that register after b->as_double, and just
15352: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15353: from memory. _SAME_ double values do not match here. when
15354: forced to REload fp-register, values do match.
15355:
15356: tried to make them volatile.
15357:
15358: * src/main/execute.C: n-th attempt to make a=a work with double.
15359: problem: as_double returns it's result in fp-register compiler
15360: optimizes access to that register after b->as_double, and just
15361: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
15362: from memory. _SAME_ double values do not match here. when
15363: forced to REload fp-register, values do match.
15364:
15365: tried to make them volatile.
15366:
15367: * src/types/pa_vobject.h: small style change
15368:
15369: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
15370:
15371: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
15372: mode error message now includes numbers
15373:
15374: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
15375: now causes death
15376:
15377: 2003-04-04 paf
15378:
15379: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
15380: incorportated pa_exec patch by From: "Victor Fedoseev"
15381: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
15382: Sent: Thursday, January 23, 2003 9:14 AM
15383:
15384: huge speedup on ^file::cgi with big result
15385:
15386: * src/classes/table.C: sort table with 0 rows bug fixed
15387:
15388: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
15389: fix http://i2/tasks/edit/?id=4493701604654042676
15390:
15391: @main[] $with_default[ $.a[1] $._default[default from
15392: with_default] ] ^show[$with_default]
15393:
15394: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15395: =$to_add_to.xxx=<br>
15396:
15397: ^show[$to_add_to]
15398:
15399: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15400: ^show[$cloned]
15401:
15402: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15403:
15404: } <hr>
15405:
15406: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
15407: http://i2/tasks/edit/?id=4493701604654042676
15408:
15409: @main[] $with_default[ $.a[1] $._default[default from
15410: with_default] ] ^show[$with_default]
15411:
15412: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
15413: =$to_add_to.xxx=<br>
15414:
15415: ^show[$to_add_to]
15416:
15417: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
15418: ^show[$cloned]
15419:
15420: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
15421:
15422: } <hr>
15423:
15424: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
15425: http://i2/tasks/edit/?id=4507350336410850921
15426:
15427: * src/classes/xdoc.C: memory allocation func bugfix
15428: http://i2/tasks/edit/?id=4499303470368629745
15429:
15430: * src/classes/math.C: allowed random 1...
15431:
15432: * src/classes/math.C: allowed random 0..
15433:
15434: * src/main/pa_globals.C: exif mem leak
15435: http://i2/tasks/edit/?id=4480590323629807263
15436:
15437: * src/: classes/classes.dsp, main/main.dsp,
15438: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
15439: fix http://i2/tasks/edit/?id=4493946731322521294
15440: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
15441:
15442: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15443: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
15444: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
15445: links to xml libs made relative, no need to unpack parser3project
15446: to /parser3project.
15447:
15448: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
15449: column more precise - tab handling bug fixed
15450:
15451: * src/main/: compile.tab.C, compile.y: more understandable error
15452: message in case @CLASS with more then one line inside
15453:
15454: * src/targets/cgi/parser3.C: more understandable error message in
15455: case of errors in @unhandled_exception
15456:
15457: 2003-04-03 paf
15458:
15459: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
15460: src/main/compile.tab.C, src/main/compile.y,
15461: src/main/compile_tools.C, src/main/compile_tools.h,
15462: src/main/execute.C, src/main/pa_request.C: debug info format
15463: simplified, now it's: OP_VALUE Operation::Origin << here value*
15464:
15465: higher limits: file number (max: 255) line number (max:
15466: 64535) column number (max: 255)
15467:
15468: * src/classes/math.C: top limit
15469:
15470: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
15471: precise parse error position in case of
15472:
15473: ^bug ]
15474:
15475: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
15476: changed to realities, and passed [bug fixed]
15477:
15478: * src/: classes/op.C, include/pa_request.h, main/compile.C,
15479: main/compile.tab.C, main/compile.y, main/compile_tools.C,
15480: main/compile_tools.h, main/pa_request.C: introducing
15481: ^process...[main-method-alias]
15482:
15483: * src/: classes/date.C, classes/image.C, classes/op.C,
15484: classes/string.C, classes/table.C, classes/xdoc.C,
15485: types/pa_vmethod_frame.h: MethodParams& now [methods without
15486: params receive zero reference, but they are expected not to look
15487: there]
15488:
15489: * operators.txt, src/classes/date.C, src/classes/double.C,
15490: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
15491: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15492: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
15493: src/classes/string.C, src/classes/table.C, src/classes/void.C,
15494: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
15495: src/main/execute.C, src/types/pa_method.h: MethodParams& now
15496: [methods without params receive zero reference, but they are
15497: expected not to look there]
15498:
15499: * operators.txt, src/classes/op.C, src/include/pa_request.h,
15500: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
15501: ^process...[filename] useful for better error reporting
15502: [file/line/col]
15503:
15504: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
15505: types/pa_vstring.h: slightly improved error messages text: 1. is
15506: '%s', it 2. method undefined in case of ^void[]
15507:
15508: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15509: include/pa_types.h, main/execute.C, main/pa_request.C: exception
15510: handling done. now we have error columns todo: test it
15511:
15512: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
15513: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
15514:
15515: this makes life easier: were: bad stack order -- were in
15516: exception catch unwind order, which didn't match execution order
15517:
15518: @main[] ^try{ ^first[] }{ ^throw[c;3] }
15519:
15520: @first[] ^throw[a;1]
15521:
15522: showed throw a first throw b try
15523:
15524: which is no good
15525:
15526: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
15527: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
15528: trace reset after handled exception [old bug fixed]
15529:
15530: * src/main/: compile.tab.C, compile.y: parse position old bug
15531: fixed. position reporting made precise [both, in parse erros and
15532: runtime errors]
15533:
15534: 2003-04-02 paf
15535:
15536: * src/: include/pa_operation.h, include/pa_request.h,
15537: main/compile.C, main/compile.tab.C, main/compile.y,
15538: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15539: main/pa_exception.C, main/pa_request.C: debug info: started
15540: using. todo:complete
15541:
15542: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
15543: main/compile.C, main/compile.tab.C, main/compile.y,
15544: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15545: main/pa_request.C: prepared debug info todo:use it
15546:
15547: * src/include/pa_operation.h: strange mistake fixed: forgot to
15548: return Operation class->union after switching from autoptrs.
15549:
15550: * tests/: Makefile, results/108.processed, results/117.processed:
15551: meta considered OK [it's up to coder now to remove it not needed]
15552:
15553: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
15554: Dictionary constructor when moved to gc]
15555:
15556: * src/main/pa_common.C: uncommented http:// file loading
15557:
15558: * src/include/pa_array.h, src/main/execute.C,
15559: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
15560: fix [gdGrowingBuf]
15561:
15562: * configure.in, src/lib/Makefile.am: removed patches
15563:
15564: * configure, src/include/pa_config_auto.h.in,
15565: src/main/pa_charset.C: --enable-assertions autoconf-ed
15566:
15567: * src/main/pa_common.C: uncommented http:// file loading
15568:
15569: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
15570: xdoc::create/load
15571:
15572: * src/: classes/form.C, classes/hash.C, classes/image.C,
15573: classes/string.C, classes/table.C, classes/void.C,
15574: include/pa_common.h, main/pa_common.C, main/pa_request.C,
15575: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
15576: String::String(str,helper_length) are checked. found/fixed one
15577: place: $request:body now zero-terminated,
15578:
15579: * src/: classes/op.C, classes/table.C, include/pa_request.h,
15580: main/compile_tools.C, main/execute.C, types/pa_value.h,
15581: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
15582: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15583: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
15584: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
15585: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
15586: types/pa_vxnode.h: more locally scoped vars in execute (more
15587: easily optimizable)
15588:
15589: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
15590: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
15591:
15592: * src/: include/pa_array.h, include/pa_stack.h,
15593: include/pa_string.h, main/compile_tools.C, main/main.dsp,
15594: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
15595: become assertion iterator in methodframe filler
15596:
15597: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
15598: targets/cgi/parser3.C: array::get/put inlined
15599:
15600: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
15601: gc_substitute_memory_management_functions +installed CORD_oom
15602: function
15603:
15604: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
15605: src/include/pa_config_includes.h, src/include/pa_string.h,
15606: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
15607: src/targets/cgi/parser3.C: converted debug hacks to ANSI
15608: assertions started configure.in --enable-assertions
15609:
15610: 2003-04-01 paf
15611:
15612: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
15613: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
15614: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
15615: gdome uses glib memory, and stores last pointer to xmlDoc there,
15616: gc misses that and collects valid memory fixed by remembering
15617: xmlDoc from dom object in xdoc. todo: do something with
15618: premature free of xdoc with xnodes/node values referring into it
15619:
15620: * src/classes/: mail.C: typo fix
15621:
15622: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
15623: changes
15624:
15625: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
15626: main/pa_memory.C: moved memory debugging to global level: to
15627: pa_gc_malloc
15628:
15629: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
15630: debugging showed no errors. todo: debug parser memory
15631:
15632: * src/targets/cgi/: parser3.C, parser3.dsp: more build
15633: configurations
15634:
15635: * src/: classes/classes.dsp, include/pa_config_fixed.h,
15636: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
15637: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
15638: types/types.dsp: prepared xml-static configuration
15639:
15640: 2003-03-31 paf
15641:
15642: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
15643: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
15644: xml lib memory debugging, simple checks failed: it seems that
15645: library does realloc(bad ptr), and recording those ptrs in heap
15646: [for debugging] was bad: heap situation changes = everything
15647: works fine
15648:
15649: * src/: main/pa_charset.C, include/pa_charset.h: worked around
15650: xmlRegisterCharEncodingHandler limitation [currently imposed
15651: limit of 10 user-defined charsets]
15652:
15653: 2003-03-28 paf
15654:
15655: * src/main/execute.C: execution stack copied to local register
15656: variable, removed lots [~2e7) of memory accesses
15657:
15658: 2003-03-27 paf
15659:
15660: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
15661: works in debug, but fails in release todo: fix that
15662:
15663: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
15664: targets/cgi/parser3.C: forgot to merge XML memory funcs
15665: replacement from gc branch
15666:
15667: * src/main/pa_exec.C: introducing append_help_length [radical
15668: improvement here]
15669:
15670: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
15671: 'not recommened' in gc.h, on win32 noticed no difference]
15672:
15673: * src/include/pa_array.h: returned checked array get [were disabled
15674: for debugging] result:not slower [don't understand that, it were
15675: INLINED] todo: find out a way of inlining it!
15676:
15677: * src/: include/pa_string.h, lib/gc/include/gc.h,
15678: lib/gc/include/gc_fake.h, main/compile.tab.C,
15679: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
15680: convention changed: all resulting strings are zero-terminated
15681:
15682: * src/: classes/date.C, classes/file.C, classes/hash.C,
15683: classes/string.C, classes/table.C, classes/void.C,
15684: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
15685: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
15686: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
15687: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
15688: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
15689: types/pa_vfile.C, types/pa_vmail.C: introducing
15690: append_help_length [radical improvement here]
15691:
15692: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
15693: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
15694: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
15695: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
15696: even slower
15697:
15698: * src/: classes/string.C, classes/table.C, include/pa_array.h,
15699: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
15700: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
15701: clients of &get(): most to use non-ref version, some[in tight
15702: places] to get_unchecked_ref
15703:
15704: * src/doc/memory.dox: forgot to add
15705:
15706: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
15707: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
15708: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
15709: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
15710: main/compile.y, main/compile_tools.C, main/compile_tools.h,
15711: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
15712: targets/cgi/parser3.dsp, types/pa_vmail.C,
15713: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
15714: T>>&<< removed after Stack::pop wiping removed [moved to separate
15715: func] other Array & removed
15716:
15717: 2003-03-26 paf
15718:
15719: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
15720: classes/table.C, include/pa_array.h, include/pa_charset.h,
15721: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
15722: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15723: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
15724: main/main.dsp, main/pa_charset.C, main/pa_common.C,
15725: main/pa_exec.C, main/pa_sql_driver_manager.C,
15726: main/pa_stylesheet_manager.C, main/pa_table.C,
15727: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15728: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
15729: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
15730: pre-evaluated .count() in some places
15731:
15732: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
15733: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
15734: types/types.dsp: .dsp profiling updated
15735:
15736: * src/: classes/classes.dsp, lib/cord/cord.dsp,
15737: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
15738: targets/cgi/parser3.dsp, types/types.dsp: started profiling
15739:
15740: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
15741: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
15742: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
15743: use lib/gc,lib/cord
15744:
1.116 moko 15745: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
15746: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 15747: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
15748: src/include/pa_config_includes.h, src/include/pa_request.h,
15749: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15750: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 15751: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 15752: src/lib/cord/include/Makefile.am,
1.116 moko 15753: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
15754: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
15755: src/targets/cgi/Makefile.am, src/types/Makefile.am,
15756: src/types/pa_vclass.h, src/types/pa_vcookie.h,
15757: src/types/pa_vform.h, src/types/pa_vhash.h,
15758: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
15759: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
15760: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
15761: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
15762: funcs ported pa_exec
1.95 moko 15763:
15764: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
15765:
15766: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
15767: bundled gc includes
15768:
15769: * src/: classes/op.C, include/pa_array.h,
15770: include/pa_sql_connection.h, include/pa_string.h,
15771: include/pa_version.h, main/compile.tab.C, main/compile.y,
15772: main/execute.C, main/pa_common.C, main/pa_exception.C,
15773: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
15774: targets/cgi/parser3.dsp: a number of bugfixes [while testing
15775: first real site (aval)]
15776:
15777: 2003-03-25 paf
15778:
15779: * operators.txt, src/main/pa_sql_driver_manager.C,
15780: src/types/pa_vstatus.C: $status.memory used free since_compact
15781: process
15782:
15783: * src/: include/pa_sql_connection.h, main/pa_globals.C,
15784: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
15785:
15786: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
15787:
15788: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
15789: src/types/pa_value.h, src/types/pa_vfile.h,
15790: src/types/pa_vobject.C, src/types/pa_vobject.h,
15791: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
15792: tests/results/121.processed: untaint.C L_URI
15793:
15794: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
15795: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
15796: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
15797: src/types/pa_vmemory.h: ^memory:compact[]
15798:
15799: * tests/results/109.processed: it was a bug in parser. updated 109
15800: test result
15801:
15802: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
15803:
15804: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
15805: tests/results/107.processed: fixed dom language [values are now
15806: considered tainted. it was a bug in parser. updated 107 test
15807: result
15808:
15809: * src/classes/xdoc.C: fixed transform params
15810:
15811: * src/: include/pa_stylesheet_manager.h,
15812: main/pa_stylesheet_manager.C: fixed stylesheet caching
15813:
15814: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
15815: overloads for structure handling
15816:
15817: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
15818: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
15819: StringBody(0) ambiguilty, introducting static
15820: StringBody::Format(int)
15821:
15822: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
15823: linked
15824:
15825: * src/types/pa_vxdoc.C: vxdoc compiled
15826:
15827: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
15828: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
15829: finalizers isntalled
15830:
15831: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
15832: doc/exception.dox, doc/index.dox, include/pa_charset.h,
15833: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15834: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
15835: compiled todo: xnode.C / finalizers
15836:
15837: * src/doc/string.dox: updated: new string internals
15838:
15839: 2003-03-24 paf
15840:
15841: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15842: include/pa_charset.h, include/pa_config_fixed.h,
15843: include/pa_request.h, include/pa_stylesheet_connection.h,
15844: include/pa_stylesheet_manager.h, main/pa_charset.C,
15845: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
15846: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
15847: types/pa_vxnode.h: started XML
15848:
15849: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
15850:
15851: * src/: classes/file.C, classes/image.C, classes/mail.C,
15852: include/pa_string.h, main/pa_common.C,
15853: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
15854:
15855: * src/: classes/file.C, classes/image.C, classes/mail.C,
15856: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
15857: main/pa_request.C, main/pa_sql_driver_manager.C,
15858: types/pa_vimage.h: size_t pos everywhere checks changed to check
15859: for eq STRING_NOT_FOUND
15860:
15861: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
15862: optimize bit implemented
15863:
15864: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
15865: String::ArrayFragment::append_positions fixed
15866:
15867: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
15868: String::this_starts fixed
15869:
15870: * src/main/pa_string.C, tests/Makefile: string::pos fixed
15871:
15872: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
15873: hashcode implemented fully, including per-char callback [it can
15874: be - substr CORD node]
15875:
15876: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
15877: rewritten to rewalloc with 100byte buf ahead
15878:
15879: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
15880: src/include/pa_string.h, src/main/compile.tab.C,
15881: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
15882: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
15883: CORD_ec [bad] would rewrite as realloc now
15884:
15885: * src/: classes/date.C, classes/file.C, classes/form.C,
15886: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
15887: include/pa_cache_managers.h, include/pa_charsets.h,
15888: include/pa_common.h, include/pa_request.h,
15889: include/pa_sql_driver_manager.h, include/pa_table.h,
15890: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
15891: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
15892: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
15893: types/pa_vmail.C, types/pa_vmethod_frame.C,
15894: types/pa_vstateless_class.h: 2*2 worked :)
15895:
15896: * parser3.dsw, src/classes/date.C, src/classes/file.C,
15897: src/include/pa_exec.h, src/include/pa_string.h,
15898: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15899: passed OK
15900:
15901: * src/: classes/hash.C, classes/string.C, classes/table.C,
15902: types/pa_value.C: all linked todo: debug
15903:
15904: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15905: types/pa_vstateless_class.C: all compiled. todo:link
15906:
15907: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15908:
15909: * src/types/pa_vtable.C: pa_vtable.C compiled
15910:
15911: * src/types/pa_vstring.C: pa_vstring.C compiled
15912:
15913: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15914:
15915: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15916: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15917: pa_vstateless_class.C, pa_vstateless_class.h:
15918: pa_vstateless_class.C compiled
15919:
15920: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15921: types/pa_vmath.C: pa_vmail.C compiled
15922:
15923: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15924:
15925: * src/types/pa_vform.C: pa_vform.C compiled
15926:
15927: * src/types/pa_vfile.C: pa_vfile.C compiled
15928:
15929: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15930: pa_vstateless_class.C: pa_vcookie.C compiled
15931:
15932: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15933: types/pa_vhash.h: pa_value.C compiled
15934:
15935: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15936: classes.lib main.lib compiled
15937:
15938: * src/classes/void.C: void.C compiled
15939:
15940: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15941: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15942: compiled
15943:
15944: * src/: classes/string.C, include/pa_request.h,
15945: include/pa_string.h, main/pa_string.C: string.C compiled
15946:
15947: * src/: classes/op.C, classes/string.C, classes/table.C,
15948: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15949: main/pa_request.C, main/pa_string.C: op.C compiled
15950:
15951: * src/classes/: math.C, op.C: math.C compiled
15952:
15953: * src/: classes/mail.C, classes/string.C, classes/table.C,
15954: types/pa_vmail.h: mail.C compiled
15955:
15956: * src/classes/: int.C, table.C: int.C compiled
15957:
15958: * src/: classes/hash.C, classes/image.C, classes/string.C,
15959: classes/table.C, include/pa_memory.h, include/pa_string.h,
15960: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15961: compiled
15962:
15963: * src/: classes/hash.C, classes/string.C, classes/table.C,
15964: classes/void.C, classes/xdoc.C, include/pa_request.h,
15965: include/pa_sql_connection.h: hash.C compiled
15966:
15967: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15968: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15969: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15970: classes/math.C, classes/op.C, classes/response.C,
15971: classes/string.C, classes/table.C, classes/void.C,
15972: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15973: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15974: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15975: file.C table.C compiled
15976:
15977: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15978: main/untaint.C: main.lib compiled
15979:
15980: 2003-03-21 paf
15981:
15982: * src/: classes/op.C, include/pa_cache_managers.h,
15983: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15984: include/pa_stylesheet_manager.h, main/pa_exception.C,
15985: main/pa_globals.C, main/pa_sql_driver_manager.C,
15986: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15987: compiled
15988:
15989: * src/: classes/hash.C, classes/image.C, classes/op.C,
15990: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15991: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15992: main/compile.C, main/pa_common.C, main/pa_request.C,
15993: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15994: pa_request.C compiled
15995:
15996: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15997: include/pa_request.h, main/execute.C, main/pa_request.C,
15998: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15999: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
16000: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16001: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
16002: compiled
16003:
16004: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
16005: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
16006: on unix
16007:
16008: * src/: include/pa_charset.h, include/pa_charsets.h,
16009: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
16010: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
16011: pa_charsets.C compiled
16012:
16013: * src/: classes/image.C, classes/mail.C, classes/op.C,
16014: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
16015: main/compile.y, main/execute.C, main/pa_common.C,
16016: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
16017: types/pa_vcode_frame.h, types/pa_vimage.h,
16018: types/pa_vmethod_frame.h: execute.C compiled
16019:
16020: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16021: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16022: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16023: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
16024: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16025: include/pa_cache_managers.h, include/pa_charsets.h,
16026: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
16027: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
16028: include/pa_sql_driver_manager.h, include/pa_string.h,
16029: include/pa_stylesheet_connection.h,
16030: include/pa_stylesheet_manager.h, include/pa_table.h,
16031: main/compile.C, main/compile.tab.C, main/compile.y,
16032: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16033: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16034: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
16035: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
16036: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16037: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
16038: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
16039: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16040: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16041: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16042: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16043: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16044: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16045: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16046: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16047: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16048: types/pa_vresponse.h, types/pa_vstateless_class.C,
16049: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16050: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16051: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16052: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16053: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16054: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
16055: [C++ CORD wrapper]
16056:
16057: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
16058:
16059: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
16060: $file::exec/cgi[script; $.charset[this is script's charset]
16061:
16062: command line, env values, input got transcoded before call
16063: stdout, stderr got transcoded after call
16064:
16065: * src/classes/file.C: ^file::exec/cgi now does not pass post data
16066: by default. use: ^file::exec[...;$.stdin[$request.body]
16067:
16068: * src/main/pa_common.C: } typo bug fix
16069:
16070: * src/main/pa_common.C: } typo bug fix
16071:
16072: 2003-03-20 paf
16073:
16074: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
16075: main/untaint.C: cord bug fix, but still errors todo: clear out
16076:
16077: * src/include/pa_string.h: more tests
16078:
16079: * src/main/pa_string.C: string.pos fixed
16080:
1.116 moko 16081: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
16082: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
16083: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
16084: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
16085: replaces
1.95 moko 16086:
16087: * src/: classes/image.C, include/pa_dictionary.h,
16088: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16089: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
16090: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
16091: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
16092:
16093: * src/include/pa_string.h: warning
16094:
16095: * src/include/pa_string.h: this_starts fixed
16096:
16097: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
16098: new String ctor & append params convention
16099:
16100: * src/: classes/file.C, classes/hash.C, classes/image.C,
16101: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
16102: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
16103: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
16104: main/pa_exception.C, main/pa_exec.C,
16105: main/pa_sql_driver_manager.C, main/pa_string.C,
16106: main/pa_stylesheet_manager.C, main/untaint.C,
16107: targets/isapi/parser3isapi.C, types/pa_vimage.C,
16108: types/pa_vmail.C: more tests OK
16109:
16110: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
16111: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
16112: gc/exit runned OK
16113:
16114: * src/types/pa_vmail.C: another naming problem: should not name
16115: vars like that: unpredictable close caused problems with later
16116: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
16117: descriptors missing on startup: stdin; Bad file number
16118:
16119: todo: find out why so many filters(stream) here. probably wrong?
16120:
16121: * src/: include/pa_dictionary.h, include/pa_string.h,
16122: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
16123: main/untaint.C: test compiled
16124:
16125: * src/: classes/image.C, classes/mail.C, classes/math.C,
16126: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
16127: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
16128: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
16129: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
16130: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16131: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
16132: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
16133: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
16134: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
16135:
16136: * parser3.dsw, src/classes/file.C, src/classes/image.C,
16137: src/classes/op.C, src/classes/string.C, src/classes/table.C,
16138: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
16139: src/include/pa_memory.h, src/include/pa_request.h,
16140: src/include/pa_request_charsets.h,
16141: src/include/pa_sql_connection.h, src/include/pa_string.h,
16142: src/main/compile.tab.C, src/main/execute.C,
16143: src/main/pa_charset.C, src/main/pa_common.C,
16144: src/main/pa_exception.C, src/main/pa_exec.C,
16145: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16146: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
16147: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
16148: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
16149: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
16150: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
16151: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16152: src/types/pa_vobject.C, src/types/pa_vresponse.C,
16153: src/types/pa_vstatus.C, src/types/pa_vstring.C,
16154: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16155: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
16156: pa_common.C [done, without http for now]
16157:
16158: 2003-03-19 paf
16159:
16160: * src/: classes/date.C, classes/form.C, classes/hash.C,
16161: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
16162: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
16163: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
16164: include/pa_string.h, include/pa_table.h, main/compile.C,
16165: main/compile_tools.C, main/execute.C, main/pa_charset.C,
16166: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
16167: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
16168: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
16169: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
16170: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
16171: types/pa_vstateless_class.h, types/pa_vtable.C,
16172: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
16173: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16174: types/pa_wwrapper.h: started test
16175:
1.116 moko 16176: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
16177: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 16178:
16179: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
16180: include/pa_string.h, main/pa_string.C: string compiled todo: test
16181: it
16182:
16183: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
16184: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
16185: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
16186: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
16187: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
16188: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
16189: types/pa_vmethod_frame.h, types/types.dsp: string
16190: reimplementation with cord+array<fragment>: 70%
16191:
16192: 2003-03-18 paf
16193:
16194: * src/: classes/date.C, classes/file.C, classes/form.C,
16195: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
16196: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
16197: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
16198: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
16199: can ignore lang in cmp and pos really, but would
16200: split properly!
16201:
16202: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
16203: cord part made parser/src/lib: it's not compiled into libgc by
16204: default
16205:
16206: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
16207: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16208: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16209: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16210: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16211: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16212: src/classes/xnode.C, src/classes/xnode.h,
16213: src/include/Makefile.am, src/include/pa_cache_managers.h,
16214: src/include/pa_charset.h, src/include/pa_charsets.h,
16215: src/include/pa_common.h, src/include/pa_dictionary.h,
16216: src/include/pa_exception.h, src/include/pa_exec.h,
16217: src/include/pa_globals.h, src/include/pa_hash.h,
16218: src/include/pa_memory.h, src/include/pa_pool.h,
16219: src/include/pa_request.h, src/include/pa_request_charsets.h,
16220: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
16221: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16222: src/include/pa_stylesheet_connection.h,
16223: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
16224: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
16225: src/main/compile.C, src/main/compile.tab.C,
16226: src/main/compile_tools.C, src/main/compile_tools.h,
16227: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
16228: src/main/pa_charsets.C, src/main/pa_common.C,
16229: src/main/pa_dictionary.C, src/main/pa_exception.C,
16230: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
16231: src/main/pa_pool.C, src/main/pa_request.C,
16232: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
16233: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
16234: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
16235: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
16236: src/types/pa_junction.h, src/types/pa_method.h,
16237: src/types/pa_value.C, src/types/pa_value.h,
16238: src/types/pa_vclass.C, src/types/pa_vclass.h,
16239: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
16240: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16241: src/types/pa_vdouble.h, src/types/pa_venv.h,
16242: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
16243: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
16244: src/types/pa_vimage.C, src/types/pa_vimage.h,
16245: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
16246: src/types/pa_vmath.C, src/types/pa_vmath.h,
16247: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16248: src/types/pa_vobject.C, src/types/pa_vobject.h,
16249: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16250: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16251: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16252: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
16253: src/types/pa_vstatus.h, src/types/pa_vstring.C,
16254: src/types/pa_vstring.h, src/types/pa_vtable.C,
16255: src/types/pa_vtable.h, src/types/pa_vvoid.h,
16256: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16257: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
16258: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
16259: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
16260: gc: PA_Object done lots of replacements also
16261:
16262: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
16263: gc logging
16264:
16265: 2003-03-17 paf
16266:
16267: * src/: classes/date.C, classes/file.C, classes/form.C,
16268: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
16269: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
16270: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16271: include/pa_string.h, include/pa_types.h, main/compile.C,
16272: main/compile.tab.C, main/execute.C, main/pa_charset.C,
16273: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
16274: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16275: main/pa_sql_driver_manager.C, main/pa_string.C,
16276: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
16277: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
16278: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
16279: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
16280: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
16281: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16282: types/pa_vxnode.h: libgc attempt
16283:
16284: 2003-03-13 paf
16285:
16286: * src/: include/pa_sql_driver_manager.h,
16287: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
16288: called
16289:
16290: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
16291: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
16292: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
16293: types/pa_value.h, types/pa_vobject.h,
16294: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
16295: set_base, set_derived simplified [counter leaks fixed]
16296:
16297: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
16298: src/types/types.dsp: incorporated status class patch From:
16299: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
16300: 2003 8:14 AM
16301:
16302: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
16303: Win32 specific: QuotaPeakNonPagedPoolUsage
16304: QuotaPeakPagedPoolUsage PeakPagefileUsage]
16305:
16306: 2003-03-12 paf
16307:
1.116 moko 16308: * configure, configure.in, src/lib/ltdl/configure,
16309: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 16310: lib/ltdl/Makefile now created by /configure.in only [were by
16311: lib/ltdl/configure.in OVERWRITE]
16312:
1.116 moko 16313: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
16314: linkage fixed for g++ 3.2.2
1.95 moko 16315:
16316: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
16317: on using privately declared class [fixed]
16318:
16319: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
16320: 3.2 rightliy complained on using privately declared class [fixed]
16321:
16322: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
16323: sigpipe before request constructor now causes death
16324:
16325: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
16326: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
16327: not cause exception in exception handler
16328:
1.116 moko 16329: * configure, configure.in, src/targets/cgi/Makefile.am: configure
16330: now default links libstdc++ statically. that can be overriden by
16331: --with-dynamic-stdcpp
1.95 moko 16332:
16333: 2003-03-11 paf
16334:
16335: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
16336: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
16337: necessity of libstdc++
16338:
16339: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16340:
16341: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
16342:
16343: 2003-03-08 paf
16344:
16345: * tests/Makefile: make install & co
16346:
16347: * src/: include/pa_request.h, classes/op.C: removing
16348: vclass,object.h -> pa_request.h dependency
16349:
16350: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
16351: main/pa_request.C: removing vform,response,cookie.h ->
16352: pa_request.h dependency
16353:
16354: * src/include/pa_request.h: removing vmail.h -> pa_request.h
16355: dependency [testing...]
16356:
16357: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
16358: return 0; fixed
16359:
16360: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
16361: types/pa_vmail.h: vmail.C received just compiled [not tested]
16362:
16363: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
16364:
16365: * src/main/pa_request.C: forgotten: ifdef XML
16366:
16367: * src/main/pa_request.C: forgotten: ifdef XML
16368:
16369: * src/targets/cgi/parser3.C: todo: move to latest xml version on
16370: win32 and run memleak tests again
16371:
16372: * src/targets/cgi/parser3.C: charsets: see some strange things with
16373: old xml lib-- it's internal memory handling has faults
16374:
16375: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
16376: problems when transcode from charset A to A.
16377:
16378: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
16379: todo: still problems when transcode from charset A to A.
16380:
16381: * src/: classes/hash.C, classes/mail.C, classes/string.C,
16382: classes/table.C, include/pa_array.h,
16383: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
16384: started full-scale-site-test [~ http://parser.ru sources]
16385:
16386: some fixes
16387:
16388: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
16389: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
16390: 117.html, 118.html, 119.html, 120.html, results/109.processed,
16391: results/110.processed, results/111.processed,
16392: results/112.processed, results/113.processed,
16393: results/114.processed, results/115.processed,
16394: results/116.processed, results/117.processed,
16395: results/118.processed, results/119.processed,
16396: results/120.processed: xml: tests 109 dom create/show 110 xpath
16397: selectSingle 111 xdoc.create from tainted & 112
16398: xdoc.create/output with russian attr value 113 xpath
16399: selectString/Number 114 dom attributes.count 115 xpath selectBool
16400: 116 output media-type change 117 transform by dom stylesheet 118
16401: empty transform result 119 dom setAttribute 120 nbsp letter
16402: output
16403:
16404: =END OF PREPARED XML TESTS=
16405:
16406: 2003-03-07 paf
16407:
16408: * src/classes/xdoc.C, src/include/pa_charset.h,
16409: src/include/pa_stylesheet_connection.h, tests/108.html,
16410: tests/108.xsl, tests/results/108.processed: xml: test 108
16411: transform with params [bugs fixed]
16412:
16413: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
16414: from copy/paste bug
16415:
16416: * src/classes/xdoc.C, src/include/pa_charset.h,
16417: src/include/pa_request.h, src/main/execute.C,
16418: src/main/pa_charset.C, src/main/pa_exception.C,
16419: src/main/pa_globals.C, src/main/pa_request.C,
16420: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
16421: src/types/pa_vxnode.C, tests/107.html,
16422: tests/results/107.processed: xml: test: 107 bug fixes
16423:
16424: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16425: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16426: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
16427:
16428: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
16429: string
16430:
16431: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
16432: mem alloc functions used for different cases [libxml, libxsl]
16433:
16434: * src/classes/classes.C: fixed: prevent system classes from
16435: modification to lock ALL the classes, not only directly used
16436:
16437: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
16438: linked
16439:
16440: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
16441:
16442: 2003-03-06 paf
16443:
16444: * src/classes/xdoc.C: xdoc.C 50%
16445:
16446: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
16447: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
16448: main/pa_globals.C, main/pa_request.C,
16449: main/pa_stylesheet_manager.C: xnode.C compiled
16450:
16451: * src/: include/pa_stylesheet_connection.h,
16452: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
16453: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
16454:
16455: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
16456: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
16457: xml: stylesheet&manager STARTED
16458:
16459: * src/: include/pa_globals.h, main/pa_charset.C,
16460: main/pa_exception.C, main/pa_globals.C: xml: exceptions
16461:
16462: * src/: include/pa_charset.h, include/pa_config_fixed.h,
16463: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
16464: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
16465: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
16466: charsets
16467:
16468: * tests/023.html: in some cases it rounded up badly. postponing
16469: solution of that problem, making more simple test
16470:
16471: * tests/: 058_paf2000.png, results/058.processed: .png added with
16472: -kb now
16473:
16474: * src/: include/pa_charset.h, include/pa_charsets.h,
16475: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
16476: moved to charsets.C
16477:
16478: 2003-03-05 paf
16479:
16480: * src/classes/string.C, src/include/pa_string.h,
16481: src/main/pa_string.C, tests/105.html,
16482: tests/results/105.processed: String::match bug fixed
16483:
16484: * src/classes/op.C, src/main/main.dsp, tests/104.html,
16485: tests/results/104.processed: ^bpt operator added [does int3 in
16486: debug build on win32]
16487:
16488: * tests/: 057.html, results/057.processed: test bug fixed
16489:
1.116 moko 16490: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 16491:
16492: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
16493: missing
16494:
1.116 moko 16495: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
16496: forgotten files added to Makes
1.95 moko 16497:
16498: * ltmain.sh: ltmain.sh added
16499:
16500: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16501: change undone ;(
16502:
16503: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
16504: made static
16505:
16506: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 16507: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
16508: todo:make linker happy
1.95 moko 16509:
16510: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
16511: env param made optional
16512:
16513: 2003-03-04 paf
16514:
16515: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
16516: types/pa_vimage.h: number of gcc compiler bugs fixed
16517:
16518: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
16519: results/103.processed: tests: 103 image.copy transparence test
16520:
16521: * src/main/execute.C, tests/101.html, tests/102.html,
16522: tests/results/101.processed, tests/results/102.processed: tests:
16523: 101 method/variable name conflict test 102 form fields change
16524: should not not change anything [bug fix]
16525:
16526: * tests/: 057.html, 099.html, 100.html, results/057.processed,
16527: results/099.processed, results/100.processed: tests: 57 date
16528: create 2002: added 99,100 response:body/download
16529:
16530: * src/classes/image.C, tests/098.html, tests/098font.gif,
16531: tests/results/098.processed: test: 98 image font text [bug fixed]
16532:
16533: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
16534: tests/results/097.processed: test: 97 file::load http:// [bugs
16535: fixed]
16536:
16537: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
16538: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
16539: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
16540: image EXIF [bug fixed]
16541:
16542: * src/classes/table.C, src/main/execute.C, tests/061.dat,
16543: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
16544: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
16545: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
16546: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
16547: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
16548: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
16549: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
16550: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
16551: tests/094.html, tests/095.html, tests/results/061.processed,
16552: tests/results/062.processed, tests/results/063.processed,
16553: tests/results/064.processed, tests/results/065.processed,
16554: tests/results/066.processed, tests/results/067.processed,
16555: tests/results/068.processed, tests/results/069.processed,
16556: tests/results/070.processed, tests/results/071.processed,
16557: tests/results/072.processed, tests/results/073.processed,
16558: tests/results/074.processed, tests/results/075.processed,
16559: tests/results/076.processed, tests/results/077.processed,
16560: tests/results/078.processed, tests/results/080.processed,
16561: tests/results/081.processed, tests/results/082.processed,
16562: tests/results/083.processed, tests/results/084.processed,
16563: tests/results/085.processed, tests/results/086.processed,
16564: tests/results/087.processed, tests/results/088.processed,
16565: tests/results/089.processed, tests/results/090.processed,
16566: tests/results/091.processed, tests/results/092.processed,
16567: tests/results/093.processed, tests/results/094.processed,
16568: tests/results/095.processed, tests/079.html,
16569: tests/results/079.processed: tests: 61 file::stat size 62
16570: string->int autoconvert 63 double .int,dec,div,mul 64 date
16571: compare 65 file: basename,justname,justext 66 math:crypt 67
16572: string.match simple on long 68 string.match normalized simple on
16573: long 69 string.int 70 file::stat content-type 71 table.join 72
16574: hash parameter conditional pass 73 date daylightsaving,yearday 74
16575: date arithmetics 75 response date values/attributes 76 string.pos
16576: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
16577: with local 80 scientific numeric literal in string autoconvert 81
16578: xor: logical and numerical 82 for delims 83 menu delims 84
16579: table.hash distinct 85 long string replace 86 throw+catch
16580: current language preserve 87 bit shifts 88 junction tests +
16581: $caller test 89 hash.foreach selfmodification 90 int/void to int
16582: 91 $caller test 92 junction is + def junction tests 93 $caller
16583: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
16584:
16585: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
16586: fixed] 60 string eq string [bug fixed]
16587:
16588: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
16589: 058.html, 058_paf2000.png, 059.html, 060.html,
16590: results/053.processed, results/054.processed,
16591: results/055.processed, results/056.processed,
16592: results/057.processed, results/058.processed,
16593: results/059.processed, results/060.processed: test: 53
16594: string.replace 54 junctions 55 table.hash 56 call indirect 57
16595: date.create[string] 58 image.measure[png]
16596:
16597: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
16598: outputs/051.processed, results/052.processed: test: 52
16599: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
16600: task: fix that
16601:
16602: 2003-03-03 paf
16603:
16604: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
16605: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
16606: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
16607: outputs/049.processed, outputs/050.processed,
16608: outputs/051.processed, results/001.processed,
16609: results/002.processed, results/003.processed,
16610: results/005.processed, results/006.processed,
16611: results/008.processed, results/009.processed,
16612: results/011.processed, results/012.processed,
16613: results/013.processed, results/014.processed,
16614: results/015.processed, results/016.processed,
16615: results/017.processed, results/020.processed,
16616: results/021.processed, results/022.processed,
16617: results/024.processed, results/025.processed,
16618: results/026.processed, results/027.processed,
16619: results/028.processed, results/029.processed,
16620: results/030.processed, results/031.processed,
16621: results/049.processed, results/050.processed,
16622: results/051.processed, results/043.processed,
16623: results/044.processed, results/045.processed,
16624: results/046.processed, results/047.processed,
16625: results/048.processed: tests: 43,44,45 date rolls 46
16626: autoevaluating junction 47 table.select 48 name with subvar 49
16627: hash-creating switch 50 process 51 started parent/child, works as
16628: it were but it were NOT GOOD, created separate task to fix that
16629:
16630: * tests/: 042.html, results/042.processed: test: 42
16631: exception.handled
16632:
16633: * tests/: 041.html, results/041.processed: test: 41 table.locate by
16634: expression
16635:
16636: * tests/: 040.html, results/040.processed: test: 39 method result
16637: of type table 40 method param junction auto evaluate
16638:
16639: * tests/: 039.html, results/039.processed: test: 37 method result
16640: of type table
16641:
16642: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
16643: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
16644: tests/038.html, tests/results/033.processed,
16645: tests/results/034.processed, tests/results/035.processed,
16646: tests/results/036.processed, tests/results/037.processed,
16647: tests/results/038.processed: tests: 33 string.replace 34
16648: string.upper 35 table created 36 local/global vars with juntions
16649: 37 table clone 38 math PI & number formatting
16650:
16651: math class registring typo fixed
16652:
16653: * src/classes/op.C, src/include/pa_request.h,
16654: src/include/pa_string.h, src/main/execute.C,
16655: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
16656: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
16657: tests/032.html, tests/results/032.processed: uchar changed to
16658: String_UL in all places [was not everywhere] untaint test: 032
16659:
16660: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
16661: tests/results/004.processed, tests/parser-cygwin.sh,
16662: tests/parser-unix.sh: removed -H command line key, now testing
16663: using .sh file with SERVER_SOFTWARE=xxx
16664:
16665: 2003-02-26 paf
16666:
16667: * src/main/execute.C, src/types/pa_vstateless_class.h,
16668: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
16669: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
16670: tests/results/024.processed, tests/results/025.processed,
16671: tests/results/026.processed, tests/results/027.processed,
16672: tests/results/028.processed, tests/results/029.processed,
16673: tests/results/030.processed, tests/results/031.processed: fixed
16674: bug with name_cstr mutable CharPtr more tests
16675:
16676: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
16677: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
16678: << abort. die now just exits
16679:
16680: * src/classes/classes.awk, src/classes/classes.h,
16681: src/classes/date.C, src/classes/double.C, src/classes/file.C,
16682: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
16683: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
16684: src/classes/op.C, src/classes/response.C, src/classes/string.C,
16685: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
16686: src/classes/xnode.C, src/include/pa_memory.h,
16687: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
16688: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
16689: src/types/pa_vform.C, tests/015.html, tests/016.html,
16690: tests/017.html, tests/018.html, tests/019.html,
16691: tests/019paf2001.gif, tests/020.html, tests/021.html,
16692: tests/022.html, tests/023.html, tests/022_dir/a.html,
16693: tests/022_dir/b.txt, tests/022_dir/c.htm,
16694: tests/results/015.processed, tests/results/016.processed,
16695: tests/results/017.processed, tests/results/018.processed,
16696: tests/results/019.processed, tests/results/020.processed,
16697: tests/results/021.processed, tests/results/022.processed,
16698: tests/results/023.processed: methoded_array now contains all Mxxx
16699: classes SAPI::get_env now returns info on pool more tests
16700:
16701: * src/include/pa_array.h, src/include/pa_hash.h,
16702: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
16703: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
16704: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
16705: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
16706: tests/014.html, tests/Makefile, tests/outputs/create-dir,
16707: tests/results/001.processed, tests/results/002.processed,
16708: tests/results/003.processed, tests/results/004.processed,
16709: tests/results/005.processed, tests/results/006.processed,
16710: tests/results/007.processed, tests/results/008.processed,
16711: tests/results/009.processed, tests/results/010.processed,
16712: tests/results/011.processed, tests/results/012.processed,
16713: tests/results/013.processed, tests/results/014.processed: hash
16714: cloning fixed
16715:
16716: 2003-02-25 paf
16717:
16718: * src/main/pa_common.C: typo fixed
16719:
16720: 2003-02-24 paf
16721:
16722: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
16723: [one remained]
16724:
16725: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
16726: [should have been get_string(&pool)] todo: check other such calls
16727:
16728: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
16729: test10, bad lookups
16730:
16731: xxx* xxx=smartptr.get(); << is bad style, after ";" original
16732: object got destructed, and xxx points to sky
16733:
16734: * ChangeLog, src/classes/string.C: match bug fixed
16735:
16736: * src/types/pa_vmail.C: body [text/html] transcoded to
16737: $.charset[specified] now
16738:
16739: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16740: which failed to handle sigsetjmp+throw: crashed inside of
16741: pre-throw code. rewritten simplier [though duplicating
16742: closesocket code]
16743:
16744: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
16745: which failed to handle sigsetjmp+throw: crashed inside of
16746: pre-throw code. rewritten simplier [though duplicating
16747: closesocket code]
16748:
16749: 2003-02-21 paf
16750:
16751: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
16752: $cookie:name[$.expires[date << can be now]]
16753:
16754: written makefile with regression tests [raw]
16755:
16756: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
16757: tests' only [it's not forcing CGI mode now] now use -H to output
16758: CGI header when parser used in command line [useful for tests
16759: also]
16760:
16761: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
16762: switches on CGI mode, and is used in regression tests
16763:
16764: * src/: include/pa_request.h, main/pa_request.C,
16765: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
16766: fixed
16767:
16768: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
16769: handling pa_*
16770:
16771: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
16772: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
16773: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
16774: memory handling files
16775:
16776: * src/main/pa_array.C: pool::format_integer terminator fixed
16777:
16778: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
16779: compiles OK test to show benefits of free
16780:
16781: * src/: classes/file.C, classes/image.C, classes/mail.C,
16782: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
16783: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16784: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
16785: use pool [as the one in ^process]
16786:
16787: * src/classes/op.C: fixed process. sould now check for all cstr's
16788: -- some must use pool [as the one in ^process]
16789:
16790: 2003-02-20 paf
16791:
16792: * src/: classes/date.C, classes/double.C, classes/file.C,
16793: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16794: classes/math.C, classes/op.C, classes/response.C,
16795: classes/string.C, classes/table.C, classes/void.C,
16796: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
16797: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
16798: string cmp fixed
16799:
16800: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
16801: values passed OK now
16802:
16803: 2003-02-19 paf
16804:
16805: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
16806: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
16807: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
16808: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
16809: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
16810: all remaning leaks resulted from pooled::malloc calls [excluding
16811: in gd -- planning complete rewrite extremely ugly code]
16812:
16813: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
16814: files
16815:
16816: 2003-02-17 paf
16817:
16818: * src/: classes/date.C, classes/double.C, classes/file.C,
16819: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16820: classes/response.C, classes/string.C, classes/table.C,
16821: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
16822: include/pa_stylesheet_connection.h,
16823: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
16824: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
16825: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
16826: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
16827: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
16828: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
16829: of unitialized simple-typed field
16830:
16831: * src/: classes/classes.C, classes/classes.h, main/execute.C,
16832: main/pa_charset.C, main/pa_request.C: another bug of unitialized
16833: simple-typed field fixed. todo: find&kill all like that one
16834:
16835: * src/: main/execute.C, targets/cgi/pa_pool.C,
16836: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
16837: debug output fixed
16838:
16839: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
16840: main/pa_request.C: stack-stored items need extra .ref to prevent
16841: object_ptr from delete[them]
16842:
16843: * src/: classes/date.C, classes/op.C, classes/table.C,
16844: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
16845: include/pa_charset.h, main/Makefile.am, main/main.dsp,
16846: main/pa_charset.C, main/pa_common.C,
16847: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
16848: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
16849: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
16850: calls
16851:
16852: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
16853: couple mem leaks rusulted from old pooled::malloc usage.
16854: todo:find more like those
16855:
16856: * src/main/: compile.C, compile_tools.C: 2*2!
16857:
16858: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
16859: stackItem fixed [there were no string on stack before]
16860:
16861: * src/: main/execute.C, main/pa_request.C,
16862: types/pa_vmethod_frame.C: first letters out OK
16863:
16864: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
16865: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
16866: main/pa_string.C, main/untaint.C, types/pa_value.h,
16867: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
16868: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
16869: type not initialized with zeros :( while class fields of class
16870: types initialized with default constructors. learn C++
16871:
16872: * src/: classes/classes.awk, classes/double.C, classes/file.C,
16873: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
16874: classes/math.C, classes/xdoc.C, classes/xnode.C,
16875: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
16876: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
16877:
16878: 2003-02-14 paf
16879:
16880: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
16881: 13 link errors
16882:
16883: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
16884: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
16885: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
16886: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
16887: errors :)
16888:
16889: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
16890: classes/hash.C, classes/mail.C, classes/op.C,
16891: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
16892: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
16893: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
16894: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
16895:
16896: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
16897: classes/table.C, include/pa_common.h, include/pa_globals.h,
16898: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16899: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16900: types/pa_vint.h, types/types.dsp: op compiled
16901:
16902: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16903: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16904: main/untaint.C, types/pa_vtable.h: string, response compiled
16905:
16906: 2003-02-07 paf
16907:
16908: * src/: classes/table.C, types/pa_vtable.h: table compiled
16909:
16910: 2003-02-06 paf
16911:
16912: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16913: mail compiled
16914:
16915: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16916: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16917: types/pa_vfile.h, types/pa_vimage.h: image compiled
16918:
16919: * src/classes/: file.C, form.C: form compiled
16920:
16921: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16922: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16923: types/pa_vfile.C, types/pa_vfile.h: file compiled
16924:
16925: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16926: types/pa_vmath.h: math compiled [win32]
16927:
16928: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16929: types/pa_vstring.h: hash compiled
16930:
16931: 2003-02-04 paf
16932:
16933: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16934: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16935: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16936: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16937: types/pa_vhash.h: hash 50% compiled
16938:
16939: * src/: classes/date.C, classes/file.C, classes/hash.C,
16940: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16941: classes/string.C, classes/table.C, classes/xdoc.C,
16942: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16943: main/pa_string.C: date compiled
16944:
16945: * src/classes/: classes.dsp, double.C: double compiled
16946:
16947: * src/: classes/date.C, classes/double.C, classes/file.C,
16948: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16949: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16950: classes/string.C, classes/table.C, classes/void.C,
16951: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16952: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16953: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16954: compiled
16955:
16956: * src/: classes/date.C, classes/double.C, classes/file.C,
16957: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16958: classes/math.C, classes/op.C, classes/response.C,
16959: classes/string.C, classes/table.C, classes/void.C,
16960: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16961: types/pa_vvoid.h: void compiled :)
16962:
16963: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16964: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16965: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16966: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16967: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16968: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16969: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16970: types/pa_vresponse.C, types/pa_vstateless_class.C,
16971: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16972: types/pa_wcontext.C, types/types.dsp: removed stupid
16973: value_includes.h
16974:
16975: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16976: trying to remove stupid value_includes.h
16977:
16978: * src/main/pa_exec.C: pa_exec compiled on win32
16979:
16980: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16981:
16982: * src/: include/pa_globals.h, include/pa_request.h,
16983: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16984: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16985: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16986: types/pa_vrequest.C, types/pa_vstateless_class.C,
16987: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16988:
16989: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16990: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16991: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16992:
16993: * src/: include/pa_array.h, include/pa_config_includes.h,
16994: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16995: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16996: compiled
16997:
16998: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16999: name conflicts)
17000:
17001: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
17002: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
17003: yelds "virtual memory exhausted" while trying to compile
17004: execute.C [eating up to 127MB]
17005:
17006: 2003-02-03 paf
17007:
17008: * src/: include/pa_config_includes.h, include/pa_hash.h,
17009: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
17010: main/pa_common.C, types/pa_value.C, types/pa_value.h,
17011: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
17012: types/pa_vint.h, types/pa_vjunction.h,
17013: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
17014: started gcc compiling pa_common compiled
17015:
17016: * src/: include/pa_exception.h, include/pa_pool.h,
17017: main/pa_exception.C: exception gcc change #1
17018:
1.116 moko 17019: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
17020: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 17021:
17022: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
17023:
17024: * src/types/pa_vtable.C: vtable compiled
17025:
17026: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
17027:
17028: * src/: include/pa_cache_managers.h, main/pa_request.C,
17029: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
17030:
17031: * src/types/pa_vstateless_class.C: vstateless_class compiled
17032:
17033: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
17034:
17035: * src/types/pa_vrequest.C: vrequest compiled
17036:
17037: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
17038: pa_vobject.C, pa_vobject.h: vobject compiled
17039:
17040: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
17041: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17042: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
17043: compiled
17044:
17045: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
17046:
17047: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
17048: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
17049: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
17050: compiled
17051:
17052: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17053: main.lib - 0 error(s), 0 warning(s)
17054:
17055: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17056: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
17057:
17058: 2003-01-31 paf
17059:
17060: * src/: include/pa_array.h, include/pa_operation.h,
17061: include/pa_request.h, main/execute.C, main/main.dsp,
17062: types/pa_vjunction.h: started last file from main library:
17063: execute
17064:
17065: * src/: include/pa_request.h, include/pa_sapi.h,
17066: main/compile.tab.C, main/compile.y, main/compile_tools.h,
17067: main/pa_request.C, targets/cgi/parser3.C,
17068: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
17069: types/pa_vhash.h: pa_request compiled
17070:
17071: * src/: classes/op.C, classes/string.C, include/pa_common.h,
17072: include/pa_globals.h, include/pa_request.h,
17073: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
17074: main/execute.C, main/main.dsp, main/pa_common.C,
17075: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17076: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
17077: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
17078: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
17079: types/types.dsp: most pa_request compiled
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_operation.h,
17092: include/pa_pool.h, include/pa_request.h,
17093: include/pa_request_charsets.h, include/pa_request_info.h,
17094: include/pa_sapi.h, include/pa_socks.h,
17095: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17096: include/pa_stack.h, include/pa_string.h,
17097: include/pa_stylesheet_connection.h,
17098: include/pa_stylesheet_manager.h, include/pa_table.h,
17099: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17100: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
17101: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
17102: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
17103: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
17104: main/compile.C, main/compile.tab.C, main/compile.y,
17105: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17106: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
17107: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17108: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17109: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
17110: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
17111: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
17112: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
17113: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
17114: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17115: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
17116: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
17117: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
17118: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
17119: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17120: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
17121: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
17122: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17123: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
17124: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
17125: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
17126: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
17127: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17128: types/pa_vresponse.h, types/pa_vstateless_class.C,
17129: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17130: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
17131: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17132: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
17133: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
17134: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
17135:
17136: * ChangeLog, src/classes/classes.h, src/classes/op.C,
17137: src/include/pa_cache_managers.h, src/include/pa_charset.h,
17138: src/include/pa_charsets.h, src/include/pa_common.h,
17139: src/include/pa_dictionary.h, src/include/pa_exception.h,
17140: src/include/pa_exec.h, src/include/pa_pool.h,
17141: src/include/pa_request.h, src/include/pa_sapi.h,
17142: src/include/pa_sql_connection.h,
17143: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
17144: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
17145: src/main/compile.tab.C, src/main/compile_tools.C,
17146: src/main/compile_tools.h, src/main/main.dsp,
17147: src/main/pa_charset.C, src/main/pa_charsets.C,
17148: src/main/pa_common.C, src/main/pa_dictionary.C,
17149: src/main/pa_exception.C, src/main/pa_exec.C,
17150: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
17151: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
17152: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
17153: src/types/pa_vclass.h, src/types/pa_vcookie.C,
17154: src/types/pa_vcookie.h, src/types/pa_vdate.h,
17155: src/types/pa_vdouble.h, src/types/pa_venv.h,
17156: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
17157: src/types/pa_vhash.h, src/types/pa_vimage.C,
17158: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
17159: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
17160: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
17161: src/types/pa_vobject.C, src/types/pa_vobject.h,
17162: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
17163: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
17164: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
17165: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
17166: src/types/pa_vstring.h, src/types/pa_vtable.h,
17167: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
17168: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
17169: died, long live StringPtr
17170:
17171: 2003-01-30 paf
17172:
17173: * src/: include/pa_charset.h, include/pa_request.h,
17174: include/pa_sql_driver_manager.h, main/compile.tab.C,
17175: main/compile.y, main/compile_tools.h, main/pa_request.C,
17176: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
17177:
17178: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
17179: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
17180: types/pa_vhash.h, types/pa_vmethod_frame.h,
17181: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17182: types/types.dsp: vstateless_class compiled
17183:
17184: * src/main/compile.C: compile compiled
17185:
17186: * src/: include/pa_array.h, include/pa_operation.h,
17187: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
17188: main/pa_table.C: compile_tools compiled
17189:
17190: * src/: include/pa_operation.h, main/compile.y,
17191: main/compile_tools.C, main/compile_tools.h: started
17192: compile_tools. vagues ideas of how to free compiled code
17193:
17194: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
17195: main/main.dsp, types/pa_value.C, types/pa_value.h,
17196: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
17197: compiled
17198:
17199: 2003-01-29 paf
17200:
17201: * src/: include/pa_globals.h, include/pa_request.h,
17202: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
17203: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
17204: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
17205: compiled
17206:
17207: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
17208: now
17209:
17210: * src/: include/pa_array.h, include/pa_exception.h,
17211: include/pa_pool.h, main/pa_exception.C: gd compiled
17212:
17213: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
17214: compiled
17215:
17216: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
17217: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
17218: types/pa_vfile.h: vfile compiled
17219:
17220: * src/: include/pa_common.h, include/pa_globals.h,
17221: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
17222: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
17223: types/pa_vform.C, types/pa_vform.h: vcookie compiled
17224:
17225: * src/: include/pa_exception.h, main/pa_cache_managers.C,
17226: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
17227: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
17228: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
17229: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
17230:
17231: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
17232: main/main.dsp, main/untaint.C: more compiled
17233:
17234: * src/: include/pa_charsets.h, include/pa_request.h,
17235: include/pa_request_info.h, include/pa_string.h,
17236: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
17237: types/pa_vresponse.h: vrequest compiled
17238:
17239: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
17240: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
17241: pa_vresponse.h, pa_wcontext.h: vrequest compiled
17242:
17243: * src/: classes/classes.h, include/pa_charset.h,
17244: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
17245: include/pa_request.h, include/pa_string.h, main/main.dsp,
17246: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
17247: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
17248: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
17249: types/pa_vrequest.C, types/pa_vrequest.h,
17250: types/pa_vstateless_class.h, types/pa_vstring.h,
17251: types/pa_vvoid.h: vrequest,vdouble,vint compiled
17252:
17253: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
17254: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
17255: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
17256: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
17257: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17258: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
17259: types/pa_vobject.h, types/pa_vstateless_class.h,
17260: types/pa_vstateless_object.h, types/pa_vstatus.h,
17261: types/pa_vstring.h, types/types.dsp: vmath compiled
17262:
17263: 2003-01-28 paf
17264:
17265: * src/: classes/classes.h, classes/date.C, classes/file.C,
17266: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
17267: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
17268: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
17269: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
17270: compile_tools
17271:
17272: * src/: include/pa_charset.h, include/pa_exception.h,
17273: include/pa_request.h, include/pa_string.h, main/untaint.C:
17274: untaint compiled
17275:
17276: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
17277: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
17278: more compiled. struck with string::store_to needing to know
17279: source/client charsets
17280:
17281: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
17282: types/pa_vfile.h: uue compiled
17283:
17284: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
17285: table compiled
17286:
17287: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
17288: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
17289:
17290: * src/: include/pa_charset.h, main/pa_charset.C,
17291: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
17292: introduced]
17293:
17294: * src/: classes/date.C, include/pa_charset.h,
17295: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
17296: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
17297: pa_charsets compiled
17298:
17299: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
17300: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
17301:
17302: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
17303: common compiled
17304:
17305: * src/: include/pa_charsets.h, main/pa_charsets.C,
17306: main/pa_sql_driver_manager.C: pa_charsets compiled
17307:
17308: * src/: include/pa_array.h, include/pa_charset.h,
17309: include/pa_charsets.h, include/pa_pool.h,
17310: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17311: include/pa_stack.h, include/pa_string.h,
17312: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
17313: sql_driver_manager compiled
17314:
17315: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
17316: letter i with two dots added to koi, all ukranian letters added
17317: to win1251.
17318:
17319: typographic simbol 0xb9 deleted from win1251 [strange one & were
17320: abscent from koi]
17321:
17322: 2003-01-27 paf
17323:
17324: * src/: include/pa_exception.h, include/pa_sql_connection.h,
17325: include/pa_sql_driver_manager.h, include/pa_string.h,
17326: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
17327: sql/pa_sql_driver.h: paused on sql_manager
17328:
17329: * src/: include/pa_cache_managers.h, include/pa_pool.h,
17330: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17331: include/pa_stack.h, main/pa_sql_driver_manager.C,
17332: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
17333:
17334: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
17335: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17336: include/pa_table.h, main/pa_sql_driver_manager.C,
17337: main/pa_table.C: table compiled
17338:
17339: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
17340: cache_managers compiled
17341:
17342: * src/: include/pa_array.h, include/pa_charset.h,
17343: include/pa_pool.h, main/pa_charset.C: charset compiled
17344:
17345: * src/: include/pa_pool.h, main/pa_common.C: common compiled
17346:
17347: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
17348: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17349: main/pa_string.C, types/pa_value.C, types/pa_value.h,
17350: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
17351: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
17352:
17353: 2003-01-24 paf
17354:
17355: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
17356: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
17357: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
17358: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
17359: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
17360: types/pa_vint.h, types/pa_vjunction.h,
17361: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17362: types/pa_vstatus.h, types/pa_vstring.h: more patched
17363:
17364: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
17365: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
17366: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
17367: main/pa_string.C, main/pa_table.C: string compiled
17368:
17369: * src/: include/pa_array.h, include/pa_common.h,
17370: include/pa_dictionary.h, include/pa_exception.h,
17371: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
17372: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
17373: main/pa_string.C: dictionary compiled
17374:
17375: 2003-01-23 paf
17376:
17377: * src/: include/pa_array.h, include/pa_common.h,
17378: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
17379: include/pa_request.h, include/pa_string.h, main/pa_common.C,
17380: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
17381: types/pa_value.h: resurrected pool in new sense: now it's
17382: factory, producing&accounting memory chunks for read[autofree]
17383: buffers
17384:
17385: * src/: include/pa_array.h, include/pa_exception.h,
17386: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
17387: main/pa_exception.C, main/pa_table.C: table compiled
17388:
17389: * src/: classes/image.C, classes/op.C, include/pa_array.h,
17390: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
17391: include/pa_pool.h, include/pa_pragma_pack_begin.h,
17392: include/pa_pragma_pack_end.h, include/pa_sapi.h,
17393: include/pa_string.h, include/pa_table.h, include/pa_types.h,
17394: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
17395: main/pa_table.C: aint that easy
17396:
17397: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
17398: main/main.dsp: continued with Hash
17399:
17400: * src/main/pa_common.C: connect_string allocated on heap[wes on
17401: stack] now. and exception can be reported OK now [can be reported
17402: outside of pro c with that stack]
17403:
17404: 2003-01-22 paf
17405:
17406: * src/: include/pa_array.h, include/pa_charset.h,
17407: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
17408: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
17409: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
17410: base: contains references_count. auto_ptr template calls
17411: add_ref/release
17412:
17413: 2003-01-21 paf
17414:
17415: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17416: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17417: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17418: classes/op.C, classes/response.C, classes/string.C,
17419: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17420: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17421: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17422: include/pa_config_fixed.h, include/pa_config_includes.h,
17423: include/pa_dictionary.h, include/pa_dir.h,
17424: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17425: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17426: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17427: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17428: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17429: include/pa_stack.h, include/pa_string.h,
17430: include/pa_stylesheet_connection.h,
17431: include/pa_stylesheet_manager.h, include/pa_table.h,
17432: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17433: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
17434: lib/pcre/pcre_parser_ctype.c, main/compile.C,
17435: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17436: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
17437: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17438: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17439: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
17440: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17441: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17442: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
17443: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
17444: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
17445: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17446: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17447: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
17448: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
17449: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17450: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
17451: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17452: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
17453: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
17454: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17455: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17456: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17457: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17458: types/pa_vstateless_object.h, types/pa_vstatus.C,
17459: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
17460: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17461: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17462: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
17463: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
17464: 2002->2003
17465:
17466: 2003-01-16 paf
17467:
17468: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
17469: src/main/pa_globals.C: http:// introducing $.any-status(1)
17470:
17471: * operators.txt, src/include/pa_config_fixed.h,
17472: src/main/pa_common.C: http request now return status. and not
17473: fail on status!=200
17474:
17475: 2003-01-15 paf
17476:
17477: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
17478:
17479: 2003-01-14 paf
17480:
17481: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
17482: mkinstalldirs: removed some ancient files [they in / really]
17483:
17484: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
17485: regretfully needed patch in two places. in config_fixed.h made
17486: stubs for lib to compile in MSVC
17487:
17488: 2003-01-13 paf
17489:
17490: * config.guess, config.sub, ltmain.sh: removed last piece of
17491: configure.in(libtool) hacks
17492:
1.116 moko 17493: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 17494: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
17495: ltdl.h: moved to latest libtool (1.4.3)
17496:
17497: 2003-01-10 paf
17498:
17499: * src/lib/ltdl/: configure, configure.in: PROG_NM
17500:
17501: * src/main/pa_globals.C: moved to latest xml lib versions, changed
17502: patches. libxml2 >= 2.5.1
17503: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
17504: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
17505: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17506:
17507: * INSTALL: moved to latest versions of xml libs libxml2 >=
17508: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
17509: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
17510: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
17511:
17512: 2003-01-09 paf
17513:
17514: * INSTALL: xml,xslt,gdome lib urls updated
17515:
17516: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 17517: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 17518: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 17519: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
17520: 1.7.2
1.95 moko 17521:
17522: * depcomp: moving to automake 1.7.2
17523:
17524: 2002-12-27 paf
17525:
17526: * src/include/pa_version.h: 0007
17527:
17528: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
17529: outdated parts, made links to language docs
17530:
17531: * src/include/pa_config_auto.h.in: comment
17532:
17533: 2002-12-26 paf
17534:
17535: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
17536: not contain trailing / fixed.
17537:
17538: * INSTALL: changing SAFE_MODE politics
17539:
17540: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
17541:
17542: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
17543:
17544: 2002-12-25 paf
17545:
17546: * src/main/pa_globals.C: optimized-xml
17547:
17548: * src/main/pa_globals.C: optimized-as-is
17549:
17550: 2002-12-24 paf
17551:
17552: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
17553: fixed [were really called with zero size when .html?a=&b=]
17554:
17555: * src/classes/mail.C: $MAIL in @conf now invalid when configured
17556: with --with-sendmail
17557:
17558: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
17559: fixed]
17560:
17561: 2002-12-23 paf
17562:
17563: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
17564: ignoring parameters & were storing only string with default
17565: expires
17566:
17567: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
17568: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
17569: December 23, 2002 4:22 AM Subject: bug â
17570: Charset::transcode_buf2xchar
17571:
17572: 2002-12-20 paf
17573:
17574: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
17575: non-cgi [script] runs
17576:
17577: 2002-12-19 paf
17578:
17579: * INSTALL: --without-iconv recommended [it crashes on some systems
17580: [tested on elik]] moreover, it's not needed there [parser
17581: registers charsets itself]
17582:
17583: * INSTALL: --without-iconv recommended [it crashes on some systems
17584: [tested on elik]]
17585:
17586: * operators.txt, src/include/pa_globals.h,
17587: src/include/pa_request.h, src/main/pa_globals.C,
17588: src/main/pa_request.C: $response:download
17589:
17590: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
17591: compiler [win32]].
17592:
17593: 2002-12-18 paf
17594:
17595: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
17596:
17597: 2002-12-17 paf
17598:
17599: * src/targets/cgi/parser3.C: merged die&iis changes
17600:
17601: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
17602: to exit(1) 2. more flexible iilegal call check
17603:
17604: 2002-12-16 paf
17605:
17606: * ltmain.sh: some automakes silly insist on having this handy
17607:
17608: * src/main/untaint.C: filespec russian small 'r' changed to latin
17609: 'p' bug fix
17610:
17611: 2002-12-15 paf
17612:
17613: * src/main/untaint.C: filespec russian small 'r' changed to latin
17614: 'p'
17615:
17616: * configure.in, src/include/pa_config_auto.h.in,
17617: src/main/compile.C, src/main/pa_common.C: merged small changes
17618: from branch 6 to HEAD
17619:
17620: * src/main/compile.C: removed warning
17621:
17622: * src/main/pa_common.C: ftruncate having checked
17623:
17624: * configure.in, src/include/pa_version.h: new version
17625:
17626: 2002-12-14 paf
17627:
17628: * src/classes/table.C: removed unnecessary code
17629:
17630: * src/sql/pa_sql_driver.h: exception type fixed
17631:
17632: 2002-12-09 paf
17633:
17634: * src/types/pa_vvoid.h: $void.store[now] error
17635:
17636: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17637:
17638: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
17639: tries to write core dump
17640:
17641: * src/targets/cgi/parser3.C: ::die now tries to write core dump
17642:
17643: * src/: classes/hash.C, classes/string.C, classes/table.C,
17644: classes/void.C, main/pa_sql_driver_manager.C,
17645: sql/pa_sql_driver.h: changed exception handling mech in sql
17646: handlers #2
17647:
17648: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
17649: exception handling mech in sql handlers
17650:
17651: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
17652: handlers
17653:
17654: * src/: classes/hash.C, classes/string.C, classes/table.C,
17655: classes/void.C, main/pa_sql_driver_manager.C,
17656: sql/pa_sql_driver.h: changed exception handling mech in sql
17657: handlers
17658:
1.116 moko 17659: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
17660: to write makefile which used libtool to install things, which is
17661: not needed
1.95 moko 17662:
17663: 2002-12-06 paf
17664:
17665: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
17666: $hash.fields -- pseudo field to make 'hash' more like 'table'
17667:
17668: 2002-12-05 paf
17669:
17670: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
17671: cc/bcc OK now
17672:
17673: * src/main/untaint.C: mail header closed properly
17674:
17675: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
17676: header ',' allowed. still bugs in smtp [only one receiptient
17677: works, cc, bcc ignored now, and MAILED ;)]
17678:
17679: [strncpy killed, memnchr used]
17680:
17681: * src/main/pa_table.C: table-copy now current=0
17682:
17683: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
17684: lowlevel proc
17685:
17686: * src/targets/cgi/parser3.C: more checks on
17687: http://domain/parser.cgi start [maybe some getenv returns "",
17688: checked that now
17689:
17690: * src/targets/cgi/parser3.C: more checks on
17691: http://domain/parser.cgi start [maybe some getenv returns "",
17692: checked that now
17693:
17694: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
17695: out-of-mem errors reached log]
17696:
17697: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
17698: mail:send MIME-Version default
17699:
17700: * src/main/main.dsp: pa_version included into main.dsp
17701:
17702: 2002-12-04 paf
17703:
17704: * src/types/pa_vform.C: $form:field string value cut by premature 0
17705:
17706: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
17707: lib/libltdl -> lib/ltdl Win32 changes. s
17708:
17709: * src/classes/classes.awk: more strict *.C$
17710:
17711: * gnu.dsp: restored
17712:
1.116 moko 17713: * configure.in, gnu.dsp, src/lib/Makefile.am,
17714: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
17715: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
17716: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
17717: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
17718: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
17719: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
17720: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
17721: now created with /configure, not ltdl/configure, so it does have
17722: no problems with automake. ltdl/configure
17723: AC_OUTPUT(Makefile<<removed)
1.95 moko 17724:
17725: 2002-12-02 paf
17726:
17727: * operators.txt: removed outdated status:db
17728:
17729: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
17730: src/main/pa_common.C, src/main/pa_request.C,
17731: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
17732: tainted parts becomes http-header
17733:
17734: 2002-11-29 paf
17735:
17736: * src/classes/date.C, src/classes/image.C, operators.txt: exif
17737: dates now objects of type date
17738:
17739: * src/classes/image.C: file.seek removed [it were used in image.C
17740: only, and for parser user this means that jpeg image has bad
17741: size in fragment's header] now used image.format
17742:
17743: * src/: include/pa_common.h, main/pa_common.C,
17744: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
17745: now handled exactly like $response:header values. e.g. can be
17746: hash [can have subattributes] & contain date values.
17747:
17748: * src/main/pa_common.C: http:// param values lang forced URI
17749:
17750: * src/main/pa_common.C: http:// tainted partes now %xx
17751:
17752: 2002-11-28 paf
17753:
17754: * operators.txt: http.timeout
17755:
17756: * src/classes/image.C: ^image.length now counts interchar space.
17757: plus space after last char
17758:
17759: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
17760:
17761: * src/classes/image.C: ^image.font width measurer now scans full
17762: height [were -1]
17763:
17764: * configure.in: stopped double libltdl/Makefile generation
17765:
17766: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
17767: chars [one top horizontal line of 1pixel height were missing]
17768:
17769: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
17770: 'false' to go into (Hash *) parameter
17771:
17772: 2002-11-27 paf
17773:
17774: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
17775: types/pa_vmail.C: response:body[file] if file nows it's name now
17776: returns content-disposition: >>attachment<<
17777:
17778: * src/classes/image.C: ^image.font << bad font file-size now
17779: properly reported
17780:
17781: 2002-11-26 paf
17782:
17783: * src/main/pa_request.C: fixed lang in reponse header
17784:
17785: * src/main/pa_common.C: utf8 prefix ignored @read text
17786:
17787: * operators.txt, src/main/pa_common.C: http:// response status!=200
17788: made exception: http.status with source=bad status#
17789:
17790: 2002-11-25 paf
17791:
17792: * configure.in, src/classes/image.C,
17793: src/include/pa_config_auto.h.in,
17794: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 17795: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
17796: const void related probs fixed
1.95 moko 17797:
17798: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
17799:
17800: $file[^file::load[http://there]] $file.SERVER
17801:
17802: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
17803: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
17804: http options [invalid onces now reported] made default
17805: user-agent: paf
17806:
17807: * operators.txt, src/classes/file.C, src/classes/table.C,
17808: src/classes/xdoc.C, src/include/pa_common.h,
17809: src/include/pa_globals.h, src/main/pa_common.C,
17810: src/main/pa_globals.C, src/main/pa_request.C,
17811: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
17812: now understand http:// prefix and additional params, sample:
17813: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
17814: $.USER-AGENT[parser3] ]]
17815:
17816: 2002-11-22 paf
17817:
17818: * src/classes/image.C, src/include/pa_globals.h,
17819: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
17820: src/types/pa_vimage.h, operators.txt: $image.exif support
17821: $image.exif.DateTime & co
17822:
17823: 2002-11-21 paf
17824:
17825: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
17826: _PASS_APPENDED)
17827:
17828: * src/classes/image.C: jpeg size measure fixed: were badly skipping
17829: EXIF information [were big block and it's size were considered
17830: negative :(]
17831:
17832: * operators.txt, src/classes/image.C, src/include/pa_common.h,
17833: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
17834: internals rewritten. no there's reader.seek, and all's ready for
17835: EXIF extraction [now we fail to measure files with EXIF info]
17836:
17837: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
17838: O_TRUNC truncates even exclusevely write-locked file [thanks to
17839: Igor Milyakov <virtan@rotabanner.com> for discovering]
17840:
17841: 2002-11-20 paf
17842:
17843: * src/targets/cgi/parser3.C: logging @signal += query_string
17844:
17845: * configure.in, src/include/pa_config_auto.h.in,
17846: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
17847: comment
17848:
17849: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
17850:
17851: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
17852: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
17853: currently processed document SIGPIPE >> interrupts request
17854: processing [exception = DB rollback]
17855:
17856: * src/main/pa_exec.C: comment
17857:
17858: * src/main/pa_exec.C: pa_exec: data written only if size>0
17859:
17860: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
17861: << disable HTTP-POST repassing
17862:
17863: * src/: include/pa_config_fixed.h, main/pa_common.C,
17864: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
17865: pipe read errors now checked
17866:
17867: 2002-11-19 paf
17868:
17869: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
17870: CGI: Illegal call
17871:
17872: 2002-11-01 paf
17873:
17874: * src/main/execute.C: comment
17875:
17876: 2002-10-31 paf
17877:
17878: * src/main/execute.C: found out why, checked that for now. todo:
17879: find out a way for that user could do that
17880:
17881: * src/types/pa_vstateless_object.h: object put replaces static
17882: parent if any
17883:
17884: * src/types/pa_vobject.C: object put replaces static parent if any
17885:
17886: * src/: classes/form.C, classes/mail.C, classes/op.C,
17887: classes/xnode.h, main/compile.tab.C, main/execute.C,
17888: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17889: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17890: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17891: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17892: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17893: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17894: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17895: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17896: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17897: types/pa_vstateless_object.h, types/pa_vstatus.C,
17898: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17899: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17900: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17901: types/pa_wwrapper.h: static fix merged
17902:
17903: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17904: $virtual_fields in dynamic, but one can reach derived
17905: static[class] variable from base
17906:
17907: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17908: types/pa_vobject.C, types/pa_vobject.h,
17909: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17910: statics, left $virtual_fields in dynamic
17911:
17912: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17913: one can't remember derivates in base class: there's so many of
17914: them. also there can be no virtual method calls in static
17915: classes
17916:
17917: * src/: classes/form.C, classes/mail.C, classes/op.C,
17918: classes/xnode.h, main/execute.C, main/pa_request.C,
17919: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17920: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17921: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17922: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17923: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17924: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17925: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17926: types/pa_vresponse.C, types/pa_vresponse.h,
17927: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17928: types/pa_vstateless_object.h, types/pa_vstatus.C,
17929: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17930: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17931: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17932: types/pa_wwrapper.h: static call $self fixed
17933:
17934: * src/main/execute.C: comment
17935:
17936: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17937: ^process[$caller.self]{...} now compiles to last derived object
17938: part of that 'self'
17939:
17940: 2002-10-29 paf
17941:
17942: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17943: re-passing [iis to blame]
17944:
17945: * src/classes/string.C: changed string.save to pass current sql
17946: connection to cstr thus one can ^connect[some server]{
17947: $s[insert into table x (x) values (^taint[sql]{value})]
17948: ^s.save[some.sql] } and he'd get in some.sql file code with
17949: properly escaped. [tried in mssql->mysql export->import of
17950: binary data]
17951:
17952: 2002-10-25 paf
17953:
17954: * src/types/pa_vresponse.C: case insensitive response user fields
17955: get/put
17956:
17957: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17958: types/pa_vresponse.C: saving for maybe-future
17959:
17960: 2002-10-23 paf
17961:
17962: * operators.txt, src/classes/table.C: ^table.hash{code}...
17963: ^table.hash(expr)...
17964:
17965: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17966:
17967: 2002-10-22 paf
17968:
17969: * src/types/: pa_vform.C, pa_vform.h: removed needless
17970: VForm::Append...(...Value)
17971:
17972: * src/main/execute.C: $.name outside of $name[...] checked
17973:
17974: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17975: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17976:
17977: 2002-10-21 paf
17978:
17979: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17980: $form:qtail $form:imap.x/y
17981:
17982: * operators.txt, src/types/pa_vform.C: $form:nameless =
17983: "?value&...", "...&value&...", "...&value"
17984:
17985: * operators.txt, src/types/pa_vform.C: $form:image-map
17986:
17987: * operators.txt, src/classes/file.C: /some/page.html:
17988: ^file:fullpath[a.gif] => /some/a.gif
17989:
17990: 2002-10-17 paf
17991:
17992: * src/main/: compile.tab.C, compile.y: operators precedence changed
17993: a little: logical not and bitwise negation precedence made
17994: highest, << and >> bitshits precedence made equal [were << higher
17995: than >>]
17996:
17997: * src/classes/op.C: exception handling fixed [were bad with
17998: contexts]
17999:
18000: 2002-10-16 paf
18001:
18002: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18003: main/pa_request.C: Request::self considered equal to
18004: VMethodFrame::self, and removed, Request::get_self() mapped to
18005: VMethodFrame.self()
18006:
18007: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
18008: $hash in open field now gives old good error meesage
18009:
18010: 2002-10-15 paf
18011:
18012: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
18013: use ^if($junction is junction){was and now true}
18014:
18015: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
18016: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
18017: types/pa_vxnode.C: xml->parser strings now have origin, which
18018: points to place where value left xml library and came to parser:
18019: place of dom field extraction/call
18020:
18021: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
18022: main/compile.tab.C, main/compile.y, main/execute.C,
18023: types/pa_vmethod_frame.h: removed last pieces of old code
18024: allowing $junction.xxx at compile time
18025:
18026: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
18027: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
18028: objects also considered [were only classes]
18029:
18030: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
18031: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
18032: with CLASS self. [ (request&method_frame).self temporarily
18033: changed ]
18034:
18035: * src/classes/: hash.C, op.C: method_frame now always changed, with
18036: no exception to native calls. for&foreach changed to use
18037: method_frame.caller for their var's name context
18038:
18039: * src/: main/execute.C, targets/cgi/parser3.C,
18040: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
18041: compiling to system classes disabled
18042:
18043: * operators.txt, src/classes/op.C:
18044: ^process[$caller.CLASS]{code-string} added
18045:
18046: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
18047: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
18048: src/types/Makefile.am, src/types/pa_vjunction.C,
18049: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
18050: src/types/types.dsp: removed $junction.get $junction.set[]
18051: introducing $caller
18052:
18053: * src/types/pa_value.h: removed outdated comments. doxygen would
18054: find them lower by inheritance tree
18055:
18056: * src/types/pa_vjunction.C: ident
18057:
18058: 2002-10-14 paf
18059:
18060: * src/classes/op.C: process compiles to code's class class
18061:
18062: * src/: classes/form.C, classes/mail.C, classes/op.C,
18063: include/pa_request.h, main/compile.C, main/compile.tab.C,
18064: main/compile.y, main/execute.C, main/pa_request.C,
18065: types/pa_vstateless_class.h: operators now main-class-methods
18066:
18067: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
18068: better stack trace [has "call" & co there]
18069:
18070: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
18071: operators @auto now executed in MAIN context
18072:
18073: * src/main/execute.C: operator execution context now = MAIN, not
18074: closest stack frame
18075:
18076: @touchit[] $i[after]
18077:
18078: ----t.html $i[before] << local ^touchit[] $i << now 'before',
18079: were 'after'
18080:
18081: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
18082: 'after'
18083:
18084: * src/main/execute.C: comment
18085:
18086: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
18087: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
18088: action]
18089:
18090: * src/types/pa_vxnode.C: misreplace fixed
18091:
18092: * configure, configure.in, src/include/pa_config_auto.h.in,
18093: src/types/pa_vstatus.C, operators.txt:
18094: $status:rusage.tv_secs/usecs introduced
18095:
18096: 2002-10-09 paf
18097:
18098: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
18099: on empty string [or uses (default)]
18100:
18101: 2002-10-08 paf
18102:
18103: * src/main/untaint.C: mail header quoted printable changed after
18104: RFC reread
18105:
18106: * operators.txt: plan on ^if(method
18107:
18108: * src/types/pa_vxnode.C: misreplace
18109:
18110: 2002-09-24 paf
18111:
1.116 moko 18112: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 18113:
18114: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
18115: mailreceive would compile on freebsd now
18116:
18117: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
18118: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 18119: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
18120: mailreceive would compile on freebsd now
1.95 moko 18121:
18122: * src/: classes/file.C, main/untaint.C: 1. file spec language
18123: changed: now there are only few chars are untainted: * ? ' " < >
18124: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
18125: one should use ^untaint[uri]{...} now]
18126:
18127: 2. $list[^file:list[dir]] now returns simply tainted names in
18128: $list.name, not tainted as filespec
18129:
18130: @russianindex[] #dir with files with russian-lang names
18131: $where[dir]
18132:
18133: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
18134: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
18135:
18136: 2002-09-23 paf
18137:
18138: * src/types/pa_vdouble.h: double->int round added
18139:
18140: * src/classes/date.C: date bug fix, now
18141: round(floatDays*secondsPerDay)
18142:
18143: * src/classes/date.C: date bug fix, now
18144: round(floatDays*secondsPerDay)
18145:
18146: 2002-09-20 paf
18147:
18148: * src/main/execute.C: code junction calls disabled [before: code
18149: was compiled in such a way, that there were no code-junctions in
18150: OP_CALL]
18151:
18152: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
18153:
18154: @badjunctioncallinside[code] ^code[]
18155:
18156: * src/main/: compile.tab.C, compile.y: changed grammer on junction
18157: expanding to include ^junction.method
18158:
18159: * src/main/pa_common.C: -d "DIR/" now true
18160:
18161: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
18162: as internal xdoc encoding, and after decoding attributes set by
18163: dom functions now encoded OK, not as digital entities
18164:
18165: * src/classes/xdoc.C: empty transform result, being taken as file
18166: now returns empty file, not raises stupid error about "stat-ed
18167: file"
18168:
18169: * src/types/pa_vhash.h: hash.foreach modification of existing keys
18170: allowed
18171:
18172: * src/types/types.dsp: introducing $junction.get/put(1) one can
18173: write iterators now:
18174:
18175: ^user-foreach[key;value]{$key=$value<br>}
18176:
18177: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18178: $code.value($i*2) $code }
18179:
18180: * src/main/compile_tools.h: mistype
18181:
1.116 moko 18182: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
18183: thus taking linking options configure changes into account [were:
18184: ignoring]
1.95 moko 18185:
18186: * src/types/: pa_vjunction.C, Makefile.am: introducing
18187: $junction.get/put(1) one can write iterators now:
18188:
18189: ^user-foreach[key;value]{$key=$value<br>}
18190:
18191: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18192: $code.value($i*2) $code }
18193:
18194: * src/: include/pa_opcode.h, include/pa_request.h,
18195: main/compile.tab.C, main/compile.y, main/execute.C,
18196: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
18197: introducing $junction.get/put(1) one can write iterators now:
18198:
18199: ^user-foreach[key;value]{$key=$value<br>}
18200:
18201: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
18202: $code.value($i*2) $code }
18203:
18204: 2002-09-19 paf
18205:
1.116 moko 18206: * Makefile.am: new: make commit
1.95 moko 18207:
18208: * aclocal.m4: forced to be older
18209:
18210: 2002-09-18 paf
18211:
18212: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
18213: src/main/compile.y, src/main/execute.C: << >> int shifts
18214:
18215: * src/: include/pa_common.h, include/pa_request.h,
18216: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
18217: - now this - fatal error
18218:
18219: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
18220: that one can pass binary data there
18221:
18222: * src/: classes/date.C, classes/double.C, classes/file.C,
18223: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18224: classes/op.C, classes/response.C, classes/string.C,
18225: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18226: include/pa_request.h: pa_request contexts made privated, plus
18227: get_{self/method_frame} to read. Request_context_saver used in
18228: ^try to save flang too. [were not saved]
18229:
18230: * src/types/pa_vresponse.C: header value chains joined before
18231: output, this should help $.subject[$var $var] from being
18232: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
18233:
18234: 2002-09-17 paf
18235:
18236: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
18237: removed changes, operators executed with calling self. lots of
18238: code with ^include code relies on defined/defining self variables
18239:
18240: $a[1] ^include[print_a.p] print_a.p: $a
18241:
18242: ^include[set_a.p] a=$a set_a.p: $a[1]
18243:
18244: * src/: classes/op.C, main/execute.C, main/pa_request.C,
18245: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
18246: types/pa_vstateless_class.h: operators now executed with MAIN
18247: self. it's for ^include sake, too strong a change
18248:
18249: * src/classes/op.C: made place for ^process to compile it's code to
18250: in case of no self
18251:
18252: * src/main/execute.C: found ancient param to Junction, removed.
18253: allowed passing self to native_code_operators [for ^process to
18254: work, she needs self]
18255:
18256: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
18257: types/pa_vstateless_class.h: found ancient param to Junction,
18258: removed. allowed passing self to native_code_operators [for
18259: ^process to work, she needs self]
18260:
18261: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
18262: types/pa_value.h, types/pa_vmethod_frame.h,
18263: types/pa_vstateless_class.h: allowed Request.self to be 0,
18264: checked that in VMethodFrame get/put and $self.
18265:
18266: * src/classes/: table.C, xdoc.C: table::sql options table::create
18267: copy options options checked, wrong option now fatal error
18268:
18269: * src/main/pa_string.C: string.replace fixed [were missing words on
18270: pieces boundaries]
18271:
1.150 moko 18272: * configure, configure.in: .so now detected [can be .sl on hpux,
18273: .dll on cygwin, .so in other cases)
1.95 moko 18274:
18275: * configure, configure.in: .so now detected [can be .sl on hpux,
18276: .dll on cygwin, .so in other cases)
18277:
18278: * operators.txt, src/classes/hash.C, src/classes/table.C,
18279: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
18280: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
18281: record taken [were last]
18282:
18283: * src/: classes/hash.C, classes/table.C,
18284: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
18285: now errors
18286:
18287: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
18288:
18289: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
18290: ,2,3]
18291:
18292: 2002-09-16 paf
18293:
18294: * src/classes/file.C: file::cgi line ends can be both unix & dos.
18295: and they can be unix [\n\n] on win when 'use CGI' used, it causes
18296: stdout to be binary. now detected closest header break.
18297:
18298: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
18299: closed right
18300:
18301: 2002-09-13 paf
18302:
18303: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
18304: src/main/compile_tools.h: (expression #comment)
18305:
18306: (multiline expression #comment line2 #comment )
18307:
18308: (expression #comment with (brackets) comment) << OK
18309:
18310: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
18311: bitwise !|| numerical xor now [preparing for expression
18312: #comments]
18313:
18314: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
18315: error
18316:
18317: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
18318: cheched in pa_socks.C
18319:
1.116 moko 18320: * configure, configure.in, src/include/pa_config_auto.h.in:
18321: HAVE_WINSOCK_H created in configure.in
1.95 moko 18322:
18323: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
18324: cookie date now clean [were mistakenly tainted & that worked bad
18325: with opera -- 'happily' that worked OK with msie]
18326:
18327: 2002-09-12 paf
18328:
18329: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
18330: VClass get_element now first looks to fields, next to methods &
18331: co todo: the rest reason: more speed
18332:
18333: * src/main/untaint.C: quoted printable encoding stops before
18334: \s*<...>$
18335:
18336: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
18337: stops before <...>$
18338:
18339: 2002-09-11 paf
18340:
18341: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
18342: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
18343: forgot to check users of those funcs. not all were using that
18344: return value convention
18345:
18346: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
18347: windows-1254 added
18348:
18349: 2002-09-10 paf
18350:
18351: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
18352: VCodeFrame parent param were specified badly
18353:
18354: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
18355: WWrapper which used in constructing objects(second param to sql
18356: method) ^...sql{}[$.default{code}] now has parent, wich helps
18357: code in hash to survivi
18358:
18359: * src/: include/pa_request.h, main/execute.C: removed redundant
18360: param to execute [stack said 'thanks']
18361:
18362: * src/: classes/op.C, main/execute.C, types/pa_value.C,
18363: types/pa_value.h, types/pa_vcode_frame.h,
18364: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18365: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
18366: responsibility to wcontext
18367:
18368: * src/classes/file.C: decided not to log exec's with stderr, that
18369: could be warnings, and it's up to scritper to log/show them
18370:
18371: * src/: classes/double.C, main/execute.C: double:sql badly called
18372: write_assign_lang, not write_no_lang, thus doing unnecessary
18373: double/string converstion, which were loosing time&precesion
18374:
18375: * src/: main/pa_charset.C, types/pa_vmail.C:
18376: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
18377: case of unfinished in buffer processing, causing accidental
18378: transcode stop [in case that source enc != utf-8 & there is
18379: incomplete utf-8 sequence at the end of 16000block iside of
18380: libxml lib] tfm readed & code updated
18381:
18382: 2002-09-04 paf
18383:
18384: * configure: makes with sjlj
18385:
18386: * INSTALL, src/include/pa_config_fixed.h,
18387: src/include/pa_sql_connection.h,
18388: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
18389: checked. on win32 it made default
18390:
18391: * src/include/pa_config_auto.h.in: sjlj define
18392:
18393: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
18394: can not work with longjump/throw pair, and one must switch that
18395: on there. todo: detect that automatically]
18396:
18397: * src/types/pa_vxnode.C: removed too strong checks of
18398: xnode.elements. now, for instance, if element does not have any
18399: attributes, $xnode.attributes is void, not error
18400:
18401: 2002-09-02 paf
18402:
18403: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
18404: removed double_result, didn't help
18405:
18406: * src/main/execute.C: double_result made to move that var away from
18407: hungry g++ optimizer (-O2), before: it were optimized and
18408: comparison operators worked badly
18409:
18410: * src/types/pa_vdate.h: removed debug
18411:
1.116 moko 18412: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 18413:
18414: * src/main/execute.C: fixed numeric < & co so that thay now use
18415: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
18416: unknown reason.
18417:
18418: 2002-08-29 paf
18419:
18420: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
18421: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
18422: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
18423: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
18424: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
18425: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
18426: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
18427: [called less frequent, allowed to remove ugly
18428: Junction.change_context-s from many places, switch,
18429: mail:send..html{}, ..] request.root renamed to method_frame [more
18430: easyreading] ancient {...PUSH/POPs...} changed to stack vars
18431: [speed up]
18432:
18433: 2002-08-28 paf
18434:
18435: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
18436: tainted
18437:
18438: * src/types/pa_vcookie.C: fixed cookie delete when
18439: $cookie:name[$.value[]]
18440:
18441: * operators.txt, src/classes/string.C:
18442: ^string.split[delim[;options]]
18443:
18444: 2002-08-27 paf
18445:
1.116 moko 18446: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 18447:
18448: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
18449: delimiter
18450:
18451: * INSTALL: recommended latest gmime 1.0.5
18452:
18453: 2002-08-26 paf
18454:
18455: * configure, configure.in: apache13/hook added to make dist.
18456:
18457: 2002-08-23 paf
18458:
18459: * src/: include/pa_common.h, main/pa_common.C,
18460: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
18461: beside binary [cgi, isapi] not accessible [due to bad rights or
18462: whatever] it's error now
18463:
18464: 2002-08-21 paf
18465:
1.116 moko 18466: * Makefile.am: can use: make happy equals to make update install
1.95 moko 18467:
18468: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18469: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
18470: class". compiled as if here they named base class
18471:
18472: * src/main/pa_string.C: fixed bad language bug, [were wrong string
18473: cloning constructor]
18474:
18475: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
18476:
1.150 moko 18477: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 18478: $mail.received.file.value.content-type fixed
18479:
18480: 2002-08-20 paf
18481:
18482: * src/classes/file.C: fixed language of file:file result
18483:
18484: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
18485: from 3.0.0005
18486:
18487: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
18488:
18489: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
18490: 3.0.0005
18491:
18492: * src/classes/void.C, operators.txt: ^void.length[] = 0
18493:
18494: 2002-08-19 paf
18495:
18496: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
18497: work now
18498:
18499: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
18500: error in xnode, which were not catched in xdoc]
18501:
18502: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
18503: prepared: // validate each document after load/create (?)
18504: //xmlDoValidityCheckingDefaultValue = 1;
18505:
18506: 2002-08-15 paf
18507:
18508: * src/classes/classes.h: write to static var caused useless
18509: Exception, introduced Methoded::put_element wich consumes those
18510:
18511: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
18512: src/types/pa_vcookie.C, src/types/pa_vdate.h,
18513: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
18514: $response:field[date] $response:field[$.xxx[date]]
18515:
18516: * src/: classes/hash.C, classes/string.C, classes/table.C,
18517: classes/void.C, include/pa_sql_connection.h: fixed source of
18518: ^hash::sql{bad}
18519:
18520: * operators.txt: $request:body unprecessed POST request body
18521:
18522: * src/types/pa_vrequest.C: $request:body unprecessed POST request
18523:
18524: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
18525: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
18526:
18527: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
18528: src/include/pa_request.h, src/main/pa_pool.C,
18529: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
18530: $request:body r.post_data now const
18531:
18532: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
18533: classes/xnode.C, main/execute.C, types/pa_value.h,
18534: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
18535: types/pa_vtable.h: instead of type() checking everywhere used
18536: Value.as now user descendants can be used in params.
18537:
18538: VObject::as_*, is_defined now taken from bases. xtable(table)
18539: ^if($xtable) now OK
18540:
18541: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
18542: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
18543: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
18544:
18545: 2002-08-14 paf
18546:
18547: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
18548: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
18549: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18550: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18551: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18552: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
18553: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
18554: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18555: types/pa_vresponse.C, types/pa_vresponse.h,
18556: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18557: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18558: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18559: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18560: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
18561: & VClass
18562:
18563: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
18564:
18565: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
18566: removed fixopt stupidity. on stupid linux use cd /document/root
18567: ../cgi/parser3 script
18568:
18569: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
18570: params, splitting them by space, excluding argv[0], argv[argc-1]
18571:
18572: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
18573: fixopt.h: fixopt now preprocesses command line params, splitting
18574: them by space, excluding argv[0], argv[argc-1]
18575:
18576: * src/targets/cgi/parser3.C: -f config file
18577:
18578: * src/targets/cgi/parser3.C: fixed .log file dir
18579:
18580: 2002-08-13 paf
18581:
18582: * src/types/pa_vobject.C: allow override parent variables, useful
18583: for form descendants [in vobject too, were in vclass]
18584:
18585: * src/types/pa_vclass.C: allow override parent variables, useful
18586: for form descendants
18587:
18588: * src/types/pa_vclass.C: checked: form[vclass]fields can be
18589: overwritten in derived(table)
18590:
18591: * src/: classes/form.C, classes/mail.C, classes/op.C,
18592: classes/xnode.h, include/pa_request.h, main/execute.C,
18593: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
18594: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18595: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
18596: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18597: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
18598: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18599: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
18600: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
18601: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18602: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18603: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18604: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18605: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
18606: Value::get_element(..., bool looking_down) [needed to exclude
18607: endless recoursion]
18608:
18609: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
18610: fix bug with put endless recoursion todo: check 'as'
18611:
18612: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
18613: reorganized modules todo: fix bug with put endless recoursion
18614: todo: check 'as'
18615:
18616: * src/types/pa_vobject.h: checked: table fields can be overwritten
18617: in derived(table)
18618:
18619: * src/types/pa_vobject.h: derived classes can have fields of their
18620: own now
18621:
18622: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
18623: fixed error message on using non-created table
18624:
18625: * src/: classes/form.C, classes/hash.C, classes/mail.C,
18626: classes/op.C, classes/xnode.h, include/pa_request.h,
18627: main/compile.C, main/compile.tab.C, main/execute.C,
18628: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18629: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18630: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
18631: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18632: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
18633: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18634: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18635: types/pa_vresponse.C, types/pa_vresponse.h,
18636: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18637: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
18638: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18639: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18640: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
18641: looking down/up tree todo: fix error message on non-constructed
18642: parents
18643:
18644: 2002-08-12 paf
18645:
18646: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
18647: derived OK
18648:
18649: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
18650: thorough testing
18651:
18652: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
18653: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
18654: types/pa_vobject.h, types/pa_vstateless_class.h,
18655: types/pa_vstateless_object.h, types/pa_wcontext.h,
18656: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
18657: ^base:create[] dynamic call rewritten todo: thorough testing
18658:
18659: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
18660: now instantates base class, remembers it and saves child in
18661: parent VObject.get_class now returns last child = downward
18662: virtual calls OK
18663:
18664: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18665: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
18666: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
18667: types/pa_vobject.h, types/pa_vresponse.h,
18668: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18669: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
18670: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
18671: VAliased [redundant], moved $CLASS to VObject only [parser class
18672: instance]
18673:
18674: * src/main/pa_request.C: $response:body[file] content-type check
18675: fixed [were bad when content-type is hash]
18676:
18677: 2002-08-09 paf
18678:
18679: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
18680: types/pa_vobject.h, types/pa_vxdoc.h: started as()
18681:
18682: 2002-08-08 paf
18683:
18684: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
18685: src/main/pa_globals.C: year column in month calendar [week year]
18686:
18687: * src/main/execute.C: error reporting on object writes to MAIN
18688: improved [were ruind with fixing $obj[^if(1){$obj}] ]
18689:
18690: * operators.txt, src/types/pa_vdate.h: $date.yearday
18691: $date.daylightsaving
18692:
18693: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
18694: use tainted data now. only she must specify the language.
18695:
18696: ^mail:send[ $.from[paf@mail.design.ru]
18697: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
18698: $.text[^taint[uri][ìîñêâà]=] ]
18699:
18700: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
18701: now prints more precise origin
18702:
18703: * src/include/pa_string.h: String::first_char now not fails on
18704: empty strings ^if(-f '') now ok and in 3 other places.
18705:
18706: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
18707: String::first_char now not fails on empty strings ^if(-f '') now
18708: ok and in 3 other places.
18709:
18710: 2002-08-07 paf
18711:
18712: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
18713: fixed
18714:
18715: * src/main/pa_string.C: ^string.mid(0;bad) fixed
18716:
18717: * src/: main/execute.C, types/pa_vcode_frame.h,
18718: types/pa_vmethod_frame.h, types/pa_wcontext.C,
18719: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
18720: mistakenly not completely transparent to object writes.
18721: $hash[^if(1){$hash}] now works
18722:
18723: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
18724: now erasing cache file [there were bad check on that]
18725:
18726: * src/: classes/classes.dsp, classes/table.C,
18727: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
18728: all Debug dirs in .dsp now named 'Debug'
18729:
1.116 moko 18730: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 18731:
18732: * operators.txt, src/classes/mail.C: exception_type email.send
18733:
18734: * operators.txt, src/types/pa_vmail.C: exception_type email.format
18735:
18736: * src/types/pa_vmail.C: mail:send empty email checked
18737:
18738: 2002-08-06 paf
18739:
18740: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18741: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18742: ^table::create[$source;$.options] ^table::join[$source;$.options]
18743:
18744: * operators.txt, src/classes/hash.C, src/classes/string.C,
18745: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
18746: # $.default() }
18747:
18748: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
18749:
18750: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
18751: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
18752: $file.content-type [instead of .mime-type] now works for
18753: file::stat also
18754:
18755: * src/main/pa_request.C: case insensitive mime_type_of
18756:
18757: 2002-08-05 paf
18758:
18759: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
18760:
18761: * src/types/pa_vmail.C: file buffer relocated to parser heap
18762:
18763: * operators.txt: comment on date:calendar week column
18764:
18765: * src/main/pa_common.C: write checked
18766:
18767: * src/main/: pa_common.C: write checked
18768:
18769: * src/classes/date.C: +1 buf size for stupid snprintfs
18770:
18771: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
18772: month calendar week column [ISO 8601 Week Numbers]
18773:
18774: 2002-08-02 paf
18775:
18776: * src/: include/pa_config_fixed.h, main/pa_string.C,
18777: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
18778: DEBUG*
18779:
18780: * configure, configure.in, src/include/pa_version.h: release
18781: 3_0_0005
18782:
18783: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
18784: multipart post fixed
18785:
18786: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
18787: response transcoded source->client only when text/* or simple
18788: onoverridden $response:body
18789:
18790: 2002-08-01 paf
18791:
18792: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18793: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18794: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
18795: classes/op.C, classes/response.C, classes/string.C,
18796: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
18797: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
18798: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18799: include/pa_config_fixed.h, include/pa_dictionary.h,
18800: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
18801: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
18802: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
18803: include/pa_socks.h, include/pa_sql_connection.h,
18804: include/pa_sql_driver_manager.h, include/pa_stack.h,
18805: include/pa_string.h, include/pa_stylesheet_connection.h,
18806: include/pa_stylesheet_manager.h, include/pa_table.h,
18807: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18808: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
18809: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
18810: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18811: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
18812: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
18813: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
18814: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
18815: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
18816: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18817: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
18818: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
18819: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
18820: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18821: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18822: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
18823: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
18824: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
18825: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
18826: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
18827: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
18828: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18829: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
18830: types/pa_vmethod_frame.h, types/pa_vobject.h,
18831: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18832: types/pa_vresponse.h, types/pa_vstateless_class.C,
18833: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18834: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18835: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18836: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18837: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 18838: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 18839:
18840: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
18841: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
18842: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
18843: classes/math.C, classes/op.C, classes/response.C,
18844: classes/string.C, classes/table.C, classes/void.C,
18845: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18846: include/pa_array.h, include/pa_cache_managers.h,
18847: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18848: include/pa_config_fixed.h, include/pa_config_includes.h,
18849: include/pa_dictionary.h, include/pa_dir.h,
18850: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18851: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18852: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18853: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18854: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18855: include/pa_stack.h, include/pa_string.h,
18856: include/pa_stylesheet_connection.h,
18857: include/pa_stylesheet_manager.h, include/pa_table.h,
18858: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
18859: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
18860: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18861: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
18862: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18863: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
18864: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
18865: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18866: main/pa_sql_driver_manager.C, main/pa_string.C,
18867: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
18868: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18869: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18870: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
18871: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18872: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18873: targets/isapi/pool_storage.h, types/pa_valiased.C,
18874: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
18875: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18876: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
18877: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
18878: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
18879: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
18880: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
18881: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18882: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
18883: types/pa_vresponse.C, types/pa_vresponse.h,
18884: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18885: types/pa_vstateless_object.h, types/pa_vstatus.C,
18886: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
18887: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
18888: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
18889: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
18890: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
18891: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
18892: types/Makefile.am: ident.C* removed
18893:
18894: * operators.txt, src/classes/file.C, src/main/pa_request.C:
18895: file:find[/can/do/this/now.txt]
18896:
18897: * src/targets/cgi/parser3.C: usage to stdout now
18898:
18899: 2002-07-31 paf
18900:
18901: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18902:
18903: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18904: default "postmaster"
18905:
18906: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18907: -f postmaster now default sendmail key word "postmaster"
18908: replaced to $.from
18909:
18910: 2002-07-30 paf
18911:
1.116 moko 18912: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18913: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18914:
18915: * src/main/pa_charset.C: comment
18916:
18917: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18918: table, &#decimal;
18919:
18920: * src/main/pa_request.C: comment
18921:
18922: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18923: paragraf]
18924:
18925: 2002-07-11 paf
18926:
18927: * src/main/pa_exec.C: build command line badly added params twice
18928: [and first time without ' ']. double wrong. fixed.
18929:
18930: * src/main/pa_exec.C: invalid .exe caused error message with params
18931: wich parser did not provide = reported badly. fixed that.
18932:
18933: * src/classes/mail.C: $MAIL[ # xxx ]
18934:
18935: now ok
18936:
18937: * operators.txt: plan: sql detailed exception
18938:
18939: 2002-07-01 paf
18940:
18941: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18942: [MForm.configure_admin were called when request.main_class ==0
18943:
18944: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18945:
18946: * src/classes/form.C: content_length type fix
18947:
18948: 2002-06-30 paf
18949:
18950: * src/classes/mail.C: merged from 4
18951:
18952: * src/classes/mail.C: restored $MAIL
18953:
18954: 2002-06-28 paf
18955:
18956: * configure, configure.in: removed paths.h
18957:
1.116 moko 18958: * configure, src/include/pa_version.h,
1.95 moko 18959: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18960: merged, makes updated
18961:
18962: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18963: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18964: src/include/pa_pool.h, src/include/pa_version.h,
18965: src/main/pa_charset.C, src/main/pa_pool.C,
18966: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18967: src/types/pa_vmail.C: merged latest updates to head
18968:
18969: 2002-06-27 paf
18970:
18971: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18972: not error now
18973:
18974: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18975: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18976: src/main/pa_charset.C, src/main/pa_pool.C:
18977: ^xdoc::create[[uri]]... base uri for document being created,
18978: imports and other relative file names would be relative to this
18979: uri default uri=path_translated
18980:
18981: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18982:
18983: 2002-06-26 paf
18984:
18985: * configure, configure.in, src/include/pa_version.h:
18986: release_3_0_0004
18987:
18988: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18989: 0 now
18990:
18991: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18992:
18993: 2002-06-25 paf
18994:
18995: * src/main/pa_string.C: emtpy string, or string of whitespaces
18996: considered bad number now
18997:
18998: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18999: now
19000:
19001: * operators.txt, src/classes/string.C: ^string.normalize [old
19002: name: optimize
19003:
19004: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
19005: library configured
19006:
19007: * src/main/pa_request.C: configure_admin forced if no @conf
19008:
1.150 moko 19009: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
19010: ^math:crypt updated to generate random salt when needed and to
19011: call system crypt() if not $apr1$ prefix
1.95 moko 19012:
19013: 2002-06-24 paf
19014:
19015: * INSTALL: --with-static/shared-mailreceive described
19016:
19017: * src/include/pa_config_fixed.h: ssize_t fixed
19018:
1.116 moko 19019: * configure, configure.in, src/include/pa_config_auto.h.in,
19020: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 19021: src/types/pa_vmail.C: $mail:received makes update
19022:
19023: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
19024: WITH_MAILRECEIVE
19025:
19026: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
19027:
19028: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
19029: option, for $mail:receive
19030:
19031: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
19032: introducting $message:received ^mail:send rewritten with backward
19033: comp
19034:
19035: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19036: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19037: types/types.dsp: win32xml win32mailreceive pseudomodules paths
19038: now
19039:
19040: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
19041: src/include/pa_charset.h, src/include/pa_config_fixed.h,
19042: src/include/pa_request.h, src/include/pa_string.h,
19043: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
19044: src/main/pa_globals.C, src/main/pa_request.C,
19045: src/main/pa_string.C, src/main/pa_uue.C,
19046: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
19047: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
19048: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
19049: uue to separate file introducting $message:received ^mail:send
19050: rewritten with backward comp
19051:
19052: 2002-06-21 paf
19053:
1.116 moko 19054: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
19055: co changes
1.95 moko 19056:
1.116 moko 19057: * configure, configure.in, src/lib/md5/Makefile.am,
19058: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
19059: restructure .in and .am files appropriate changes
1.95 moko 19060:
19061: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
19062: pcre to libs/ added libs/md5 which is linked to non-apache
19063: targets ^math:crypt[password;$apr1$salt]
19064:
19065: * INSTALL, configure.in, operators.txt, parser3.dsw,
19066: src/Makefile.am, src/classes/Makefile.am,
19067: src/classes/classes.dsp, src/classes/math.C,
19068: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 19069: src/lib/pcre/Makefile.am, src/lib/pcre/README,
19070: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
19071: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
19072: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
19073: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
19074: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
19075: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
19076: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 19077: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
19078: src/lib/pcre/pcre_parser_ctype.dsp,
19079: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
19080: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
19081: src/main/compile.tab.C, src/main/main.dsp,
19082: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
19083: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
19084: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
19085: to libs/ added libs/md5 which is linked to non-apache targets
19086: ^math:crypt[password;$apr1$salt]
19087:
19088: 2002-06-20 paf
19089:
1.150 moko 19090: * INSTALL, configure, configure.in, operators.txt,
19091: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
19092: src/include/pa_globals.h, src/include/pa_request.h,
19093: src/main/execute.C, src/main/pa_request.C,
19094: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19095: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
19096: file:justname&co & @auto/conf[filespec
1.95 moko 19097:
19098: * operators.txt, src/classes/file.C:
19099: !^file:dirname[/a/some.tar.gz]=/a
19100: !^file:dirname[/a/b/]=/a
19101: !^file:basename[/a/some.tar.gz]=some.tar.gz
19102: !^file:justname[/a/some.tar.gz]=some.tar
19103: !^file:justext[/a/some.tar.gz]=gz
19104:
19105: * src/: classes/op.C, include/pa_request.h, main/execute.C,
19106: main/pa_request.C, types/pa_vmethod_frame.h: introducing
19107: @conf/auto[filespec]
19108:
1.116 moko 19109: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 19110:
1.150 moko 19111: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 19112: src/include/pa_globals.h, src/targets/cgi/parser3.C,
19113: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
19114:
19115: 2002-06-18 paf
19116:
19117: * configure, configure.in, src/include/pa_version.h: version to
19118: configure.in
19119:
19120: * INSTALL: reflected .conf.dist dir change
19121:
1.150 moko 19122: * Makefile.am, configure, configure.in,
1.116 moko 19123: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 19124: .in & *.am updated
19125:
19126: * src/classes/file.C: strncasecmp
19127:
19128: * src/classes/file.C: strcasecmp
19129:
1.150 moko 19130: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 19131:
19132: * src/classes/file.C: ^file::exec[script;$.bad error case
19133: insensitive check now
19134:
19135: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
19136:
19137: * configure, configure.in, src/include/pa_pool.h,
19138: src/include/pa_types.h: pack configure.in detection simplified.
19139: figured out that gcc on sparc not that stupid as thought
19140: previously: on sparc: when it sees packed class it modifies it's
19141: field-access-code to byte operations [stb, ldub] instead of 4byte
19142: operations [st, lduh] so packed must be all parts of packed
19143: class, i.e. it's parents&fields(classes). for now it's only
19144: String that packed and what was wrong is that it's parent -
19145: Pooled, were not packed. fixed that.
19146:
19147: 2002-06-14 paf
19148:
19149: * operators.txt: more precise xml-to-text options
19150:
19151: * operators.txt, src/types/pa_vxnode.C: xnode
19152: attribute_node.name/value xnode pi.node.data
19153:
19154: 2002-06-12 paf
19155:
1.116 moko 19156: * configure, configure.in, src/targets/cgi/Makefile.am,
19157: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 19158:
19159: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
19160: src/include/pa_globals.h, src/include/pa_request.h,
19161: src/main/compile.tab.C, src/main/pa_globals.C,
19162: src/main/pa_request.C, src/targets/cgi/parser3.C,
19163: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
19164:
19165: * src/classes/mail.C: sendmail -ti [default now]
19166:
19167: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
19168: to be strings. for convinient #ing
19169:
19170: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
19171: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
19172:
19173: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
19174: main/pa_globals.C, main/pa_request.C: @conf
19175:
19176: 2002-06-11 paf
19177:
19178: * src/classes/file.C: check simplified
19179:
19180: * src/: classes/file.C, targets/cgi/parser3.dsp,
19181: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
19182: valid prefix
19183:
19184: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
19185: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
19186: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
19187:
19188: 2002-06-10 paf
19189:
19190: * operators.txt, src/classes/op.C, src/include/pa_common.h,
19191: src/main/pa_common.C: lock failures reported now
19192:
19193: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
19194: string->double @ compile time were not-enough-checking...
19195:
19196: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
19197: autoconvert now ignored
19198:
19199: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
19200: check
19201:
19202: * src/classes/mail.C: mail netscape attachment name fixed. todo:
19203: $response:body content-type:name
19204:
19205: * configure, configure.in: hpux check, nsl link, no socket
19206:
19207: * operators.txt: old merge conflict removed
19208:
19209: * configure, configure.in: pack even address access on sparc&co
19210: arch checked in configure
19211:
19212: * configure, src/include/pa_version.h: makes
19213:
19214: * configure, configure.in, src/include/pa_version.h: makes
19215:
19216: * src/main/untaint.C: (bug#2) mail subject got always prepended
19217: with charset even when all letters were 7bit one
19218:
19219: * src/main/pa_common.C: merged fixed -d (bug)
19220:
19221: * src/main/pa_common.C: fixed -d (bug)
19222:
19223: 2002-06-03 paf
19224:
19225: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
19226: src/classes/classes.dsp, src/main/compile.tab.C,
19227: src/main/main.dsp, src/main/pa_globals.C,
19228: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
19229: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
19230: .dsp-s along with reorganized cvs modules dirs structure
19231:
19232: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19233: main/pa_globals.C, targets/cgi/parser3.dsp,
19234: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
19235: modules
19236:
19237: 2002-05-28 paf
19238:
19239: * src/targets/cgi/parser3.C: info.uri now ""
19240:
19241: 2002-05-17 paf
19242:
19243: * src/classes/: table.C: ^table.save << checked empty
19244: pre/match/post columns
19245:
19246: 2002-05-16 paf
19247:
19248: * src/classes/image.C: image::measure can png now
19249:
19250: 2002-05-15 paf
19251:
19252: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
19253: added
19254:
19255: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
19256:
19257: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
19258: %H[:%M[:%S]]]]]] [-%m now
19259:
19260: 2002-05-14 paf
19261:
19262: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
19263:
19264: 2002-05-07 paf
19265:
19266: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
19267: src/include/pa_globals.h, src/include/pa_request.h,
19268: src/include/pa_table.h, src/main/compile.tab.C,
19269: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
19270: src/main/pa_request.C, src/main/pa_table.C,
19271: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
19272: src/targets/isapi/parser3isapi.dsp,
19273: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
19274: name2number field now &. main_method_name now on Request pool
19275: rather on global_pool [Junction+VJunction created on same pool as
19276: name = were created on global pool, causing mem leaks]
19277:
19278: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
19279: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
19280: main/compile.y, main/main.dsp, main/pa_globals.C,
19281: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
19282: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
19283: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
19284: field now &. main_method_name now on Request pool rather on
19285: global_pool [Junction+VJunction created on same pool as name =
19286: were created on global pool, causing mem leaks]
19287:
19288: 2002-05-06 paf
19289:
19290: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19291: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
19292: 100*40 bytes per request memory leak [nonpool malloc in globals]
19293:
19294: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19295: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
19296: 100*40 bytes per request memory leak [nonpool malloc in globals]
19297:
19298: 2002-04-30 paf
19299:
19300: * configure, src/include/pa_version.h: version now not b
19301:
19302: * src/targets/cgi/parser3.C: request.uri now never 0
19303:
19304: 2002-04-29 paf
19305:
19306: * configure.in: removed b
19307:
19308: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
19309: Exception::comment/type checked in (), no there's no empty
19310: type/comment by default
19311:
19312: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
19313: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
19314: src/doc/value.dox, src/include/pa_exception.h,
19315: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
19316: 0001
19317:
19318: 2002-04-26 paf
19319:
19320: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
19321: size reduced
19322:
19323: 2002-04-25 paf
19324:
19325: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
19326: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
19327: now that took into account
19328:
19329: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
19330: 01:03:04]
19331:
19332: * ChangeLog, operators.txt, src/classes/date.C:
19333: ^date::create[2002-12-33 01:03:04]
19334:
19335: * ChangeLog: updated changelog
19336:
19337: * src/classes/table.C: removed restriction on column count to
19338: ^table.hash to work, now must be >0 [were >1]
19339:
19340: 2002-04-24 paf
19341:
19342: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19343: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
19344: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
19345: targets
19346:
19347: 2002-04-23 paf
19348:
19349: * operators.txt, src/classes/string.C:
19350: int/double/string:sql{}[$.default{code}] fixed [were barking:
19351: "junction used outside of context"]
19352:
19353: 2002-04-22 paf
19354:
19355: * types.txt, src/classes/string.C, src/include/pa_string.h,
19356: src/main/pa_string.C, src/types/pa_vstring.C,
19357: src/types/pa_vstring.h: ^string.optimize[]
19358:
19359: * src/: include/pa_globals.h, include/pa_table.h,
19360: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
19361: table template
19362:
19363: * src/classes/: string.C: optimize removed from string
19364: .left/right/pos
19365:
19366: * src/main/execute.C: rolled back to
19367: before_killing_userjunction_contexts
19368:
19369: * src/main/execute.C: user junctions context killed
19370:
19371: * src/main/execute.C: junctions to local contexts got
19372: cleanized&checked later
19373:
19374: 2002-04-19 paf
19375:
19376: * src/: classes/string.C, include/pa_request.h,
19377: include/pa_string.h, main/pa_request.C, main/pa_string.C,
19378: types/pa_vstring.C, types/pa_vstring.h: string now optimized
19379: prior to .left .right .mid .pos .match when that is profitable,
19380: and always before .replace when $ORIGINS(1) optimization disabled
19381: economy from not wasting mem on lots of strings which occur by
19382: lots of String:mid calls to get parts of source string between
19383: found_occurances
19384:
19385: * src/classes/file.C: ovector now local economy: 16 bytes per
19386: ^file:list
19387:
19388: * src/: include/pa_globals.h, include/pa_table.h,
19389: main/pa_globals.C, main/pa_string.C: String::match table columns
19390: globalized, not created @ each ^match anymore economy:
19391: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
19392:
19393: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
19394: removed from each String::match replace iteration, and made
19395: stacked sizeof(VTable)=12bytes economy on each replace code
19396:
19397: * src/doc/footer.htm: 2001,
19398:
19399: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
19400: string.match[]['] option enables generation of $match.prematch
19401: .match .postmatch columns
19402:
19403: * src/main/pa_string.C: String::match options analized without
19404: cstr-ing them now
19405:
19406: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
19407: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
19408: config updated to doxygen 1.2.15, created helper which fixes
19409: minor bugs in chm project files & htm tree. changed extension to
19410: .htm
19411:
19412: 2002-04-18 paf
19413:
19414: * src/doc/doxygen.cfg: .chi generation disabled
19415:
19416: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
19417: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
19418: fields&methods
19419:
19420: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
19421: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
19422: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
19423: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
19424: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
19425: types/pa_vresponse.h, types/pa_vstateless_class.h,
19426: types/pa_vstateless_object.h, types/pa_vstatus.h,
19427: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
19428: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
19429: VStateless_class to VObject
19430:
19431: * src/: main/pa_request.C, types/pa_valiased.h,
19432: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19433: types/pa_vstring.h: VStateless_string_object speicalized light
19434: version of VStateless_object
19435:
19436: * src/classes/op.C: ^throw comment param made optional
19437:
19438: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
19439: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
19440: and implemented down in VClass, fclass_alias removed,
19441:
19442: * src/types/pa_value.C: forced to cut that from .h because of
19443: VStateless_class usage [undefined in .h]
19444:
19445: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19446: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19447: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
19448: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
19449: on each CALL]
19450:
19451: * src/: classes/classes.h, classes/date.C, classes/double.C,
19452: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
19453: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
19454: classes/response.C, classes/string.C, classes/table.C,
19455: classes/void.C, classes/xnode.C, include/pa_globals.h,
19456: include/pa_request.h, main/execute.C, main/pa_globals.C,
19457: main/pa_request.C, types/Makefile.am, types/pa_value.h,
19458: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
19459: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
19460: types/pa_vstateless_class.h, types/pa_wcontext.C,
19461: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
19462: removed Value::fname
19463:
19464: 2002-04-17 paf
19465:
19466: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
19467: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
19468: doc/pooled.dox, doc/string.dox, doc/targets.dox,
19469: include/pa_pool.h, include/pa_types.h: dox updated to current
19470: state, PTHROW freshen to throw & co
19471:
19472: * src/types/pa_vhash.h: vstring wrong parent fixed
19473:
19474: * src/classes/op.C: taint local result var bug fixed
19475:
19476: 2002-04-16 paf
19477:
19478: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
19479: Attic asm.txt as most interesting
19480:
19481: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
19482: check, preventing content-length: 0 from appearing
19483:
19484: * src/main/execute.C: $result in @main now taken into account as in
19485: usual functions
19486:
19487: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
19488: & @unhandled_exception now taken into account as in usual
19489: functions
19490:
19491: * src/doc/postbuild.txt: instructions on post .html build
19492:
19493: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
19494:
19495: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
19496: tainted
19497:
19498: * src/main/pa_request.C: uri in error log
19499:
19500: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
19501: cheched date:create(days) param for validity [later were assumed
19502: valid and crashed on invalid onces]
19503:
19504: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19505: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
19506: and used that for removing VString wrapper
19507:
19508: * src/classes/op.C: exception2vhash file now tainted
19509:
19510: * src/classes/op.C: _process pseudo origin copied from local var to
19511: heap
19512:
19513: * src/classes/op.C: extra check on empty file in origin in _execute
19514:
19515: 2002-04-15 paf
19516:
19517: * src/: main/execute.C, types/pa_value.h: fixed name update
19518:
19519: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
19520: functions
19521:
19522: * src/: classes/file.C, classes/hash.C, classes/op.C,
19523: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
19524: started dual write_xxx_lang functions, if checked & works
19525:
19526: * src/: classes/date.C, classes/file.C, classes/mail.C,
19527: classes/string.C, classes/xnode.C, include/pa_request.h,
19528: types/pa_value.h, types/pa_wcontext.h: removed absolutely
19529: unnecessary VString shells
19530:
19531: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
19532: prev changes]
19533:
19534: * src/: classes/image.C, classes/op.C, classes/string.C,
19535: classes/table.C, include/pa_request.h, main/execute.C,
19536: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
19537: StringOrValue wcontext result, now ready for dual writes
19538:
19539: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
19540: checked that
19541:
19542: * src/main/: compile.tab.C, compile.y, compile_tools.C,
19543: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
19544: changed to OP_WRITE_VALUE in var get cases
19545:
19546: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
19547: include/pa_request.h, main/compile.tab.C, main/compile.y,
19548: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19549: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
19550: switch in hash constructor fixed [were problems with using of
19551: stacked wwrapper after it's death]
19552:
19553: 2002-04-12 paf
19554:
19555: * operators.txt, src/classes/table.C: table.select(expression) 0
19556:
19557: 2002-04-11 paf
19558:
19559: * src/: classes/string.C, include/pa_request.h, main/execute.C:
19560: Request::process_internal codeFrame & wwrapper stacked [not
19561: wasting heap anymore]
19562:
19563: 2002-04-10 paf
19564:
19565: * src/: classes/double.C, classes/file.C, classes/hash.C,
19566: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
19567: classes/string.C, classes/table.C, classes/void.C,
19568: classes/xdoc.C, include/pa_request.h, main/execute.C,
19569: main/pa_string.C: killed Request::process() wrapping
19570: VString(String) in case we need only String
19571:
19572: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19573: killed 8 bytes from String.head
19574:
19575: 2002-04-09 paf
19576:
19577: * src/: main/compile.tab.C, targets/cgi/parser3.C,
19578: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
19579: local*/char b[...]; a=b; situations
19580:
19581: * operators.txt, src/classes/xdoc.C: xslt params made literal
19582:
19583: * src/classes/xdoc.C: xslt params fixed
19584:
19585: * src/: main/pa_common.C, targets/cgi/parser3.C,
19586: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
19587: not pool.malloc(MAX_NUMBER) but really neaded
19588:
19589: * operators.txt, src/classes/double.C, src/classes/int.C:
19590: int/double.int/double(default)
19591:
19592: 2002-04-04 paf
19593:
19594: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
19595: [when reconstructing pieces were split by
19596: max_integral(piece.size), thus some strings to replace happen to
19597: be split into two = not replaced)
19598:
19599: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
19600: standalone version = current dir
19601:
19602: * src/targets/cgi/parser3.C: document root in standalone version =
19603: current dir
19604:
19605: 2002-04-03 paf
19606:
19607: * configure, configure.in: more checks on nonexistent charset
19608:
1.116 moko 19609: * INSTALL, configure, configure.in: root config configure options
1.95 moko 19610:
19611: 2002-04-02 paf
19612:
19613: * src/main/compile.C: parser.compile [exception name more like in
19614: doc]
19615:
19616: 2002-04-01 paf
19617:
19618: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
19619: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
19620: .content-type.charset, not .charset
19621:
19622: 2002-03-29 paf
19623:
19624: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
19625:
19626: * operators.txt, src/classes/date.C: ^date::create now may not
19627: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
19628: days' year. | 31.05->31.04 roll
19629:
19630: 2002-03-28 paf
19631:
19632: * operators.txt, src/classes/date.C, src/classes/op.C,
19633: src/include/pa_globals.h, src/include/pa_hash.h,
19634: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
19635: ^cache(seconds) ^cache[date] }
19636:
19637: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
19638: param
19639:
19640: 2002-03-27 paf
19641:
19642: * operators.txt, src/classes/date.C, src/classes/double.C,
19643: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
19644: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
19645: src/classes/math.C, src/classes/op.C, src/classes/string.C,
19646: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
19647: src/classes/xnode.C, src/include/pa_exception.h,
19648: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
19649: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
19650: src/main/pa_array.C, src/main/pa_charset.C,
19651: src/main/pa_charsets.C, src/main/pa_common.C,
19652: src/main/pa_dictionary.C, src/main/pa_exception.C,
19653: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
19654: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
19655: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
19656: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
19657: src/types/pa_value.h, src/types/pa_vcookie.C,
19658: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
19659: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
19660: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
19661: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
19662: src/types/pa_wwrapper.h: assigned exception types
19663:
19664: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
19665: src/include/pa_request.h, src/main/execute.C,
19666: src/main/pa_request.C: decided agains resetting exception_trace,
19667: just changed name
19668:
19669: 2002-03-26 paf
19670:
19671: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
19672: fixed
19673:
19674: * src/classes/op.C: forced language of $source field of exception
19675: to 'tainted', so that sql-langed-frags could be outputed outside
19676: of connect
19677:
19678: * operators.txt: removed date.roll limit of +-1 offset
19679:
19680: * src/classes/date.C: removed date.roll limit of +-1 offset
19681:
19682: * operators.txt, src/classes/date.C: fixed date roll on
19683: daylightsaving days mktime took into account tm_isdst flag, which
19684: remained from BEFORE roll, but should have been reset
19685:
19686: 2002-03-25 paf
19687:
19688: * operators.txt, src/targets/cgi/parser3.C:
19689: http_site_config_filespec
19690:
19691: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
19692: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
19693: with any/both --disable-foreign-group-files --disable-execs
19694:
19695: * INSTALL: "--with=sendmail=COMMAND" comment
19696:
19697: * INSTALL, configure, configure.in, src/classes/mail.C,
19698: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 19699: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
19700: disables execs also. introducing --sendmail
1.95 moko 19701:
19702: * operators.txt: pgsql options comment
19703:
19704: * INSTALL: comment on --disable-link-stdcpp
19705:
1.116 moko 19706: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19707: libstdc++ link skipping configure option
1.95 moko 19708:
19709: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
19710: with error were put to cache with 'marked_to_rollback' flag, all
19711: consequent even OK requests rolled back
19712:
19713: 2002-03-22 paf
19714:
19715: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
19716: false return
19717:
19718: * operators.txt: few comments on sets
19719:
19720: 2002-03-18 paf
19721:
19722: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
19723: src/include/pa_globals.h, src/include/pa_request.h,
19724: src/include/pa_stack.h, src/main/pa_globals.C,
19725: src/main/pa_request.C: introducing ^try
19726:
19727: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
19728: types/pa_vdouble.h: removed some tested @tests
19729:
19730: 2002-03-15 paf
19731:
19732: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
19733:
19734: 2002-03-13 paf
19735:
19736: * src/main/pa_exception.C: checked not-pooled malloc
19737:
19738: 2002-03-11 paf
19739:
19740: * INSTALL, configure, configure.in,
19741: src/include/pa_config_auto.h.in: --disable-foreign-group-files
19742:
19743: * src/main/pa_common.C: --disable-foreign-group-files
19744:
19745: * INSTALL: --disable-execs
19746:
19747: * src/main/pa_exec.C: --disable-execs
19748:
19749: * configure, configure.in, src/include/pa_config_auto.h.in:
19750: --disable-execs
19751:
19752: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
19753:
19754: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
19755: file::exec/cgi linebreaks "0D0A" changed to 0A onces
19756:
19757: 2002-03-05 paf
19758:
19759: * operators.txt, src/classes/date.C: date week calendar columns
19760: named
19761:
19762: * operators.txt, src/classes/date.C: date week calendar columns
19763: named
19764:
19765: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
19766: requires headers to be terminated with \r\n manually [refuses to
19767: separate header/body itself]
19768:
19769: * src/: main/pa_globals.C, targets/cgi/parser3.C,
19770: targets/isapi/parser3isapi.C: isapi site config beside .dll
19771:
19772: 2002-03-04 paf
19773:
19774: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
19775: in PASS language
19776:
19777: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
19778: deserialize checks on broken file
19779:
19780: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
19781: parser3isapi.dsp: isapi updated
19782:
19783: 2002-03-01 paf
19784:
19785: * src/main/pa_exec.C: execle -> execve, now argc OK
19786:
19787: 2002-02-28 paf
19788:
19789: * src/main/untaint.C: removed some debug comments
19790:
19791: * src/main/pa_charsets.C: when placing charset to cache using
19792: global name now [were request]
19793:
19794: * configure, configure.in: apache module updated
19795:
19796: * src/main/pa_string.C: origin by first piece preferred before last
19797: piece
19798:
19799: 2002-02-27 paf
19800:
19801: * src/main/pa_charset.C: size_t
19802:
19803: * INSTALL: shared/static-xml with-pathlink
19804:
19805: * operators.txt: SMTP comment
19806:
19807: 2002-02-26 paf
19808:
19809: * src/main/pa_exec.C: more precise names for vars, cosmetic
19810:
19811: * src/classes/xnode.C: in some situation, xpath query returned
19812: result with type NODESET, but empty nodeset member field, checked
19813: that
19814:
19815: 2002-02-22 paf
19816:
19817: * INSTALL: without-zlib comment
19818:
19819: * etc/parser3.charsets/windows-1251.cfg: °
19820:
19821: * configure, configure.in: glib###.a detection fixed
19822:
19823: * INSTALL: hashfile removed from INSTALL
19824:
1.116 moko 19825: * Makefile.am: make update
1.95 moko 19826:
19827: * src/main/pa_string.C: string iterators fixed again, so were
19828: String::join_chain
19829:
19830: * src/main/pa_string.C: string iterators fixed again, so were
19831: String::join_chain
19832:
19833: * src/: include/pa_string.h, main/pa_string.C: string iterators
19834: fixed again, so were String::join_chain
19835:
19836: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
19837:
19838: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
19839: "session"
19840:
1.116 moko 19841: * configure, configure.in, src/include/pa_config_auto.h.in:
19842: --with-shared-xml --with-static-xml
1.95 moko 19843:
19844: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
19845: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19846: types/types.dsp: *.dsp: removed refereces to win32db & ancient
19847: xalan&xml
19848:
19849: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
19850:
19851: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
19852: src/types/types.dsp: removed hashfile support from sources for
19853: now
19854:
1.116 moko 19855: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 19856: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 19857: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
19858: src/include/pa_db_manager.h, src/include/pa_db_table.h,
19859: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 19860: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 19861: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
19862: src/types/Makefile.am, src/types/pa_vhashfile.C,
19863: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 19864:
19865: 2002-02-21 paf
19866:
19867: * src/main/untaint.C: removed debug code, activated commented-for
19868: debug parts
19869:
1.116 moko 19870: * Makefile.am: make cvsupdate
1.95 moko 19871:
19872: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19873: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
19874: append_row, not at link zero now string to string appending works
19875:
19876: 2002-02-20 paf
19877:
19878: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
19879: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
19880: DEBUG_STRING_APPENDS_VS_EXPANDS
19881:
19882: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19883: economy: 22%
19884:
19885: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
19886: space uptimized: string::link_row removed
19887:
19888: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
19889: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
19890: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19891: types/pa_vstring.h: speed uptimized: string::is_empty
19892:
19893: * operators.txt, src/include/pa_common.h,
19894: src/include/pa_config_fixed.h, src/include/pa_string.h,
19895: src/include/pa_types.h, src/main/compile.tab.C,
19896: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
19897: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
19898: string append optimiziation idea and estimates
19899:
19900: 2002-02-19 paf
19901:
19902: * src/classes/math.C: not used directly [but erroreously reported
19903: that 'is', thus registering twice&other probs]
19904:
19905: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19906: to node [element]
19907:
19908: * src/main/compile.C: without string_origins parse error
19909: file+line+col possible
19910:
19911: * src/main/: compile.C: without string_origins not worked
19912:
19913: 2002-02-18 paf
19914:
19915: * src/types/pa_vdouble.h: since we have in_expression removed that
19916: trick i've installed into double::as_string
19917:
19918: * src/main/pa_globals.C: extern "C" was removed too fast
19919:
19920: * src/: include/pa_opcode.h, include/pa_request.h,
19921: main/compile.tab.C, main/compile.y, main/execute.C,
19922: types/pa_wcontext.h: in_expression aimed to solve old problem
19923: with string/nonstring values, now in expressions double/int
19924: values are passed as-is, without stupid tostring/fromstring
19925: conversions
19926:
19927: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19928: __cplusplus } #endif
19929:
19930: * src/main/compile.tab.C: bison env set so one could compile
19931: without cygwin installed
19932:
19933: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19934: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19935: gnome xml libs parser .dsp-s changed accordingly
19936:
19937: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19938:
19939: * operators.txt, src/classes/date.C: date::create [were date::set,
19940: with backward comp
19941:
19942: * src/classes/math.C: math:random range check fixed
19943:
19944: * src/main/: compile.tab.C, compile.y: integer division stops name
19945:
19946: * INSTALL: local install comment
19947:
1.116 moko 19948: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19949:
1.116 moko 19950: * acinclude.m4, aclocal.m4, configure, configure.in,
19951: src/include/pa_config_auto.h.in,
19952: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19953: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19954:
19955: * operators.txt: \ comment
19956:
19957: 2002-02-13 paf
19958:
19959: * src/include/pa_config_includes.h: sys/time time both included
19960: now. vaguely remember confilicts on this on some system [not on
19961: six|ablv] so when would see them again would think up proper
19962: check
19963:
1.116 moko 19964: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19965: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19966:
19967: * src/main/pa_common.C: truncation never occured when writing files
19968: on unix [since i've changed cache mech] fix
19969:
19970: * src/main/pa_common.C: strnchr: sanity check added
19971:
19972: * etc/parser3.charsets/windows-1257.cfg: id added
19973:
19974: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19975: baltic charset file generated, in generation script ispunct check
19976: added
19977:
19978: 2002-02-08 paf
19979:
1.116 moko 19980: * src/: include/Makefile.am, sql/Makefile.am,
19981: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19982:
19983: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19984: forgotten
19985:
19986: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19987:
19988: * INSTALL, README: install&others updated
19989:
19990: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19991:
1.116 moko 19992: * Makefile.am, configure, configure.in,
19993: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19994: src/classes/Makefile.am, src/main/Makefile.am,
19995: src/main/pa_status_provider.C, src/targets/Makefile.am,
19996: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19997: works
1.95 moko 19998:
19999: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20000: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20001: classes/hashfile.C, classes/int.C, classes/mail.C,
20002: classes/math.C, classes/op.C, classes/response.C,
20003: classes/string.C, classes/table.C, classes/void.C,
20004: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20005: include/pa_array.h, include/pa_cache_managers.h,
20006: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
20007: include/pa_config_fixed.h, include/pa_config_includes.h,
20008: include/pa_db_connection.h, include/pa_db_manager.h,
20009: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20010: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20011: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20012: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20013: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20014: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20015: include/pa_stack.h, include/pa_string.h,
20016: include/pa_stylesheet_connection.h,
20017: include/pa_stylesheet_manager.h, include/pa_table.h,
20018: include/pa_threads.h, include/pa_types.h, main/compile.C,
20019: main/compile_tools.C, main/compile_tools.h, main/execute.C,
20020: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
20021: main/pa_db_connection.C, main/pa_db_manager.C,
20022: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20023: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
20024: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
20025: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20026: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
20027: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20028: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
20029: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
20030: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
20031: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
20032: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
20033: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20034: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
20035: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
20036: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
20037: types/pa_vmethod_frame.h, types/pa_vobject.h,
20038: types/pa_vrequest.h, types/pa_vresponse.h,
20039: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20040: types/pa_vstateless_object.h, types/pa_vstatus.C,
20041: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
20042: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
20043: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
20044: classes/image.C, main/pa_common.C, main/pa_exec.C,
20045: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
20046: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
20047: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
20048: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
20049: types/pa_vxnode.C, main/pa_charset.C: name spelling
20050:
20051: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20052: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20053: classes/hashfile.C, classes/image.C, classes/int.C,
20054: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20055: classes/string.C, classes/table.C, classes/void.C,
20056: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20057: include/pa_array.h, include/pa_cache_managers.h,
20058: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
20059: include/pa_config_fixed.h, include/pa_config_includes.h,
20060: include/pa_db_connection.h, include/pa_db_manager.h,
20061: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20062: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20063: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20064: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20065: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20066: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20067: include/pa_stack.h, include/pa_string.h,
20068: include/pa_stylesheet_connection.h,
20069: include/pa_stylesheet_manager.h, include/pa_table.h,
20070: include/pa_threads.h, include/pa_types.h, main/compile.C,
20071: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20072: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
20073: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
20074: main/pa_db_connection.C, main/pa_db_manager.C,
20075: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20076: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20077: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20078: main/pa_socks.C, main/pa_sql_driver_manager.C,
20079: main/pa_status_provider.C, main/pa_string.C,
20080: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20081: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20082: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20083: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20084: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20085: targets/isapi/pool_storage.h, types/pa_valiased.C,
20086: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20087: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20088: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20089: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20090: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20091: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20092: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20093: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20094: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
20095: types/pa_vresponse.h, types/pa_vstateless_class.C,
20096: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
20097: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
20098: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
20099: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
20100: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
20101: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
20102:
20103: 2002-02-07 paf
20104:
20105: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
20106:
1.116 moko 20107: * configure, configure.in, src/include/pa_config_auto.h.in,
20108: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
20109: added yet another locking function: fcntl
1.95 moko 20110:
20111: * config.sub: on cygwin configure passes it with strange i1586
20112: const, hacked it to mean i586
20113:
20114: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
20115: disabled $if reference due to conflicts with local variables
20116:
20117: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
20118: xdoc::set obsolete now, now xdoc::create, with both sences
20119:
20120: * operators.txt, src/classes/table.C, src/include/pa_array.h,
20121: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
20122: table::create now // 'set' name obsolete now table clone.
20123:
20124: * operators.txt, src/classes/string.C,
20125: src/include/pa_config_fixed.h, src/main/compile.tab.C:
20126: ^int/double/string.format now can be called with normal []
20127: brackets, not stupid {} as it were implemented for some strange
20128: reason. retaining backward compatibility due to some
20129: already-implemented servers
20130:
20131: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
20132: main/compile.y, main/compile_tools.C, main/compile_tools.h:
20133: operators now detected by check at name_without_curly_rdive_read
20134: rule whether diving code constists only of
20135: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
20136: with OP_GET_ELEMENT_OR_OPERATOR to form
20137: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
20138:
20139: 2002-02-06 paf
20140:
20141: * configure, configure.in: prefix expanded, grr
20142:
20143: * operators.txt, src/classes/mail.C: mail:send config changed
20144:
20145: 2002-02-05 paf
20146:
20147: * operators.txt: regex options commented
20148:
20149: * src/main/: pa_exec.C: argv0 now correct
20150:
20151: * src/types/pa_vstatus.C: status:rusage 3
20152:
20153: * src/types/pa_vstatus.C: status:rusage 2
20154:
20155: * operators.txt: status:rusage described int operators
20156:
20157: * src/types/pa_vstatus.C: status:rusage 1
20158:
20159: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
20160: src/types/types.dsp: status:rusage
20161:
20162: * configure.in, operators.txt, src/classes/file.C,
20163: src/classes/op.C, src/include/pa_common.h,
20164: src/include/pa_config_includes.h, src/main/compile.tab.C,
20165: src/main/pa_common.C: rewritten ^cache to use
20166: non-blocking-exclusive-caches
20167:
20168: * src/main/pa_common.C: text file read mode on win32 adjusted
20169: [speed impact. was off for debugging purpose, but forgotten
20170: afterwards]
20171:
20172: 2002-02-01 paf
20173:
20174: * src/classes/op.C: file_write does EX lock after create, while
20175: file_read does SH after open, so there's a moment after create
20176: but before EX lock when read can sneak into, and read
20177: just-created-for-writing-and-not-yet-locked file, added a check
20178: for that in ^cache...read
20179:
20180: 2002-01-31 paf
20181:
20182: * src/main/: compile.y, compile.tab.C: disabled operator call after
20183: ^xxx:
20184:
20185: * src/main/: compile.tab.C, execute.C: made operators lookup first
20186: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
20187:
20188: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
20189: main/compile.tab.C, main/compile.y, main/compile_tools.C,
20190: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
20191: operators check 6.1 rewritten. now check is done at compile time
20192:
20193: * src/main/execute.C: operators check 5 floated up old error of
20194: staying in 'entered class/object' state after $a($a..) it
20195: prevented operators from being called thereafter
20196:
20197: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20198: main/execute.C: operators check 4 floated up old error of staying
20199: in 'entered object' state after ^a.a(a) it prevented operators
20200: from being called thereafter
20201:
20202: * src/main/execute.C: operators check 3 floated up old error of
20203: staying in 'entered class' state after $a:a(a) it prevented
20204: operators from being called thereafter
20205:
20206: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
20207: floated up old error of staying in 'entered class' state after
20208: $a:a[a] it prevented operators from being called thereafter
20209:
20210: * src/main/execute.C: operators check, thay mistakenly seen in
20211: $class:operator $object.operators contexts
20212:
20213: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
20214: win32
20215:
1.116 moko 20216: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
20217: src/classes/Makefile.am, src/main/Makefile.am,
20218: src/targets/cgi/Makefile.am,
1.95 moko 20219: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 20220: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 20221:
1.116 moko 20222: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
20223: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
20224: configure, configure.in, form.txt, ident.awk, install-sh,
20225: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
20226: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 20227: etc/parser3.charsets/Makefile.am,
20228: etc/parser3.charsets/koi8-r.cfg,
20229: etc/parser3.charsets/windows-1250.cfg,
20230: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 20231: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
20232: src/main/Makefile.am, src/targets/cgi/Makefile.am,
20233: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
20234: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 20235: straightened installation scripts procedure made
20236: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
20237: change
20238:
20239: 2002-01-30 paf
20240:
20241: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
20242: removed] those comments were a mistake, and prevented libltdl
20243: from function properly
20244:
20245: 2002-01-29 paf
20246:
1.116 moko 20247: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
20248: creation [modified acinclude.m4 which were creating int into just
20249: assignment LIBTOOL=../libtool] added default system
20250: config&charsetts prepared 'make install', now it installs
20251: targets/cgi/parser3 into bin directory etc/parser3.conf &
20252: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 20253: $sysconfdir/parser3.charsets respectively
20254:
20255: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
20256: main/pa_globals.C: few forgotten ifdef XML added
20257:
20258: 2002-01-28 paf
20259:
1.116 moko 20260: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 20261: removed
20262:
20263: * src/main/pa_exception.C: dom|generic error output fix
20264:
20265: * src/classes/xnode.C: xdoc.importNode 3 [check err]
20266:
20267: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
20268:
20269: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
20270: [fixed as_node helper func to accept docs]
20271:
20272: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
20273: xdoc.importNode 0
20274:
20275: * src/classes/xdoc.C: xdoc::set now untaints OK
20276:
20277: 2002-01-25 paf
20278:
20279: * src/main/: compile.tab.C, compile.y: #comment before @ after
20280: @SPECIAL now works OK
20281:
20282: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
20283:
20284: * src/main/pa_exec.C: max arg count now 10, and proper message on
20285: violation that added
20286:
20287: * src/classes/hash.C: unified hash::sql, now
20288: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
20289:
20290: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
20291: ^file:lock[filename]{code}
20292:
20293: * src/: classes/file.C, classes/op.C, classes/string.C,
20294: classes/table.C, classes/xdoc.C, include/pa_common.h,
20295: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
20296: to some pa_common funcs
20297:
20298: * src/: include/pa_charset.h, main/pa_globals.C:
20299: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
20300:
20301: * src/: include/pa_charset.h, main/pa_charset.C,
20302: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
20303: not stupid illegal define
20304:
20305: 2002-01-24 paf
20306:
20307: * src/include/pa_version.h: changed version number
20308:
20309: * src/: classes/hashfile.C, include/pa_db_table.h,
20310: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20311: main/compile_tools.C, main/compile_tools.h, main/execute.C,
20312: main/pa_db_connection.C, main/pa_db_table.C,
20313: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
20314: hashfile without logfiles
20315:
20316: * src/: classes/hashfile.C, include/pa_db_table.h,
20317: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
20318: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
20319: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
20320: DB_INIT_TXN init bits, thus got rid of huge log files, which
20321: cluttered disk without huge need]
20322:
20323: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
20324: handy macro, which is strangly abscent in dome lib
20325:
20326: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
20327:
20328: * src/classes/xdoc.C: checked empty response
20329:
20330: * src/classes/xnode.C: xdoc.select fixed context node [were always
20331: /, not self node]
20332:
20333: * src/classes/xnode.C: xnode.select returns array always now, in
20334: case 'nothing found' returns empty array
20335:
20336: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
20337: be more tender with ctrl/c/v
20338:
20339: 2002-01-23 paf
20340:
20341: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
20342: substituted. // 2. when dom tree with entites goes under
20343: transform text nodes // got [erroreosly] cut on first
20344: entity occurance
20345:
20346: * src/types/pa_vdouble.h: double prec. todo: get rid of
20347: twice-converting
20348:
20349: * src/types/pa_vdouble.h: %.20E now float format when %g produced
20350: 'e' in output this is for regretful twice-converting here:
20351: $a(double value) when they write double falue they convert it to
20352: string first, thus %g were losing precesion.
20353:
20354: todo: think up some way to remove double->string string->double
20355: twice-converting
20356:
20357: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
20358: %.20E now default float format this is for regretful
20359: twice-converting here: $a(double value) when they write double
20360: falue they convert it to string first, thus %g were losing
20361: precesion.
20362:
20363: todo: think up some way to remove double->string string->double
20364: twice-converting
20365:
20366: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20367: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
20368: reasons in comment inside
20369:
20370: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
20371: statically linked]
20372:
20373: * src/: include/pa_exception.h, main/compile.tab.C,
20374: main/pa_exception.C: removed exception va_list constructor. 1.
20375: not needed anymore 2. there were a conflict[causing errors]
20376: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
20377: never detected an ambiguilty here, compiling ctor(, "hello") into
20378: ctor(, va_list) which, of course, caused gpf
20379:
20380: * src/main/pa_globals.C: removed debug xslt messages
20381:
20382: 2002-01-22 paf
20383:
20384: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
20385: main/pa_globals.C: xsl stylesheet load: parsed entities, this
20386: helps compiling stylesheet properly. example: this refused to
20387: work, <b>«<xsl:value-of select="@title"
20388: />»</b> stranly worked only this way:
20389: <b>«<xsl:value-of select="@title" />»</b>
20390:
20391: docs says "set it to 1", never going into details, so I decided
20392: to try NOT to do that
20393:
20394: * src/classes/table.C: join behaived badly in case named tables
20395: structure mismatched: 0 strings sneaked into dest failing
20396: afterwards. replaced them with empty strings
20397:
20398: 2002-01-21 paf
20399:
20400: * src/main/pa_charset.C: checked empty transcoders in
20401: transcode_cstr|buf
20402:
20403: * src/classes/xdoc.C: xdoc::load error source = filespec
20404:
20405: * src/classes/xdoc.C: transform error source now
20406: stylesheet_filespec
20407:
1.116 moko 20408: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 20409: include/pa_stylesheet_connection.h, main/pa_charset.C,
20410: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 20411: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
20412: gnome
1.95 moko 20413:
20414: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20415: include/pa_globals.h, include/pa_stylesheet_connection.h,
20416: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
20417: xslt generic error 1
20418:
20419: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
20420: xml generic message 1
20421:
20422: * src/classes/table.C: ^table::load empty lines or #comments before
20423: headline
20424:
20425: * src/: include/pa_array.h, include/pa_globals.h,
20426: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
20427: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
20428: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
20429: errors 0
20430:
20431: 2002-01-16 paf
20432:
20433: * src/: classes/hash.C, classes/op.C, classes/string.C,
20434: classes/table.C, classes/void.C, classes/xdoc.C,
20435: include/pa_db_connection.h, include/pa_request.h,
20436: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20437: include/pa_stylesheet_connection.h,
20438: include/pa_stylesheet_manager.h, main/pa_request.C,
20439: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20440: targets/cgi/pool_storage.h: auto closers to sql_connection,
20441: stylesheet_connection auto destroyers to remaining gnome objects
20442:
20443: * src/classes/xdoc.C: few comments
20444:
20445: 2002-01-15 paf
20446:
20447: * src/classes/xdoc.C: xdoc file save string
20448:
20449: ready. todo: error handling
20450:
20451: * src/classes/xdoc.C: xdoc save rewritten using
20452: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
20453: result
20454:
20455: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
20456: started output options parsing
20457:
20458: 2002-01-14 paf
20459:
20460: * src/classes/xdoc.C: method
20461:
20462: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20463: include/pa_pool.h, include/pa_stylesheet_connection.h,
20464: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
20465: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
20466: xslt transform0. TODO: use output options handle errors
20467:
20468: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
20469:
20470: 2002-01-11 paf
20471:
20472: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20473: main/compile_tools.C, main/compile_tools.h, main/execute.C:
20474: partial logical && || evaluation
20475:
20476: * src/classes/xnode.C: xpath selectNodes
20477:
20478: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
20479: string/number/bool
20480:
20481: * src/classes/xnode.C: xpath selectNode 2
20482:
20483: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
20484: xpath selectNode 1
20485:
20486: 2002-01-10 paf
20487:
20488: * src/classes/xnode.C: xpath selectNode -100 [just written]
20489:
20490: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
20491: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
20492: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
20493: refcounter]
20494:
20495: 2001-12-29 paf
20496:
20497: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
20498: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
20499: glib works 0
20500:
20501: 2001-12-28 paf
20502:
20503: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
20504: main/pa_exception.C: started glib transcoders
20505:
20506: * src/main/pa_globals.C: renamed gdome to libgdome.dll
20507:
20508: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
20509: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
20510: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
20511: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
20512: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
20513: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
20514: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
20515: libs just compiled in. no refcounting no xpath no xslt yet
20516:
20517: 2001-12-27 paf
20518:
20519: * src/: include/pa_charset.h, include/pa_common.h,
20520: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
20521: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
20522: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
20523: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
20524: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
20525: from xalan&xerces, started the process. globals [initialization
20526: pool [charset update charset [transcodings vxnode vxdoc [DOM
20527: calls
20528:
20529: * src/classes/Makefile.am: going away from xalan&xerces, not needed
20530: anymore
20531:
20532: 2001-12-26 paf
20533:
20534: * src/: include/pa_charset.h, include/pa_charsets.h,
20535: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
20536: key globalized [bug]
20537:
20538: 2001-12-25 paf
20539:
20540: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
20541: main/pa_string.C: table set & append changed splitting languages,
20542: separators now can be clean AND as-is same to mail command line
20543: $MAIN:MAIL.progX arguments
20544:
20545: 2001-12-24 paf
20546:
20547: * src/classes/mail.C: one parted text messages - no multipart
20548: mime-type anymore. for convinient if $.attach-ments
20549:
20550: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
20551: main/pa_string.C: read from cache size check updated
20552:
20553: * src/main/: pa_string.C: String::join_chain another ugly bug :(
20554:
20555: 2001-12-21 paf
20556:
20557: * src/classes/date.C: date:sql-string now returns localtime
20558:
20559: * src/main/pa_request.C: $result in @main actually not working, to
20560: hell with it for now
20561:
20562: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
20563: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
20564: @postprocess @exception
20565:
20566: * src/main/execute.C: junction evaluation canceled - endless
20567: recursion detected
20568:
20569: 2001-12-19 paf
20570:
20571: * src/main/pa_charset.C: charset->charset transcoding via unicode
20572: intermediate
20573:
20574: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
20575:
20576: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
20577:
20578: * src/classes/op.C: ^cache keypath now relative
20579:
20580: * src/classes/mail.C: changed weighting prior to sort
20581:
20582: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
20583: were missing
20584:
20585: 2001-12-17 paf
20586:
20587: * src/main/pa_charset.C: ifndef XML were bad type
20588:
20589: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
20590: outdated unset services_pool
20591:
20592: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
20593: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
20594: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
20595:
20596: * src/main/untaint.C: allowed space in filespec
20597:
20598: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
20599:
20600: * src/classes/image.C: no govno
20601:
20602: * src/classes/image.C: govno
20603:
20604: 2001-12-16 paf
20605:
20606: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
20607:
20608: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
20609: charset_connection&manager replaced by charset&charsets
20610:
20611: * src/main/pa_charset.C: name_cstr 0
20612:
20613: * src/main/untaint.C: uri lang now knows about client/source
20614: charsets
20615:
20616: * src/: classes/file.C, classes/math.C, classes/op.C,
20617: classes/string.C, classes/table.C, classes/xdoc.C,
20618: include/pa_array.h, include/pa_cache_managers.h,
20619: include/pa_charset_connection.h, include/pa_charset_manager.h,
20620: include/pa_common.h, include/pa_db_connection.h,
20621: include/pa_db_manager.h, include/pa_db_table.h,
20622: include/pa_dictionary.h, include/pa_exception.h,
20623: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
20624: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
20625: include/pa_sapi.h, include/pa_socks.h,
20626: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20627: include/pa_string.h, include/pa_stylesheet_connection.h,
20628: include/pa_stylesheet_manager.h, include/pa_table.h,
20629: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
20630: main/pa_charset.C, main/pa_charset_connection.C,
20631: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
20632: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
20633: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
20634: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
20635: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
20636: types/types.dsp: introducing Charset
20637:
20638: 2001-12-14 paf
20639:
20640: * src/: include/pa_request.h, include/pa_transcoder.h,
20641: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
20642: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
20643: uri lang
20644:
20645: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
20646:
20647: * src/targets/cgi/Makefile.am: -I../../pcre to .am
20648:
20649: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
20650: defalts_name global
20651:
20652: * src/: include/pa_charset_connection.h, include/pa_pool.h,
20653: include/pa_request.h, main/main.dsp,
20654: main/pa_charset_connection.C, main/pa_charset_manager.C,
20655: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
20656: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
20657: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
20658: changed charset model. now important: $request:charset
20659: $response:charset while $response:content-type.charset become
20660: unimportant [informational]
20661:
20662: 2001-12-13 paf
20663:
20664: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
20665:
20666: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
20667: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
20668: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
20669: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
20670: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
20671: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
20672:
20673: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
20674: auto_ptr part other way, because of stupid gcc 2.96
20675: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
20676: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
20677: FormatterListener] /usr/include/g++-3/memory:48:
20678: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
20679: _Tp1 = FormatterListener, _Tp = FormatterListener]
20680:
20681: * src/classes/xdoc.C: removed extra inc
20682:
20683: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
20684:
20685: * src/include/pa_types.h: msvc head debugging flag
20686:
20687: * src/classes/xdoc.C: freed up listener
20688:
20689: * src/classes/string.C: change msg '... code is not code'
20690:
20691: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
20692: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20693: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
20694: [past/future prob]
20695:
20696: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20697: include/pa_config_fixed.h, include/pa_db_manager.h,
20698: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20699: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
20700:
20701: * src/: include/pa_config_fixed.h, main/pa_common.C,
20702: main/pa_string.C: removed signed mismatch warnings
20703:
20704: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
20705: 'expires' from header outputs
20706:
20707: * src/main/pa_string.C: string::recustruct erroreusly used outdated
20708: row ptr
20709:
20710: * src/classes/file.C: file::cgi bug, request_method were passed to
20711: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
20712:
20713: * src/classes/xdoc.C: lang list updated
20714:
20715: 2001-12-10 paf
20716:
20717: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
20718:
20719: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
20720: erase files like that, knowing their full name introducing //
20721: theoretical problem with, for instance, "_2B" and "." fragments,
20722: // they would yield the same // because
20723: need_file_encode('_')=false // but we need to delete such files
20724: somehow, getting names from ^index
20725:
20726: * src/main/pa_string.C: ^string.replace bug fixed [bad
20727: string::join_chank break]
20728:
20729: 2001-12-07 paf
20730:
20731: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
20732: include/pa_common.h, include/pa_config_auto.h.in,
20733: include/pa_config_fixed.h, include/pa_config_includes.h,
20734: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
20735: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
20736: types/pa_vhashfile.C: merged from r14_simple_cache
20737:
20738: * src/main/pa_string.C: stupid sparc architecture failed to access
20739: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
20740: lduh [ %i2 + 1 ], %l0
20741:
20742: bus error, fixed that
20743:
20744: * src/main/pa_string.C: strange string deserialize bug on
20745: client[pmts], a bit shortened,
20746:
20747: * src/include/pa_config_auto.h.in: makes
20748:
20749: * src/: include/pa_common.h, include/pa_config_fixed.h,
20750: include/pa_config_includes.h, main/pa_common.C: exclusive lock
20751: file write shared lock file read
20752:
20753: * src/: classes/op.C, include/pa_common.h,
20754: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
20755:
20756: 2001-12-06 paf
20757:
20758: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20759: main/pa_request.C: #ifdef RESOURCES_DEBUG
20760:
20761: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
20762: info
20763:
20764: * src/classes/hashfile.C: removed transaction from ^cache
20765:
20766: 2001-12-05 paf
20767:
20768: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
20769: IIS5 there were a prob with illegal call check
20770:
20771: 2001-12-04 paf
20772:
20773: * src/: classes/op.C, classes/table.C, include/pa_request.h,
20774: main/pa_request.C: measures to log
20775:
20776: 2001-11-23 paf
20777:
20778: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20779: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
20780: types/pa_vhashfile.C: merged from _0014, 1
20781:
20782: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
20783: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
20784: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
20785: ^cache(33) would change
20786:
20787: 0660 bits in file_write & hashfile create
20788:
20789: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
20790: after pa_string optimization]
20791:
20792: 2001-11-22 paf
20793:
20794: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
20795: table.offset[whence]
20796:
20797: * src/classes/op.C: process cstr(,connection)
20798:
20799: * src/classes/op.C: process now gets its body on current language,
20800: not as-is
20801:
20802: * src/main/untaint.C: ORIGINS mode removed UHTML
20803:
20804: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
20805: bit
20806:
1.116 moko 20807: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 20808:
20809: 2001-11-21 paf
20810:
20811: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
20812: <xsl:output output options made identical to xsl:output
20813: attributes exclusion: cdata-section-elements what xalan can do
20814: but that not used now: it can escape and remove CDATA sections
20815:
20816: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
20817: produced by xslt
20818:
20819: * src/targets/cgi/parser3.C: removed debug cgi||1
20820:
20821: * src/main/: pa_string.C, untaint.C: cached some string::size() es
20822:
20823: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
20824: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
20825: default language for {code}, it happen to change it's language
20826: from CLEAN, so later refused to split by CLEAN \t
20827:
20828: 2001-11-20 paf
20829:
1.116 moko 20830: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
20831: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 20832: bottom of dependeces, so that errors would popup quicklier, fixed
20833: line numbering in table::sql
20834:
20835: 2001-11-19 paf
20836:
20837: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
20838: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
20839: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
20840: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
20841: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
20842: at wcontext.write
20843:
1.116 moko 20844: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 20845: _set_new_handler
20846:
1.116 moko 20847: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
20848: set_new_handler in apache&isapi
1.95 moko 20849:
20850: 2001-11-16 paf
20851:
20852: * src/targets/cgi/parser3.C: pool debug @ die
20853:
20854: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
20855: removed 8 bytes from String, 2 bytes from
20856: string::chunk::row::item
20857:
20858: * src/main/pa_string.C: removed 1+4 bytes from String
20859:
20860: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20861: types/pa_vstring.C: removed 1+4 bytes from String
20862:
20863: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
20864: 0
20865:
20866: * src/: include/pa_globals.h, include/pa_string.h,
20867: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
20868: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
20869: targets/cgi/parser3.C: introducing estimating
20870: String::cstr_bufsize, 0
20871:
20872: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
20873:
20874: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
20875:
20876: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
20877: include/pa_pool.h: die in pool::fail
20878:
20879: 2001-11-15 paf
20880:
20881: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
20882: main/pa_exception.C, targets/cgi/parser3.C: exception with
20883: dynamic buffer re-back now with counter
20884:
20885: * src/: include/pa_exception.h, main/pa_exception.C: exception with
20886: static buffer back
20887:
20888: * src/targets/cgi/parser3.C: std::
20889:
20890: * src/: classes/classes.awk, include/pa_config_auto.h.in,
20891: include/pa_config_includes.h: setnewhandler check
20892:
1.116 moko 20893: * src/include/pa_config_auto.h.in: makes
1.95 moko 20894:
20895: * src/targets/cgi/parser3.C: set_new_handler started
20896:
20897: 2001-11-14 paf
20898:
20899: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20900: was wrong
20901:
20902: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20903: was wrong
20904:
20905: * src/main/pa_request.C: z
20906:
20907: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20908: full returns win32 -1 solaris >buffer_size
20909:
20910: checked all that
20911:
20912: * src/classes/op.C: ^untaint{body} as-is default now
20913:
20914: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20915: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20916: with no_bad_constructors_try
20917:
20918: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20919: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20920: this: $bred[^string::length[]] $bred[^response::clear[]]
20921: $bred[^int::int[]]
20922:
20923: now VObject creation moved into overriden
20924: VClass::create_new_value, thus 0 from create_new_value means that
20925: class has no ctors
20926:
20927: 2001-11-13 paf
20928:
20929: * src/classes/classes.C: returned accedently removed if in foreach
20930: callbacks [when hash no-0-restructure]
20931:
20932: 2001-11-12 paf
20933:
20934: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20935: passed as-is to method, xalan makes & into & itself
20936:
20937: * src/classes/date.C: date.roll parser2 alg used
20938:
20939: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20940: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20941: main/pa_dictionary.C, main/pa_hash.C,
20942: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20943: now does not containt 0 values. put 0 actullay removes. no check
20944: on 0 value in foreach now required
20945:
20946: 2001-11-11 paf
20947:
20948: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20949:
20950: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20951:
20952: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20953: driver initialize not const
20954:
20955: 2001-11-10 paf
20956:
20957: * src/main/pa_exec.C: doc
20958:
20959: 2001-11-09 paf
20960:
20961: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20962: param properly
20963:
20964: * src/classes/string.C: string.save now does untainting before
20965: saving
20966:
20967: * src/main/pa_common.C: line endings fixing fixed last piece[was
20968: still cstr oriented]
20969:
20970: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20971: line endings fixing got rid of cstr, now must work ok with post
20972: multipart
20973:
20974: * src/types/pa_vform.C: line endings fixed at post / multipart /
20975: not file also now
20976:
20977: 2001-11-08 paf
20978:
20979: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20980: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20981: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20982: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20983: main/pa_stylesheet_manager.C: restructured Cache manager to be
20984: simple parent, not second parent [gcc 2.96 strangly refused to
20985: call virtual from second parent]
20986:
1.116 moko 20987: * src/: include/pa_common.h, main/Makefile.am,
20988: targets/cgi/pa_pool.C: makes
1.95 moko 20989:
20990: * src/: include/pa_request.h, main/pa_request.C,
20991: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20992: 'status' class enabler
20993:
20994: <Location /parser-status.html> ParserStatusAllowed </Location>
20995:
20996: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20997: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20998: include/pa_stylesheet_manager.h, main/main.dsp,
20999: main/pa_cache_managers.C, main/pa_charset_manager.C,
21000: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
21001: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21002: types/pa_vstatus.h: cache_managers, maybe-expiring every request
21003: todo: apache 'status' class enabler
21004:
21005: 2001-11-05 paf
21006:
21007: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
21008: debug to normal
21009:
21010: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
21011: hence i removed skipping 0 values in hash::for_each-es we need to
21012: check cleaned cache items manually. few more checks.
21013:
21014: expiring to 0 time was wrong, changed to 'now' time
21015:
21016: * src/targets/cgi/parser3.C: read can return 0, that means sort of
21017: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
21018: on apache already done :)
21019:
21020: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
21021: skipping 0 values in hash::for_each-es we need to check cleaned
21022: cache items manually
21023:
21024: * src/main/: pa_db_connection.C, pa_db_table.C:
21025: parser_multithreaded check was wrong
21026:
21027: * src/: classes/classes.C, classes/classes.h, classes/date.C,
21028: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21029: classes/hashfile.C, classes/image.C, classes/int.C,
21030: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
21031: classes/string.C, classes/table.C, classes/void.C,
21032: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21033: include/pa_array.h, include/pa_charset_connection.h,
21034: include/pa_charset_manager.h, include/pa_common.h,
21035: include/pa_config_fixed.h, include/pa_config_includes.h,
21036: include/pa_db_connection.h, include/pa_db_manager.h,
21037: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
21038: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
21039: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
21040: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
21041: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
21042: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21043: include/pa_stack.h, include/pa_string.h,
21044: include/pa_stylesheet_connection.h,
21045: include/pa_stylesheet_manager.h, include/pa_table.h,
21046: include/pa_threads.h, include/pa_types.h, main/compile.C,
21047: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
21048: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
21049: main/pa_charset_manager.C, main/pa_common.C,
21050: main/pa_db_connection.C, main/pa_db_manager.C,
21051: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
21052: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
21053: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
21054: main/pa_socks.C, main/pa_sql_driver_manager.C,
21055: main/pa_status_provider.C, main/pa_string.C,
21056: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
21057: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21058: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21059: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
21060: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21061: targets/isapi/pool_storage.h, types/pa_valiased.C,
21062: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
21063: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
21064: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
21065: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
21066: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
21067: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
21068: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
21069: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
21070: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21071: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21072: types/pa_vstateless_object.h, types/pa_vstatus.h,
21073: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
21074: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
21075: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21076: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
21077: $status:db fixed used not initialized in db_connection & db_table
21078:
21079: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
21080: $status:charset
21081:
21082: * src/: classes/xdoc.C, include/pa_db_connection.h,
21083: include/pa_stylesheet_connection.h,
21084: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
21085: types/pa_vstatus.h: $status:stylesheet
21086:
21087: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
21088: include/pa_request.h, include/pa_sql_connection.h,
21089: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
21090: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
21091: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
21092: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
21093: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
21094: types/pa_vxnode.C, types/types.dsp: started status parser class
21095:
21096: 2001-11-01 paf
21097:
21098: * src/include/pa_config_auto.h.in: makes
21099:
21100: * src/main/pa_hash.C: removed old extra include
21101:
21102: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
21103: checks [for hp, there are such in math.h]
21104:
21105: * src/classes/op.C: ^for endless loop check strightened
21106:
21107: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
21108: behavior in native calls. it left unchanged, so ^for ^foreach &
21109: co can use r.root to write their i & key,value there
21110:
21111: * src/classes/op.C: detected for var storage bug, fixed.
21112: todo:foreach
21113:
21114: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
21115: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
21116: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
21117: changing of hash inside of foreach
21118:
21119: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
21120: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
21121: were hash.foreach
21122:
21123: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
21124: types/pa_vstring.C, types/pa_vstring.h:
21125: ^foreach[key|value]{body}[[separator]|{separator}]
21126:
21127: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
21128: types/pa_vcookie.C: ^hash.delete[key]
21129:
21130: 2001-10-31 paf
21131:
21132: * src/main/: compile.C, pa_common.C: completely empty file now
21133: considered "read", not ignored [not perfect trick used]
21134:
21135: * src/main/pa_common.C: simplier common ifdefs
21136:
21137: * src/main/pa_common.C: typing bug in common - bad ifdeff
21138:
21139: * src/main/pa_db_connection.C: z
21140:
21141: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
21142: lockdetector flags
21143: dbenv.lk_detect=DB_LOCK_RANDOM;
21144:
21145: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
21146: from accidental show [imagine user forgot @exception]
21147:
21148: * src/classes/table.C: ^table.save[[nameless|+append;]path]
21149:
21150: * src/: classes/file.C, classes/image.C, classes/mail.C,
21151: classes/string.C, classes/xnode.C, include/pa_common.h,
21152: main/pa_common.C: ^string.save[[append;]path]
21153:
21154: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
21155: main/execute.C: \ in expression: int divide 10/3=3
21156:
21157: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
21158: inside of ^cache
21159:
21160: * src/: include/pa_threads.h, main/pa_db_connection.C,
21161: main/pa_db_table.C, targets/cgi/pa_threads.C,
21162: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
21163: needed
21164:
21165: 2001-10-30 paf
21166:
21167: * src/: classes/classes.dsp, main/main.dsp,
21168: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21169: types/types.dsp: enabled debug incremental compile
21170:
21171: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
21172: form post data line endings not reformatted now.
21173:
21174: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
21175: now required [had bug when file= has no value]
21176:
21177: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
21178: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
21179: cstr(asis) default param removed
21180:
21181: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
21182:
21183: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
21184:
21185: * src/include/pa_dir.h: LOAD_DIR fixed
21186:
21187: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
21188: was broken} fix_line_breaks
21189:
21190: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
21191: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
21192: packed with #pragma pack
21193:
1.116 moko 21194: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 21195:
21196: 2001-10-29 paf
21197:
21198: * src/types/pa_wcontext.h: bitfield syntax stricter
21199:
21200: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
21201: string hash.puts
21202:
21203: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
21204:
21205: * src/include/pa_sql_connection.h: there were one wrong
21206: SQL_CONNECTION_FUNC_GUARDED [failed]
21207:
21208: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
21209: param.someday either ifdef or remove it
21210:
21211: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
21212:
21213: * src/main/untaint.C: optimizing returned after debugging
21214:
21215: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
21216: main/untaint.C: memory hunging #pragma pack(1)
21217:
21218: 16 419 844 13 169 394
21219:
21220: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
21221: targets/cgi/pa_pool.C: String size_t replace to uint in proper
21222: places [todo:Array]
21223:
21224: * src/: main/execute.C, targets/cgi/pa_pool.C,
21225: targets/cgi/parser3.dsp, types/pa_wcontext.h,
21226: types/pa_wwrapper.h: debugging memory WContext flags to bits
21227:
21228: total 5 652 652/158731 total 5 469 332/158731
21229:
21230: * src/: include/pa_array.h, main/pa_array.C: debugging memory
21231: Array:: without cache in get/put now
21232:
21233: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
21234: 18:25:27 2001] total 5 652 652/158731
21235:
21236: * src/: include/pa_string.h, main/pa_string.C,
21237: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
21238: now
21239:
21240: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
21241: 18:11:53 2001] total 5796092/158731
21242:
21243: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
21244: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
21245: key ref now
21246:
21247: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
21248: 17:11:17 2001] total 16867948/202658
21249:
21250: * src/: classes/file.C, classes/image.C, classes/string.C,
21251: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
21252: main/execute.C, main/pa_array.C, main/pa_common.C,
21253: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
21254: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
21255: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
21256: string::as_int/double now usually uses stack, not heap [200K out
21257: of 17M :)] VString(String&) not copies reference [29M -> 17M]
21258:
21259: * src/main/pa_sql_driver_manager.C: ping to have services [old
21260: hiding bug]
21261:
21262: * src/Makefile.am: .am order
21263:
21264: * src/: include/pa_array.h, include/pa_charset_manager.h,
21265: include/pa_db_connection.h, include/pa_db_manager.h,
21266: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
21267: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
21268: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
21269: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
21270: required "friend class"
21271:
21272: ../include/pa_request.h:51: friend declaration requires
21273: class-key, i.e. `friend class Temp_lang'
21274:
21275: * src/: include/pa_exception.h, include/pa_sql_connection.h,
21276: main/pa_exception.C, main/pa_sql_driver_manager.C,
21277: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
21278:
21279: the idea is to #1 jump to C++ some function to main body, where
21280: every function stack frame has exception unwind information and
21281: from there... #2 propagate_exception()
21282:
21283: 2001-10-28 paf
21284:
21285: * src/main/pa_db_connection.C: removed old consts
21286:
21287: * src/main/pa_db_connection.C: expire table [was accidently pasted
21288: with wrong type/cast]
21289:
21290: * src/main/: pa_db_connection.C, pa_db_table.C: exception
21291: translation
21292:
1.116 moko 21293: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 21294: remember to build DB2 with -fexceptions!!!
21295:
21296: * src/main/pa_db_table.C: DB_RMW defed
21297:
21298: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
21299: include/pa_db_connection.h, include/pa_db_manager.h,
21300: include/pa_db_table.h, main/pa_db_connection.C,
21301: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
21302:
21303: 2001-10-27 paf
21304:
21305: * src/: classes/hashfile.C, include/pa_db_connection.h,
21306: include/pa_db_table.h, main/pa_db_connection.C,
21307: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
21308: types/pa_vhashfile.C: DB2 ifdefs
21309:
1.116 moko 21310: * src/: classes/Makefile.am, include/pa_config_fixed.h,
21311: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 21312: makes with DB2
21313:
1.116 moko 21314: * src/: include/pa_config_auto.h.in, main/Makefile.am,
21315: types/Makefile.am: makes db
1.95 moko 21316:
21317: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
21318: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
21319: globals.C
21320:
21321: * src/: classes/hashfile.C, include/pa_db_connection.h,
21322: include/pa_db_table.h, main/pa_db_connection.C,
21323: main/pa_db_table.C: ^hashfile.clear[]
21324:
21325: * src/classes/classes.awk: no $ in var names
21326:
21327: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
21328: connection&table [forgotten calls]
21329:
21330: 2001-10-26 paf
21331:
21332: * src/main/pa_db_connection.C: db checkpoints
21333:
21334: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
21335: checkpoints
21336:
21337: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
21338: default. but entities still reparsed. todo: tothink
21339:
21340: * src/main/pa_db_connection.C: db recover mech 2
21341:
21342: * src/: classes/hashfile.C, include/pa_db_connection.h,
21343: include/pa_db_manager.h, include/pa_db_table.h,
21344: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
21345: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
21346: types/pa_vhashfile.h: db connections & tables now cached at
21347: create time & multithreaded
21348:
21349: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
21350: parsed_source
21351:
21352: * src/main/pa_db_connection.C: about to remove connection from
21353: vhashfile
21354:
21355: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
21356: transaction commit/rollback responsibility left to parent [as it
21357: sould - else there were a bug with double free]
21358:
21359: * src/include/pa_db_table.h: db: child transaction commit/rollback
21360: responsibility left to parent [as it sould - else there were a
21361: bug with double free]
21362:
21363: 2001-10-25 paf
21364:
21365: * src/: classes/hashfile.C, include/pa_common.h,
21366: include/pa_db_connection.h, include/pa_db_manager.h,
21367: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
21368: types/pa_vhashfile.C, types/pa_vhashfile.h,
21369: include/pa_db_table.h, main/pa_db_table.C: started db_home
21370: [multiple, cached] todo: autorecover [tried, but not succeded,
21371: yet]
21372:
21373: * src/include/pa_dir.h: ancient gpf on dir not found fixed
21374:
21375: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
21376: transaction parent passed
21377:
21378: 2001-10-24 parser
21379:
1.116 moko 21380: * src/classes/Makefile.am: makes
1.95 moko 21381:
21382: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
21383: isapi/pool_storage.h: pool_storage fixed
21384:
21385: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
21386: types/pa_vform.h: form fix_line_breaks
21387:
1.116 moko 21388: * src/targets/cgi/pool_storage.h: makes
1.95 moko 21389:
21390: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
21391: targets/cgi/pool_storage.h: makes
21392:
21393: * src/sql/pa_sql_driver.h: version
21394:
21395: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
21396: types/pa_vform.C, types/pa_vform.h: .am
21397:
21398: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
21399: this: DB_RMW Acquire write locks instead of read locks when doing
21400: the retrieval. Setting this flag may decrease the likelihood of
21401: deadlock during a read-modify-write cycle by immediately
21402: acquiring the write lock during the read part of the cycle so
21403: that another thread of control acquiring a read lock for the same
21404: item, in its own read-modify-write cycle, will not result in
21405: deadlock
21406:
21407: * src/targets/isapi/parser3isapi.dsp: doc
21408:
21409: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
21410:
21411: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
21412:
21413: * src/: classes/hashfile.C, include/pa_db_connection.h,
21414: main/pa_db_connection.C: hashfile expired deleted from db when
21415: get & iterate
21416:
21417: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
21418: expiring 1
21419:
21420: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
21421:
21422: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
21423: db_connection not bothers with key when not returning expired
21424: data
21425:
21426: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21427: types/pa_vhashfile.C: db_cursor constructor public now
21428:
21429: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
21430: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
21431: stamped, todo: put_element analize
21432:
21433: * src/: include/pa_db_connection.h, include/pa_string.h,
21434: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
21435: serialize. todo stamp
21436:
21437: 2001-10-23 parser
21438:
21439: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
21440: classes/image.C, classes/mail.C, classes/response.C,
21441: classes/string.C, classes/table.C, classes/xdoc.C,
21442: include/pa_config_fixed.h, include/pa_db_connection.h,
21443: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
21444: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
21445: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
21446: types/pa_vtable.C: ^hashfile.hash[]
21447:
21448: * src/: classes/hashfile.C, classes/xdoc.C,
21449: include/pa_config_fixed.h, main/pa_db_manager.C,
21450: main/pa_globals.C: ifdefs so it compiled without db
21451:
21452: * src/: classes/hashfile.C, include/pa_db_connection.h,
21453: include/pa_db_manager.h, main/pa_db_connection.C,
21454: main/pa_db_manager.C, types/pa_vhashfile.h:
21455: ^hashfile.transaction{code} ^hashfile:clear[filename]
21456: ^hashfile.delete[key]
21457:
21458: 2001-10-22 parser
21459:
21460: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
21461: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
21462:
21463: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
21464: classes/xnode.C, include/pa_charset_connection.h,
21465: include/pa_db_connection.h, include/pa_db_manager.h,
21466: include/pa_exception.h, include/pa_sapi.h,
21467: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21468: include/pa_stylesheet_connection.h,
21469: include/pa_stylesheet_manager.h,
21470: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21471: main/pa_db_connection.C, main/pa_db_manager.C,
21472: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
21473: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
21474: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
21475: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
21476: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
21477: types/types.dsp: hashfile 0
21478:
21479: * src/types/pa_vhashfile.C: z
21480:
21481: * src/: classes/classes.dsp, classes/hashfile.C,
21482: include/pa_config_fixed.h, main/execute.C,
21483: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
21484: types/pa_vhashfile.h, types/types.dsp: hashfile -100
21485:
21486: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
21487:
21488: * src/: include/pa_exception.h, include/pa_request.h,
21489: main/execute.C, main/pa_exception.C, main/pa_request.C,
21490: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21491: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
21492:
21493: 2001-10-19 parser
21494:
21495: * src/include/pa_pool.h: header
21496:
21497: * src/main/pa_pool.C: auto compiled on gcc
21498:
21499: * src/classes/image.C: comment
21500:
1.116 moko 21501: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 21502:
21503: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21504: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21505: types/pa_vxnode.h: xnode clone got freed
21506:
21507: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21508: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
21509: can free up xalandomstring resulting from pool::transcode
21510:
21511: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
21512: include/pa_config_fixed.h, include/pa_exception.h,
21513: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
21514: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
21515: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
21516: to c++ exceptions 1xml configure fixed to exclude xalan-patch
21517: from non-xml compile
21518:
21519: * src/main/pa_request.C: pool:: context - get_context
21520:
21521: * src/: classes/classes.h, classes/date.C, classes/double.C,
21522: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
21523: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
21524: classes/string.C, classes/table.C, classes/void.C,
21525: include/pa_config_fixed.h, include/pa_exception.h,
21526: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
21527: main/compile.C, main/compile_tools.C, main/execute.C,
21528: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
21529: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
21530: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
21531: main/pa_string.C, main/pa_table.C, main/untaint.C,
21532: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21533: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
21534: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
21535: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
21536: types/pa_vstateless_class.h, types/pa_vtable.C,
21537: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
21538: exceptions 0
21539:
21540: * src/classes/classes.awk: $ removed
21541:
21542: 2001-10-18 parser
21543:
21544: * src/types/pa_vcookie.C: cookie:CLASS
21545:
21546: * src/main/main.dsp: project
21547:
21548: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
21549: set_document & ctor question "who owns document" solved
21550:
21551: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
21552:
21553: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
21554: main/pa_pool.C: encoding in dom creating funcs
21555:
21556: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
21557: be transformed now
21558:
21559: * src/classes/xdoc.C: dom created by create can be transformed now
21560:
21561: * src/classes/xdoc.C: z
21562:
21563: * src/classes/xdoc.C: comment
21564:
21565: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
21566: create now uses XercesDocumentBridge, appendChild&co now works
21567:
21568: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
21569: @ recompile
21570:
21571: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
21572: $origin @exception[
21573:
21574: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
21575: tag names forced to XML lang
21576:
21577: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
21578: leechy-found bugs in code&doc fixed
21579:
21580: 2001-10-17 parser
21581:
21582: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
21583: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
21584: n functionality preserved
21585:
21586: * src/types/pa_vimage.h: removed unused vimage::save
21587:
21588: 2001-10-16 parser
21589:
21590: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
21591:
21592: * src/classes/: xnode.C: removed few dom returns & changed op.txt
21593:
21594: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
21595:
21596: * src/classes/image.C: image.copy tolerance
21597:
21598: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
21599: ineffective, but works for small paleted image
21600:
21601: * src/types/pa_vimage.C: comment
21602:
21603: * src/classes/image.C: gd size/resize bugfix
21604:
21605: * src/: classes/classes.dsp, main/main.dsp,
21606: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21607: types/types.dsp: ident >nul 2>&1
21608:
21609: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
21610: systems
21611:
21612: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
21613: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
21614:
21615: 2001-10-15 parser
21616:
21617: * src/main/execute.C: z
21618:
21619: * src/classes/: xdoc.C: !::create{qualifiedName}
21620:
21621: * src/types/pa_vxnode.C: document_type_node.
21622: !readonly attribute DOMString name
21623: !notation_node.
21624: !readonly attribute DOMString publicId
21625: !readonly attribute DOMString systemId
21626:
1.116 moko 21627: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
21628: ::write badly passed string too transparently [failed to
21629: intercept it]
1.95 moko 21630:
21631: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
21632: include/pa_request.h, main/pa_sql_driver_manager.C,
21633: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
21634: types/pa_vxnode.h: DOM1 major addtion, only few
21635: attributes/methods left
21636:
21637: 2001-10-13 parser
21638:
21639: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21640: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
21641: in main handler
21642:
21643: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
21644: cleanups & frees order
21645:
21646: * src/types/pa_vcode_frame.h: couple comments
21647:
21648: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
21649: transparent enough to handle hash if creation&passing
21650:
21651: * src/: include/pa_config_fixed.h, main/execute.C,
21652: main/pa_exception.C: noticed that vcodeframe not transparent
21653: enough, would change now
21654:
21655: 2001-10-12 parser
21656:
21657: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
21658: fixed. initialization&free on each thread!
21659:
21660: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
21661: handling changed: now type of default param analized always, not
21662: only at problem time, thus helping early problem spotting
21663:
21664: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
21665: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
21666: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
21667: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
21668: multithread bug fixed. initialization&free on each thread!
21669:
21670: 2001-10-11 parser
21671:
21672: * src/classes/xnode.C: xnode.selectSingle now
21673:
21674: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
21675: include/pa_pool.h, include/pa_stylesheet_connection.h,
21676: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
21677: convertors out of Pool into Exception
21678:
21679: * src/main/pa_string.C: const
21680:
21681: * src/: include/pa_string.h, main/pa_string.C: restructured string:
21682: linked pieces of same language together prior to String::replace
21683:
21684: * src/classes/hash.C: !^hash.add[addme]
21685: !^hash.sub[subme]
21686: !^a.union[b] = new
21687: !^a.intersection[b] = new
21688: !^a.intersects[b] = bool
21689:
21690: * src/classes/hash.C: !^hash::append[append_from]
21691:
21692: * src/: classes/hash.C, types/pa_vhash.h:
21693: !^hash::create[[copy_from]]
21694:
21695: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
21696: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
21697: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
21698: fixed. got rid of empty_string, which caused errors - it hasnt
21699: exception but somebody[value.bark] tried to throw it on it's pool
21700:
1.116 moko 21701: * src/include/pa_config_auto.h.in: makes
1.95 moko 21702:
21703: 2001-10-10 parser
21704:
21705: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
21706:
21707: * src/main/: compile.tab.C, compile.y: ^a[
21708:
21709: @next_method << now unclosed ] would be reported here
21710:
21711: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
21712: compile error
21713:
21714: 2001-10-09 parser
21715:
1.116 moko 21716: * src/: classes/Makefile.am, main/Makefile.am,
21717: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 21718:
21719: * src/classes/Makefile.am: makes
21720:
21721: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
21722: win32 errors intercepted [xalan transformer patched and
21723: incorporated]
21724:
21725: * src/: classes/classes.dsp, classes/xdoc.C,
21726: include/pa_stylesheet_connection.h, main/main.dsp,
21727: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21728: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
21729: patches starting
21730:
21731: * src/classes/: string.C, table.C: ^string.save[file]
21732:
21733: * src/classes/: date.C, table.C: calendar moved to date
21734:
21735: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
21736: string/table] now
21737:
21738: * src/classes/: op.C, table.C: z
21739:
21740: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
21741: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
21742: types/pa_vxnode.h: table:menu & op for delims made allowed not to
21743: be code [be string..]
21744:
21745: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
21746: table.C: lots of
21747: params->as_int/double/as_string/as_junction/as_no_junction
21748: messages added
21749:
21750: 2001-10-08 parser
21751:
21752: * src/: classes/date.C, classes/image.C, classes/string.C,
21753: classes/table.C, classes/void.C, include/pa_request.h:
21754: params->as_int/double message added
21755:
21756: * src/classes/image.C: image:circle [and round arc] uses Bresenham
21757:
21758: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
21759: image:sector removed image:html internal "line-*" attribs
21760:
21761: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
21762: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
21763:
21764: * src/types/pa_vcookie.C: removing cookie made more netscape-like
21765: way
21766:
21767: * src/: classes/file.C, classes/form.C, main/pa_common.C,
21768: main/untaint.C: header untainting to UL_HTTP_HEADER,
21769: UL_MAIL_HEADER made nonforced [only tainted pieces]
21770:
21771: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
21772: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
21773: @ SAPI::log
21774:
21775: * src/main/untaint.C: \r to ' ' in origins mode
21776:
21777: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
21778: set]
21779:
21780: * src/: classes/xdoc.C, include/pa_config_fixed.h,
21781: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
21782: nonstandard liaison freed up
21783:
21784: 2001-10-07 parser
21785:
21786: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
21787: project
21788:
21789: 2001-10-05 parser
21790:
21791: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
21792: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
21793: from outputing to cerr. lots of "todos"
21794:
21795: * src/main/untaint.C: http_header tainting more gentle with
21796: enquoting now
21797:
21798: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
21799: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
21800: xml errorhandler. fixed string.replace a little, read @test
21801:
21802: * src/main/pa_string.C: found replace bug - first_that_starts(char
21803: *) does not have limit, and looks further eos, fixing....
21804:
21805: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
21806:
21807: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
21808:
21809: * src/main/: pa_charset_connection.C: ctype another mem clear
21810: bugfix
21811:
1.116 moko 21812: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
21813: $result[^[$p^]z] now works fine
1.95 moko 21814:
21815: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
21816: wrong. fixed it
21817:
21818: * src/main/pa_charset_connection.C: unicode zero pair at the beging
21819: of totable appered to be vital
21820:
21821: 2001-10-04 parser
21822:
21823: * src/classes/image.C: ^image.length[text]
21824:
21825: 2001-10-03 parser
21826:
21827: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
21828:
21829: * src/main/pa_request.C: restored pcre defaulting in request
21830: [mindlessly "optimized" yesterday] comment left
21831:
21832: 2001-10-02 parser
21833:
21834: * src/: main/pa_charset_manager.C,
21835: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
21836: needed
21837:
21838: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
21839: forgot non-xml pool.*charset needed
21840:
21841: * src/classes/table.C: # config comments fixed
21842:
21843: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
21844: charset_connection #comment now
21845:
21846: * src/: classes/classes.dsp, types/types.dsp: release projects
21847: options fixed to use release msvcrt lib
21848:
21849: * src/main/pa_charset_connection.C: pcre tables now const inside
21850: removed default - pcre handles that internally fixed bug on
21851: not-cleaning tables [previously was calloced, now member]
21852:
21853: * src/: include/pa_request.h, main/pa_charset_connection.C,
21854: main/pa_request.C, types/pa_vstring.h: pcre tables now const
21855: inside removed default - pcre handles that internally fixed bug
21856: on not-cleaning tables [previously was calloced, now member]
21857:
21858: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
21859: tested charset reload on file change @ apache version = OK tested
21860: freeing up prev encoding on adding new = OK
21861:
21862: 2001-10-01 parser
21863:
21864: * src/main/pa_charset_connection.C: removed entitify external hack
21865: [internal installed]
21866:
1.116 moko 21867: * src/main/Makefile.am: makes+removed dtd
1.95 moko 21868:
21869: * src/: include/pa_charset_connection.h,
21870: include/pa_charset_manager.h,
21871: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21872: main/pa_charset_connection.C, main/pa_charset_manager.C,
21873: main/pa_request.C: charset loading & caching mech 0
21874:
21875: * src/: include/pa_stylesheet_connection.h,
21876: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21877: main/pa_globals.C, main/pa_request.C: would make charset loading
21878: & caching mech now
21879:
21880: 2001-09-30 parser
21881:
21882: * src/main/pa_request.C: forgot to fill toTable
21883:
21884: * src/: include/pa_config_fixed.h, main/pa_request.C: started
21885: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
21886: failed on win32 for now..
21887:
21888: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
21889: now charsets table configuration variable is: CHARSETS
21890:
21891: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
21892: ctype with unicode 1. todo: no П entities on output somehow
21893:
21894: * src/: classes/file.C, classes/op.C, classes/string.C,
21895: include/pa_request.h, main/pa_request.C: started ctype with
21896: unicode values
21897:
21898: 2001-09-28 parser
21899:
21900: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21901: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21902: string passed AS-IS now
21903:
21904: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21905: way of user-configuring... todo: implement
21906:
21907: 2001-09-27 parser
21908:
21909: * src/classes/table.C: table.sort changed to sort table itself
21910:
21911: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21912: X^.getElementsByTagName[tagname] = array of xnode
21913: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21914: nodes removed - regretfully not supported @ xalan. maybe someday
21915: would reimplement, if needed.
21916:
21917: win32build system: solved long waiting anti-non-started-apache
21918: problem
21919:
21920: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21921: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21922: types/types.dsp: win32 ident make system so not to rebuild
21923: library [ident.C.new]
21924:
21925: 2001-09-26 parser
21926:
21927: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21928: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21929: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21930: types/pa_vxnode.C, types/types.dsp: z
21931:
21932: * src/classes/classes.C: forgot one non-xml check
21933:
1.116 moko 21934: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21935: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21936:
21937: * src/targets/cgi/parser3.C: z
21938:
21939: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21940: targets/isapi/parser3isapi.C: #ifdef SMTP
21941:
21942: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21943: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21944: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21945: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21946: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21947: types/types.dsp: xdoc&xnode now
21948:
21949: * src/: classes/classes.C, classes/classes.awk,
21950: classes/classes.dsp, classes/classes.h, classes/date.C,
21951: classes/dnode.C, classes/dnode.h, classes/dom.C,
21952: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21953: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21954: classes/op.C, classes/response.C, classes/string.C,
21955: classes/table.C, classes/void.C, include/pa_array.h,
21956: include/pa_common.h, include/pa_config_fixed.h,
21957: include/pa_config_includes.h, include/pa_dictionary.h,
21958: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21959: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21960: include/pa_socks.h, include/pa_sql_connection.h,
21961: include/pa_sql_driver_manager.h, include/pa_stack.h,
21962: include/pa_string.h, include/pa_stylesheet_connection.h,
21963: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21964: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21965: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21966: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21967: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21968: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21969: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21970: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21971: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21972: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21973: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21974: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21975: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21976: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21977: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21978: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21979: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21980: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21981: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21982: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21983: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21984: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21985: types/pa_vmethod_frame.h, types/pa_vobject.h,
21986: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21987: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21988: types/pa_vstateless_object.h, types/pa_vstring.C,
21989: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21990: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21991: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21992: main.dsp splitted to main+classes+types along to .am
21993:
21994: * src/classes/Makefile.am: removed useless var
21995:
21996: * src/: classes/classes.cmd, main/main.dsp,
21997: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21998: main.dsp
21999:
22000: 2001-09-25 parser
22001:
22002: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
22003: 1251 though, todo ICU
22004:
1.116 moko 22005: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 22006: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 22007: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
22008: types/pa_vdom.h: xml configure makes
1.95 moko 22009:
22010: 2001-09-24 parser
22011:
1.116 moko 22012: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
22013: types/Makefile.am: makes
1.95 moko 22014:
1.116 moko 22015: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 22016:
22017: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
22018: started unix makes update
22019:
22020: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
22021: started unix makes update
22022:
22023: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
22024:
22025: * src/types/pa_value.h: z
22026:
22027: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
22028: bugs with usinge hash/table in expressions
22029:
22030: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
22031: resolved conflicts fixed [const]
22032:
22033: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
22034: classes/table.C, include/pa_request.h, include/pa_sapi.h,
22035: main/compile.C, main/compile.tab.C, main/compile.y,
22036: main/compile_tools.h, main/main.dsp, main/pa_common.C,
22037: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
22038: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
22039: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
22040: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
22041: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
22042: with before_xml [merge2 actually didn't happen - i've created
22043: tags on wrong branch. so this merge is in fact re-merge]
22044:
22045: 2001-09-21 parser
22046:
22047: * src/: main/main.dsp, targets/cgi/parser3.dsp,
22048: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
22049: produced "" in make file and sadly wrong interpreted on load]
22050:
1.116 moko 22051: * src/: classes/classes.h, classes/hash.C, classes/op.C,
22052: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
22053: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
22054: include/pa_sql_driver_manager.h, include/pa_string.h,
22055: main/compile.tab.C, main/main.dsp, main/pa_common.C,
22056: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
22057: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 22058:
22059: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
22060: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
22061: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
22062: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
22063: main/pa_pool.C, main/pa_request.C,
22064: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
22065: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22066: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
22067: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
22068: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
22069: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
22070: types/pa_vrequest.C, types/pa_vresponse.h,
22071: types/pa_vstateless_class.C, types/pa_vstring.C,
22072: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
22073: created new projects for sql drivers [planning to remove sql
22074: drivers from main cvs project] first, will join latest changes
22075:
22076: * src/classes/: dom.C: defaulted dom writing methods encoding to
22077: pool.get_charset
22078:
22079: * src/classes/dom.C: defaulted dom writing methods encoding to
22080: pool.get_charset
22081:
22082: * src/include/pa_pool.h: defaulted dom writing methods encoding to
22083: pool.get_charset
22084:
22085: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
22086: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
22087: methods encoding to pool.get_charset
22088:
22089: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
22090: transcoder were created right "unsupported encoding" message.
22091: not @ set time, but @ use time, so until xml output functions
22092: .string, .file, .save used - no encoding name check occur
22093:
22094: reduced transcode buffer size to 60 fixed pool cleanup - no
22095: registration needed, pools are officially destructured
22096:
22097: 2001-09-20 parser
22098:
22099: * src/classes/image.C: 20K preload on jpg measure [image::measure]
22100:
22101: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
22102: $MAIN:DEFAULTS.content-type[$.charset[here]]
22103:
22104: * src/: classes/dnode.C, classes/dom.C,
22105: include/pa_config_includes.h, include/pa_globals.h,
22106: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
22107: main/pa_pool.C, targets/cgi/parser3.dsp,
22108: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22109: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
22110: Pool::transcode 0
22111:
22112: * src/classes/dom.C: dom. string save file moved output xml options
22113: to last param and made it optional
22114:
22115: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
22116: dnodes
22117: !$attributenode.specified = boolean
22118: true if the attribute received its value explicitly
22119: in the XML document,
22120: or if a value was assigned programatically with the
22121: setValue function.
22122: false if the attribute value came from the default value
22123: declared in the document's DTD.
22124: !$pinode.target = target of this processing instruction
22125: XML defines this as being the first token following the
22126: markup
22127: that begins the processing instruction.
22128: XPath:
22129: !^node.select[xpath/query/expression] = hash of 0->node0
22130: 1->node1
22131: !^node.select-single[xpath/query/expression] = first node if
22132: any
22133:
22134: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
22135: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
22136: some 'const's added
22137:
22138: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
22139: expression context now, there value = size and boolean value
22140: size!=0
22141:
22142: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
22143: can be used in expression context now, there value = size and
22144: boolean value size!=0
22145:
22146: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
22147: types/pa_vstring.h: dnode .file .string .save moved back to dom
22148: due to strange xalan bug
22149:
22150: 2001-09-18 parser
22151:
22152: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
22153: classes/image.C, classes/op.C, classes/table.C,
22154: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
22155: include/pa_sql_driver_manager.h, main/compile.C,
22156: main/compile.tab.C, main/compile.y, main/compile_tools.h,
22157: main/execute.C, main/pa_common.C, main/pa_request.C,
22158: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
22159: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22160: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
22161: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
22162: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
22163: before_xml branch ^if(def $hash) now true only when
22164: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
22165:
22166: * src/: classes/op.C, main/execute.C: operators self changed to
22167: root ^for variable context changed to self
22168:
22169: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
22170: dnode 1
22171:
22172: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
22173: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
22174:
22175: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
22176: poly* fixed
22177:
22178: 2001-09-17 parser
22179:
22180: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
22181: types/pa_vdom.h: started dnode+dom
22182:
22183: dnode DOM methods: $node.name $node.value
22184: ...others...
22185:
22186: ^node.xpath[/rates/USD] = hash
22187: $hash[
22188: $.0[node0]
22189: $.1[node1]
22190: ]
22191:
22192: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
22193: applies to all linear primitives
22194:
22195: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
22196: include/pa_stylesheet_connection.h, main/main.dsp,
22197: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
22198: types/pa_vimage.h: started dnode DOM: $node.name
22199: $node.value ...others... ^node.xpath[/rates/USD] = hash
22200: dom(dnode)
22201:
22202: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
22203: main/compile.y, main/compile_tools.h, main/execute.C,
22204: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
22205: in expression compound($aa.zz.xx) names now can have minus '-' in
22206: name after '.'
22207:
22208: 2001-09-15 parser
22209:
22210: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
22211: image: $line-width ^line(...)[**** style]
22212:
22213: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
22214: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
22215: pool_storage - cleanups first, allocations second. apache wisely
22216: does just like that
22217:
22218: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
22219: rewritten using template, no bugs now
22220:
22221: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
22222: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
22223: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
22224: poorly started isapi pool_storage, would rewrite using template
22225: now
22226:
22227: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
22228: include/pa_stylesheet_connection.h, main/main.dsp,
22229: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
22230: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
22231: xalan objects freed up [introducing Pool::register_cleanup]
22232:
22233: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
22234: comments
22235:
22236: 2001-09-14 parser
22237:
22238: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
22239: z
22240:
22241: * src/: classes/dom.C, classes/file.C, classes/image.C,
22242: classes/mail.C, include/pa_common.h,
22243: include/pa_sql_driver_manager.h, include/pa_string.h,
22244: include/pa_stylesheet_connection.h,
22245: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
22246: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
22247: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
22248: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
22249: compiled&cached
22250:
22251: 2001-09-13 parser
22252:
22253: * src/: classes/dom.C, classes/file.C, classes/image.C,
22254: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
22255:
22256: * src/classes/dom.C: dom:file content-type(.method)
22257:
22258: * src/: include/pa_common.h, include/pa_globals.h,
22259: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
22260: string now more informative error messages
22261:
22262: * src/: include/pa_globals.h, include/pa_request.h,
22263: main/pa_request.C, targets/cgi/parser3.C,
22264: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
22265: ParserSiteConfig .../parser3.conf
22266:
22267: cgi&isapi looks for {configure|c:\windows}/parser3.conf
22268:
22269: 2001-09-12 parser
22270:
22271: * src/: classes/op.C, include/pa_sql_driver_manager.h,
22272: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
22273: precise error reporting: "connection string must start with
22274: protocol://" now
22275:
22276: * src/main/compile.tab.C: fixed - subname code parts actually []
22277: braced
22278:
22279: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
22280: lexer on LS_USER level did [] matching without setting nestage,
22281: introduced special LS_NAME_SQUARE_PART state
22282:
22283: 2001-09-11 parser
22284:
22285: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
22286: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
22287: languages+=xml
22288:
22289: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
22290:
22291: * src/classes/dom.C: ^dom:save/string/file[output options] output
22292: options: $.method[xml|html|text] detection fixed
22293:
22294: * src/types/pa_vdom.h: messages
22295:
22296: * src/classes/dom.C: ^dom:save/string/file[output options] output
22297: options: $.method[xml|html|text] detection fixed
22298:
22299: 2001-09-10 parser
22300:
22301: * src/classes/dom.C: ^dom:save/string/file[output options] output
22302: options: $.method[xml|html|text] $.encoding[windows-1251|...]
22303:
22304: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
22305: added]
22306:
22307: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
22308: ^dom.xslt[stylesheet filename] 0
22309:
22310: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
22311: ^dom.xslt[stylesheet filename] -1 doc is lying
22312:
22313: * src/classes/dom.C: ^dom.file[encoding] = file
22314:
22315: * src/classes/: dom.C: ^dom.string[encoding] 1
22316: ^dom.save[encoding;filename]
22317:
22318: * src/classes/dom.C: ^dom.string[] 0
22319:
22320: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
22321:
22322: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
22323: types/pa_vform.h: ^dom.save[b.xml] 0
22324:
22325: 2001-09-08 parser
22326:
22327: * src/types/pa_vform.C: $form:tables.name.field
22328:
22329: 2001-09-07 parser
22330:
22331: * src/classes/table.C: table:empty removed, superceded by ^if(def
22332: $table)...
22333:
22334: * src/targets/cgi/parser3.C: z
22335:
22336: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
22337: from '' to int/double is 0]
22338:
22339: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
22340: $table) is false when table is empty
22341:
22342: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
22343: !$form:tables $atable[$form:tables.a]
22344: ^atable.menu{a=$atable.element}[,]
22345:
22346: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
22347: types/pa_vform.h, types/pa_vhash.h: !$form:fields
22348:
1.116 moko 22349: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22350: types/pa_vdom.h, types/pa_vform.C: merged with successful start
22351: of dom
22352:
22353: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
22354: types/pa_vform.C, types/pa_vform.h: z
22355:
22356: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
22357: element [not last]
22358:
1.116 moko 22359: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 22360: types/pa_vdom.h: introducing dom. dom:load[a.xml]
22361:
22362: 2001-09-06 parser
22363:
22364: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22365: table with one column 'element' and two rows: 1 and 2
22366:
22367: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
22368: table with one column 'element' and two rows: 1 and 2
22369:
22370: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
22371: bad int/double conversions, and now $form:nonexistent.int(88)
22372: would return 88
22373:
22374: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
22375: types/pa_vhash.h: now there's special hash key '_default'
22376: [instead of ^_default method] $hash[ $.a[1] $.b[2]
22377: $._default[xx] ] $hash.c
22378:
22379: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
22380: fixed [thanks, fif], ^; were treated there non-literally
22381:
22382: * src/doc/doxygen.cfg: merged new default options from 1.2.10
22383: doxygen
22384:
22385: * src/: classes/image.C, classes/op.C, classes/string.C,
22386: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
22387: types/pa_vtable.C: few #ifndef DOXYGEN
22388:
22389: 2001-09-05 parser
22390:
22391: * src/classes/: string.C, table.C: sql options can be void [same as
22392: image:html the other day]
22393:
22394: * src/targets/cgi/Makefile.am: .am undo
22395:
22396: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22397: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
22398: macro expantion on param, simply qoutes whatever passed, undone
22399:
22400: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22401: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
22402: STRINGIZE(name) #name invented
22403:
22404: * src/: classes/op.C, include/pa_sql_driver_manager.h,
22405: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
22406: MAIN_SQL_DRIVERS_NAME "drivers"
22407:
22408: moved to be availible to all users
22409:
22410: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
22411: SQL_DRIVER_CREATE_FUNC_NAME
22412:
22413: * src/classes/mail.C: MAIN:MAIL check fixed
22414:
22415: 2001-09-04 parser
22416:
22417: * src/classes/image.C: image.html now can accept void params
22418:
22419: * src/targets/isapi/parser3isapi.C: z
22420:
22421: * src/targets/cgi/parser3.C: full_file_spec bug
22422:
22423: * src/targets/cgi/parser3.C: getenvcheck
22424:
22425: * src/targets/cgi/parser3.C: zz
22426:
22427: * src/targets/cgi/parser3.C: zzz
22428:
22429: * src/classes/date.C: date
22430:
22431: * src/classes/date.C: date:sql-string is now without ''
22432:
1.116 moko 22433: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 22434: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
22435: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
22436:
1.116 moko 22437: * src/include/pa_config_auto.h.in: makes
1.95 moko 22438:
22439: 2001-09-03 parser
22440:
22441: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
22442:
22443: 2001-09-01 parser
22444:
22445: * src/classes/image.C: letter_spacing
22446:
22447: * src/classes/image.C: image: font params changed
22448:
22449: * src/classes/image.C: image: as_int as_string used
22450:
22451: * src/types/pa_vmethod_frame.h: $result[] now gets properly
22452: analized
22453:
22454: 2001-08-31 parser
22455:
22456: * src/targets/cgi/parser3.C: z
22457:
1.116 moko 22458: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
22459: cygwin
1.95 moko 22460:
22461: * src/classes/void.C: void:int/double += (default)
22462:
22463: * src/classes/image.C: image:font added space param image:font
22464: changed charwidth alg, added kerning const[for now]
22465:
22466: * src/classes/: string.C, table.C: string:int/double (defaults)
22467:
22468: 2001-08-29 parser
22469:
22470: * src/main/pa_exception.C: exception redundant debug info
22471:
22472: 2001-08-28 parser
22473:
22474: * src/classes/image.C: image error msgs
22475:
22476: * src/classes/image.C: image: gifsize little endian
22477:
22478: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
22479: doxygeneration
22480:
22481: * src/: classes/Makefile.am, main/Makefile.am,
22482: targets/cgi/Makefile.am, types/Makefile.am: .am-s
22483:
22484: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
22485: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
22486:
22487: * src/main/compile.C: NO_STRING_ORIGIN check2
22488:
22489: * src/classes/table.C: NO_STRING_ORIGIN check
22490:
22491: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
22492: storage class specifiers invalid in friend function declarations
22493:
22494: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
22495: main/untaint.C, targets/cgi/parser3.C,
22496: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
22497: case of limit
22498:
22499: * src/: classes/file.C, main/pa_common.C: file:move
22500: autocreate/remove dest/src dir
22501:
22502: * src/: classes/string.C, include/pa_dictionary.h,
22503: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
22504: main/untaint.C: pa_directory speeded up. moved zero 'from' check
22505: to directory constructor. string:replace
22506:
22507: 2001-08-27 parser
22508:
22509: * src/classes/image.C: fixed jpgsize alg
22510:
22511: * src/classes/image.C: fixed jpgsize alg
22512:
22513: * src/main/pa_exception.C: z
22514:
22515: * src/main/pa_common.C: removed debug info from pa_common
22516:
22517: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
22518: [auto.p from current dir loading]
22519:
1.116 moko 22520: * src/: main/pa_common.C, main/pa_exception.C,
22521: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
22522: for solaris -lsocket
1.95 moko 22523:
22524: 2001-08-24 parser
22525:
22526: * src/targets/cgi/parser3.C: not cgi extra \n 3
22527:
22528: * src/targets/cgi/parser3.C: not cgi extra \n 2
22529:
22530: * src/targets/cgi/parser3.C: not cgi extra \n
22531:
22532: * src/main/pa_sql_driver_manager.C: z
22533:
22534: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
22535: sql* removed services from disconnect - cross-request ideological
22536: probs.
22537:
22538: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
22539: cross-request ideological probs. oracle - fixed bug: cs
22540: allocated on request.pool and got freed before disconnect
22541:
22542: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
22543: mallocs fixed
22544:
22545: 2001-08-23 parser
22546:
22547: * src/classes/file.C: minor bug in file:save fixed
22548:
22549: * src/main/pa_sql_driver_manager.C: oracle: dlink
22550:
22551: 2001-08-22 parser
22552:
22553: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
22554: types/pa_vfile.h: file:load|save[text|binary;
22555:
22556: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
22557:
22558: 2001-08-21 parser
22559:
22560: * src/classes/: file.C, table.C: ^file:list
22561:
22562: 2001-08-20 parser
22563:
22564: * src/: main/compile.tab.C, main/compile.y,
22565: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
22566: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
22567: recousively caused problems: inc incremeted 123 literal!! fixed
22568:
22569: 2001-08-10 parser
22570:
22571: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
22572:
22573: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22574: added
22575:
22576: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
22577: added
22578:
22579: * src/classes/table.C: table:sort restored [it was bad test :(]
22580:
22581: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
22582: ''
22583:
22584: * src/main/: pa_request.C: wanted to make const int
22585: MAX_EXECUTE_SECONDS=1;
22586:
22587: but couldnt, set_callback_and_alarm appeared to be not exported
22588: :(
22589:
22590: * src/main/pa_string.C: string.match hanged on. there were a hang
22591: check but it weren't wise enough
22592:
22593: @parse[dateString][tmp]
22594: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
22595: #end
22596:
22597: @main[] ^parse[2001-02-03]
22598:
22599: * src/classes/: table.C: table:sort now default desc
22600:
22601: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
22602: table.sort now creates new sorted table
22603:
22604: 2001-08-09 parser
22605:
22606: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
22607:
22608: * src/classes/hash.C: hash:_default now [was hash:default]
22609:
22610: * src/classes/op.C: case without switch check added
22611:
22612: * src/types/pa_vcookie.C: cookie name&value origins added, more
22613: precise $ORIGINS(1)
22614:
22615: * src/main/Makefile.am: .am
22616:
22617: * src/classes/void.C: void: int double copy/paste from int: bug
22618: fixed
22619:
22620: * src/classes/void.C: void: int double copy/paste from int: bug
22621: fixed
22622:
22623: 2001-08-07 parser
22624:
22625: * src/: classes/double.C, classes/int.C, classes/string.C,
22626: classes/table.C, include/pa_globals.h, main/pa_globals.C:
22627: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
22628: string, table
22629:
22630: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
22631: srand made working
22632:
22633: 2001-08-06 parser
22634:
22635: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
22636: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
22637: main/compile.tab.C, main/compile.y, main/pa_array.C,
22638: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
22639: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
22640:
22641: * src/main/pa_exec.C: exec win32 real filename
22642:
22643: * src/classes/file.C: exec stderr out
22644:
22645: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
22646:
22647: 2001-08-03 parser
22648:
22649: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
22650:
22651: 2001-08-02 parser
22652:
22653: * src/: classes/string.C, classes/table.C, include/pa_array.h,
22654: main/execute.C, main/pa_exec.C: introducing Array_iter
22655:
22656: * src/main/execute.C: detected quick_get recursion bug. changed to
22657: get@execute, but needs array iterator, separate from array to
22658: avoid it & use caching
22659:
22660: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
22661: bug fixed
22662:
22663: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
22664: main/execute.C, main/pa_globals.C: found another multithread bug
22665: in op.C (last, last global var killed) :)
22666:
22667: 2001-08-01 parser
22668:
22669: * src/: include/pa_dictionary.h, include/pa_globals.h,
22670: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
22671: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22672: main/untaint.C: speeded up typo-html replacements. introducing
22673: Dictionary with first-char caching
22674:
22675: 2001-07-31 parser
22676:
22677: * src/types/Makefile.am: pa_vtable.C added to .am
22678:
22679: * src/main/compile.tab.C: added, so that could be compiled even on
22680: non-bison-enabled platforms
22681:
22682: 2001-07-28 parser
22683:
22684: * src/classes/table.C: table:hash always produces hash, when can't
22685: - empty
22686:
22687: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
22688: skipped \n
22689:
22690: 2001-07-27 parser
22691:
22692: * src/classes/: double.C, int.C, string.C: provided meaningful msg
22693: on int/double/string :sql without result and default
22694:
22695: 2001-07-26 parser
22696:
22697: * src/classes/op.C: fixed bad multithread bug with strangly global
22698: OP
22699:
22700: * src/main/compile.y: $man[$.age[zzz]] 0
22701:
22702: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
22703: creation syntax problem persists. restored $: for a while.
22704: thinking of $man[$.age[zzz]] syntax now
22705:
22706: * src/: classes/double.C, classes/int.C, classes/string.C,
22707: include/pa_opcode.h, main/compile.C, main/compile.y,
22708: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
22709: types/pa_vmethod_frame.h, types/pa_wcontext.h,
22710: types/pa_wwrapper.h: fixing :: realization #1
22711:
22712: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
22713: main/compile_tools.h, main/execute.C, main/pa_request.C,
22714: types/pa_vmethod_frame.h: introducing :: this is constructor call
22715: prefix. ordinary : remains for static accesses
22716:
22717: 2001-07-25 parser
22718:
22719: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
22720: fields 2. methods 3. columns
22721:
22722: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
22723: quote. optimized double&int tostring-s
22724:
22725: * src/main/: compile.C, compile.y, compile_tools.h: allowed
22726: whitespace before first method decl
22727:
22728: * src/classes/table.C: allowed nontable result in table:sql,
22729: results in empty table
22730:
22731: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
22732: lines before first method decl
22733:
22734: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
22735: types/pa_vtable.h: ^table.record[] now $table.fields
22736:
22737: * src/main/compile.y: $var[] is now empty string, not void
22738:
22739: * src/main/: compile.y, execute.C: $var[] is now empty string, not
22740: void
22741:
22742: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
22743: main/pa_globals.C: match replace code context moved to implicit
22744: $match context
22745:
22746: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
22747: main/compile_tools.h, main/execute.C: with killed, code storage
22748: introduced with former 'with' syntax
22749:
22750: 2001-07-24 parser
22751:
22752: * src/: main/compile.C, main/execute.C, main/pa_string.C,
22753: types/pa_value.h: first get_element, next get operator
22754:
22755: * src/main/compile.y: removed @end handling
22756:
22757: * src/main/: compile.C, compile.y: @end handling method2
22758:
22759: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
22760: file:move
22761:
22762: * src/main/pa_common.C: file_read close @ eof when imgsize bug
22763: fixed
22764:
22765: 2001-07-23 parser
22766:
22767: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
22768: driver
22769:
22770: * src/classes/hash.C: changed sql driver query interface
22771:
22772: * src/: classes/hash.C, classes/string.C, classes/table.C,
22773: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
22774: changed sql driver query interface
22775:
22776: 2001-07-20 parser
22777:
22778: * src/types/pa_vrequest.C: X!$browser:type
22779:
22780: * src/: classes/file.C, classes/string.C, include/pa_string.h,
22781: main/execute.C, main/pa_string.C, types/pa_valiased.C,
22782: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
22783: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
22784: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
22785: types/pa_vobject.h, types/pa_vrequest.C,
22786: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
22787: ^class:method dynamic calls allowed. ^BASE.method call disabled.
22788: BASE element globally removed
22789:
22790: 2001-07-18 parser
22791:
22792: * src/classes/file.C: file:exec/cgi msg
22793:
22794: * src/classes/file.C: $file:exit-code renamed to 'status'
22795:
22796: * src/: classes/file.C, main/pa_exec.C: file:exec
22797:
1.116 moko 22798: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
22799: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
22800: removed $id from *.in *.am
1.95 moko 22801:
22802: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
22803: abbrevations
22804:
22805: * src/: classes/date.C, classes/mail.C, classes/math.C,
22806: classes/string.C, classes/table.C, include/pa_globals.h,
22807: include/pa_string.h, main/execute.C, main/pa_globals.C,
22808: main/pa_request.C, main/pa_string.C, main/untaint.C,
22809: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
22810: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
22811: $ORIGINS(1) output tracing mode
22812:
22813: 2001-07-13 parser
22814:
22815: * src/: classes/double.C, classes/int.C, classes/string.C,
22816: include/pa_request.h, main/execute.C, main/pa_request.C:
22817: auto.p[@auto], /news/auto.p[no @auto], so that initializing
22818: second would not call first @auto
22819:
22820: * src/main/: execute.C, pa_request.C: order of MAIN parents was
22821: wrong, fixed
22822:
22823: 2001-07-12 parser
22824:
22825: * src/types/pa_value.h: pa_value.putelement modification of system
22826: classes prevented
22827:
22828: 2001-07-11 parser
22829:
22830: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
22831: table $piece
22832:
22833: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22834: types/pa_vstateless_class.h: $file created by file:state +=
22835: .atime .mtime .ctime +found&fixed bug with exceptions on
22836: get_junction-created objects [they were on wrong pool]
22837:
22838: 2001-07-09 parser
22839:
22840: * src/main/untaint.C: qp wrong name
22841:
22842: * src/: classes/date.C, classes/string.C, classes/table.C,
22843: main/compile.y: date format 0
22844:
22845: 2001-07-07 parser
22846:
22847: * src/: classes/date.C, classes/table.C, include/pa_common.h,
22848: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
22849: roll table calendar
22850:
22851: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
22852: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
22853: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
22854: include/pa_request.h, main/main.dsp, types/pa_value.h,
22855: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
22856: string. todo: sql, calendar
22857:
22858: 2001-07-06 parser
22859:
22860: * src/: classes/math.C, include/pa_request.h, main/execute.C,
22861: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
22862:
22863: 2001-07-03 parser
22864:
22865: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
22866: classes/random.C, main/main.dsp: class random renamed to math,
22867: operators became methods
22868:
22869: * src/classes/op.C: pow sqrt
22870:
22871: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
22872:
22873: 2001-07-02 parser
22874:
22875: * src/classes/table.C: ^table.columns column renamed from 'name' to
22876: 'column'
22877:
22878: * src/classes/hash.C: ^hash.keys[]
22879:
22880: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
22881:
22882: * src/main/: compile.y, compile_tools.h: in expressions now allowed
22883: 'strings'
22884:
22885: 2001-06-29 parser
22886:
22887: * src/main/: execute.C: /0 %0 checkes ver 2
22888:
22889: * src/main/execute.C: /0 %0 checke
22890:
22891: * src/classes/Makefile.am: nothing - void
22892:
22893: * src/classes/table.C: empty strings @ sql
22894:
22895: 2001-06-28 parser
22896:
22897: * src/: classes/double.C, classes/file.C, classes/form.C,
22898: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22899: classes/op.C, classes/random.C, classes/response.C,
22900: classes/string.C, classes/table.C, classes/void.C,
22901: main/compile.C, main/compile_tools.C, main/execute.C,
22902: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22903: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22904: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22905: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22906: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22907: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22908: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22909: $";
22910:
22911: * src/: classes/double.C, classes/file.C, classes/form.C,
22912: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22913: classes/op.C, classes/random.C, classes/response.C,
22914: classes/string.C, classes/table.C, classes/void.C,
22915: main/compile.C, main/compile.y, main/compile_tools.C,
22916: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22917: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22918: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22919: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22920: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22921: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22922:
22923: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22924: $class:name: == ${class:name}:
22925:
22926: * src/classes/string.C: exactly one
22927:
22928: 2001-06-27 parser
22929:
22930: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22931: types/pa_vvoid.h: nothing renamed to void
22932:
22933: * src/classes/op.C: ^switch ^case
22934:
22935: * src/main/compile.y: nothing renamed to void
22936:
22937: * src/: classes/hash.C, classes/table.C, main/compile.y,
22938: main/execute.C, main/main.dsp, main/pa_request.C,
22939: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22940: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22941: void
22942:
22943: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22944:
22945: 2001-05-28 parser
22946:
22947: * src/doc/html2chm.cmd: removed >a
22948:
22949: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22950: project options [some bugs]
22951:
22952: * src/doc/sources2html.cmd: z
22953:
22954: * src/: classes/classes.C, main/compile.C, main/compile.y,
22955: main/execute.C: operators are not in root class again
22956:
22957: 2001-05-24 parser
22958:
22959: * src/targets/cgi/parser3.dsp: project file
22960:
22961: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22962: ^log ^exp
22963:
22964: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22965: conversions in @exception[params]
22966:
22967: * src/main/pa_request.C: // no _ conversions in @exception[params]
22968:
22969: 2001-05-23 parser
22970:
22971: * src/main/pa_string.C: string cmp bug
22972:
22973: * src/classes/: mail.C, op.C: rem max 1000
22974:
22975: * src/: classes/op.C, main/compile.y: allow one empty line before
22976: LS_DEF_NAME
22977:
22978: 2001-05-22 parser
22979:
22980: * src/classes/op.C: if params code-required
22981:
22982: 2001-05-21 parser
22983:
22984: * src/types/pa_vstring.C: eoleof
22985:
22986: * src/classes/Makefile.am: .AM
22987:
22988: * src/classes/nothing.C: resultless ^sql moved to nothing:
22989:
22990: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22991:
22992: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22993: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22994: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22995: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22996: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22997: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22998: 'nothing'
22999:
23000: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
23001: vstring::set_string
23002:
23003: * src/classes/: double.C, int.C, string.C: int,double;sql
23004:
23005: * src/: classes/hash.C, classes/int.C, classes/string.C,
23006: classes/table.C, include/pa_string.h, main/pa_string.C,
23007: types/pa_vstring.C, types/pa_vstring.h: started int:sql
23008:
23009: * src/: classes/classes.C, classes/hash.C, classes/op.C,
23010: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
23011: hash:sql moved to main trunc. operators.txt updated
23012:
23013: * src/classes/: hash.C, op.C, table.C: hash:sql
23014:
23015: * src/classes/op.C: z
23016:
23017: * src/: main/compile.C, classes/classes.C: 1
23018:
23019: * src/: classes/classes.C, main/compile.C, main/compile.y,
23020: main/execute.C: 0
23021:
23022: * src/main/execute.C: z
23023:
23024: * src/targets/cgi/parser3.C: z
23025:
23026: * src/targets/cgi/parser3.C: argv can be just "parser3". made
23027: site_auto_path "." in that case
23028:
23029: * src/targets/cgi/: parser3.C: z
23030:
23031: * src/main/pa_request.C: .am
23032:
23033: * src/: main/pa_request.C, targets/cgi/parser3.C:
23034: pcre_tables=pcre_default_tables;
23035:
23036: 2001-05-19 parser
23037:
23038: * src/main/pa_string.C: z
23039:
23040: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
23041: introducing String::cstr_bufsize, returns just size+1 for as_is
23042: target.
23043:
23044: * src/: main/untaint.C, targets/cgi/pa_pool.C,
23045: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
23046: used, 4* mem wasted
23047:
23048: * src/classes/string.C: root context in match replace body now
23049: unchanged
23050:
23051: * src/types/pa_value.h: parameter # 1 based
23052:
23053: * src/main/pa_common.C: common: actual filename '%s'
23054:
23055: * src/classes/string.C: z
23056:
23057: * src/classes/Makefile.am: classes/.am
23058:
23059: * src/classes/: Makefile.am: classes/.am
23060:
23061: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
23062: targets/cgi/pa_pool.C: classes/.am
23063:
23064: 2001-05-18 parser
23065:
1.116 moko 23066: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
23067: pa_threads.C ins
1.95 moko 23068:
23069: * src/targets/cgi/Makefile.am: .am pa_threads.C added
23070:
23071: 2001-05-17 parser
23072:
23073: * src/: classes/string.C, include/pa_config_fixed.h,
23074: include/pa_config_includes.h, main/compile.y,
23075: main/compile_tools.h, main/execute.C, main/pa_array.C,
23076: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
23077: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
23078: types/pa_vform.C: #include "pa_config_includes.h" removed from
23079: most .C
23080:
23081: * src/doc/html2chm.cmd: z
23082:
23083: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
23084: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
23085:
23086: * src/main/pa_sql_driver_manager.C: moved expiration to
23087: get_connection_from_cache
23088:
23089: * src/main/pa_sql_driver_manager.C: cache expiration bf
23090:
23091: * src/: classes/classes.h, include/pa_sql_connection.h,
23092: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
23093: cache expiration[use SQL_Driver::disconnect]
23094:
23095: * src/main/pa_table.C: table.locate current restored on "not found"
23096:
23097: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
23098: line no
23099:
23100: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
23101: ANTI_ENDLESS_EXECUTE_RECOURSION
23102:
23103: * src/: classes/op.C, include/pa_sql_connection.h,
23104: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
23105: sql/pa_sql_driver.h: fixed problem at last: 2connections own
23106: 1driver and set_services fight for driver::fservices. before fix
23107:
23108: * src/: classes/op.C, include/pa_config_fixed.h,
23109: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
23110: main/pa_sql_driver_manager.C: found problem at last: 2connections
23111: own 1driver and set_services fight for driver::fservices. before
23112: fix
23113:
23114: * src/: include/pa_config_fixed.h, include/pa_threads.h,
23115: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
23116: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
23117: pa_threads.C
23118:
23119: * src/include/pa_threads.h: removed targets/parser
23120:
23121: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
23122: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
23123: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
23124: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
23125: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
23126: headers
23127:
23128: * src/: classes/image.C, include/pa_sql_driver_manager.h,
23129: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
23130: order prevented sqlmanager to see MULTYTHREAD define
23131:
23132: * src/: include/pa_config_fixed.h, include/pa_threads.h,
23133: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
23134: put/gets
23135:
23136: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
23137: from hash.h
23138:
23139: * src/: classes/op.C, include/pa_sql_connection.h,
23140: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
23141: from cache ->set_services(&services);
23142:
23143: 2001-05-16 parser
23144:
23145: * src/targets/cgi/parser3.C: z
23146:
23147: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
23148: debug, #ifdefed some. would debug later, on more precise sample
23149: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
23150: $name.$tail[$tail!] $name.$tail } ok3
23151:
23152: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
23153: removed array debug. before vstring rebasing
23154:
23155: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
23156: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
23157: array debugged; adjusted
23158:
23159: * src/main/: pa_sql_driver_manager.C, pa_string.C:
23160: SQL_Driver_manager line no for connect/charset errors
23161:
23162: 2001-05-15 parser
23163:
23164: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
23165: main/pa_string.C: string+array made linear grows
23166:
23167: * src/: include/pa_string.h, main/pa_string.C,
23168: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
23169: grow lineary, not exponentialy
23170:
23171: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
23172: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
23173: with fullchunk cmps
23174:
23175: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
23176: 70041= 81
23177:
23178: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
23179: targets/cgi/parser3.C: detected huge mem allocation: size/times
23180: malloc 27809390/368771, calloc 3232/83. would test now
23181:
23182: * src/: classes/random.C, main/compile.y, main/execute.C,
23183: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
23184: numbered params had wrong name - for instance: bad error message
23185: in ^for[] bad body type. fixed
23186:
23187: 2001-05-14 parser
23188:
23189: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
23190: main/untaint.C: ^string.upper|lower[]
23191:
23192: 2001-05-11 parser
23193:
23194: * src/: classes/double.C, classes/image.C, classes/op.C,
23195: classes/string.C, classes/table.C, classes/unknown.C,
23196: main/execute.C, types/pa_value.h, types/pa_vbool.h,
23197: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
23198: types/pa_vunknown.h: op: MAX_LOOPS as_int
23199:
23200: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
23201: .dsp for win32tools
23202:
23203: 2001-05-11 paf
23204:
23205: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
23206: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
23207: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
23208: targets/isapi/kill.pl: moved win32 helpers to /win32tools
23209:
23210: 2001-05-10 paf
23211:
23212: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
23213: for C++, that's all
23214:
1.116 moko 23215: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
23216: pa_config_includes.h: inline wonders
1.95 moko 23217:
23218: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
23219: doc/doxygen.cmd: hash.C added
23220:
23221: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
23222:
23223: * src/main/compile.y: @end grammar: allowed zero strings in control
23224: menthod
23225:
23226: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
23227: pa_vstateless_object.h: changed priority: field before method
23228: lookup in vclass & vobject
23229:
23230: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
23231: grammar: priorities changes [lowerd && prior] vobject: now first
23232: fields, next methods
23233:
23234: 2001-05-08 paf
23235:
23236: * src/main/pa_table.C: table columnname2item on nameless ignored
23237: bark=false. fixed
23238:
23239: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
23240: types/pa_vmethod_frame.h: hash:default works at last!
23241:
23242: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
23243: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
23244: hash:default
23245:
23246: * src/classes/table.C: z
23247:
23248: * src/classes/table.C: table:hash always hash of hash now
23249:
23250: * src/classes/table.C: table:empty return bool now
23251:
23252: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
23253: include/pa_table.h, main/pa_table.C, types/pa_value.h,
23254: types/pa_vtable.h: table:hash
23255:
23256: * src/classes/table.C: table:record have name
23257:
23258: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
23259: returns vunknown
23260:
23261: * src/classes/: double.C, int.C, op.C, string.C:
23262: int,double,string:int[] double[] string:length[] results now have
23263: hames
23264:
23265: * src/: classes/op.C, classes/table.C, main/main.dsp,
23266: types/pa_vtable.h: removed table:find. table:locate and op:eval
23267: now return bool
23268:
23269: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
23270: in method checkparams again. fixed
23271:
23272: 2001-05-07 paf
23273:
23274: * src/doc/chm.cmd: cmd
23275:
23276: * src/: classes/image.C, classes/mail.C, classes/string.C,
23277: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
23278: types/pa_value.h: method reported errors on wrong pool
23279:
23280: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
23281: now
23282:
23283: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
23284: include/code.h, include/pa_opcode.h, main/compile.C,
23285: main/compile_tools.h, main/execute.C, types/pa_value.h,
23286: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23287: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
23288: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
23289: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
23290: types/pa_vmethod_frame.h, types/pa_vobject.h,
23291: types/pa_vrequest.h, types/pa_vresponse.h,
23292: types/pa_vstateless_class.h, types/pa_vstring.h,
23293: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
23294: types/pa_wwrapper.h: pa_code.h
23295:
23296: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
23297:
23298: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
23299: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
23300: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
23301: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
23302: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
23303: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
23304: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
23305: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
23306: types/pa_vtable.h: dox, split by not clean parts also
23307:
23308: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
23309: types/pa_vtable.h: table: fields, then methods. so to enable
23310: 'dir' fields & co. more
23311:
23312: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
23313: so to enable 'dir' fields & co.
23314:
23315: * src/main/compile.y: grammar: @end
23316:
23317: 2001-05-04 paf
23318:
23319: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
23320: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
23321:
23322: * src/: classes/classes.h, classes/double.C, classes/file.C,
23323: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
23324: classes/op.C, classes/random.C, classes/response.C,
23325: classes/string.C, classes/table.C, classes/unknown.C,
23326: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
23327: method dox
23328:
23329: 2001-05-03 paf
23330:
23331: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
23332: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
23333: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
23334: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
23335: doc/string.dox, doc/targets.dox, doc/value.dox,
23336: main/pa_request.C: dox splitted .dox files and added some
23337:
23338: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
23339:
23340: 2001-05-02 paf
23341:
23342: * src/classes/: image.C, table.C: table:dir result are not tainted
23343: by file_name language now
23344:
23345: 2001-04-28 paf
23346:
23347: * src/classes/classes.inc: removed classes.inc
23348:
23349: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
23350: from .am
23351:
23352: * src/classes/classes.awk: skipped classes in .awk
23353:
23354: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
23355: classes/classes.inc, classes/double.C, classes/file.C,
23356: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
23357: classes/string.C, classes/table.C, classes/unknown.C,
23358: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
23359: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
23360: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
23361: pa_methoded back to classes/classes.h
23362:
23363: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
23364:
23365: * src/: classes/Makefile.am, classes/classes.awk,
23366: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
23367: classes/ls.exe, main/bison.exe: classes.inc autogenerator
23368:
23369: * src/: classes/classes.C, classes/classes.h, classes/double.C,
23370: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
23371: classes/response.C, classes/string.C, classes/table.C,
23372: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
23373: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
23374: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
23375: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
23376: include|main/pa_methoded
23377:
23378: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
23379: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
23380:
23381: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
23382: moved some configured data to request::classes_conf moved some
23383: string crations from globals to M... [works]
23384:
23385: * src/: classes/form.C, classes/mail.C, classes/op.C,
23386: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
23387: main/pa_request.C: moved some configured data to
23388: request::classes_conf moved some string crations from globals to
23389: M...
23390:
23391: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
23392: about to move configured data to special request hash
23393:
23394: * src/: classes/classes.C, classes/classes.h, classes/file.C,
23395: classes/form.C, classes/mail.C, include/pa_request.h,
23396: main/pa_request.C: configure started
23397:
23398: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
23399: 2. todo: methoded-configure
23400:
23401: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23402: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23403: classes/_random.h, classes/_response.h, classes/_string.h,
23404: classes/_table.h, classes/_unknown.h, classes/classes.inc,
23405: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23406: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23407: classes/random.C, classes/response.C, classes/string.C,
23408: classes/table.C, classes/unknown.C, include/pa_globals.h,
23409: include/pa_request.h, main/compile.y, main/execute.C,
23410: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23411: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23412: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
23413: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
23414: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23415: types/pa_vrequest.h, types/pa_vresponse.h,
23416: types/pa_vstateless_class.h, types/pa_vstring.h,
23417: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
23418: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
23419: methoded-configure
23420:
23421: * src/: classes/file.C, classes/table.C, main/compile.y,
23422: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
23423: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
23424: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
23425:
23426: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
23427: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
23428: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23429: classes/random.C, classes/response.C, classes/string.C,
23430: classes/table.C, classes/unknown.C, include/pa_request.h,
23431: main/compile.y, main/execute.C, main/pa_globals.C,
23432: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
23433: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
23434: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
23435: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
23436: beautifying just compiled. todo: debug, configure
23437:
23438: 2001-04-27 paf
23439:
23440: * src/: classes/file.C, classes/image.C, classes/table.C,
23441: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
23442: beautifying -99
23443:
23444: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
23445: classes/_response.h, classes/_unknown.h, classes/classes.C,
23446: classes/classes.h, classes/double.C, classes/file.C,
23447: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
23448: classes/op.C, classes/random.C, classes/response.C,
23449: classes/string.C, include/pa_globals.h, main/main.dsp,
23450: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
23451: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
23452: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
23453: types/pa_vunknown.h: beautifying -100
23454:
23455: * src/main/compile.y: serge@ found @CLASS bug. fixed
23456:
23457: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
23458: classes/_op.h, classes/_random.h, classes/_table.h,
23459: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
23460: classes/op.C, classes/random.C, classes/response.C,
23461: classes/string.C, classes/table.C, classes/unknown.C,
23462: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23463: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23464: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
23465: beautifying
23466:
23467: 2001-04-26 paf
23468:
23469: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
23470:
23471: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
23472: documentation ++
23473:
23474: * src/: classes/_exec.h, doc/doxygen.cfg,
23475: include/pa_config_fixed.h, include/pa_config_includes.h,
23476: targets/cgi/pa_pool.C: code documentation ++
23477:
23478: * src/: classes/_image.h, classes/op.C, classes/random.C,
23479: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23480: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
23481: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
23482: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
23483: types/pa_vmethod_frame.h, types/pa_vobject.h,
23484: types/pa_vrequest.C, types/pa_vrequest.h,
23485: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
23486: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
23487: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
23488: code documentation ++
23489:
23490: * src/: classes/image.C, classes/mail.C, classes/string.C,
23491: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
23492: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
23493: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
23494: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
23495: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
23496: types/pa_vobject.h, types/pa_vstateless_class.h,
23497: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
23498:
23499: * src/main/: pa_request.C, pa_string.C: z
23500:
23501: * src/: include/pa_common.h, include/pa_types.h,
23502: main/pa_sql_driver_manager.C: module [and, guess, isapi]
23503: connection caching fixed. request-pooled-url were stored into
23504: global connectioncache
23505:
23506: 2001-04-25 paf
23507:
23508: * src/: doc/doxygen.cfg, doc/doxygen.txt,
23509: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
23510:
23511: * src/: include/code.h, include/pa_common.h, main/compile.y,
23512: main/execute.C, main/pa_common.C: -d
23513:
23514: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
23515: illegal call check a bit improved, but still under iis no mapping
23516: of dir with parser allowed!
23517:
23518: 2001-04-24 paf
23519:
23520: * src/targets/Makefile.am: apache module lib .am
23521:
23522: * src/main/pa_exec.C: windows32 buildCommand
23523:
23524: 2001-04-23 paf
23525:
23526: * src/targets/cgi/Makefile.am: win32 conditional
23527:
23528: * src/targets/cgi/Makefile.am: win32 conditional
23529:
23530: * src/targets/cgi/Makefile.am: liblink
23531:
23532: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
23533: vfile fields return type
23534:
23535: * src/types/pa_vfile.h: vfile fields return type
23536:
23537: * src/include/pa_config_auto.h.in: .h.in
23538:
23539: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
23540: types/Makefile: makefiles removed
23541:
23542: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
23543: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
23544:
23545: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
23546: [tested: i & g ]
23547:
23548: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
23549: @test noticed series in isapi, check how initialize_random_class
23550: is called! [must be called only once]
23551:
23552: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
23553: would not be 'unknown column'
23554:
23555: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
23556: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
23557:
23558: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
23559: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
23560: [now doesnt]
23561:
23562: * src/targets/cgi/parser3.C: cgi cmdline ver
23563:
23564: * src/targets/cgi/parser3.C: cgi /// @test disable
23565: /cgi-bin/parser3/auto.p
23566:
23567: * src/main/untaint.C: untaint without charset
23568:
23569: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23570: main/pa_common.C: common: file_write /// @test mkdirs
23571: file_delete rmdirs
23572:
23573: * src/main/untaint.C: mail header only once to =?
23574:
23575: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
23576: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
23577: main/untaint.C: untaint - @test optimize whitespaces for
23578: all but 'html'
23579:
23580: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
23581: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23582: main/untaint.C: untaint - @test mail-header
23583:
23584: 2001-04-20 paf
23585:
23586: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
23587: include/pa_request.h, include/pa_string.h, main/compile.y,
23588: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23589: targets/cgi/parser3.C: $MAIN:LOCALE
23590:
23591: * src/main/untaint.C: z
23592:
23593: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
23594:
23595: 2001-04-19 paf
23596:
23597: * src/main/compile_tools.h: $a$b bugfix
23598:
23599: * src/targets/cgi/parser3.C: z
23600:
23601: * src/classes/file.C: z
23602:
23603: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
23604: done: header to $fields. waits for header '\' tricks
23605:
23606: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23607: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
23608: changed urlencode here and in untaint.C to HTTP standard's " and
23609: \" mech
23610:
23611: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
23612: http://alx/~paf/ doesnt load /auto.p
23613:
23614: 2001-04-18 paf
23615:
23616: * src/main/pa_request.C: 1
23617:
23618: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
23619: linux @alx
23620:
23621: 2001-04-17 paf
23622:
23623: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
23624: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
23625: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
23626: enabled
23627:
23628: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23629: classes/_exec.h, classes/_file.h, classes/_form.h,
23630: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23631: classes/_random.h, classes/_response.h, classes/_string.h,
23632: classes/_table.h, classes/_unknown.h, classes/file.C,
23633: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
23634: include/pa_config_fixed.h, include/pa_config_includes.h,
23635: include/pa_hash.h, include/pa_sql_driver_manager.h,
23636: include/pa_version.h, main/Makefile.am, main/compile.y,
23637: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
23638: main/pa_sql_driver_manager.C, sql/Makefile.am,
23639: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
23640: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
23641: types/pa_vform.C, types/pa_vimage.h: exec @jav
23642:
23643: * src/: include/pa_sql_driver_manager.h,
23644: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
23645: types/pa_vimage.h: sql driver interface now has initialize(client
23646: .so)
23647:
23648: 2001-04-16 paf
23649:
23650: * src/Makefile.am: compile2 cygwin
23651:
23652: * src/: include/pa_config_includes.h, main/pa_exec.C,
23653: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
23654:
23655: * src/targets/cgi/Makefile.am: compile0 jav
23656:
23657: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
23658: classes/_exec.h, classes/_file.h, classes/_form.h,
23659: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
23660: classes/_random.h, classes/_response.h, classes/_string.h,
23661: classes/_table.h, classes/_unknown.h, classes/image.C,
23662: classes/mail.C, classes/op.C, classes/random.C,
23663: include/pa_config_fixed.h, include/pa_config_includes.h,
23664: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
23665: main/compile.y, main/pa_common.C, main/pa_exec.C,
23666: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
23667: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
23668: compile-1
23669:
23670: 2001-04-15 paf
23671:
23672: * src/classes/op.C: z
23673:
23674: * src/classes/table.C: table:empty +=process
23675:
23676: * src/types/pa_value.h: MethodParams !junction
23677:
23678: * src/: classes/_string.h, classes/double.C, classes/file.C,
23679: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
23680: classes/random.C, classes/response.C, classes/string.C,
23681: classes/table.C, classes/unknown.C, main/pa_request.C:
23682: MethodParams everywhere
23683:
23684: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
23685: types/pa_vmethod_frame.h: MethodParams in op.C
23686:
23687: 2001-04-12 paf
23688:
23689: * src/: classes/image.C, types/pa_vimage.h: image:font :text
23690:
23691: * src/: classes/_unknown.h, classes/unknown.C,
23692: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
23693: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
23694:
23695: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
23696:
23697: * src/classes/image.C: image:gif now does not have params
23698:
23699: * src/classes/image.C:
23700: image:line/fill/rectangle/bar/replace/polygon/polybar
23701:
23702: * src/: classes/image.C, classes/op.C, main/execute.C,
23703: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
23704: for var now written not to r.wcontext, but to r.root cleared
23705: "entered_object" state
23706:
23707: 2001-04-11 paf
23708:
23709: * src/classes/image.C: image:create image:load
23710:
23711: * src/: classes/image.C, main/main.dsp: gd with mem write + image
23712: just compiled
23713:
23714: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23715: todo: gif without file
23716:
23717: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
23718: started porting to Pooled descendant
23719:
23720: * src/: classes/image.C, main/execute.C, main/main.dsp,
23721: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
23722: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
23723: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
23724:
23725: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
23726: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
23727: end. switching to python imaging lib
23728:
23729: * src/main/main.dsp: gd+smtp made separate libs
23730:
23731: * src/: include/pa_globals.h, include/pa_string.h,
23732: main/pa_common.C, main/pa_request.C, main/untaint.C,
23733: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
23734: length
23735:
23736: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
23737: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
23738: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
23739: UL_FILE_NAME of posted file name
23740:
23741: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
23742: post [broke when moved post read to core]
23743:
23744: 2001-04-10 paf
23745:
23746: * src/classes/image.C: image:html done
23747:
23748: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
23749:
23750: * src/classes/image.C: z
23751:
23752: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
23753: forgotten!
23754:
23755: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23756: main/pa_request.C, main/pa_string.C, main/untaint.C,
23757: types/pa_vimage.h: image:measure -90
23758:
23759: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
23760: classes/_int.h, classes/_mail.h, classes/_op.h,
23761: classes/_random.h, classes/_response.h, classes/_string.h,
23762: classes/_table.h, classes/file.C, classes/mail.C,
23763: include/pa_common.h, include/pa_globals.h, main/execute.C,
23764: main/main.dsp, main/pa_common.C, main/pa_globals.C,
23765: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
23766: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
23767: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
23768: compiled
23769:
23770: * src/classes/mail.C: minor bug with unclear from/to
23771:
23772: * src/classes/mail.C: sendmail unix skipping defaults
23773:
23774: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
23775: sendmail unix added defaults
23776:
23777: * src/classes/mail.C: unix sendmail compiled. todo:testing
23778:
23779: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
23780:
23781: 2001-04-09 paf
23782:
23783: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
23784: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
23785: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
23786: targets/isapi/parser3isapi.dsp: all targets exec
23787:
23788: * src/: include/pa_sapi.h, include/pa_string.h,
23789: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23790: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
23791: args in apache:util.script
23792:
23793: * src/include/pa_string.h: written but not tested exec with env for
23794: unix
23795:
23796: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
23797: targets/cgi/parser3.C: exec win32 env
23798:
23799: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
23800: 0
23801:
23802: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
23803: main/execute.C, main/main.dsp, main/pa_globals.C,
23804: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
23805: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
23806:
23807: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
23808: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
23809:
23810: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
23811: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
23812:
23813: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
23814: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
23815: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23816: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23817: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
23818: exec class just compiled. moved post read to request core
23819:
23820: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
23821: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
23822: main/pa_globals.C, targets/cgi/parser3.C,
23823: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
23824: are already read by vform
23825:
23826: 2001-04-08 paf
23827:
23828: * src/: classes/file.C, classes/mail.C, classes/string.C,
23829: include/pa_request.h, include/pa_string.h, main/pa_request.C:
23830: uuencode. string<<
23831:
23832: 2001-04-07 paf
23833:
23834: * src/classes/mail.C: z
23835:
23836: * src/classes/mail.C: z
23837:
23838: * src/classes/mail.C: ^mail[$attach
23839:
23840: * src/classes/mail.C: ^attach dead end
23841:
23842: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
23843: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23844: targets/isapi/parser3isapi.C: mail:send 1
23845:
23846: * src/: classes/mail.C, main/pa_request.C: z
23847:
23848: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
23849: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
23850: compiled
23851:
23852: * src/classes/mail.C: +=
23853:
23854: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
23855: prepared
23856:
23857: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
23858: include/pa_globals.h, include/pa_string.h, main/main.dsp,
23859: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23860: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
23861:
23862: 2001-04-06 paf
23863:
23864: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
23865: main/pa_string.C: table:dir 1
23866:
23867: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
23868: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
23869:
23870: * src/: classes/_op.h, classes/_root.h, classes/op.C,
23871: classes/root.C, include/pa_globals.h, include/pa_request.h,
23872: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
23873: main/pa_request.C: renamed 'root' to 'op'
23874:
23875: * src/classes/: _op.h, op.C: renamed from 'root'
23876:
23877: * src/types/pa_valiased.C: another root inherititance skipped
23878:
23879: * src/main/: compile.C, compile.y, execute.C: operators are now not
23880: root methods of parent class. just 'ROOT' class
23881:
23882: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
23883: @office
23884:
23885: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
23886:
23887: 2001-04-05 paf
23888:
23889: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
23890: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
23891: constructor flag dropped at get_method_frame and remembered into
23892: method_frame
23893:
23894: * src/: classes/file.C, classes/root.C, classes/string.C,
23895: classes/table.C, main/pa_request.C: junction to code&expression
23896: in errors
23897:
23898: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23899: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23900: $LOCALE:ctype[Russian_Russia.1251]
23901:
23902: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23903: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23904: main/pa_table.C: hash now not thread-safe.
23905:
23906: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23907: main/untaint.C: z
23908:
23909: * src/: classes/random.C, classes/root.C, classes/table.C,
23910: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23911: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23912: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23913: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23914:
23915: * src/: classes/table.C, include/pa_sql_connection.h,
23916: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23917:
23918: * src/classes/table.C: select * from hren error contains statement
23919:
23920: * src/: classes/table.C, include/pa_sql_connection.h,
23921: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23922: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23923:
23924: * src/: classes/root.C, include/pa_sql_connection.h,
23925: include/pa_sql_driver.h, main/main.dsp,
23926: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23927: services for conv memory & error reporting
23928:
23929: 2001-04-04 paf
23930:
23931: * src/doc/doxygen.cfg: z
23932:
23933: * src/include/pa_sql_driver.h: mysql connect
23934:
23935: * src/include/pa_sql_driver.h: mysql info
23936:
23937: * src/: classes/root.C, include/pa_sql_driver.h,
23938: include/pa_sql_driver_manager.h, main/main.dsp,
23939: main/pa_sql_driver_manager.C: more manager&connection&driver
23940:
23941: * src/sql/Makefile.am: forgot to add mysql client
23942:
23943: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23944: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23945: [forgot to add libltdl, added]
23946:
23947: * src/: Makefile.am, classes/root.C, classes/string.C,
23948: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23949: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23950: include/pa_string.h, include/pa_table.h, main/main.dsp,
23951: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23952: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23953: -1000 just compiled
23954:
23955: * src/: classes/random.C, classes/root.C, classes/table.C,
23956: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23957: main/pa_request.C, types/pa_vclass.h: sql frame -10
23958:
23959: 2001-04-03 paf
23960:
23961: * src/types/pa_vform.C: z
23962:
23963: * src/: classes/string.C, types/pa_vform.C: string:match replace
23964: assigned lang
23965:
23966: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23967: {}[]< empty []
23968:
23969: * src/: classes/file.C, classes/string.C, classes/table.C,
23970: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23971: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23972:
23973: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23974: string:match replace strange matches
23975:
23976: * src/classes/string.C: string:match replace 0
23977:
23978: * src/: classes/string.C, main/pa_string.C: string:match replace
23979: prepared 2
23980:
23981: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23982: string:match replace prepared
23983:
23984: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23985: string:match replace -11
23986:
23987: * src/: classes/string.C, include/pa_globals.h,
23988: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23989: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23990:
23991: * src/: classes/string.C, include/pa_globals.h,
23992: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23993: main/pa_string.C: string:match [search] -1 just compiled
23994:
23995: * src/types/pa_vstring.C: z
23996:
23997: * src/: classes/double.C, classes/file.C, classes/form.C,
23998: classes/int.C, classes/response.C, classes/root.C,
23999: classes/string.C, classes/table.C, include/pa_string.h,
24000: main/pa_string.C: string:match -10 [frame]
24001:
24002: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
24003: main/pa_request.C: z
24004:
24005: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
24006: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
24007: todo/tests
24008:
24009: * src/include/pa_common.h: z
24010:
24011: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
24012: main/pa_request.C, targets/cgi/parser3.C,
24013: targets/isapi/parser3isapi.C, types/pa_vfile.C:
24014: content-disposition
24015:
24016: * src/: include/pa_common.h, include/pa_globals.h,
24017: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24018: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
24019:
24020: * src/: include/pa_common.h, include/pa_request.h,
24021: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
24022: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
24023: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
24024: response:body
24025:
24026: * src/classes/table.C: table:append now uses string::split
24027:
24028: * src/classes/table.C: z
24029:
24030: * src/: classes/file.C, classes/root.C, classes/string.C,
24031: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
24032: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
24033: include/pa_string.h, main/execute.C, main/pa_string.C,
24034: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
24035: string::pos & cmp & piece bugs fixed. string::split new
24036: table:load separated from set table:set implemented with clean \n
24037: \t searches
24038:
24039: 2001-04-02 paf
24040:
24041: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
24042: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
24043: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
24044: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
24045: it in table:set/load
24046:
24047: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
24048: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
24049:
24050: * src/classes/random.C: random:generate 1
24051:
24052: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
24053: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24054: types/pa_value.h: random:generate
24055:
24056: 2001-03-30 paf
24057:
24058: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
24059: todo: table flip and append. string::pos
24060:
24061: * src/: classes/double.C, classes/file.C, classes/int.C,
24062: classes/response.C, classes/root.C, classes/string.C,
24063: classes/table.C, main/compile.y, main/execute.C,
24064: types/pa_value.h, types/pa_vstateless_class.C,
24065: types/pa_vstateless_class.h: static|dynamic|any method
24066: registration
24067:
24068: * src/: classes/file.C, classes/table.C, include/pa_table.h,
24069: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
24070: table:flip
24071:
24072: 2001-03-29 paf
24073:
24074: * src/classes/string.C: string:xsplit forgot that they must result
24075: in 1 row N column [not vice versa]
24076:
24077: * src/classes/string.C: z
24078:
24079: * src/classes/string.C: string: rsplit
24080:
24081: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24082: string: lsplit
24083:
24084: * src/: classes/string.C, include/pa_string.h, main/execute.C,
24085: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
24086: lsplit -1
24087:
24088: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
24089: string: pos
24090:
24091: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
24092: string: pos -1
24093:
24094: * src/: classes/string.C, classes/table.C, include/pa_string.h,
24095: main/compile.y, main/pa_request.C, main/pa_string.C,
24096: main/untaint.C: string: left right mid
24097:
24098: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
24099: main/compile_tools.h, main/main.dsp, types/pa_value.h,
24100: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
24101: and [;] are different now.
24102:
24103: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
24104: main/untaint.C: pool.request undone
24105:
24106: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
24107: main/untaint.C: pool.request
24108:
24109: 2001-03-28 paf
24110:
24111: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
24112: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
24113: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
24114: $request:browser [.type .version]; unknown.get_double now = 0.
24115:
24116: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
24117: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
24118: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
24119: types/pa_vform.C: file:load autodetection of mime-type by
24120: user-file-name
24121:
24122: * src/: classes/file.C, main/execute.C, main/pa_common.C,
24123: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
24124: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
24125:
24126: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
24127: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
24128: write. must be self.set
24129:
24130: * src/: classes/file.C, classes/root.C, classes/table.C,
24131: include/pa_table.h, main/pa_table.C: table:locate1, file:test
24132:
24133: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
24134: include/pa_table.h, main/pa_array.C, main/pa_table.C,
24135: types/pa_vtable.h: table:locate just compiled
24136:
24137: 2001-03-27 paf
24138:
24139: * src/main/: execute.C, pa_common.C: fixed r/w context of
24140: code-params2, fixed ntfs hardlink slow dir update
24141:
24142: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
24143: types/pa_wcontext.h: fixed r/w context of code-params
24144:
24145: * src/: classes/table.C, main/execute.C: about to change junction
24146: rcontext!!
24147:
24148: * src/: classes/double.C, classes/int.C, classes/root.C,
24149: classes/string.C, classes/table.C, main/compile_tools.C,
24150: main/execute.C, main/pa_request.C, main/untaint.C,
24151: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
24152: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
24153: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
24154: types/pa_vunknown.h: sort 0
24155:
24156: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
24157: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
24158: renamed to are_static_calls_disabled
24159:
24160: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
24161: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
24162: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
24163: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
24164:
24165: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
24166:
24167: * src/: classes/table.C, include/pa_common.h, main/compile.y:
24168: started table:sort fixed minor bug in #...^{
24169:
24170: * src/: classes/table.C, include/pa_common.h, main/compile.y,
24171: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
24172: decided to have as it were. stepped back. grammar: added 'in'
24173: 'is' 'lt'&co follow-space check
24174:
24175: 2001-03-26 paf
24176:
24177: * src/: classes/file.C, classes/root.C, classes/table.C,
24178: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
24179: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24180: main/pa_table.C: moved ::save to pa_table. disabled @auto
24181: invocation in ^process
24182:
24183: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
24184:
24185: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
24186: main/pa_array.C: table:record
24187:
24188: * src/: main/untaint.C, targets/cgi/parser3.C,
24189: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24190: targets/isapi/pool_storage.h, types/pa_valiased.h,
24191: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
24192: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
24193: types/pa_vtable.h: z
24194:
24195: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
24196: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
24197: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
24198: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
24199: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
24200: method realisations on 'self' validity - they now can simply
24201: assume that 'self' is V{Proper} .
24202:
24203: 2001-03-25 paf
24204:
24205: * src/main/untaint.C: z
24206:
24207: * src/main/: pa_request.C, untaint.C: moved default typo-table to
24208: lowlevel - it initialization could be skipped if failed in @auto.
24209: so that exception report would use some table
24210:
24211: * src/main/pa_request.C: table empty lines ignored. system-default
24212: content type assigned in output:result [can fail in main:auto and
24213: skipped normal defaults extraction]
24214:
24215: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
24216: bug
24217:
24218: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
24219: processing to table [except preliminary \r\n \r \n replacements
24220: to "\n"]
24221:
24222: * src/: classes/table.C, main/untaint.C: html-typo - decided to
24223: move all the processing to table
24224:
24225: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
24226: main/pa_table.C, main/untaint.C: returned table originating.
24227: useful for reporting typo table problems origin. think would be
24228: useful somewhere else
24229:
24230: * src/main/untaint.C: typo \r \r\n \n properly handled
24231:
24232: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
24233: include/pa_table.h, main/compile.y, main/compile_tools.C,
24234: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
24235: main/pa_string.C, main/pa_table.C, main/untaint.C,
24236: types/pa_vcookie.h: typo & typo-default
24237:
24238: 2001-03-24 paf
24239:
24240: * src/main/pa_common.C: z
24241:
24242: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
24243: targets/cgi/parser3.C: html-typo 2
24244:
24245: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
24246: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
24247: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
24248: main/execute.C, main/pa_array.C, main/pa_globals.C,
24249: main/pa_request.C, main/pa_string.C, main/untaint.C,
24250: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
24251: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
24252: noticed double default content-type prob. run cgi.cmd tomorrow
24253: first html-typo sample. detected << problem: they become ltlt too
24254: fast
24255:
24256: * src/main/compile.y: z
24257:
24258: * src/main/: compile.y, compile_tools.h: #comment
24259:
24260: * src/: classes/file.C, classes/root.C, classes/table.C,
24261: include/pa_common.h, include/pa_request.h, main/compile.y,
24262: main/pa_common.C, main/pa_request.C, main/pa_string.C,
24263: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
24264: stringified
24265:
24266: * src/types/pa_valiased.C: decided to String-ify file_read
24267:
24268: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
24269: isapi/parser3isapi.dsp: cgi: sapi::log
24270:
24271: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
24272: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
24273: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
24274: error log experiments failed - cgi under iis got no access to
24275: log. registereventsource simply failed with 5(illegal call) code,
24276: while worked OK as standalone executable. isapi: used
24277: HSE_APPEND_LOG_PARAMETER feature
24278:
24279: * src/: include/pa_common.h, include/pa_globals.h,
24280: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24281: targets/isapi/parser3isapi.C: fixed default content-type
24282: allocation storage
24283:
24284: * src/: include/pa_globals.h, include/pa_request.h,
24285: main/pa_globals.C, main/pa_request.C: z
24286:
24287: * src/: include/pa_array.h, include/pa_hash.h,
24288: include/pa_request.h, main/compile.y, main/pa_array.C,
24289: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
24290: types/pa_vcookie.C: cyclic uses ignored. defaulted default
24291: content-type
24292:
24293: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
24294: sanity
24295:
24296: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
24297: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
24298: away freeze mech. no danger now for you can't do
24299: ^request:process[@new-method[] body] trick anymore. still
24300: remains $some_instance.process[@new-method[] possibility] but
24301: would leave it as a feature. see index for sample
24302:
24303: * src/: include/pa_common.h, main/pa_common.C,
24304: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
24305: monkey every target
24306:
24307: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
24308: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
24309: types/pa_vform.C, types/pa_vform.h: auto.p monkey
24310:
24311: 2001-03-23 paf
24312:
24313: * src/: include/pa_pool.h, main/pa_request.C,
24314: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
24315: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24316: targets/isapi/pool_storage.h: isapi: dumb pool storage
24317:
24318: * src/targets/isapi/pa_pool.C: decided to continue with extension
24319:
24320: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
24321: it would be better to rewrite as filter then to deal with pool
24322:
24323: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
24324: now like in cgi, not from APPL_PHYSICAL_PATH
24325:
24326: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24327: include/pa_config_fixed.h, include/pa_config_includes.h,
24328: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
24329: include/pa_version.h, main/compile.y, main/execute.C,
24330: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24331: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24332: main/untaint.C, targets/cgi/parser3.C,
24333: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
24334: cgi: reinvent document_root and request_uri under iis. autoconf
24335: updated. introducing ap_config_includes
24336:
24337: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
24338:
24339: * src/targets/cgi/parser3.C: cgi: only one pool now
24340:
24341: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
24342: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24343: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24344: types/pa_venv.h, types/pa_vform.C: sapi made object
24345:
24346: * src/: include/pa_globals.h, main/pa_request.C,
24347: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24348: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
24349: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
24350:
24351: * src/: main/pa_request.C, targets/cgi/parser3.C,
24352: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24353: isapi minor env beauty
24354:
24355: * src/: main/pa_request.C, targets/cgi/parser3.C,
24356: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
24357: isapi document_root 0
24358:
24359: 2001-03-22 paf
24360:
24361: * src/targets/isapi/parser3isapi.C: isapi keep-alive
24362:
24363: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
24364: isapi/parser3isapi.C: z
24365:
24366: * src/: include/pa_pool.h, main/pa_request.C,
24367: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
24368:
24369: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
24370: kill.pl: isapi added utils
24371:
24372: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
24373: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
24374: types/pa_vform.C: isapi 0
24375:
24376: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
24377: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24378: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
24379: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
24380: started isapi
24381:
24382: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
24383: some comments
24384:
24385: * src/: include/pa_globals.h, include/pa_request.h,
24386: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
24387: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
24388: parser_root_auto_path parser_site_auto_path
24389:
24390: * src/types/pa_vcookie.C: cookie attr decoded
24391:
24392: 2001-03-21 paf
24393:
24394: * src/targets/cgi/parser3.C: z
24395:
24396: * src/include/pa_globals.h: post. todo: config of auto.p path
24397:
24398: * src/: include/pa_globals.h, targets/cgi/parser3.C,
24399: types/pa_venv.h: in cookie & env. todo:post
24400:
24401: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
24402: classes/root.C, classes/table.C, include/pa_array.h,
24403: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
24404: include/pa_request.h, include/pa_string.h, main/Makefile.am,
24405: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
24406: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24407: main/pa_table.C, main/untaint.C, targets/Makefile.am,
24408: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24409: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
24410: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
24411: shifted apache branch on main trunc
24412:
24413: * src/: include/pa_common.h, include/pa_globals.h,
24414: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24415: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
24416: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
24417: starting mod_parser3
24418:
24419: * src/targets/cgi/parser3.C: starting mod_parser3
24420:
24421: 2001-03-20 paf
24422:
24423: * src/: main/pa_common.C, targets/cgi/Makefile.am,
24424: targets/cgi/parser3.C: automake compiled and works. todo:make
24425: win32 ifdefs work and add ifdef unistd
24426:
24427: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
24428: main/Makefile.am, main/pa_common.C, main/pa_request.C,
24429: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
24430: z
24431:
24432: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
24433: main/execute.C, main/pa_common.C, types/Makefile.am: removing
24434: locking
24435:
24436: * src/: classes/Makefile.am, types/Makefile.am: z
24437:
24438: * src/: Makefile.am, classes/file.C, classes/root.C,
24439: classes/table.C, include/pa_array.h, include/pa_request.h,
24440: include/pa_string.h, main/Makefile.am, main/execute.C,
24441: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
24442: main/pa_string.C, main/untaint.C, targets/Makefile.am,
24443: targets/cgi/Makefile.am, targets/cgi/parser3.C,
24444: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
24445:
24446: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
24447: main/pa_request.C, types/pa_vfile.h: ^table:save
24448:
24449: * src/: classes/file.C, classes/table.C, include/pa_array.h,
24450: include/pa_common.h, include/pa_request.h, include/pa_string.h,
24451: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
24452: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
24453: types/pa_vform.h: z
24454:
24455: * src/include/pa_string.h: z
24456:
24457: * src/: classes/_request.h, classes/request.C, main/main.dsp,
24458: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
24459: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24460: :Value
24461:
24462: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
24463: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
24464: :VStateless_object
24465:
24466: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
24467: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
24468: :VStateless_object
24469:
24470: * src/: main/main.dsp, targets/cgi/parser3.dsp,
24471: types/pa_valiased.C, types/pa_vform.h: commented VForm
24472:
24473: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
24474: types/pa_valiased.h, types/pa_value.h,
24475: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
24476: types/pa_vstateless_object.h: moved common get_element part from
24477: stateless object&class into VAliased
24478:
24479: * src/: classes/_env.h, classes/_table.h, classes/env.C,
24480: classes/table.C, main/execute.C, main/main.dsp,
24481: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
24482: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
24483: now :Value
24484:
24485: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
24486: main/execute.C, main/main.dsp, main/pa_globals.C,
24487: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
24488:
24489: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
24490: doxx
24491:
24492: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
24493: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
24494: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
24495: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
24496: and ^file:save
24497:
24498: 2001-03-19 paf
24499:
24500: * src/types/pa_vfile.C: z
24501:
24502: * src/: classes/file.C, classes/request.C, classes/table.C,
24503: include/pa_string.h, main/main.dsp, main/pa_pool.C,
24504: main/pa_request.C, main/untaint.C, types/pa_value.h,
24505: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
24506:
24507: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
24508: include/pa_string.h, include/pa_table.h, main/main.dsp,
24509: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
24510: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
24511: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
24512: classes/_file.h, classes/file.C, types/pa_vfile.C,
24513: types/pa_vfile.h: file class just compiled
24514:
24515: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
24516: include/pa_table.h, include/pa_types.h, main/execute.C,
24517: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
24518: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
24519: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
24520:
24521: * src/include/pa_pool.h: z
24522:
24523: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
24524: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
24525: Hash::Value to Val so to doxygen would finlly stop confusing
24526: those Value-s
24527:
24528: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
24529: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
24530: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24531: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24532: include/pa_types.h, main/compile.C, main/compile.y,
24533: main/compile_tools.C, main/compile_tools.h, main/execute.C,
24534: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
24535: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
24536: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24537: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
24538:
24539: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
24540: derivates somehow unlinked. don't know why yet
24541:
24542: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
24543: include/pa_string.h, include/pa_threads.h, main/compile.C,
24544: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24545: main/execute.C, main/pa_array.C, main/pa_common.C,
24546: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
24547: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24548: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
24549:
24550: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
24551: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
24552: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
24553: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
24554: types/pa_vrequest.h: doc: detected Value derivates prob
24555:
24556: * src/include/pa_globals.h: z
24557:
24558: * src/: classes/_request.h, classes/request.C, include/code.h,
24559: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
24560: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
24561: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
24562: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
24563: main/execute.C, main/pa_pool.C, main/pa_request.C,
24564: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24565: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
24566:
24567: 2001-03-18 paf
24568:
24569: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
24570: cookie: allowed access to hash-assigned
24571:
24572: * src/targets/cgi/parser3.C: z
24573:
24574: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
24575: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
24576: include/pa_types.h, main/main.dsp, main/pa_common.C,
24577: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24578: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
24579: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
24580: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
24581: types/pa_vunknown.h: cookie class
24582:
24583: * src/main/pa_request.C: zero length output allowed
24584:
24585: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
24586: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
24587:
24588: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
24589: lang switch
24590:
24591: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
24592: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24593: types/pa_value.h, types/pa_vhash.h:
24594: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
24595:
24596: * src/main/execute.C: z
24597:
24598: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
24599: targets/cgi/parser3.C: taint[uri
24600:
24601: * src/: classes/request.C, classes/response.C, classes/root.C,
24602: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
24603: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
24604: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
24605:
24606: * src/: classes/root.C, classes/string.C, include/pa_string.h,
24607: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
24608: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
24609: types/pa_vstateless_class.C: convinient string(pool, char *src,
24610: bool tainted) ctor
24611:
24612: * src/: include/pa_hash.h, include/pa_request.h,
24613: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
24614: main/pa_request.C, main/pa_string.C, main/untaint.C,
24615: targets/cgi/parser3.C: proper @exceptions params tainting
24616:
24617: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
24618: response fields to header
24619:
24620: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
24621: z
24622:
24623: * src/: classes/_response.h, classes/response.C,
24624: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
24625: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
24626: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
24627: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
24628: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
24629: $response: 0 request::core exception rethrow
24630:
24631: 2001-03-16 paf
24632:
24633: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
24634: types/pa_vrequest.h: native method' class call with less params
24635: then needed error reporting
24636:
24637: * src/: classes/_request.h, classes/request.C,
24638: include/pa_globals.h, include/pa_request.h, main/execute.C,
24639: main/main.dsp, main/pa_globals.C, main/pa_request.C,
24640: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
24641: types/pa_vrequest.h: $request : query :uri
24642:
24643: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
24644: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
24645: types/pa_wcontext.h: $result
24646:
24647: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
24648:
24649: * src/: classes/double.C, include/code.h, main/compile.y,
24650: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
24651: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
24652:
24653: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
24654: main/compile.y, main/execute.C, types/pa_value.h,
24655: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
24656: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
24657: wcontext conflict
24658:
24659: * src/: main/execute.C, types/pa_value.h,
24660: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
24661: $string.field
24662:
24663: 2001-03-15 paf
24664:
24665: * src/main/pa_request.C: news sample
24666:
24667: * src/: main/compile.y, main/execute.C, main/pa_request.C,
24668: targets/cgi/parser3.C, types/pa_vstring.h: @exception
24669:
24670: * src/main/: compile.y, execute.C: z
24671:
24672: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
24673: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
24674: pre pre works
24675:
24676: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24677: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
24678: fillfields just compiled
24679:
24680: 2001-03-14 paf
24681:
24682: * src/: include/pa_request.h, main/pa_request.C,
24683: targets/cgi/parser3.C: z
24684:
24685: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
24686: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
24687: types/pa_vstring.h: limits -1
24688:
24689: * src/: include/pa_globals.h, include/pa_request.h,
24690: include/pa_types.h, main/main.dsp, main/pa_globals.C,
24691: main/pa_request.C, targets/cgi/parser3.C,
24692: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
24693: request_info -1
24694:
24695: * src/: include/pa_globals.h, main/pa_globals.C,
24696: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
24697: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
24698: vform_fields_fill
24699:
24700: * src/targets/cgi/parser3.C: # if MSVC
24701:
24702: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
24703: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
24704:
24705: * src/targets/cgi/parser3.C: z
24706:
24707: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
24708: include/pa_string.h, include/pa_types.h, main/compile.y,
24709: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
24710: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
24711: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
24712: types/pa_vunknown.h: global handler, exceptions in parser3
24713:
24714: 2001-03-13 paf
24715:
24716: * src/: classes/form.C, main/compile.y, main/core.C,
24717: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
24718: types/pa_vform.h, types/pa_vstateless_class.C,
24719: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
24720: instead
24721:
24722: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24723: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
24724: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
24725: started cgi target
24726:
24727: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
24728: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
24729: before error show with parser
24730:
24731: * src/: classes/_form.h, classes/form.C, include/core.h,
24732: include/pa_request.h, main/core.C, main/pa_request.C,
24733: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
24734:
24735: * src/targets/cgi/: parser.dsp, parser3.dsp: z
24736:
24737: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
24738: parser3.C: renamed targets/ parser to cgi
24739:
24740: * src/: classes/double.C, classes/env.C, classes/int.C,
24741: classes/root.C, classes/string.C, classes/table.C,
24742: include/pa_request.h, types/pa_vhash.h: z
24743:
24744: * src/: classes/_env.h, classes/env.C, classes/root.C,
24745: include/core.h, include/pa_pool.h, include/pa_request.h,
24746: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
24747: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24748: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
24749: [historical moment :)]
24750:
24751: * src/: include/code.h, include/pa_string.h, main/compile.y,
24752: main/execute.C, main/pa_string.C: 'value is type' expr operator
24753:
24754: * src/types/pa_venv.h: $ENV 1
24755:
24756: * src/main/execute.C: z
24757:
24758: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
24759: future methods of ENV constructor if
24760:
24761: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
24762: class
24763:
24764: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24765: classes/_root.h, classes/_string.h, classes/_table.h,
24766: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24767: classes/string.C, classes/table.C, include/pa_request.h,
24768: main/compile.C, main/compile_tools.h, main/core.C,
24769: main/execute.C, main/main.dsp, main/pa_request.C,
24770: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24771: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24772: types/pa_vobject.h, types/pa_vstateless_class.C,
24773: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24774: types/pa_wcontext.h: $ENV: re 0, stateless classes
24775:
24776: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24777: classes/_root.h, classes/_string.h, classes/_table.h,
24778: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
24779: classes/string.C, classes/table.C, include/pa_request.h,
24780: main/compile.C, main/compile_tools.h, main/core.C,
24781: main/execute.C, main/main.dsp, main/pa_request.C,
24782: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
24783: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
24784: types/pa_vobject.h, types/pa_vstateless_class.C,
24785: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
24786: types/pa_wcontext.h: $ENV: re 0, stateless classes
24787:
24788: * src/: include/pa_request.h, main/compile.C, main/execute.C,
24789: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
24790: yesterdays bad decision on execute_static_method
24791:
24792: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
24793:
24794: * src/: classes/double.C, classes/int.C, classes/root.C,
24795: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
24796:
24797: * src/main/pa_request.C: z
24798:
24799: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24800: include/pa_pool.h: skipped_restructure_exceptions_dead_end
24801:
24802: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
24803: include/pa_pool.h, main/pa_request.C:
24804: restructure_exceptions_dead_end
24805:
24806: * src/: classes/root.C, main/compile.y: ^if required junctions.
24807: allowed ; inside {} to break params
24808:
24809: * src/classes/root.C: ^eval
24810:
24811: * src/: classes/_string.h, classes/double.C, classes/int.C,
24812: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
24813: string ^format
24814:
24815: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
24816: 'bad' but not 'enough'
24817:
24818: * src/: classes/double.C, classes/root.C, classes/table.C,
24819: include/pa_common.h, include/pa_types.h, main/compile.y,
24820: main/pa_common.C, main/pa_request.C, main/untaint.C,
24821: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
24822: types/pa_wwrapper.h: think constructing flag as is is bad
24823:
24824: * src/: classes/double.C, classes/int.C, classes/root.C,
24825: classes/string.C, classes/table.C, main/core.C, main/execute.C,
24826: types/pa_vint.h: ^for
24827:
24828: 2001-03-12 paf
24829:
24830: * src/classes/table.C: table ^empty
24831:
24832: * src/: classes/table.C, include/pa_table.h: table ^menu
24833:
24834: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
24835: ^offset ^line ^count
24836:
24837: * src/classes/root.C: ^round() ^floor() ^ceiling()
24838: ^abs() ^sign()
24839:
24840: * src/classes/: root.C, table.C: ^use
24841:
24842: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24843: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
24844: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
24845: ^while. switched off wcontext.constructing after write(value) or
24846: auto-vhash-constructing
24847:
24848: * src/: classes/root.C, classes/table.C, include/pa_request.h,
24849: main/pa_request.C: fail_if_junction_ helper func
24850:
24851: * src/: classes/root.C, classes/table.C, include/pa_common.h,
24852: include/pa_request.h, main/execute.C, main/main.dsp,
24853: main/pa_common.C, main/pa_request.C: ^process error point by
24854: actual method_name, not source. ^load
24855:
24856: * src/types/pa_vtable.h: table: no, better with string in cells...
24857:
24858: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
24859: classes/_table.h, classes/table.C, main/untaint.C: z
24860:
24861: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
24862: include/pa_table.h, main/core.C, main/execute.C,
24863: main/pa_common.C, main/pa_request.C, main/pa_table.C,
24864: types/pa_value.h: table:set 0
24865:
24866: * src/: classes/root.C, include/core.h, include/pa_array.h,
24867: include/pa_request.h, include/pa_table.h, main/core.C,
24868: main/main.dsp, main/pa_request.C, main/pa_table.C,
24869: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
24870: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
24871: types/pa_vstring.h: freeze, ^table:create[] -1
24872:
24873: * src/: classes/root.C, types/pa_value.h: z
24874:
24875: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
24876: get_method in couple places optimizing them
24877:
24878: * src/classes/root.C: z
24879:
24880: * src/: classes/root.C, types/pa_vclass.h: process temp main
24881: zeroing
24882:
24883: * src/: classes/double.C, classes/int.C, classes/root.C,
24884: classes/string.C, include/pa_common.h, include/pa_request.h,
24885: include/pa_string.h, include/pa_types.h, main/compile.C,
24886: main/compile.y, main/compile_tools.h, main/execute.C,
24887: main/pa_common.C, main/pa_request.C, types/pa_value.h,
24888: types/pa_vmframe.h: ^process. actual names to store param and
24889: check_actual_numbered_params for better place diagnostics
24890:
24891: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
24892: method-junctions bug fixed
24893:
24894: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
24895: pa_vstateless_object.h, pa_vstring.h: stateless_object
24896:
24897: 2001-03-11 paf
24898:
24899: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24900: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24901: VDouble VInt base now VObject_base - without fields
24902:
24903: * src/: classes/root.C, include/core.h, main/core.C: z
24904:
24905: * src/: classes/double.C, classes/int.C, classes/root.C,
24906: classes/string.C, include/core.h, include/pa_hash.h,
24907: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24908: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24909:
24910: * src/: classes/double.C, classes/int.C, classes/root.C,
24911: include/pa_request.h, main/execute.C: intercept_string
24912:
24913: * src/: classes/double.C, classes/int.C, classes/root.C,
24914: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24915:
24916: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24917: ^inc-s(expr)
24918:
24919: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24920: classes/_root.h, classes/_string.h, classes/double.C,
24921: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24922: include/code.h, include/core.h, include/pa_array.h,
24923: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24924: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24925: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24926: include/pa_types.h, main/compile.C, main/compile.y,
24927: main/compile_tools.C, main/compile_tools.h, main/core.C,
24928: main/execute.C, main/pa_array.C, main/pa_common.C,
24929: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24930: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24931: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24932: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24933: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24934: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24935: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24936: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24937:
24938: * src/: main/pa_request.C, types/pa_vhash.h: z
24939:
24940: * src/: include/core.h, include/pa_request.h, main/core.C,
24941: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24942:
24943: * src/: include/pa_valiased.h, include/pa_value.h,
24944: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24945: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24946: include/pa_vjunction.h, include/pa_vmframe.h,
24947: include/pa_vobject.h, include/pa_vstring.h,
24948: include/pa_vunknown.h, include/pa_wcontext.h,
24949: include/pa_wwrapper.h, main/compile.y, main/core.C,
24950: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24951: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24952: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24953: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24954: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24955: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24956: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24957: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24958: include/
24959:
24960: 2001-03-10 paf
24961:
24962: * src/: include/core.h, include/pa_request.h, main/core.C,
24963: main/pa_request.C: run+auto=run
24964:
24965: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24966:
24967: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24968: classes/_root.h, classes/_string.h, classes/double.C,
24969: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24970: include/code.h, include/core.h, include/pa_array.h,
24971: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24972: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24973: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24974: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24975: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24976: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24977: include/pa_vjunction.h, include/pa_vmframe.h,
24978: include/pa_vobject.h, include/pa_vstring.h,
24979: include/pa_vunknown.h, include/pa_wcontext.h,
24980: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24981: main/compile_tools.C, main/compile_tools.h, main/core.C,
24982: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24983: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24984: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24985: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24986: main/pa_wcontext.C: sources header
24987:
24988: * src/main/pa_request.C: auto..
24989:
24990: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24991: main/pa_request.C: auto tree0
24992:
24993: * src/: include/core.h, include/pa_request.h, main/compile.y,
24994: main/core.C, main/pa_request.C: names to core.C
24995:
24996: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24997: include/pa_request.h, main/core.C, main/execute.C,
24998: main/pa_common.C, main/pa_request.C: root auto.p loaded
24999:
25000: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
25001: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
25002: main/compile_tools.C, main/compile_tools.h, main/execute.C:
25003: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
25004:
25005: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
25006: @auto[] realised. auto.p scan togo
25007:
25008: * src/: include/pa_request.h, main/execute.C: autocalc
25009: code-junctions result now have names
25010:
25011: * src/: classes/double.C, classes/int.C, classes/root.C,
25012: classes/string.C, include/pa_request.h, include/pa_string.h,
25013: include/pa_wcontext.h, main/compile.y, main/execute.C,
25014: main/pa_string.C, main/pa_wcontext.C: tainting 0
25015:
25016: * src/classes/env.C: env:file/line
25017:
25018: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
25019: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
25020: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
25021: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
25022: main/compile_tools.C, main/compile_tools.h, main/core.C,
25023: main/execute.C, main/main.dsp, main/pa_cframe.C,
25024: main/pa_request.C, main/pa_wcontext.C: const fight finished
25025:
25026: * src/include/pa_vclass.h: const fight to go
25027:
25028: * src/: classes/_env.h, classes/env.C, classes/root.C,
25029: include/pa_request.h, include/pa_vclass.h, main/core.C,
25030: main/main.dsp: env0
25031:
25032: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
25033: classes/_string.h, classes/double.C, classes/int.C,
25034: classes/root.C, classes/string.C, include/pa_request.h,
25035: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
25036: include/pa_wcontext.h, main/core.C, main/main.dsp,
25037: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
25038: main/pa_wcontext.C: ^lang prepare0
25039:
25040: 2001-03-09 paf
25041:
25042: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
25043: construct proper naming
25044:
25045: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
25046: classes/double.C, classes/int.C, classes/root.C,
25047: classes/string.C, include/code.h, include/pa_value.h,
25048: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
25049: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25050: main/compile.y, main/compile_tools.C, main/core.C,
25051: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
25052: and ^double[]. fixed expr type
25053:
25054: * src/: classes/root.C, include/pa_request.h, main/execute.C:
25055: ^string.length[]
25056:
25057: 2001-03-08 paf
25058:
25059: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
25060:
25061: * src/: include/pa_vclass.h, include/pa_vstring.h,
25062: include/pa_wcontext.h, main/compile.y, main/core.C,
25063: main/execute.C, main/main.dsp: dead end: vstring can't be
25064: derivated from vobject
25065:
25066: * src/: include/pa_vclass.h, include/pa_vhash.h,
25067: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
25068:
25069: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
25070: remained clone conseqs
25071:
25072: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
25073:
25074: * src/main/pa_vclass.C: wow! vclass were out of vcs
25075:
25076: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
25077: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
25078: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
25079: include/pa_vobject.h, include/pa_vstring.h,
25080: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
25081: main/execute.C: withoud cloning. didn't need it actually, params
25082: got passed from out unnamed ewpool
25083:
25084: * src/: include/pa_vdouble.h, include/pa_vhash.h,
25085: include/pa_vjunction.h, include/pa_vobject.h,
25086: include/pa_vunknown.h, main/compile.y: cloning dead end
25087:
25088: * src/: include/pa_bool.h, include/pa_double.h,
25089: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
25090: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
25091: include/pa_vjunction.h, include/pa_vmframe.h,
25092: include/pa_vobject.h, include/pa_vstring.h,
25093: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
25094: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
25095: to give params proper names
25096:
25097: * src/main/pa_wcontext.C: z
25098:
25099: * src/: include/pa_vmframe.h, main/execute.C: added names to
25100: unknown values in get_element and unfilled params. removed wrong
25101: name change in get_element
25102:
25103: * src/main/execute.C: z
25104:
25105: * src/main/execute.C: fixed problems calling operators in
25106: constructors
25107:
25108: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
25109: detected problems calling operators in constructors
25110:
25111: * src/: classes/root.C, include/pa_request.h, main/execute.C:
25112: autocalc def to string
25113:
25114: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
25115: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
25116:
25117: * src/classes/root.C: added root.c
25118:
25119: * src/: include/pa_request.h, include/pa_value.h,
25120: include/pa_vcframe.h, include/pa_vmframe.h,
25121: include/pa_wcontext.h, main/compile.C, main/compile.y,
25122: main/core.C, main/execute.C, main/pa_cframe.C,
25123: main/pa_wcontext.C: 'if' just compiled
25124:
25125: * src/: include/pa_vbool.h, include/pa_vdouble.h,
25126: include/pa_vjunction.h, include/pa_vmframe.h,
25127: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
25128: main/pa_wcontext.C: z
25129:
25130: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
25131: main/core.C, main/execute.C, main/main.dsp: z. detected probs
25132: with parameter names in operator methods
25133:
25134: * src/main/compile.y: minor renamings in .y
25135:
25136: * src/: include/pa_request.h, main/compile.C, main/compile.y,
25137: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
25138: @BASE. changed 'RUN' assignment mech
25139:
25140: * src/main/execute.C: z
25141:
25142: * src/: include/code.h, main/compile.y, main/compile_tools.C,
25143: main/compile_tools.h, main/execute.C: made class: dynamic, not
25144: static. so to enable runtime ^use
25145:
25146: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
25147:
25148: * src/: include/code.h, main/compile.y, main/compile_tools.C,
25149: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
25150:
25151: * src/main/execute.C: root root in code-junction
25152:
25153: 2001-03-07 paf
25154:
25155: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
25156: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
25157:
25158: * src/: include/pa_stack.h, include/pa_value.h,
25159: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
25160: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
25161: fixed rwcontext of {} params up
25162:
25163: * src/main/: compile.y, compile_tools.h: ^func(params)
25164:
25165: * src/main/compile.y: .y priorities syntax shaped up a bit
25166:
25167: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
25168: include/pa_vunknown.h, main/compile.y, main/execute.C,
25169: main/pa_hash.C: expr def in -f
25170:
25171: * src/main/: compile.y, execute.C: expr calls
25172:
25173: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
25174: fixed
25175:
25176: * src/main/compile.y: expr quoted code
25177:
25178: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
25179: support0
25180:
25181: * src/main/compile.y: expr string comparisons 0
25182:
25183: * src/: include/pa_string.h, main/compile.y, main/execute.C,
25184: main/pa_string.C: just compiled lt&co
25185:
25186: * src/main/execute.C: ^var.menu{$field} problem detected. that
25187: $field not a $var.field
25188:
25189: 2001-03-06 paf
25190:
25191: * src/main/compile.y: .y expr visible-shorter
25192:
25193: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
25194: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
25195: logical
25196:
25197: * src/: include/pa_vstring.h, main/compile.y: problems with
25198: skipping whitespace in yylex
25199:
25200: * src/include/pa_vbool.h: forgot this
25201:
25202: * src/: include/code.h, main/compile.y, main/execute.C: without
25203: string ops in expressions 0
25204:
25205: * src/: include/pa_value.h, include/pa_vdouble.h,
25206: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
25207: main/execute.C, main/main.dsp: !~
25208:
25209: * src/: include/pa_vcframe.h, include/pa_vclass.h,
25210: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
25211: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25212: include/pa_vunknown.h, include/pa_wcontext.h,
25213: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
25214: main/compile_tools.h, main/execute.C: +-*/
25215:
25216: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
25217: main/compile_tools.h: grammar-1.1 $a(z) $a=0
25218:
25219: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
25220: main/execute.C: expr grammar-1 2*2=4.000000 :)
25221:
25222: * src/main/compile.y: expr grammar-1
25223:
25224: * src/main/compile.y: expr lexx1
25225:
25226: * src/main/: compile.y, execute.C, main.dsp: z
25227:
25228: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
25229: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
25230: main/execute.C: expr lex0 exec-1
25231:
25232: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
25233:
25234: 2001-02-26 paf
25235:
25236: * src/main/compile.y: max_string in yyerror bug fix
25237:
25238: 2001-02-25 paf
25239:
25240: * src/: include/pa_value.h, include/pa_vmframe.h,
25241: include/pa_wcontext.h, main/execute.C: VAliased3
25242:
25243: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
25244:
25245: * src/main/execute.C: VAliased1
25246:
25247: * src/: include/pa_request.h, include/pa_value.h,
25248: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
25249: VAliased0
25250:
25251: * src/: include/pa_pool.h, include/pa_request.h,
25252: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
25253: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
25254: VAliased just compiled
25255:
25256: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
25257: include/pa_vobject.h, main/execute.C: alias dead end
25258:
25259: * src/: include/pa_value.h, include/pa_vclass.h,
25260: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
25261: main/main.dsp: no not get fields into interm VFielded class.
25262: fields & staticfields 1
25263:
25264: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
25265: include/pa_vobject.h, include/pa_wcontext.h,
25266: include/pa_wwrapper.h, main/core.C, main/execute.C,
25267: main/main.dsp: would now get fields into interm VFielded class
25268:
25269: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
25270: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
25271: include/pa_wcontext.h, main/compile.y, main/core.C,
25272: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
25273: main/pa_wcontext.C: virtuals2
25274:
25275: * src/main/compile.y: : 1
25276:
25277: * src/main/compile.y: rethought to $class:static.field.subfield
25278:
25279: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
25280: $class:element
25281:
25282: * src/: include/pa_value.h, include/pa_vmframe.h,
25283: include/pa_wwrapper.h, main/compile.y, main/execute.C,
25284: main/pa_wcontext.C: before execute class calls rewrite
25285:
25286: * src/: include/pa_request.h, main/compile.C, main/core.C: default
25287: name RUN, also alias
25288:
25289: * src/main/compile.y: escaping bug
25290:
25291: * src/: include/pa_request.h, include/pa_value.h,
25292: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
25293: main/core.C, main/execute.C, main/pa_common.C: vobject1
25294:
25295: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
25296: include/pa_vmframe.h, include/pa_vobject.h,
25297: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
25298: main/compile_tools.h, main/execute.C: ^class:method() just
25299: compiled
25300:
25301: 2001-02-24 paf
25302:
25303: * src/main/main.dsp: no bison -d
25304:
25305: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
25306: class' err msg wrong
25307:
25308: * src/main/compile.y: z
25309:
25310: * src/main/: compile.y, core.C: yylex need some @special lines adj
25311:
25312: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
25313: main/compile.y, main/compile_tools.h, main/core.C: modules0
25314:
25315: * src/: include/pa_vclass.h, main/core.C: z
25316:
25317: * src/: include/pa_value.h, include/pa_vclass.h,
25318: include/pa_vobject.h, main/main.dsp: vobject00
25319:
25320: * src/main/pa_array.C: minor bug in expanding very small arrays.
25321: 60% from 1 were 0
25322:
25323: * src/: include/pa_value.h, include/pa_wcontext.h,
25324: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
25325: as bad as you've named it: wcontext.value() was not a perfect
25326: idea
25327:
25328: * src/main/execute.C: codeframe1
25329:
25330: * src/: include/pa_value.h, include/pa_vcframe.h,
25331: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
25332: include/pa_vjunction.h, include/pa_vmframe.h,
25333: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
25334: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
25335: just compiled
25336:
25337: * src/: include/pa_vframe.h, main/compile.y: found junction
25338: ideology @: ^x{$a()) must construct current wcontext element, so
25339: smart wcontext handling needed
25340:
25341: * src/main/compile.y: fixed grammar bugs in constructor/params
25342: klinch
25343:
25344: * src/main/: compile.y, execute.C: fixed empty constructor
25345: optimized empty case. failed on calls - produced empty string
25346: param
25347:
25348: * src/main/compile.y: fixed last \n macrotemplate strip bug
25349:
25350: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
25351: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
25352: main/compile_tools.C, main/compile_tools.h, main/core.C,
25353: main/execute.C: code junctions0. something wrong with last \n
25354: macrotemplate strip
25355:
25356: * src/: include/pa_value.h, main/compile.C, main/core.C,
25357: main/pa_value.C: minor error reporting format beautifyings
25358:
25359: * src/: include/pa_value.h, include/pa_vclass.h,
25360: include/pa_vframe.h, main/core.C, main/execute.C,
25361: main/pa_value.C: get_method RIP. junctions everywhere. call with
25362: junctions0
25363:
25364: 2001-02-23 paf
25365:
25366: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
25367: pa_wwrapper.h: lara came, can't work, sorry :(
25368:
25369: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
25370: junction
25371:
25372: * src/: include/pa_vframe.h, include/pa_vunknown.h,
25373: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
25374: main/execute.C, main/main.dsp, main/pa_value.C: call0
25375:
25376: * src/: include/pa_hash.h, include/pa_value.h,
25377: include/pa_wcontext.h, main/core.C, main/execute.C,
25378: main/main.dsp, main/pa_hash.C: started call. store param, vframe
25379: done
25380:
25381: * src/include/pa_wcontext.h: z
25382:
25383: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
25384: wrong grammar in complex constructor case
25385:
25386: * src/main/: compile.y, execute.C: empty constructor bug fixed
25387:
25388: * src/main/execute.C: with result rwpool
25389:
25390: * src/: include/pa_value.h, main/core.C, main/execute.C,
25391: main/main.dsp: value named
25392:
25393: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
25394: strign 2 value in 2 places in execute
25395:
25396: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
25397: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
25398: wcontext.put_element when wcontext fvalue==0
25399:
25400: 2001-02-22 paf
25401:
25402: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
25403: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
25404: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
25405:
25406: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
25407: erroreos checkout
25408:
25409: * src/: include/pa_request.h, main/compile.y: $self.put(val)
25410:
25411: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
25412: main/compile_tools.h, main/pa_array.C: $self.get
25413:
25414: * src/main/: compile.C, compile.y, compile_tools.C: z
25415:
25416: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
25417: bit. finished now.
25418:
25419: * src/main/compile.y: $: finished
25420:
25421: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
25422:
25423: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
25424: main/execute.C: OP_STRING better then some xxx _VALUE
25425:
25426: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
25427: main/compile_tools.C, main/compile_tools.h, main/execute.C:
25428: string to vstring it .y all
25429:
25430: * src/: include/pa_request.h, include/pa_stack.h,
25431: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
25432: all
25433:
25434: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
25435: precise parse error line:col
25436:
25437: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
25438: main/pa_hash.C, main/pa_pool.C: TRY...
25439:
25440: * src/: include/pa_exception.h, include/pa_pool.h,
25441: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
25442: main/compile.C, main/compile.y, main/compile_tools.C,
25443: main/core.C, main/pa_array.C, main/pa_exception.C,
25444: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
25445: main/pa_table.C: removed exception from request
25446:
25447: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
25448: some forgotten
25449:
25450: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
25451: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
25452: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
25453: get/put simple vars to VClass works0
25454:
25455: * src/: include/pa_array.h, include/pa_wcontext.h,
25456: main/pa_string.C: in process, but found that exceptions are too
25457: global
25458:
25459: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
25460: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
25461: main/execute.C, main/pa_string.C: write_value write_string 0 it
25462: seems wcontext must write strings regardles of fvalue!=0
25463:
25464: 2001-02-21 paf
25465:
25466: * src/main/execute.C: tired :)
25467:
25468: * src/main/: compile.C, compile.y, execute.C: store0
25469:
25470: * src/: include/compile.h, include/execute.h, include/pa_array.h,
25471: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
25472: include/pa_wcontext.h, main/compile.C, main/compile.y,
25473: main/execute.C, main/main.dsp, main/pa_array.C,
25474: main/pa_request.C: get put -1 [just compiled]
25475:
25476: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
25477: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
25478: main/main.dsp, main/pa_request.C: request core methods0
25479:
25480: * src/: include/compile.h, include/pa_array.h, main/compile.C,
25481: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
25482: execute
25483:
25484: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
25485: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
25486: methods and one_big_piece. now compile returns array<method*>
25487:
25488: * src/main/compile.y: more straightforward yylex[end]
25489:
25490: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
25491: string.operator==(char*)
25492:
25493: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
25494: main/execute.C, main/pa_array.C: after array.const get wonders
25495:
25496: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
25497: pa_string.h, pa_value.h: struck with const array.gets
25498:
25499: * src/main/: execute.C: z
25500:
25501: * src/main/: compile.y, execute.C: z
25502:
25503: * src/main/: compile.C, compile.y, compile_tools.h: error
25504: processing in eval & yyerror so it wouldn't cause memleaks.
25505:
25506: * src/main/: compile.C, compile.y: failed to add absolute precies
25507: parse error positions. leaving RIGHTMOST position as
25508: @file[line:col]
25509:
25510: * src/: include/compile.h, main/compile.C, main/compile.y,
25511: main/compile_tools.h: line numbers needed. would add them to .y
25512: now internally. externally it's not as precise as needed
25513:
25514: * src/: include/code.h, include/pa_types.h, main/compile.C,
25515: main/compile.y, main/compile_tools.C, main/compile_tools.h,
25516: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
25517: compiler works ok
25518:
25519: 2001-02-20 paf
25520:
25521: * src/main/: compile.C, compile.y, compile_tools.C,
25522: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
25523: not perfect
25524:
25525: * src/: include/code.h, include/compile.h, include/execute.h,
25526: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
25527: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25528: main/compile.C, main/compile.y, main/compile_tools.C,
25529: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
25530: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
25531: main/pa_string.C, main/pa_table.C: bison[yacc] first time
25532: compiled. execute=dump for now
25533:
25534: * src/main/core.C: core rewrite using yacc investigations now will
25535: be compile[yacc]/execute[opcodes]
25536:
25537: 2001-02-15 paf
25538:
25539: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
25540: rewrite as turing machine? for it seems it would be it's too many
25541: ifs with this syntax now
25542:
25543: 2001-02-14 paf
25544:
25545: * src/main/core.C: get_params 1
25546:
25547: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
25548: :( ]
25549:
25550: * src/main/core.C: varios breaks
25551:
25552: * src/main/core.C: get names 3
25553:
25554: * src/main/core.C: get names 2
25555:
25556: * src/main/core.C: get names 1
25557:
25558: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
25559: names 0
25560:
25561: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
25562: text repassing2 operator static vars
25563:
25564: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
25565: main/pa_string.C: process text repassing
25566:
25567: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25568: module:calls changes
25569:
25570: 2001-02-13 paf
25571:
25572: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
25573: ^class:calls[] started
25574:
25575: * src/: include/pa_value.h, main/core.C: z
25576:
25577: * src/main/core.C: operators : and self. prefixes
25578:
25579: * src/main/core.C: z
25580:
25581: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25582: tested
25583:
25584: * src/: include/pa_string.h, main/pa_string.C: String_iterator
25585: optimized
25586:
25587: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
25588: would change privates to better support optimization
25589:
25590: * src/: include/pa_string.h, main/pa_string.C:
25591: String_iterator::skip_to todo:optimize
25592:
25593: 2001-02-12 paf
25594:
25595: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
25596: String_iterator
25597:
25598: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
25599: comments
25600:
25601: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
25602: self/methodref joined
25603:
25604: 2001-02-11 paf
25605:
25606: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
25607: main/main.dsp: core started. core.C, context&value .h
25608:
25609: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25610: include/pa_string.h, main/main.dsp, main/pa_array.C,
25611: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
25612:
25613: 2001-01-30 paf
25614:
25615: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
25616: comments
25617:
25618: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
25619: main/pa_pool.C: moved pa_pool.C to be target specific
25620:
25621: * src/: include/pa_exception.h, include/pa_pool.h,
25622: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
25623: to & changes
25624:
25625: * src/: include/pa_exception.h, include/pa_pool.h,
25626: include/pa_request.h, include/pa_table.h, main/pa_array.C,
25627: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
25628: re-associated. that's much better even removed 'die' necessety
25629:
25630: * src/: include/pa_error.h, include/pa_exception.h,
25631: include/pa_pool.h, include/pa_request.h, main/main.dsp,
25632: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
25633: targets/Makefile.am: lowered targets/parser into subdir, added
25634: parser_Pool(Pool) failed to add. would think..
25635:
25636: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
25637: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
25638: main/pa_string.C, main/pa_table.C: Table more like C++ style
25639: hence lots of 'const'
25640:
25641: * src/: include/pa_error.h, include/pa_request.h,
25642: include/pa_string.h, include/pa_table.h, main/pa_error.C,
25643: main/pa_table.C: Error fixed
25644:
25645: 2001-01-29 paf
25646:
25647: * src/: include/pa_array.h, include/pa_common.h,
25648: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
25649: include/pa_request.h, include/pa_string.h, include/pa_table.h,
25650: main/Makefile.am, main/pa_array.C, main/pa_common.C,
25651: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
25652:
25653: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25654: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25655: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
25656: main/pa_string.C, main/pa_table.C: Request Error Table
25657:
25658: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
25659: templates"
25660:
25661: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
25662: main/main.dsp, main/pa_array.C: templates failed no template
25663: specializations [VC6], no library auto instantation [VC6, GNU c++
25664: 2.95.2-6 from latest cygwin]
25665:
25666: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25667: include/pa_string.h, include/pa_table.h, include/pa_types.h,
25668: main/main.dsp, main/pa_array.C, main/pa_string.C,
25669: main/pa_table.C: Table started would test template Array now
25670:
25671: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25672: String originating
25673:
25674: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
25675: main/pa_hash.C: made local Hash-es not thread safe=quicker by
25676: SYNCHRONIZED(thread_safe)
25677:
25678: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
25679: parts to top
25680:
25681: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
25682: main/pa_threads.C: decided on one global_mutex, like PHP as I can
25683: see: needed only in global Hash now, made Hash:: put/get
25684: SYNCHRONIZED
25685:
25686: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
25687: main/pa_threads.C: added pa_threads
25688:
25689: Mutex
25690:
25691: * src/include/pa_hash.h: some comments
25692:
25693: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
25694: Array& operator += (Array& src)
25695:
25696: * src/main/pa_array.C: expand not convinient, would rewrite
25697:
25698: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
25699: (Array& src)
25700:
25701: rethought, would change now
25702:
25703: 2001-01-27 paf
25704:
25705: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
25706: caching
25707:
25708: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25709: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
25710: cache rethought to chunk caching
25711:
25712: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
25713: include/pa_string.h, main/main.dsp, main/pa_array.C,
25714: main/pa_hash.C, main/pa_string.C: Array 0
25715:
25716: * src/main/pa_string.C: String::operator ==
25717:
25718: * src/main/pa_hash.C: String(&String)
25719:
25720: * src/main/pa_hash.C: added pa_hash.C [forgotten]
25721:
25722: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
25723: main/main.dsp, main/pa_string.C: uint, and added pa_types &
25724: pa_hash[forgotten]
25725:
25726: 2001-01-26 paf
25727:
25728: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
25729: removed templates [vc++ suxx]
25730:
25731: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
25732: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
25733:
25734: * src/include/: pa_pool.h, pa_string.h: pa_pool split
25735:
1.119 moko 25736: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 25737:
1.119 moko 25738: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 25739: check
25740:
25741: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
25742: dynamic row_count
25743:
25744: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25745: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25746: targets/Makefile.am: Initial revision
25747:
25748: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
25749: main/main.dsp, main/pa_pool.C, main/pa_string.C,
25750: targets/Makefile.am: creating parser3 module
25751:
E-mail: