Annotation of parser3/ChangeLog, revision 1.181
1.181 ! moko 1: 2023-08-20 moko
! 2:
! 3: * tests/: 141.html, results/141.processed: test for ^math:uuid7[]
! 4: commited (related to feature #1219)
! 5:
! 6: 2023-08-16 moko
! 7:
! 8: * src/main/pa_random.C: replaced clock precision with monotonicity
! 9: counter, good for Windows version with low clock frequency
! 10: (related to feature #1229)
! 11:
! 12: 2023-08-15 moko
! 13:
! 14: * src/: main/pa_random.C, types/pa_vstatus.C: win32 compatibility
! 15: fixes related to feature #1229
! 16:
! 17: * src/: classes/math.C, include/pa_random.h, main/pa_random.C,
! 18: types/pa_vstatus.C: ^math:uuid7 added, code provided by Sumo
! 19: (implements feature #1229)
! 20:
1.180 moko 21: 2023-08-02 moko
22:
23: * tests/: results/417.processed, 417.html: test for empty string
24: match after last char added (related to bug #1224)
25:
26: * src/main/pa_string.C: avoid prestart++ after last char on zero
27: length match (related to bug #1224)
28:
1.179 moko 29: 2022-11-22 moko
30:
31: * tests/: 419.html, results/419.processed: test for L_URI and path
32: removeal from filename added (related to bug #1204)
33:
34: * src/main/pa_request.C: bugfix: pa_filename was lost in 1.394
35: commit (related to bug #1204), L_HTTP_HEADER is incorrect for
36: attribute value, L_URI should be used
37:
1.178 moko 38: 2022-09-21 moko
39:
40: * src/targets/cgi/parser3.C: more clear error messages
41:
42: * src/targets/cgi/parser3.C: only SAPI_Info_CGI can read POST,
43: SAPI_Info will return 0 in read_post and post_size !=
44: content_length will be thrown
45:
1.177 moko 46: 2022-08-23 moko
47:
48: * src/types/pa_vmail.C: .tables addes as .raw contains only last
49: header value
50:
51: 2022-08-22 moko
52:
53: * tests/: 418.html, results/418.processed: test for
54: ^hash_a.intersection[hash_b; $.order[self|arg] ] added (related
55: to #1225)
56:
57: * src/classes/hash.C: keep old behavoir by default
58:
59: * src/classes/hash.C: ^hash_a.intersection[hash_b;
60: $.order[self|arg] ] added (implements #1215)
61:
1.176 moko 62: 2022-03-21 moko
63:
64: * src/main/pa_charset.C: bugfix: +static xml_encoding_handlers as
65: xmlInitCharEncodingHandlers is called in libxml static
66: initializers before gc_substitute_memory_management_functions in
67: pa_globals and thus gc may not see reference to our
68: xmlCharEncodingHandler and free it.
69:
1.175 moko 70: 2022-01-26 moko
71:
72: * src/targets/cgi/parser3.C: argv[0] -> parser3_filespec
73:
1.174 moko 74: 2021-12-28 moko
75:
76: * tests/: 417.html, results/417.processed: test for empty string
77: match added (related to bug #1224)
78:
79: * src/main/pa_string.C: empty string match now works (fixes bug
80: #1224)
81:
1.173 moko 82: 2021-12-24 moko
83:
84: * tests/: 415_dir/29.p, results/415.processed: yet another test
85:
86: 2021-12-23 moko
87:
88: * src/: classes/table.C, main/pa_request.C: warnings war
89:
90: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
91: main/pa_http.C, targets/cgi/parser3.C: MSVC SOCKET warnings war
92:
93: 2021-12-21 moko
94:
95: * tests/: 416.html, results/416.processed: test for ^break[] in
96: ^hash/table.select[] (related to feature #1222)
97:
98: * src/classes/: hash.C, table.C: ^break[] support for
99: ^hash/table.select[] (implements feature #1222)
100:
1.172 moko 101: 2021-11-30 moko
102:
103: * src/targets/cgi/parser3.C: default sock_ready interval changed to
104: 0.5 sec
105:
1.171 moko 106: 2021-11-10 moko
107:
108: * tests/results/415.processed: more syntax errors tests added
109:
110: * tests/415_dir/: 20.p, 21.p, 22.p, 23.p, 24.p, 25.p, 26.p, 27.p,
111: 28.p: minor syntax error tests
112:
113: * src/main/pa_exception.C: pa_strdup added for compatibility
114:
115: * src/classes/curl.C: hint to call ^curl:options[
116: $.library[correct.libcurl.so.name] ] added if default load fails.
117:
118: 2021-11-09 moko
119:
120: * src/main/compile.y: error message can be on stack
121:
122: * src/main/pa_xml_io.C: strcat replaced with pa_strcat
123:
124: * src/main/pa_charset.C: memcpy is more correct and efficient in
125: this case then strncpy
126:
127: * src/: classes/image.C, types/pa_vrequest.C: pa_strdup used
128: instead of strcpy where possible
129:
130: * src/: classes/op.C, main/pa_exception.C: "%s" format now can be
131: used to avoid MAX_STRING limit in Exception comment
132:
133: * tests/results/415.processed: compiler exceptions are no longer
134: limited to MAX_STRING
135:
136: * src/main/: compile.y, compile_tools.h: Parse_control uses const
137: char * instead of fixed buffer
138:
139: * tests/: 415.html, 415_dir/01.p, 415_dir/02.p, 415_dir/03.p,
140: 415_dir/04.p, 415_dir/05.p, 415_dir/06.p, 415_dir/07.p,
141: 415_dir/08.p, 415_dir/09.p, 415_dir/10.p, 415_dir/11.p,
142: 415_dir/12.p, 415_dir/13.p, 415_dir/14.p, 415_dir/15.p,
143: results/415.processed: tests for parser.compile exceptions added
144:
145: 2021-11-08 moko
146:
147: * src/: classes/math.C, include/pa_common.h, main/compile.y,
148: main/pa_common.C, main/pa_dir.C, main/pa_exec.C, main/pa_http.C,
149: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
150: types/pa_vdate.C: pa_strncpy added ans used to avoid strncpy
151: drawbacks
152:
1.170 moko 153: 2021-11-06 moko
154:
155: * src/classes/inet.C: ^inet:hostname[] added by sumo@ patch
156: (implements feature #1219)
157:
158: * tests/: 414.html, results/414.processed: test for
159: ^hash.rename[from;to] added (related to feature #1144)
160:
161: 2021-11-05 moko
162:
163: * src/classes/hash.C: ^hash.rename[ $.from[to] ... ] support added
164: (related to feature #1144)
165:
166: 2021-11-04 moko
167:
168: * src/: classes/hash.C, include/pa_hash.h: ^hash.rename[from;to]
169: added (implements feature #1144)
170:
1.169 moko 171: 2021-10-19 moko
172:
173: * tests/: 413.html, results/413.processed: test for hash no longer
174: is accepted as file parameter (related to bug #1218)
175:
176: * src/: classes/curl.C, classes/file.C, classes/image.C,
177: classes/math.C, classes/xdoc.C, types/pa_value.C,
178: types/pa_value.h, types/pa_vfile.h, types/pa_vmail.C: hash no
179: longer is accepted as file parameter (fixes bug #1218)
180:
1.168 moko 181: 2021-07-19 moko
182:
183: * src/targets/cgi/parser3.C: waitpid in file::exec returned "No
184: child processes" when SIGCHLD was SIG_IGN (fixes bug #1215)
185:
1.167 moko 186: 2021-04-16 moko
187:
188: * src/types/pa_vmail.C: message can be null when e-mail is broken,
189: processing it leads to assertions.
190:
1.166 moko 191: 2021-03-25 moko
192:
193: * tests/: 412.html, results/412.processed: test to demonstrate bug
194: #1213
195:
1.165 moko 196: 2021-02-12 moko
197:
198: * tests/: 360.html, results/360.processed, results/363.processed:
199: parser method call in expression mode no longer differs from call
200: in string mode (related to feature #1211)
201:
202: 2021-02-11 moko
203:
204: * src/types/pa_vmail.C: mail parsing with Windows line endings
205: fixed (bug #1212)
206:
207: * src/types/pa_vmethod_frame.h: no more difference inside @test[]
208: when called $v[^test[]] vs $v(^test[]), numbers are converted to
209: strings in both calls (implements feature #1211)
210:
1.164 moko 211: 2021-01-28 moko
212:
213: * buildall, etc/auto.p.in: to remove last patch in debian package
214:
215: * configure, configure.ac, src/include/pa_version.h: 3.4.6 ->
216: 3.4.7b
217:
1.162 moko 218: 2021-01-21 moko
219:
220: * src/main/pa_http.C: no alarm() in file::load when web server mode
221: is MULTITHREADED
222:
1.157 moko 223: 2021-01-20 moko
224:
1.161 moko 225: * src/targets/apache/mod_parser3.c: it is more correct to recommend
226: 'a2enmod mpm_prefork'
227:
1.160 moko 228: * src/targets/apache/mod_parser3.c: prefork name is now
229: 'libapache2-mpm-itk'
230:
231: * src/targets/apache/mod_parser3_core.C: last regular malloc
232: removed
233:
1.159 moko 234: * src/targets/isapi/Makefile.am: -pa_threads.C
235:
1.158 moko 236: * configure, configure.ac, src/include/pa_version.h: 3.4.6rc ->
237: 3.4.6
238:
1.157 moko 239: * etc/auto.p.in: post_max_size 10Mb -> 64Mb. It's 2021 year now. :)
240:
241: * etc/auto.p.in: @config[result] added to simplify $cfg change in
242: /httpd.p
243:
244: * etc/auto.p.in: httpd fine-tune: + @OPTIONS partial, +
245: ^use[/httpd.p] + optional ^preprocess[] (related to feature
246: #1203)
247:
248: 2021-01-19 moko
249:
250: * buildall: --disable-parallel-mark added to avoid "number of
251: processors" threads creation for heap marking as it conflicts
252: with RLimitNProc in apache (on Linux setrlimit RLIMIT_NPROC
253: limits threads)
254:
1.156 moko 255: 2021-01-16 moko
256:
257: * src/: classes/memory.C, include/pa_memory.h, lib/gc/include/gc.h,
258: main/pa_globals.C, main/pa_memory.C,
259: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C,
260: types/pa_vhashfile.C: ^memory:auto-compact(N) added (implements
261: feature #1209)
262:
263: 2021-01-15 moko
264:
265: * configure, configure.ac, src/include/pa_version.h: 3.4.6b ->
266: 3.4.6rc
267:
268: * src/classes/json.C: get_delim added for delimiter caching (10%
269: faster on large json)
270:
271: 2021-01-14 moko
272:
273: * operators.txt: updated with 3.4.6 changes
274:
275: * tests/results/224.processed: test result modified after
276: today(shift) implemented
277:
278: * tests/: 407.html, results/407.processed: test for ^hash.select
279: option $.default(bool) added (related to feature #1172)
280:
281: * src/classes/hash.C: ^hash.select option $.default(bool) added
282: (related to feature #1172)
283:
284: * tests/: 141.html, results/141.processed: test modified for
285: feature #1185.
286:
287: * src/: classes/math.C, include/pa_random.h, main/pa_random.C:
288: ^math:uuid options $.lower(bool) $.solid(bool), ^math:uid64
289: options $.lower(bool) (implements feature #1185)
290:
291: 2021-01-11 moko
292:
293: * src/classes/date.C: ^date::today(N) by gz@ (implements feature
294: #1192)
295:
296: * tests/: 411.html, results/411.processed: test for ^date::today(N)
297: added (related to feature #1192)
298:
1.155 moko 299: 2021-01-05 moko
300:
301: * tests/: 270.html, results/270.processed: test modified to work
302: under Windows
303:
304: * tests/: 390.html, 395.html, results/395.processed: tests updated
305: 4 windows
306:
307: * tests/: 410.html, results/410.processed: test for
308: $CLASS-GETTER-PROTECTED(false) added
309:
310: 2021-01-04 moko
311:
312: * tests/: 409.html, results/409.processed, results/auto.p: test for
313: $MAIN:LOCALS(true) added
314:
1.154 moko 315: 2021-01-03 moko
316:
317: * src/: main/pa_http.C, main/pa_request.C, types/pa_vclass.C,
318: types/pa_vclass.h, types/pa_vstateless_class.C,
319: types/pa_vstateless_class.h: @conf[] +CLASS-GETTER-PROTECTED,
320: +LOCALS. $main -> $MAIN in exception texts (implements feature
321: #1207)
322:
323: 2021-01-02 moko
324:
325: * etc/auto.p.in: minor
326:
327: * src/main/pa_request.C: sending headers only after opening file to
328: allow error reporting if file was not opened (foreign group,
329: etc).
330:
331: 2020-12-31 moko
332:
333: * src/: include/pa_request.h, main/pa_request.C,
334: targets/cgi/parser3.C: ^httpd-main[] -> ^httpd:main[]
335:
336: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
337: main/pa_request.C: get_class_ref added and used
338:
339: * etc/auto.p.in: @CLASS httpd added
340:
341: * etc/auto.p.in: @auto[] is now first
342:
343: 2020-12-30 moko
344:
345: * tests/: 408.html, results/408.processed: test for bug #1166
346: (windows only) added
347:
348: * src/main/pa_common.C: create_dir_for_file should not create dir
349: for trailing / (fixes bug #1166)
350:
351: * tests/: 341.html, results/341.processed: tests for
352: ^nameless_table.hash[] added (related to feature #1138)
353:
354: * src/classes/table.C: ^nameless_table.hash[0;1] now supported
355: (implements feature #1138), extra fields in named tables no
356: longer ignored (implements feature #1138)
357:
358: * tests/results/390.processed: updated after exception text change
359:
360: 2020-12-29 moko
361:
362: * tests/: 407.html, results/407.processed: +$._default check
363:
364: * src/classes/hash.C: keep $_default in ^hash.reverse[]
365:
366: * tests/: 407.html, results/407.processed: test for ^hash.select[]
367: and ^hash.reverse[] added (releated to feature #1172)
368:
369: * src/classes/hash.C:
370: ^hash.select[key;value](bool-condition)[options hash] +
371: ^hash.reverse[] added (implements feature #1172)
372:
373: * src/types/pa_vtable.h: warning war
374:
375: * src/include/pa_config_fixed.h: win32 fix
376:
1.153 moko 377: 2020-12-27 moko
378:
379: * tests/: 406.html, results/406.processed: test results updated
380:
381: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
382: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
383: spelling
384:
385: 2020-12-26 moko
386:
387: * tests/: 406.html, results/406.processed: tests for
388: ^table.rename[] added (related to feature #1148)
389:
390: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
391: ^table.rename[column name from;column name to], ^table.rename[
392: $.[column name from][column name to] ... ] added (implements
393: feature #1148)
394:
395: 2020-12-25 moko
396:
397: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
398: request_info now on stack to avoid yet another THREAD_LOCAL
399: memory deallocation issue (now with cookies), explained in #1203
400:
401: * src/types/pa_vcookie.C: fields should be inited
402:
403: 2020-12-24 moko
404:
405: * src/include/pa_stylesheet_connection.h: looks like
406: xsltFreeStylesheet leads to memory double-free. If so, it's for
407: sure libxml bug, but we have GC anyway, so we just remove this
408: call and see...
409:
410: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
411: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
412: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
413: abort.c:65:8 frame #3: 0x00000000004da663
414: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
415: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
416: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
417: malloc.c:617:9 frame #5: 0x0000000000577f0c
418: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
419: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
420: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
421: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
422: frame #8: 0x000000000050d35c
423: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
424: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
425: frame #10: 0x00000000004436e5
426: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
427: [inlined]
428: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
429: pa_stylesheet_connection.h:62:3
430:
431: 2020-12-23 moko
432:
433: * src/classes/image.C: ^image::measure[; $.video() ] option added
434:
435: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
436: ^image::measure[; $.video(true) ] added
437:
438: * src/main/pa_exec.C: not cleared automatically in multithreaded
439: httpd mode for unknown reasons
440:
441: 2020-12-22 moko
442:
443: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
444: error_log uri of currently processed document", but never used
445: and conflicts with how libgc stops threads on FreeBSD (#define
446: SIG_SUSPEND SIGUSR1), thus removed.
447:
448: 2020-12-21 moko
449:
450: * src/main/pa_request.C: +comment
451:
1.151 moko 452: 2020-12-20 moko
453:
1.152 moko 454: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
455: it is more safe to have versions of pa_strdup with one and two
456: arguments, as helper_length=0 not always mean that strlen()
457: should be called, but means zero.
458:
459: * src/targets/isapi/parser3isapi.C: minor
460:
461: * src/main/pa_http.C: +valid_http_method
462:
1.151 moko 463: * src/: include/pa_http.h, main/pa_http.C,
464: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
465:
466: 2020-12-17 moko
467:
468: * tests/: 405.html, results/405.processed: test for split by regex
469: added (related to feature #1160)
470:
471: * src/classes/string.C: split by regex implemented (feature #1160)
472:
473: * src/classes/string.C: minor
474:
475: * tests/: 404.html, results/404.processed: test for whitespace
476: string is now OK for table argument (related to feature #1169)
477:
478: * src/: classes/image.C, classes/string.C, classes/table.C,
479: types/pa_vmethod_frame.C: whitespace string is now OK for table
480: argument (as with hash) (implements feature #1169)
481:
482: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
483: limit for comment (fixes bug #1102)
484:
485: * src/targets/cgi/parser3.C: +HAVE_TLS check
486:
487: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
488:
489: * src/include/pa_config_includes.h: HAVE_TLS used
490:
491: * configure.ac: +TLS check
492:
493: * src/main/pa_http.C: content logging added
494:
495: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
496: clear_response_headers added
497:
498: 2020-12-16 moko
499:
500: * buildall: as we now use threads, libatomic_ops still required for
501: some OS.
502:
503: * src/main/pa_request.C: whitespace
504:
505: * src/: include/pa_request.h, main/pa_request.C:
506: Request::Exception_trace::table extracted and used
507:
508: * src/main/pa_request.C: moving output_result call outside of try
509: as network exceptions should not be handled by parser code
510:
511: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
512: logging network exchange
513:
514: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
515: via network if it was network write error.
516:
517: * src/targets/cgi/parser3.C: log -> pa_log
518:
519: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
520:
521: * src/main/pa_threads.C: getpid() if no gettid() found
522:
523: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
524: we need to ignore "void" connections from browsers (browsers open
525: connections in advance and they will be empty if user does not
526: request more pages)
527:
528: 2020-12-15 moko
529:
530: * src/targets/cgi/parser3.C: avoid previous uri in logs
531:
532: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
533: RequestController not needed in httpd mode
534:
535: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
536: classes/classes.h, classes/curl.C, classes/date.C,
537: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
538: classes/hashfile.C, classes/image.C, classes/inet.C,
539: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
540: classes/memcached.C, classes/memory.C, classes/op.C,
541: classes/reflection.C, classes/regex.C, classes/response.C,
542: classes/string.C, classes/table.C, classes/void.C,
543: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
544: include/pa_array.h, include/pa_base64.h,
545: include/pa_cache_managers.h, include/pa_charset.h,
546: include/pa_charsets.h, include/pa_common.h,
547: include/pa_config_fixed.h, include/pa_config_includes.h,
548: include/pa_dictionary.h, include/pa_dir.h,
549: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
550: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
551: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
552: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
553: include/pa_request_charsets.h, include/pa_request_info.h,
554: include/pa_sapi.h, include/pa_socks.h,
555: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
556: include/pa_stack.h, include/pa_string.h,
557: include/pa_stylesheet_connection.h,
558: include/pa_stylesheet_manager.h, include/pa_symbols.h,
559: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
560: include/pa_uue.h, include/pa_xml_exception.h,
561: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
562: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
563: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
564: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
565: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
566: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
567: main/compile.tab.C, main/compile.y, main/compile_tools.C,
568: main/compile_tools.h, main/execute.C, main/pa_base64.C,
569: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
570: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
571: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
572: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
573: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
574: main/pa_sql_driver_manager.C, main/pa_string.C,
575: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
576: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
577: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
578: main/untaint.C, sql/pa_sql_driver.h,
579: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
580: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
581: targets/isapi/parser3isapi.C, types/pa_junction.h,
582: types/pa_method.h, types/pa_property.h, types/pa_value.C,
583: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
584: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
585: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
586: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
587: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
588: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
589: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
590: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
591: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
592: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
593: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
594: types/pa_vmemory.h, types/pa_vmethod_frame.C,
595: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
596: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
597: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
598: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
599: types/pa_vstateless_object.h, types/pa_vstatus.C,
600: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
601: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
602: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
603: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
604: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
605:
606: * src/main/pa_request.C: old compilers support
607:
608: * tests/: 362.html, results/362.processed: test updated after
609: changes after upgrade to libxml2-2.9.9 were made (related to bug
610: #1108)
611:
612: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
613: removed, as xsltFreeStylesheet has side effects on original doc.
614: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
615: not updated after xdoc modification (part 3 of test 362).
616: (related to bug #1108)
617:
618: * src/targets/isapi/parser3isapi.C: +pa_strcat
619:
620: * src/: classes/memory.C, include/pa_memory.h,
621: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
622: PA_GC_GCOLLECT used
623:
624: * src/include/pa_memory.h: +PA_GC_COLLECT
625:
626: * src/targets/cgi/parser3.C: msvs support fixes
627:
628: * src/lib/gc/include/gc.h: more cleanup
629:
630: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
631:
632: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
633: targets/cgi/parser3.C: $main:HTTPD.mode implemented
634:
635: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
636:
637: * configure.ac: pthread.h added to checked headers
638:
639: * src/classes/table.C: string stream is back :)
640:
641: * src/classes/memory.C: GC_generate_random_backtrace no longer
642: exists
643:
644: * src/main/pa_globals.C: GC_dont_gc replaced
645:
646: * src/lib/gc/include/gc.h: major cleanup, only used functions are
647: left to simplify adding new functions. depricated GC_dont_gc
648: replaced with GC_disable and GC_enable calls.
649:
650: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
651: CORD_from_file* not used and thus removed
652:
653: * src/lib/gc/include/gc_allocator.h: minor cleanup
654:
655: 2020-12-14 moko
656:
657: * src/classes/: curl.C, memory.C, table.C: every TLS should be
658: referenced elsewhere, or GC will collect it.
659:
660: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
661: main/pa_xml_io.C: bugfix: TLS variables should be referenced
662: elsewhere, or GC will collect them (and we'll get GPF in
663: multithreaded enviroment). May be it can be also fixed by some
664: GC call, not sure. But this fix costs nothing (but hours of
665: debugging to find the issue :).
666:
1.150 moko 667: 2020-12-11 moko
668:
669: * configure.ac: gettid() check added
670:
671: * src/main/pa_threads.C: HAVE_GETTID used
672:
673: * src/include/pa_config_auto.h.in: +HAVE_GETTID
674:
675: * src/: include/pa_threads.h, main/pa_threads.C: now unified
676: version for isapi/cgi/apache
677:
678: * buildall: threads are now required.
679:
680: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
681: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
682: main/main.vcproj: pa_threads.C moved to main
683:
684: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
685: isapi/pa_threads.C: pa_threads.C moved to main
686:
687: * src/: main/Makefile.am, targets/cgi/Makefile.am,
688: targets/apache/Makefile.am: pa_threads.C moved to main
689:
690: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
691:
692: * src/: include/pa_stylesheet_connection.h,
693: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
694: and weird GPF in multithreaded httpd is gone
695:
696: * src/include/: pa_stylesheet_connection.h,
697: pa_sql_driver_manager.h: whitespace
698:
699: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
700:
701: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
702: main/pa_stylesheet_manager.C: whitespace, warning war
703:
704: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
705: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
706: parser_multithreaded never used
707:
708: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
709:
710: 2020-12-10 moko
711:
712: * src/: include/pa_config_includes.h, include/pa_http.h,
713: main/pa_http.C, targets/cgi/parser3.C: initial support for
714: MULTITHREADED and PARALLEL httpd server modes
715:
716: * src/main/pa_globals.C: GC_java_finalization is depricated
717:
718: 2020-12-09 moko
719:
720: * etc/auto.p.in: + @httpd-main
721:
722: * src/: include/pa_common.h, main/pa_request.C,
723: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
724: work
725:
726: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
727: slow file_read_binary no longer used, send_range added
728:
729: 2020-12-08 moko
730:
731: * src/main/pa_request.C: >4Gb support
732:
733: * src/targets/cgi/parser3.C: msvc warning war
734:
735: * src/: include/pa_config_includes.h, main/pa_http.C,
736: main/pa_request.C: msvc warnings war
737:
738: * src/classes/image.C: warning war
739:
740: * src/classes/table.C: MSVC warning war
741:
742: * src/targets/cgi/parser3.C: msvc warnings war
743:
744: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
745: added
746:
1.149 moko 747: 2020-12-07 moko
748:
1.150 moko 749: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
750: avoid logging beside system-wide auto.p
751:
752: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
753:
754: * configure, configure.ac, src/include/pa_config_auto.h.in:
755: configure options added:
756:
757: --with-system-cfg=FILE to specify system-wide auto.p
758: --with-system-log=FILE to specify system-wide parser3.log
759:
760: * Makefile.am: bin no longer exists
761:
762: * configure, configure.ac: auto.p moved to etc to simplify debian
763: package
764:
765: * buildall: auto.p and parser3.charsets moved to their default
766: location after install
767:
768: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
769:
770: * aclocal.m4, configure: automake 1.15 -> 1.16.1
771:
1.149 moko 772: * src/targets/cgi/parser3.C: locate_config call returned to
773: original place as it requires pa_thread_request() under Windows
774:
775: * src/targets/cgi/parser3.C: renaming
776:
777: 2020-12-06 moko
778:
779: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
780: check added
781:
782: 2020-12-04 moko
783:
784: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
785: main/pa_request.C: unified uint64_t lseek implemented to support
786: >4Gb files under x86, including Windows
787:
788: 2020-12-02 moko
789:
790: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
791: with max_file_size
792:
793: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
794: support for processing files sized >4Gb on 32 bit planforms
795:
796: * tests/399.html: file moved
797:
798: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
799:
800: * src/targets/cgi/pa_sapi_info.h: warning war
801:
802: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
803: warning war
804:
805: 2020-12-01 moko
806:
807: * src/classes/image.C: mp4 extended size (>4Gb) support added
808:
809: * src/classes/image.C: for "size not found" exception to be shown
810: if size not found until eof
811:
812: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
813: bit linux)
814:
815: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
816: #1188)
817:
818: 2020-11-30 moko
819:
820: * src/classes/image.C: definitions moved closer to code
821:
822: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
823: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
824: 395_dir/3_VP8X.webp, results/395.processed,
825: results/396.processed: tests for ^image::measure[] .webp support
826: added, all image files moved into one directory (related to
827: feature #1188)
828:
829: * src/classes/image.C: ^image::measure[] now supports webp (feature
830: #1188)
831:
1.148 moko 832: 2020-11-29 moko
833:
834: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
835: processing, unnessesary defines removed
836:
837: 2020-11-24 moko
838:
839: * tests/results/: 099.processed, 100.processed, 205.processed,
840: 309.processed, 310.processed: Content-Disposition: inline
841: returned
842:
843: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
844: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
845: ] added (related to bug #1204)
846:
847: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
848: ] supported to avoid Content-Disposition: inline;
849: filename="<file>.ext" but still set Content-Type for ext (related
850: to bug #1204)
851:
1.147 moko 852: 2020-11-22 moko
853:
854: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
855: types/pa_vfile.C: pa_filename added to avoid useless rsplit
856:
857: * src/main/pa_request.C: content_disposition_inline returned.
858:
859: 2020-11-17 moko
860:
861: * src/main/pa_request.C: empty main method name support
862:
863: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
864: config_handler added, stdout flush added.
865:
866: 2020-11-16 moko
867:
868: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
869:
870: * tests/results/: 099.processed, 205.processed, 237.processed,
871: 309.processed, 310.processed: Content-Disposition: inline is not
872: required and should not contain filename="<name>"
873:
874: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
875: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
876: targets/isapi/parser3isapi.C: pa_strcat implemented and used
877:
1.146 moko 878: 2020-11-14 moko
879:
880: * src/targets/cgi/parser3.C: spelling
881:
882: * src/targets/cgi/parser3.C: renaming
883:
884: * src/targets/cgi/parser3.C: args_skip removed, locate_config
885: relocated
886:
887: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
888: before request processing, which is weired
889:
890: 2020-11-13 moko
891:
892: * src/main/pa_http.C: pa_recv added with timeout support, thus read
893: copied in httpd.
894:
895: 2020-11-12 moko
896:
897: * src/main/pa_http.C: ALARM code unified to be used in httpd
898:
899: * src/: include/pa_request.h, main/pa_request.C,
900: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
901:
902: * src/main/pa_http.C: URI validation added
903:
904: * src/targets/cgi/parser3.C: filespec_to_process now variable,
905: can't be empty but can be null. httpd-main is now main method
906: name for httpd mode
907:
908: 2020-11-11 moko
909:
910: * src/main/pa_request.C: path_translated can be null in httpd mode
911:
912: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
913: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
914: classes/xdoc.C, include/pa_request.h, main/execute.C,
915: main/pa_request.C: r.absolute -> r.full_disk_path
916:
917: * src/targets/cgi/parser3.C: if filename to process is not
918: specified, auto.p should be present.
919:
1.145 moko 920: 2020-11-03 moko
921:
922: * src/: classes/op.C, include/pa_request.h: unused argument removed
923:
924: * src/main/pa_request.C: content_disposition_inline is the default,
925: not required.
926:
1.144 moko 927: 2020-10-29 moko
928:
929: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
930: ^use[file; $.main(true) ] implemented for auto.p processing and
931: path_translated changing to correct relative files path
932: calculation in httpd mode
933:
934: * src/: include/pa_request.h, main/pa_request.C:
935: fail_on_read_problem removed, as it allways true, as if should
936: be.
937:
938: * src/: include/pa_request.h, main/pa_request.C,
939: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
940: targets/isapi/parser3isapi.C: clearing config_filespec when
941: config was not found, thus flag not required and removed.
942:
943: 2020-10-28 moko
944:
945: * tests/: 402.html, results/402.processed: error reporting test
946:
947: * src/main/execute.C: better error reporting when
948: $result[^hash::create[]] in @main.
949:
950: * src/main/: execute.C, pa_request.C: frame.result() should be used
951: + minor optimization
952:
953: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
954: main/pa_xml_io.C: execute_*_method simplified and unified
955:
956: 2020-10-27 moko
957:
958: * tests/: 306.html, results/306.processed: a bit more testing. :)
959:
960: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
961: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
962: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
963: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
964: types/pa_vmethod_frame.h, types/pa_vobject.C,
965: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
966: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
967: longer used in object-prototype mode
968:
969: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
970: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
971: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
972: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
973: $form:name[value] features
974:
1.143 moko 975: 2020-10-18 moko
976:
977: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
978:
979: 2020-10-15 moko
980:
981: * src/main/pa_http.C: url no longer needed as
982: ALTER_EXCEPTION_SOURCE is used
983:
984: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
985: main/pa_http.C: check_file_size filespec is now optional
986:
987: * src/: classes/curl.C, include/pa_exception.h,
988: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
989: ALTER_EXCEPTION_COMMENT added for better error reporting
990:
991: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
992: results/346-curl.processed, results/379-curl.processed,
993: results/379.processed: test results updated as load now provides
994: better error reporting + curl responses updated
995:
996: 2020-10-14 moko
997:
998: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
999: main/pa_string.C, targets/apache/mod_parser3_core.C,
1000: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
1001: checked. 10 is now default base, no hex autodetect by default
1002:
1003: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1004: connection socket closing in destructor + accept exception
1005: handling
1006:
1007: * src/targets/cgi/parser3.C: warning war
1008:
1009: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
1010: main/pa_request.C, targets/apache/mod_parser3_core.C,
1011: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
1012: exception handling unified
1013:
1014: 2020-10-13 moko
1015:
1016: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
1017: autodetection
1018:
1019: * src/targets/apache/mod_parser3_core.C: reverted to atoi
1020:
1021: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
1022:
1023: * src/main/pa_http.C: warning war
1024:
1.142 moko 1025: 2020-10-12 moko
1026:
1.143 moko 1027: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
1028: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
1029: unhandled exception code optimization
1030:
1031: * src/targets/cgi/parser3.C: request_info now global variable
1032:
1033: * src/main/pa_http.C: http_read_response moved to HTTP_response
1034: class
1035:
1036: * src/: include/pa_http.h, main/pa_http.C,
1037: targets/cgi/pa_sapi_info.h: read_post implemented
1038:
1.142 moko 1039: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
1040: [host:]port syntax support in httpd mode
1041:
1042: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
1043: targets/cgi/parser3.C: populate_env added
1044:
1045: * src/include/pa_hash.h: to make get(char *) compiling in
1046: HashStringString
1047:
1048: 2020-10-10 moko
1049:
1050: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
1051: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
1052:
1053: * src/: include/pa_http.h, include/pa_request_info.h,
1054: main/pa_http.C, main/pa_string.C,
1055: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
1056: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
1057: types/pa_vrequest.C: initial httpd mode implementation
1058:
1.141 moko 1059: 2020-10-04 moko
1060:
1061: * src/targets/cgi/parser3.C: options together
1062:
1063: 2020-09-30 moko
1064:
1065: * src/main/pa_http.C: renamed
1066:
1.140 moko 1067: 2020-08-14 moko
1068:
1069: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
1070: src/targets/cgi/Makefile.am: no httpd as separate library
1071:
1072: 2020-08-13 moko
1073:
1074: * src/targets/cgi/parser3.C: SAPI::die used in exception in
1075: unhandled exception handler to report 500 instead of 200 it was
1076: before.
1077:
1078: * src/targets/apache/mod_parser3_core.C: minor cleanup
1079:
1080: * src/: include/pa_sapi.h, main/untaint.C,
1081: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1082: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
1083: thus replaced with SAPI::die and removed
1084:
1085: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
1086: cgi/parser3.C: whitespace
1087:
1088: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
1089:
1090: 2020-08-12 moko
1091:
1092: * src/targets/cgi/parser3.C: duplicate info in signal logging
1093: removed, whitespace was: SIGPIPE received while executing code.
1094: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
1095: cl=0]
1096:
1097: * parser3.sln: + httpd.vcproj
1098:
1099: 2020-08-11 moko
1100:
1101: * src/targets/cgi/Makefile.am: +libhttpd
1102:
1103: * configure.ac, src/lib/Makefile.am: +libhttpd
1104:
1.139 moko 1105: 2020-07-13 moko
1106:
1107: * tests/: 401.html, results/401.processed: test for hash key does
1108: not keep language, but tainted in foreach.
1109:
1.138 moko 1110: 2020-07-01 moko
1111:
1112: * tests/: 235.html, results/235.processed: test result updated as
1113: messages before attachments implemented (feature #1176)
1114:
1.137 moko 1115: 2020-06-27 moko
1116:
1117: * tests/: 400.html, results/400.processed: test updated to check
1118: ^return{code}
1119:
1120: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
1121: fixed
1122:
1123: 2020-06-26 moko
1124:
1125: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
1126: added (related to https://www.parser.ru/forum/?id=85319)
1127:
1128: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
1129: when $result assignment was last statement in the method
1130: (https://www.parser.ru/forum/?id=85319)
1131:
1.136 moko 1132: 2020-05-23 moko
1133:
1134: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
1135: whitespace, unused level removed
1136:
1137: 2020-05-19 moko
1138:
1139: * src/types/pa_vmail.C: whitespace
1140:
1141: * src/types/pa_vmail.C: files should be processed last (related to
1142: feature #1176)
1143:
1.135 moko 1144: 2020-05-12 moko
1145:
1146: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
1147: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
1148:
1149: * configure.ac: FreeBSD1X.X check added to avoid
1150: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
1151:
1.134 moko 1152: 2020-02-26 moko
1153:
1154: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
1155: compilation issue (related to bug #1201)
1156:
1157: * src/main/pa_common.C: entry_readable -> entry_exists,
1158: undocumented access(fname, R_OK) call removed (fixes bug #1201)
1159: -f and -d now works under Windows in UTF-8 with Russian
1160: filenames.
1161:
1162: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
1163: advice (related to feature #1199)
1164:
1165: 2020-02-25 moko
1166:
1167: * buildall: --silent removed
1168:
1169: * configure.ac: gmime-3.0 support
1170:
1171: * buildall: --with-system-mailreceive option added to build with
1172: system libgmime
1173:
1174: * src/types/pa_vmail.C: avoiding
1175: https://github.com/jstedfast/gmime/issues/83 "feature" (related
1176: to feature #1199)
1177:
1.133 moko 1178: 2020-02-18 moko
1179:
1180: * src/classes/op.C: windows x64 debug mode compile fix
1181:
1182: * src/main/pa_globals.C: no longer required due to -MD -> -MT
1183: change (releated to feature #1200)
1184:
1185: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1186: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
1187: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
1188: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
1189: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1190: targets/apache/ApacheModuleParser3.vcproj,
1191: targets/apache/ApacheModuleParser3Core.vcproj,
1192: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1193: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
1194: dependency (related to feature #1200)
1195:
1.132 moko 1196: 2020-02-12 moko
1197:
1198: * src/types/pa_vmail.C: minimize diff
1199:
1200: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
1201: #1199)
1202:
1.131 moko 1203: 2020-01-18 moko
1204:
1205: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
1206:
1.130 moko 1207: 2019-12-28 moko
1208:
1209: * src/targets/cgi/parser3.C: avoid empty ?
1210:
1211: 2019-12-27 moko
1212:
1213: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
1214: DOCUMENT_ROOT (related to feature #1164)
1215:
1216: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
1217: fcgiwrap setup (implements feature #1164)
1218:
1219: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
1220: but no issues found (related to feature #1164)
1221:
1222: * src/targets/cgi/parser3.C: actualized
1223:
1224: 2019-12-26 moko
1225:
1226: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
1227: removed
1228:
1229: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
1230: removed
1231:
1232: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
1233: allocation errors, we don't want default gc warnings (without
1234: timestamp and URI).
1235:
1236: * src/: classes/memory.C, main/pa_globals.C,
1237: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1238: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
1239: pa_globals_init
1240:
1241: * src/main/pa_globals.C: setup_hex_value() removed, static array
1242: initialization used (optimization)
1243:
1244: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
1245: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
1246: pa_socks_init/pa_socks_done moved inside pa_globals_init
1247: (optimization)
1248:
1.129 moko 1249: 2019-12-09 moko
1250:
1251: * src/include/pa_config_fixed.h: warning war
1252:
1.128 moko 1253: 2019-12-08 moko
1254:
1255: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
1256: process grammar under Unix.
1257:
1258: 2019-12-07 moko
1259:
1260: * tests/389.html: For Windows XP. :)
1261:
1262: * tests/388-sql.html: Windows compatibility added
1263:
1264: 2019-12-06 moko
1265:
1266: * src/targets/cgi/parser3.C: warning war
1267:
1268: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
1269: == sizeof(CORD)) to avoid aligning bugs in future
1270:
1271: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
1272: XML_STATIC
1273:
1274: * src/include/pa_request.h: StackItem() not required
1275:
1276: * src/include/pa_stack.h: warning war
1277:
1278: * src/include/pa_config_includes.h: GCC warning silenced
1279:
1280: * src/include/pa_memory.h: warning war: the program should also
1281: define 'void operator delete [](void*, std::size_t)'
1282: [-Wsized-deallocation]
1283:
1284: * src/types/: pa_vregex.h, pa_vtable.h: warning war
1285:
1286: * src/classes/string.C: not reqired cast removed
1287:
1288: * src/classes/string.C: not reqired cast removed
1289:
1290: 2019-12-05 moko
1291:
1292: * src/lib/sdbm/pa_file_io.C: warning war
1293:
1294: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
1295: enum Language : size_t - required for VS2015+ to make
1296: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
1297: without it (related to feature #1198)
1298:
1299: 2019-12-04 moko
1300:
1301: * src/main/pa_base64.C: unsigned char -> uchar
1302:
1303: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
1304: as other libs
1305:
1306: * src/include/pa_version.h: +amd64
1307:
1308: 2019-12-03 moko
1309:
1310: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
1311: release
1312:
1313: * src/include/pa_config_includes.h: warning war
1314:
1315: * src/classes/image.C: warning war
1316:
1317: * src/main/pa_globals.C: x64 libs support
1318:
1319: * src/include/pa_config_includes.h: warning war
1320:
1321: * src/types/pa_method.h: warning war
1322:
1.127 moko 1323: 2019-11-28 moko
1324:
1325: * src/classes/math.C: vs2003 compatibility + warning war
1326:
1327: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
1328: libxml2-2.9.9 (related to feature #1136)
1329:
1330: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
1331: typecast for more compatibility (related to feature #1136)
1332:
1333: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
1334: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
1335: feature #1136)
1336:
1337: 2019-11-26 moko
1338:
1339: * src/main/: compile_tools.C, compile_tools.h: invalid assert
1340: removed (it was failing in $$var case), condition added
1341:
1.126 moko 1342: 2019-11-25 moko
1343:
1344: * tests/: 397.html, 399.html, results/141.processed,
1345: results/399.processed: base64 options tested
1346:
1347: * src/: classes/math.C, main/pa_http.C: base64 options used
1348:
1349: * src/main/pa_base64.C: base64 encode rewritten, base64 options
1350: implemented (feature #986)
1351:
1352: * src/main/pa_cache_managers.C: whitespace
1353:
1354: * tests/: 397.html, 399.html, results/399.processed: tests for
1355: ^base64 encode options added (related to feature #986)
1356:
1357: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
1358: pa_base64_encode(file) removed - more memory, but faster and less
1359: code (related fo feature #986)
1360:
1361: 2019-11-24 moko
1362:
1363: * tests/: 155.html, results/155.processed: limit and offset in
1364: ^table::load[] now supported, thus test added
1365:
1366: * src/: classes/file.C, classes/table.C, include/pa_common.h,
1367: main/pa_common.C: optimization: offset and limit options parsing
1368: moved inside file_load.
1369:
1370: 2019-11-23 moko
1371:
1372: * src/: classes/file.C, classes/op.C, include/pa_common.h,
1373: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
1374: optimization: file_read replaced with simplified file_read_binary
1375:
1376: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1377: types/pa_vform.C: whitespace
1378:
1379: * src/: include/pa_common.h, main/pa_common.C: never used params
1380: removed
1381:
1382: 2019-11-21 moko
1383:
1384: * tests/: 193.html, results/193.processed, results/389.processed:
1385: test results updated as now base64 does not discard tail without
1386: padding (related to feature #986)
1387:
1388: 2019-11-20 moko
1389:
1390: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1391: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1392: pa_base64_decode (related to feature #986)
1393:
1394: * tests/398.html: tests for base64 decode added (related to feature
1395: #986)
1396:
1397: * src/main/pa_base64.C: base64_decode rewritten - padding option
1398: support, padding inside base 64 supported (related to feature
1399: #096)
1400:
1401: 2019-11-19 moko
1402:
1403: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1404: FreeBSD 12
1405:
1.125 moko 1406: 2019-11-16 moko
1407:
1408: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1409: support added, step support removed (related to #986)
1410:
1411: 2019-11-15 moko
1412:
1413: * src/classes/math.C: using log since log2 is not present on
1414: FreeBSD < 8.4 (related to feature #1177)
1415:
1416: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1417: pa_base64_size extracted and used for files as well (related to
1418: feature 986)
1419:
1420: 2019-11-14 moko
1421:
1422: * tests/: 397.html, results/397.processed: + content check
1423:
1424: * tests/: 141.html, results/141.processed: make test resuls more
1425: readable
1426:
1427: * tests/: 397.html, results/193.processed, results/397.processed:
1428: test results updated after \x00 character was disabled in
1429: math:convert string mode (related to feature #1177)
1430:
1431: * src/classes/: math.C, string.C: \\x00 character disabled while
1432: converting to string (as in base64, related to feature #1177)
1433:
1434: * src/classes/file.C: more correct arguments separation
1435:
1436: * src/: classes/file.C, classes/math.C, classes/string.C,
1437: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1438: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
1439: options added, but not yet implemented (related to feature #986)
1440:
1441: * src/classes/math.C: whitespace
1442:
1443: 2019-11-13 moko
1444:
1445: * tests/: 397.html, results/397.processed: +tainting test (related
1446: to feature #1177)
1447:
1448: * src/classes/math.C: as we now produce not only digits, result
1449: should be tainted (related to feature #1177)
1450:
1451: * src/main/pa_base64.C: whitespace
1452:
1453: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
1454: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1455: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
1456: implementation moved from pa_common.h and pa_common.C
1457:
1458: 2019-11-12 moko
1459:
1460: * tests/: 275.html, results/275.processed: out of range test fixed,
1461: as ^math:convert now supports arbitrary precision
1462:
1463: 2019-11-11 moko
1464:
1465: * tests/results/389.processed: uctualized error message
1466:
1467: * tests/: 389.html, 397.html, results/397.processed: tests for
1468: ^math:convert added (related to feature #1177)
1469:
1470: * src/classes/math.C: ^math:convert now supports arbitrary
1471: precision, alphabet support added (implements feature #1177)
1472:
1.124 moko 1473: 2019-11-06 moko
1474:
1475: * tests/: 181.html, results/181.processed: entities usage added,
1476: more entites load tests (related to bug #842 discussion)
1477:
1478: 2019-11-05 moko
1479:
1480: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
1481: call from xmlFileOpen if http://localhost/<file> was not found
1482: (related to bug #842)
1483:
1484: * src/main/pa_xml_io.C: rename
1485:
1486: * src/main/pa_xml_io.C: +MemoryStream constructor
1487:
1488: * src/main/pa_xml_io.C: whitespace
1489:
1.123 moko 1490: 2019-10-31 moko
1491:
1492: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
1493: XML_PARSE_NOENT) added to fix entities load, (related to feature
1494: #1181)
1495:
1.122 moko 1496: 2019-10-25 moko
1497:
1498: * tests/: 388-sql.html, results/388-sql.processed: more multiple
1499: queries tests
1500:
1501: 2019-10-24 moko
1502:
1503: * tests/: 388-sql.html, results/388-sql.processed: support for
1504: pgsql driver test
1505:
1506: * tests/: 388-sql.html, results/388-sql.processed:
1507: multi_statements=1 now tested, mysql test now supported
1508: (connection must be specified in [parser3] section in .my.cnf)
1509: related to issues #1195 and #1194
1510:
1.121 moko 1511: 2019-09-11 moko
1512:
1513: * src/classes/int.C: whitespace
1514:
1515: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
1516: exception test
1517:
1518: * tests/results/388-sql.processed: sql queries now shown (related
1519: to feature #1196)
1520:
1521: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
1522: with old parser versions.
1523:
1524: * src/: classes/file.C, classes/hash.C, classes/string.C,
1525: classes/table.C, classes/void.C, include/pa_sql_connection.h,
1526: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
1527: instead of connect string in query_event_handlers exceptions
1528: (implements feature #1196)
1529:
1.120 moko 1530: 2019-09-06 moko
1531:
1532: * tests/388-sql.html: mysql compat
1533:
1534: * src/: classes/hash.C, classes/string.C, classes/table.C,
1535: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
1536: sql_ variables declaration moved to pa_common.h
1537:
1.116 moko 1538: 2019-01-15 moko
1539:
1540: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
1541: logically sorted
1542:
1543: 2018-12-27 moko
1544:
1545: * src/include/pa_config_includes.h: warning war:
1546: -Wdeprecated-register added for C++ 17
1547:
1548: 2018-10-15 moko
1549:
1550: * configure.ac: FreeBSD 11.2 can be build with ./configure
1551: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
1552: --with-xml=/usr/local/
1553:
1554: 2018-09-24 moko
1555:
1556: * tests/: 396.html, 396.tiff, results/396.processed: test for
1557: ^image::measure[] now supports tiff added (related to feature
1558: #1188)
1559:
1560: * src/classes/image.C: ^image::measure[] now supports tiff
1561: (implements feature #1188)
1562:
1563: 2018-09-20 moko
1564:
1565: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
1566: files measure added (related to ticket #1188)
1567:
1568: * src/classes/image.C: measure of bmp files implemented (related to
1569: ticket #1188)
1570:
1571: 2018-09-18 moko
1572:
1573: * tests/: 394-curl.html, results/394-curl.processed,
1574: results/auto.p: test for bug #1187 (max_file_size check for head
1575: requests) added
1576:
1577: 2018-08-24 moko
1578:
1579: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
1580: response content-length check is required (fixes bug #1187)
1581:
1582: 2018-05-11 moko
1583:
1584: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
1585: $.append(bool) ] option added (related to feature #919)
1586:
1587: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
1588: from misha@ patch (implements feature #919)
1589:
1590: 2018-03-22 moko
1591:
1592: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
1593: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
1594: with 128kb buffer. Now works at least 12 times faster. :) May be
1595: Windows-only problem.
1596:
1597: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
1598: build fix)
1599:
1600: 2018-02-03 moko
1601:
1602: * src/main/execute.C: removes irrelevant lines from exception stack
1603: trace when exceptions occurs in assigment (fixes bug #1165)
1604:
1605: * tests/: 393.html, results/393.processed: test for behavour after
1606: "Property can not be created, already exists field with that
1607: name" exception removed (related to feature #1183)
1608:
1609: * src/types/pa_vclass.C: "Property can not be created, already
1610: exists field with that name" exception removed (implements
1611: feature #1183)
1612:
1613: 2018-01-19 moko
1614:
1615: * src/classes/string.C: whitespace
1616:
1617: * src/classes/string.C: whitespace
1618:
1619: * tests/: 392.html, results/392.processed: test for
1620: ^regex::create[$regex] added (related to feature #1135)
1621:
1622: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
1623: ^regex::create[$regex] added (implements feature #1135)
1624:
1625: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
1626: commented define added (related to feature #1157)
1627:
1628: 2018-01-17 moko
1629:
1630: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
1631:
1632: 2018-01-15 moko
1633:
1634: * tests/: 390.html, results/390.processed: real path replaced by
1635: stub
1636:
1637: * tests/: 391.html, results/391.processed: test for feature #1181
1638: (XML_PARSE_HUGE exception) added
1639:
1640: 2018-01-11 moko
1641:
1642: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
1643: XML_PARSE_HUGE option passed by default (implements feature
1644: #1181)
1645:
1646: * src/classes/string.C: whitespace
1647:
1648: 2017-12-10 moko
1649:
1650: * tests/: 389.html, 390.html, results/389.processed,
1651: results/390.processed: image code coverage tests added (related
1652: to feature #1125)
1653:
1654: 2017-12-08 moko
1655:
1656: * tests/: 346-curl.html, 388-sql.html, 389.html,
1657: results/346-curl.processed, results/388-sql.processed,
1658: results/389.processed: more code coverage tests
1659:
1660: * tests/: 264.html, results/264.processed: code coverage for
1661: ^file::exec[]
1662:
1663: 2017-12-07 moko
1664:
1665: * tests/: 174.html, 388-sql.html, 389.html,
1666: results/388-sql.processed, results/389.processed,
1667: results/174.processed: more coverage tests
1668:
1669: * src/classes/math.C: exception text actualized
1670:
1671: 2017-12-06 moko
1672:
1673: * tests/388-sql.html: $SQL can be here
1674:
1675: * tests/results/auto.p: $SQL not required here
1676:
1677: * tests/: 388-sql.html, 389.html, Makefile,
1678: results/388-sql.processed, results/389.processed, results/auto.p:
1679: code coverage tests for sql (using sqlite) and int/double/bool
1680: added (related to feature #1125)
1681:
1682: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1683: lib/json/json.vcproj, lib/md5/md5.vcproj,
1684: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
1685: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1686: targets/apache/ApacheModuleParser3Core.vcproj,
1687: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1688: types/types.vcproj: gc\include no longer required
1689:
1690: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
1691: required
1692:
1693: * src/: classes/Makefile.am, classes/table.C,
1694: include/pa_config_includes.h, include/pa_string.h,
1695: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1696: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
1697: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
1698: targets/apache/Makefile.am, targets/cgi/Makefile.am,
1699: types/Makefile.am: to be sure that our version of gc.h/cord.h is
1700: used, we now include it directly
1701:
1702: 2017-12-04 moko
1703:
1704: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
1705: memcached/memcached.vcproj, punycode/punycode.vcproj,
1706: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
1707: where required
1708:
1709: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
1710: now can be used to trace memory allocations
1711:
1712: * src/: classes/table.C, include/pa_config_includes.h,
1713: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1714: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
1715: method removes, libcord also can work without libgc
1716:
1717: * src/classes/json.C: pa_gc_malloc_atomic should not be used
1718:
1719: 2017-11-29 moko
1720:
1721: * src/classes/curl.C: no exception if some of ^curl:info[] elements
1722: are not present (related to feature #1173)
1723:
1724: * tests/346-curl.html: test updated to test curl content-length bug
1725: (related to feature #1173)
1726:
1727: * tests/results/346-curl.processed: more test for content-length
1728: curl bug (related to feature #1173)
1729:
1730: * tests/results/346-curl.processed: test results updated after
1731: #1173 implemented
1732:
1733: 2017-11-28 moko
1734:
1735: * src/classes/curl.C: another libcurl Content-length bug walkaround
1736: (related to feature #1173)
1737:
1738: 2017-11-27 moko
1739:
1740: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
1741: $.http_version[version string] added (implements feature #1173),
1742: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
1743: where $post(true) bug existed.
1744:
1745: 2017-11-18 moko
1746:
1747: * src/include/pa_memory.h: warning war (related to feature #1170)
1748:
1749: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
1750: feature #1170)
1751:
1752: 2017-11-17 moko
1753:
1754: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
1755: std::basic_stringstream used in ^table.csv-string[] is compatible
1756: with delete usage check only under Debian 9 (related to feature
1757: #1170)
1758:
1759: 2017-11-16 moko
1760:
1761: * src/: classes/curl.C, classes/hash.C, classes/json.C,
1762: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
1763: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
1764: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
1765: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
1766: types/pa_vxdoc.h: regular new/delete no longer used in our code,
1767: stubs defend from accidental use (implements feature #1170)
1768:
1769: 2017-06-24 moko
1770:
1771: * configure.ac: minor fix: thanks to alx@
1772:
1.115 moko 1773: 2017-05-29 moko
1774:
1775: * src/types/pa_vmail.C: mail headers are now correctly truncated -
1776: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
1777: added to avoid cutting of UTF-8 chars (fixed bug #123)
1778:
1779: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
1780: ignored, =?UTF-8?Q?= should start in case of leading space
1781: (related to bug #123)
1782:
1783: * buildall: echo -n -> printf for OS X. :)
1784:
1785: 2017-05-25 moko
1786:
1787: * tests/: 288.html, results/288.processed: test updated afted
1788: setting $o.prop without setter exception removed (related to
1789: feature #1157)
1790:
1791: * src/types/pa_vclass.C: no more "this property has no setter
1792: method" when setting $o.prop without setter (implements feature
1793: #1157)
1794:
1795: * buildall: echo \c -> echo -n for FreeBSD
1796:
1797: * configure, configure.ac, src/include/pa_config_auto.h.in,
1798: src/types/pa_vdouble.h: isfinite now checked in configure
1799:
1800: * compile, config.guess, config.sub, depcomp, install-sh, missing:
1801: upgraded to automake 1.15
1802:
1803: 2017-05-23 moko
1804:
1805: * src/types/pa_vdouble.h: finite returned where isfinite not
1806: defined
1807:
1808: 2017-05-22 moko
1809:
1810: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
1811:
1812: * buildall: extern CFLAGS setting support
1813:
1814: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
1815:
1816: * buildall: http -> https
1817:
1818: * buildall: gc-7.2f -> gc-7.6.0
1819:
1820: 2017-05-20 moko
1821:
1822: * buildall: https, pcre, xml, xslt updated to current versions
1823: (related to feature #1136)
1824:
1825: 2017-05-19 moko
1826:
1827: * tests/097.html: after parser.ru moved to https
1828:
1829: 2017-05-17 moko
1830:
1831: * tests/results/: 175.processed, 372.processed: tests resuls
1832: updated after lintian spelling typos fixed (related to bug #1156)
1833:
1834: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
1835: classes/string.C, classes/table.C, main/pa_charset.C,
1836: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
1837: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
1838: lintian reported by Sergey B Kirpichev (fixes bug #1156)
1839:
1840: * tests/results/096.processed: +XMP
1841:
1842: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
1843: $.xmp(true) options tested (test for feature #1154)
1844:
1845: * src/classes/image.C: ^image:measure[] options $.exif(false)
1846: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
1847: fetched by default! (implements feature #1154)
1848:
1849: 2017-05-16 moko
1850:
1851: * tests/: 256.html, results/256.processed: ^json:string[$image] now
1852: allowed (related to feature #1154)
1853:
1854: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
1855: initial XMP implementation - without options and transcode
1856: (related to feature #1154)
1857:
1858: 2017-05-12 moko
1859:
1860: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
1861: image: exif moved to ffields, skipped in ^image.html[] where
1862: iterators now used (preparation for feature #1154)
1863:
1864: 2017-05-05 moko
1865:
1866: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
1867: results/387.processed: test for circular class inheritance check
1868: added (related to bug #1150)
1869:
1870: * src/types/pa_vstateless_class.C: circular class inheritance check
1871: added (fixes endless add_derived bug #1150)
1872:
1873: 2017-05-04 moko
1874:
1875: * tests/: 386.html, results/386.processed: test for
1876: $table.value(number) added (related to feature #1152)
1877:
1878: * src/types/pa_vtable.C: table put_element: column value must be
1879: string - > column value must be string compatible to allow
1880: $t.value(1) (implements feature #1152)
1881:
1882: 2017-05-03 moko
1883:
1884: * src/main/pa_request.C: $use[$method] is not possible, reverting
1885: (related to feature #1151)
1886:
1887: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
1888: not possible, removing test (related to feature #1151)
1889:
1890: * src/: main/pa_request.C, types/pa_vstateless_class.h:
1891: get_element_method added and used to allow $use[$method] and
1892: $autouse[$method] (implements feature 1151)
1893:
1894: * tests/: 386.html, 386.p, results/386.processed: test for @use in
1895: variable added (related to feature #1151)
1896:
1897: * tests/results/226.processed: actualized after ^try-catch used
1898:
1899: * tests/: 226.html, 385.html, results/385.processed: test for
1900: @autouse in variable added
1901:
1902: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
1903:
1.114 moko 1904: 2017-02-27 moko
1905:
1906: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
1907:
1.113 moko 1908: 2017-02-20 moko
1909:
1910: * operators.txt: actualization + beauty
1911:
1912: 2017-02-16 moko
1913:
1914: * tests/: 384.html, results/384.processed: test for
1915: ^reflection:mixin[; $.name[] ] option added (related to feature
1916: #1089)
1917:
1918: * tests/: 384.html, results/384.processed: test for
1919: ^reflection:mixin[] added (related to feature #1089)
1920:
1921: * src/types/pa_value.h: warning war: virtual ~Value() added
1922:
1.112 moko 1923: 2017-02-15 moko
1924:
1925: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
1926: fixed
1927:
1928: * tests/: 320.html, results/320.processed: $.reverse(true/false)
1929: test added (related to feature #1069)
1930:
1931: * src/: classes/reflection.C, types/pa_vstateless_class.h:
1932: compilation without HASH_ORDER fixed
1933:
1934: * src/: classes/reflection.C, include/pa_hash.h:
1935: $.reverse(true/false) added to ^reflection:methods[] (related to
1936: feature #1069)
1937:
1938: 2017-02-14 moko
1939:
1940: * tests/: 152.html, results/152.processed: test for $._default hash
1941: added (related to bug #1131)
1942:
1943: * tests/: 277.html, results/277.processed: test for hash with only
1944: $._default is now defined (related to bug #1131)
1945:
1946: * src/types/pa_vhash.h: hash with only $._default is now defined
1947: (fixed bug #1131)
1948:
1949: 2017-02-13 moko
1950:
1951: * tests/cat-windows.sh: cat-windows added (cygwin required)
1952:
1953: * tests/: 171.html, 264.html, 286.html, 370.html,
1954: results/320.processed, results/375.processed, results/auto.p:
1955: cat-windows.sh support added
1956:
1957: * tests/375.html: Windows support
1958:
1959: * tests/270.html: documented
1960:
1961: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
1962: (not backslashes) even under Windows (broke test 270)
1963:
1964: 2017-02-12 moko
1965:
1966: * tests/: descript.ion, todo.txt: cleanup
1967:
1968: 2017-02-09 moko
1969:
1970: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
1971: run_tests.cmd: Windows compatibility
1972:
1973: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
1974: incorrectly (GMT) if parser is called from cygwin
1975:
1.111 moko 1976: 2017-02-08 moko
1977:
1.112 moko 1978: * operators.txt: actualization 15% completed
1979:
1980: * operators.txt: cp1251 -> utf-8
1981:
1982: * NEWS, README: minor update
1983:
1984: * src/include/pa_config_includes.h: warning war continues
1985:
1986: * src/: include/pa_config_includes.h, include/pa_memory.h,
1987: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1988: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
1989: gcc 6.x issues fixed
1990:
1.111 moko 1991: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
1992: classes/classes.h, classes/curl.C, classes/date.C,
1993: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
1994: classes/hashfile.C, classes/image.C, classes/inet.C,
1995: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1996: classes/memcached.C, classes/memory.C, classes/op.C,
1997: classes/reflection.C, classes/regex.C, classes/response.C,
1998: classes/string.C, classes/table.C, classes/void.C,
1999: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
2000: include/pa_array.h, include/pa_cache_managers.h,
2001: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
2002: include/pa_config_fixed.h, include/pa_config_includes.h,
2003: include/pa_dictionary.h, include/pa_dir.h,
2004: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
2005: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
2006: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
2007: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
2008: include/pa_request_charsets.h, include/pa_request_info.h,
2009: include/pa_sapi.h, include/pa_socks.h,
2010: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
2011: include/pa_stack.h, include/pa_string.h,
2012: include/pa_stylesheet_connection.h,
2013: include/pa_stylesheet_manager.h, include/pa_symbols.h,
2014: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
2015: include/pa_uue.h, include/pa_xml_exception.h,
2016: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
2017: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
2018: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
2019: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
2020: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
2021: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
2022: main/compile.tab.C, main/compile.y, main/compile_tools.C,
2023: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
2024: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
2025: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
2026: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
2027: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
2028: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
2029: main/pa_string.C, main/pa_stylesheet_connection.C,
2030: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
2031: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
2032: main/untaint.C, sql/pa_sql_driver.h,
2033: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
2034: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
2035: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
2036: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
2037: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
2038: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
2039: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
2040: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
2041: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
2042: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
2043: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
2044: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
2045: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
2046: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
2047: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
2048: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
2049: types/pa_vmemcached.h, types/pa_vmemory.h,
2050: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2051: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
2052: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
2053: types/pa_vresponse.C, types/pa_vresponse.h,
2054: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
2055: types/pa_vstateless_object.h, types/pa_vstatus.C,
2056: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
2057: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
2058: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
2059: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
2060: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
2061: 2015->2017
2062:
1.110 moko 2063: 2017-02-07 moko
2064:
2065: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
2066:
2067: 2017-02-06 moko
2068:
2069: * src/main/pa_common.C: minor fixes, whitespace
2070:
2071: * src/: classes/curl.C, classes/file.C, classes/image.C,
2072: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
2073: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
2074: now used (implements feature #1081)
2075:
2076: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
2077:
2078: 2017-02-01 moko
2079:
2080: * src/include/pa_request.h: cleanup
2081:
2082: 2017-01-30 moko
2083:
2084: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
2085:
2086: 2017-01-29 moko
2087:
2088: * tests/: 383.html, results/383.processed: test for
2089: ^reflection:stack[] added (related to feature #1052)
2090:
2091: * src/classes/reflection.C: else added
2092:
2093: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
2094: $.max_file_lock_wait added (implements feature #1128)
2095:
2096: 2017-01-28 moko
2097:
2098: * tests/: 379-curl.html, results/379-curl.processed: curl empty
2099: body and other cases tests added (related to featue #1014)
2100:
2101: * src/classes/curl.C: bug if response is empty fixed (related to
2102: feature #1014)
2103:
2104: 2017-01-27 moko
2105:
2106: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
2107: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
2108: added (implements feature #1052)
2109:
2110: 2017-01-25 moko
2111:
2112: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
2113: method test added
2114:
2115: 2017-01-23 moko
2116:
2117: * src/classes/reflection.C: optimization: options->get replaced by
2118: hash iterator
2119:
2120: * tests/: 381.html, results/381.processed: now -> fixed date
2121:
2122: * src/main/pa_request.C: warning war
2123:
2124: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
2125: 5Mb (fixes bug #1058)
2126:
2127: * src/classes/curl.C: warning war
2128:
2129: * tests/: 381.html, results/381.processed: tests for ^json:string
2130: $.one-line(true) option added (related to feature #1124)
2131:
2132: * src/: classes/json.C, types/pa_value.h: $json-string
2133: $.one-line(true|false) options is now supported (implements
2134: feature #1124)
2135:
2136: * tests/: 380.html, results/380.processed: test for modified
2137: $.max_file_size added (related to bug #1014)
2138:
2139: * tests/: 379.html, results/auto.p: tests for rewritten http file
2140: load added (related to bug #1014)
2141:
2142: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2143: main/pa_common.C, main/pa_http.C: check_file_size added and used
2144: in curl / file load from disk and http, http file load rewritten
2145: (related to bug #1014)
2146:
2147: 2017-01-18 moko
2148:
2149: * tests/: 378.html, results/378.processed: tests for ^result[]
2150: added (related to feature #66)
2151:
2152: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
2153: Method::CO_WITHOUT_FRAME as frame still added in expression
2154: (related to feature #66)
2155:
2156: 2017-01-17 moko
2157:
2158: * tests/: 377.html, results/377.processed: test for different
2159: combinations of breaks in body and delimiter (related to bug
2160: #1077)
2161:
2162: * tests/: 376.html, results/376.processed: many ^break[] tests
2163: added (related to bug #1077)
2164:
2165: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
2166: passed to native method" exception added to avoid bugs due to
2167: WRITE_EXPR_RESULT skipped and native methods execution continues
2168: after ^break[] (related to bug #1077)
2169:
2170: 2017-01-14 moko
2171:
2172: * tests/: 330.html, results/330.processed: test results updated
2173: after ^break[] bugs where fixed (related to bug #1077)
2174:
2175: * tests/: 329.html, results/329.processed: test results updated
2176: after ^break[] bugs where fixed (related to bug #1077)
2177:
2178: * tests/results/320.processed: ^return[] added
2179:
2180: 2017-01-13 moko
2181:
2182: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
2183: classes/table.C, include/pa_request.h, main/execute.C,
2184: main/pa_request.C, targets/cgi/parser3.C,
2185: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
2186: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
2187: checked after each possible process/execute call (fixes bug
2188: #1077)
2189:
2190: 2016-12-29 moko
2191:
2192: * src/main/pa_common.C: warning war
2193:
2194: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
2195: include/pa_types.h, main/pa_request.C, main/pa_string.C:
2196: pa_file_size_limit added, ^math:random fixed for upper limit and
2197: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
2198: (related to feature #1014)
2199:
2200: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
2201: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
2202: (related to feature #1014)
2203:
2204: 2016-12-28 moko
2205:
2206: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
2207: warning war
2208:
2209: 2016-12-26 moko
2210:
2211: * tests/: 341.html, results/341.processed: test for
2212: ^table.hash[id;;$.type[string]] added (related to feature #1057)
2213:
2214: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
2215: (related to feature #1057)
2216:
2217: * src/types/pa_vdate.C: warning war continues...
2218:
2219: * src/: classes/date.C, classes/image.C, classes/table.C,
2220: include/pa_config_includes.h, types/pa_vfile.C: warning war
2221:
2222: * src/lib/gd/gifio.C: warning war / cleanup
2223:
2224: * src/lib/json/pa_json.C: warning war
2225:
2226: * src/classes/hash.C: warning war
2227:
2228: * src/types/pa_vfile.C: warning war
2229:
2230: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
2231: -Wall warning war continues
2232:
2233: * configure.ac: --with-build-warnings actualized
2234:
2235: 2016-12-25 moko
2236:
2237: * src/main/pa_exec.C: -wAll warning war
2238:
2239: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
2240: -wAll warning war
2241:
2242: * src/: include/pa_common.h, include/pa_sapi.h,
2243: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
2244: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
2245: -wAll warning war
2246:
2247: 2016-12-23 moko
2248:
2249: * src/lib/ltdl/Makefile.am: extra dist added
2250:
2251: * tests/results/344.processed: test result updated after $file.text
2252: prefetched in ^hash::create[$file] (related to feature #1075)
2253:
2254: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
2255: ^hash::create[$file] (related to feature #1075)
2256:
2257: 2016-12-22 moko
2258:
2259: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
2260: main/pa_request.C, main/pa_stylesheet_connection.C,
2261: types/pa_vfile.C: file_stat now return 64-bit size (implements
2262: #1014 under 32-bit unix versions)
2263:
2264: 2016-12-21 moko
2265:
2266: * tests/: 375.html, results/375.processed: test for exec returning
2267: stated file added (related to feature #1119)
2268:
2269: * src/classes/file.C: load should not return file with null body
2270: (fixes bug #1119)
2271:
2272: 2016-12-14 moko
2273:
2274: * tests/: 374.html, results/374.processed: test for $method.name
2275: added (related to feature #1117) plus method returning junction
2276: test
2277:
2278: 2016-12-13 moko
2279:
2280: * src/: include/pa_symbols.h, main/pa_symbols.C,
2281: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
2282: (implements feature #1117)
2283:
2284: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
2285: HEAD and TRACE can't have body (implements feature #1116)
2286:
2287: 2016-12-09 moko
2288:
2289: * tests/: 373.html, results/373.processed: tests for
2290: ^reflection:tainting added (related to feature #1098)
2291:
2292: * src/classes/reflection.C: ^reflection:tainting arguments order
2293: change (related to feature #1098)
2294:
2295: 2016-12-06 moko
2296:
2297: * src/: classes/reflection.C, include/pa_string.h,
2298: main/pa_string.C: ^reflection:tainting[$string] added (implements
2299: feature #1098)
2300:
2301: 2016-12-05 moko
2302:
2303: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
2304: (fixes bug #1114)
2305:
2306: 2016-12-04 moko
2307:
2308: * tests/: 206.html, results/206.processed: negative zero (0/-1)
2309: check added
2310:
2311: 2016-12-03 moko
2312:
2313: * tests/: 346-curl.html, results/346-curl.processed: test modified
2314: to test value.as_hash() usage
2315:
2316: * src/classes/curl.C: value.as_hash() used for correct hash
2317: processing
2318:
2319: * src/classes/reflection.C: exceptions texts fixes
2320:
2321: 2016-12-02 moko
2322:
2323: * tests/: 372.html, results/372.processed: tests for
2324: ^reflection:create[ $.class[name] $.constructor[name]
2325: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
2326: feature #1094)
2327:
2328: * src/types/pa_vmethod_frame.h: comment added: params should be
2329: declared outside of *_FRAME_ACTION as MethodParams destructor
2330: will be called in ~VNativeMethodFrame
2331:
2332: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
2333: ] minor fix
2334:
2335: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
2336: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
2337: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
2338: now supported (implements feature #1094) value::as_hash added
2339: (and should be used everywhere)
2340:
2341: * src/classes/reflection.C: cleanup
2342:
2343: 2016-12-01 moko
2344:
2345: * tests/: 356.html, results/356.processed: test for method
2346: junctions class name added to the resulting hash added (related
2347: to feature #1068)
2348:
2349: * src/classes/reflection.C: for method junctions class name added
2350: to the resulting hash (related to feature #1068)
2351:
2352: 2016-11-30 moko
2353:
2354: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
2355: exception (related to bug #1113)
2356:
2357: * src/types/pa_vhashfile.C: whitespace
2358:
2359: * src/main/pa_os.C: errno now returned as it should (fixes bug
2360: #1113)
2361:
2362: * tests/results/: 175.processed, 192.processed, 224.processed,
2363: 229.processed, 239.processed, 244.processed, 246.processed,
2364: 314.processed, 352.processed: tests results updated after method
2365: call exceptions improved as method now keeps its name
2366:
2367: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
2368: types/pa_vmethod_frame.h: method call exceptions improved as
2369: method now keeps its name
2370:
2371: * tests/: 224.html, 239.html, results/224.processed,
2372: results/239.processed: tests and tests results updated after
2373: Request::construct exception changed
2374:
2375: * src/: classes/reflection.C, main/execute.C: Request::construct
2376: exception optimized
2377:
2378: * tests/: 371.html, results/371.processed: test for
2379: WWrapper.get_element call in $.name.key[value] code added
2380: (related to feature #1091)
2381:
2382: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2383: in $.name.key[value] code (related to feature #1091)
2384:
2385: 2016-11-29 moko
2386:
2387: * src/classes/op.C: VS warning war
2388:
2389: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2390: C4239: nonstandard extension used : 'return' : conversion from
2391: 'Value' to 'Value &' (related to feature #1020)
2392:
2393: * src/: main/execute.C, types/pa_vmethod_frame.h,
2394: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2395: used : 'return' : conversion from 'Value' to 'Value &' (related
2396: to feature #1020)
2397:
2398: * src/main/execute.C: VS warning war
2399:
2400: * src/targets/cgi/parser3.C: VS compatibility fix
2401:
2402: * src/include/pa_request.h: VS warning war
2403:
2404: * tests/: 370.html, results/370.processed: test for ^file::exec[
2405: ... $.stdin[$binary_file] ] added (related to bug #1044)
2406:
2407: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2408: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2409: $.stdin[$binary_file] (fixes bug #1044)
2410:
2411: 2016-11-28 moko
2412:
2413: * src/main/pa_exec.C: whitespace
2414:
2415: * src/main/pa_request.C: whitespace
2416:
2417: * tests/: 369.html, results/369.processed: test for
2418: $response:status usage added (related to feature #1099)
2419:
2420: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2421: if < 100 (implements feature #1099)
2422:
2423: * src/targets/cgi/parser3.C: whitespace
2424:
2425: * src/targets/cgi/parser3.C: whitespace
2426:
2427: * tests/: 368.html, results/368.processed: test updated after
2428: ^reflection:filename[$method] added (related to feature #1053)
2429:
2430: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2431: main/compile.y, main/execute.C, main/pa_request.C,
2432: types/pa_vclass.h: filename -> filespec,
2433: ^reflection:filename[$method] added (related to feature #1053)
2434:
2435: 2016-11-27 moko
2436:
2437: * tests/: 368.html, results/368.processed: test for
2438: reflection:filename[$class or object] added (related to feature
2439: #1053)
2440:
2441: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
2442: types/pa_vstateless_class.h: ^reflection:filename[$class or
2443: object] added (implements feature #1053)
2444:
2445: 2016-11-26 moko
2446:
2447: * src/: include/pa_request_info.h,
2448: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2449: remove_absolute_uri -> strip_absolute_uri
2450:
2451: 2016-11-25 moko
2452:
2453: * src/: include/pa_request_info.h,
2454: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2455: request_info.remove_absolute_uri added to remove possible
2456: http://site.name/ from $request:uri (implements feature #1112)
2457:
2458: 2016-11-24 moko
2459:
2460: * tests/: 367-curl.html, results/367-curl.processed: test for
2461: previous request headers clearing after redirect added (related
2462: to bug #1109)
2463:
2464: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
2465: response headers from previous requests are now cleared, only
2466: last request headers are collected (fixes bug #1109)
2467:
2468: * tests/results/: 266.processed, 321.processed, 356.processed:
2469: tests results updated as method name now added to the resulting
2470: hash for new syntax only (Imp1 compatimility fixed, related to
2471: feature #1068)
2472:
2473: * src/classes/reflection.C: method name now added to the resulting
2474: hash for new syntax only (Imp1 compatimility fixed, related to
2475: feature #1068)
2476:
2477: * tests/results/366.processed: test for native and parser
2478: implementation of ^use[] logic (related to feature #1074)
2479:
2480: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
2481: for native and parser implementation of ^use[] logic (related to
2482: feature #1074)
2483:
2484: 2016-11-23 moko
2485:
2486: * src/: classes/op.C, include/pa_request.h, main/compile.y,
2487: main/pa_request.C: @USE file now implemented as ^use[file;
2488: $.origin[origin_file] ] (implements feature #1074)
2489:
1.109 moko 2490: 2016-11-21 moko
2491:
1.110 moko 2492: * tests/: 365.html, results/365.processed: test for $caller bugs in
2493: 3.4.4 and $caller.method now tested (related to feature #1110)
2494:
2495: * tests/: 364.html, results/364.processed: $caller usage in
2496: different contexts now tested (related to feature #1110)
2497:
2498: * src/types/types.vcproj: +pa_vcaller_wrapper.h
2499:
2500: * src/types/Makefile.am: pa_vcaller_wrapper.h added
2501:
1.109 moko 2502: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
2503: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
2504: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
2505: used (implements feature #1110)
2506:
2507: 2016-11-20 moko
2508:
2509: * src/types/pa_vdouble.h: whitespace
2510:
2511: 2016-11-11 moko
2512:
2513: * tests/: 363.html, results/363.processed: more tests for feature
2514: #1091 (how parser methods work in expression context)
2515:
2516: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
2517: expressions strings are now written as strings, not values by
2518: write_as_string (related to feature #1091)
2519:
2520: * src/classes/op.C: to make more correct behavour in expression
2521: context
2522:
2523: 2016-11-07 moko
2524:
2525: * tests/: 362.html, results/362.processed: test for
2526: xsltParseStylesheetDoc caching as xsl modification after it added
2527: (related to bug #1108)
2528:
2529: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
2530: result now cached as xdoc is modified after it (fixes bug #1108)
2531:
2532: 2016-11-06 moko
2533:
2534: * src/types/pa_vxdoc.h: whitespace
2535:
2536: 2016-11-05 moko
2537:
2538: * src/types/pa_vmethod_frame.h: cleanup
2539:
2540: 2016-11-03 moko
2541:
2542: * tests/results/244.processed: more correct exception after method
2543: frames separation
2544:
2545: * src/types/pa_vmethod_frame.h: minor optimizaion
2546:
2547: * src/types/pa_method.h: optimization: params_count added
2548:
2549: * src/: classes/json.C, classes/op.C, classes/reflection.C,
2550: include/pa_request.h, main/execute.C, main/pa_request.C,
2551: types/pa_value.C, types/pa_vmethod_frame.C,
2552: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
2553: VMethodFrame now divided into VNativeMethodFrame,
2554: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
2555: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
2556: and used (related to feature #1104)
2557:
2558: 2016-11-02 moko
2559:
2560: * src/: classes/bool.C, classes/curl.C, classes/date.C,
2561: classes/double.C, classes/file.C, classes/hash.C,
2562: classes/hashfile.C, classes/image.C, classes/inet.C,
2563: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2564: classes/memcached.C, classes/op.C, classes/reflection.C,
2565: classes/regex.C, classes/string.C, classes/table.C,
2566: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
2567: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
2568: r.write (implements feature #1091)
2569:
2570: * src/main/execute.C: cleanup (related to feature #1104)
2571:
2572: * src/: include/pa_request.h, main/execute.C,
2573: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
2574: added, in_expression removed (implements feature #1104)
2575:
2576: 2016-10-31 moko
2577:
2578: * src/types/pa_value.C: whitespace
2579:
2580: 2016-10-28 moko
2581:
2582: * tests/results/244.processed: updated after error reporting fixed
2583: in pa_wcontext.C
2584:
2585: * src/types/pa_wcontext.C: error reporting fixed
2586:
2587: * src/types/pa_wcontext.h: whitespace
2588:
2589: * src/classes/image.C: not fully readed entries are no longer
2590: processed (fixes bug #1106)
2591:
2592: 2016-10-26 moko
2593:
2594: * src/classes/image.C: whitespace
2595:
2596: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
2597: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
2598: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
2599: longer required (related to feature #1091)
2600:
2601: * tests/results/: 264.processed, 350.processed: test results update
2602: reverted (whitespace optimization) after write_no_lang removed :)
2603: (related to feature #1091)
2604:
2605: * src/: classes/file.C, classes/hash.C, classes/op.C,
2606: classes/string.C, classes/table.C, classes/void.C,
2607: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
2608: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
2609: equal write_pass_lang (related to feature #1091)
2610:
2611: * tests/results/: 264.processed, 350.processed: test results
2612: updated (whitespace optimization) after write_assign_lang removed
2613: (related to feature #1091)
2614:
2615: * tests/: 361.html, results/361.processed: test for non-string
2616: ^untaint added (related to feature #1091)
2617:
2618: * src/: classes/curl.C, classes/date.C, classes/file.C,
2619: classes/hash.C, classes/op.C, classes/string.C,
2620: include/pa_request.h, main/execute.C: optimization:
2621: write_assign_lang removed as not required (first part of feature
2622: #1091 implementation)
2623:
1.108 moko 2624: 2016-10-12 moko
2625:
2626: * tests/: 360.html, results/360.processed: more test code (related
2627: to feature #1104)
2628:
2629: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
2630: include/pa_request.h, main/compile.y, main/execute.C: opcode
2631: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
2632: WContext is next task (implements feature #1104)
2633:
2634: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
2635: / CO_WITHOUT_WCONTEXT
2636:
2637: * tests/: 360.html, results/360.processed: test for in expression
2638: state (related to feature #1104)
2639:
2640: 2016-10-11 moko
2641:
2642: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
2643:
2644: * src/classes/op.C: default value removed from initializer
2645:
2646: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
2647:
2648: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
2649:
2650: 2016-10-10 moko
2651:
2652: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
2653: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
2654: to feature #42)
2655:
2656: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
2657: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
2658:
2659: 2016-10-08 moko
2660:
2661: * src/classes/double.C: whitespace
2662:
2663: 2016-10-07 moko
2664:
2665: * src/types/pa_vmethod_frame.h: reorder
2666:
2667: 2016-10-06 moko
2668:
2669: * src/classes/date.C: typo
2670:
2671: * src/types/pa_vmethod_frame.h: whitespace + cleanup
2672:
2673: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2674: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
2675: types/pa_vmethod_frame.h: params.get now returns Value&, not
2676: Value*
2677:
2678: * src/types/pa_vmethod_frame.C: params.get should return Value&.
2679:
2680: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
2681: removed; first as_* code rewrite
2682:
2683: 2016-10-05 moko
2684:
2685: * src/include/pa_request.h: whitespace
2686:
2687: * tests/: 359.html, results/359.processed: test for VCodeFrame and
2688: intercept_string added (related to feature #1097)
2689:
2690: * src/: classes/image.C, classes/op.C, classes/table.C,
2691: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2692: optimization: intercept_string removed (implements feature #1097)
2693:
2694: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
2695:
2696: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
2697: from VCodeFrame and WWrapper as not required
2698:
2699: 2016-10-04 moko
2700:
2701: * src/: classes/curl.C, classes/date.C, classes/double.C,
2702: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
2703: classes/int.C, classes/json.C, classes/op.C,
2704: classes/reflection.C, classes/string.C, classes/table.C,
2705: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2706: proces_to_value -> process after StringOrValue removed (related
2707: to feature #1020)
2708:
2709: * src/classes/form.C: whitespace
2710:
2711: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
2712:
2713: * tests/: 357.html, 358.html, results/357.processed,
2714: results/358.processed, results/auto.p: test for @conf
2715: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
2716:
2717: 2016-10-03 moko
2718:
2719: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
2720: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
2721: supported (implements feature #42)
2722:
2723: * src/types/pa_vregex.h: no reason for VRegex to be
2724: is_evaluated_expr
2725:
2726: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
2727: (implements feature #1095)
2728:
2729: 2016-10-01 moko
2730:
2731: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
2732: false by default (related to feature #1089)
2733:
2734: 2016-09-30 moko
2735:
2736: * src/types/pa_wcontext.h: cleanup
2737:
2738: 2016-09-29 moko
2739:
2740: * src/main/execute.C: whitespace
2741:
2742: * src/include/pa_request.h: whitespace
2743:
2744: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2745: classes/op.C, classes/table.C, include/pa_request.h,
2746: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
2747: types/pa_vobject.C, types/pa_wcontext.h: optimization:
2748: StringOrValue removed as it just slows down and adds complexity
2749: (implements feature #1020)
2750:
2751: 2016-09-28 moko
2752:
2753: * tests/: 356.html, results/266.processed, results/321.processed,
2754: results/356.processed: tests updated after name was added to
2755: method_info hash, test for ^reflection:method_info[junction]
2756: added (related to feature #1068)
2757:
2758: * src/classes/reflection.C: ^reflection:method_info[junction] now
2759: supported, method name added to the resulting hash (implements
2760: feature #1068)
2761:
2762: * tests/: 276.html, results/276.processed: more tests for
2763: ^reflection:delete[]
2764:
2765: * src/classes/reflection.C: fixed bug then ^reflection:delete
2766: didn't work on class and could damage native objects (like file)
2767:
2768: 2016-09-26 moko
2769:
2770: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
2771: results/345.processed, results/346-curl.processed,
2772: results/347-curl.processed, results/348.processed: numbers added
2773: to simplify diff analysis
2774:
2775: * tests/: 352.html, results/352.processed: test result updated as
2776: method name used
2777:
2778: * src/classes/reflection.C: method name used
2779:
2780: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
2781: its name
2782:
2783: * src/types/pa_method.h: whitespace
2784:
2785: * src/classes/reflection.C: both method and field with one name can
2786: exist.
2787:
2788: * src/classes/reflection.C: ^reflection:mixin added (implements
2789: feature #1089)
2790:
2791: * tests/: 355.html, results/355.processed: property appears in
2792: derived class if added in base test added
2793:
2794: * src/types/pa_vstateless_class.h: get_method declaration +
2795: whitespace
2796:
2797: * tests/: 354.html, results/354.processed: nice test from method
2798: and property with one name in class added
2799:
2800: 2016-09-23 moko
2801:
2802: * src/classes/reflection.C: ^reflection:method usage documented
2803:
2804: 2016-09-22 moko
2805:
2806: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
2807: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
2808: compile warning and GPF occures on VS2003 (related to feature
2809: #1087)
2810:
2811: * tests/: 350.html, results/350.processed: test added for
2812: $.encloser[] support in ^table::create (related to feature #11)
2813:
2814: * src/classes/table.C: another minor fix (related to feature #11)
2815:
1.107 moko 2816: 2016-09-21 moko
2817:
2818: * src/include/pa_config_fixed.h: vs2015 compilation fixes
2819:
2820: * src/: classes/curl.C, classes/file.C, classes/hash.C,
2821: classes/json.C, classes/string.C, classes/table.C,
2822: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
2823: main/pa_common.C, main/pa_http.C, main/pa_request.C,
2824: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
2825: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
2826: pa_charsets, vs2015 warning war
2827:
2828: * src/classes/table.C: vs2015 warning war
2829:
2830: * src/types/pa_vdate.C: vs2015 warning war
2831:
2832: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
2833:
2834: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
2835: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
2836:
2837: * src/main/pa_common.C: vs2015 compilation fixes
2838:
2839: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
2840: vs2015 compilation fixes
2841:
2842: * src/main/pa_charset.C: vs2015 warning war
2843:
2844: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
2845:
2846: * src/main/pa_charset.C: vs2015 warning war
2847:
2848: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
2849:
2850: * src/types/pa_vdate.C: vs2015 compilation fix
2851:
2852: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
2853:
2854: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
2855: VS2015 compilation fixes
2856:
2857: * src/classes/table.C: minor fix (related to feature #11)
2858:
2859: * tests/results/282.processed: no longer skipping extra enclosers
2860: (related to feature #11)
2861:
2862: * src/classes/table.C: minor fix + no longer skipping extra
2863: enclosers (related to feature #11)
2864:
2865: * src/classes/table.C: minor optimization (related to feature #11)
2866:
2867: * src/classes/table.C: minor fix and optimization (related to
2868: feature #11)
2869:
2870: 2016-09-20 moko
2871:
2872: * tests/: 353.html, results/353.processed: test for
2873: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
2874: added (related to bug #1090)
2875:
2876: * src/main/compile.y: PC.cclass->is_vars_local() check added for
2877: one_big_piece (fixes bug #1090)
2878:
2879: * tests/: 229.html, results/229.processed: code coverage tests
2880:
2881: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
2882: body) was called
2883:
2884: * src/classes/op.C: whitespace
2885:
2886: * tests/: 323.html, results/323.processed: test for code junction
2887: should not be returned by ^reflection:class, ^reflection:base
2888:
2889: * src/classes/reflection.C: bugfix: code junction should not be
2890: returned by ^reflection:class, ^reflection:base
2891:
2892: * tests/: 323.html, 352.html, results/352.processed: no more
2893: exception for ^reflection:method[class;no-such-method] (related
2894: to feature #1087)
2895:
2896: * src/classes/reflection.C:
2897: ^reflection:method[class;no-such-method] : exception -> void
2898: (related to feature #1087)
2899:
2900: * src/include/pa_request.h: request::write_value added to allow
2901: write value without convertion (related to issue #1091)
2902:
2903: 2016-09-19 moko
2904:
2905: * src/main/pa_random.C: windows build fix
2906:
2907: * src/types/pa_vhash.h: warning war
2908:
2909: 2016-09-14 moko
2910:
2911: * tests/: 352.html, 552.html, results/352.processed,
2912: results/552.processed: test for ^reflection:method[] extension
2913: added (related to feature #1087)
2914:
2915: * tests/: 552.html, results/552.processed: test for
2916: ^reflection:method[] extension added (related to feature #1087)
2917:
2918: * src/classes/reflection.C: compatibility issue fixed, VClass
2919: dynamic_cast check added (related to feature #1087)
2920:
2921: * tests/: 351.html, results/351.processed: test for @auto[]
2922: inheritance bug diring ^process[] added (related to bug #1088)
2923:
2924: * src/: classes/op.C, main/pa_request.C,
2925: types/pa_vstateless_class.C: set_method now checks for @auto[] to
2926: disable it inheritance during ^process (fixes bug #1088)
2927:
2928: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
2929: added (implements feature #1087)
2930:
2931: 2016-09-13 moko
2932:
2933: * tests/: 349.html, results/auto.p: test for objects prototyping
2934: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
2935: to feature #1086)
2936:
2937: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
2938: types/pa_vobject.C: objects now are not class instances, but have
2939: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
2940: in @conf (implements feature #1086)
2941:
2942: 2016-09-08 moko
2943:
2944: * src/: classes/file.C, classes/mail.C, classes/string.C,
2945: classes/table.C, main/pa_http.C, main/pa_string.C,
2946: include/pa_string.h: cleanup: string::split limit argument
2947: removed as no longer required, pos_after no longer reference
2948: (related to feature #11)
2949:
2950: * src/classes/table.C, tests/results/348.processed: now exception
2951: is rised when invalid option is passed to ^table::create[]
2952:
2953: * tests/: 282.cfg, 282.html, results/282.processed: more code
2954: coverage tests
2955:
2956: * tests/: 348.html, results/348.processed: code coverage tests
2957: added
2958:
2959: * tests/: 348.html, results/348.processed: generic ^table::create[]
2960: tests
2961:
2962: * tests/: 035.html, results/035.processed, results/272.processed:
2963: tests updated after $.encloser[] support for ^table::create
2964: implementation (related to feature #11)
2965:
2966: * src/classes/table.C: $.encloser[] support for ^table::create
2967: finally added (implements feature #11)
2968:
2969: 2016-09-07 moko
2970:
2971: * src/include/pa_string.h: added StringSplitHelper as friend
2972: (related to feature #11)
2973:
2974: * src/include/pa_string.h: body and langs now protected, not
2975: private to allow inheritance (related to feature #11)
2976:
2977: * src/classes/table.C: lsplit optimized before cloning for
2978: ^table::create with $.encloser[] (related to feature #11)
2979:
2980: * src/classes/table.C: optimizaion: TableControlChars.separators
2981: added and used (related to feature #11)
2982:
2983: * src/classes/table.C: spelling:
2984:
2985: TableSeparators -> TableControlChars column -> separator
2986: separators -> control_chars
2987:
2988: 2016-09-06 moko
2989:
2990: * src/main/pa_string.C: whitespace
2991:
2992: * src/main/pa_string.C: whitespace
2993:
2994: 2016-09-01 moko
2995:
2996: * tests/: 347-curl.html, results/347-curl.processed: to make tests
2997: results OS-independent
2998:
2999: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
3000: compiler (related to feature #1042)
3001:
3002: 2016-08-15 moko
3003:
3004: * src/include/pa_string.h: whitespace
3005:
3006: * src/classes/table.C: whitespace
3007:
1.106 moko 3008: 2016-08-05 moko
3009:
3010: * tests/: 344.html, results/344.processed: test for
3011: ^hash::create[$file] added (related to feature #1075)
3012:
3013: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
3014: supported (implements feature #1075)
3015:
3016: 2016-08-04 moko
3017:
3018: * tests/: 341.html, results/341.processed: more code coverage tests
3019:
3020: * tests/: 346-curl.html, results/346-curl.processed: more code
3021: coverage tests for curl
3022:
3023: * tests/: 346-curl.html, results/346-curl.processed: more code
3024: coverage tests for curl
3025:
3026: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
3027: results/223.processed: code coverage tests: $.form[ $.table[] ]
3028: test added
3029:
3030: * tests/: 223-curl.html, results/223-curl.processed: more code
3031: coverage tests for curl
3032:
3033: 2016-08-03 moko
3034:
3035: * src/classes/curl.C: dlink(curl_library) now called not once, but
3036: until it will be loaded, allowing to find existing library.
3037:
3038: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
3039: results/347-curl.processed: more code coverage tests for curl
3040:
3041: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
3042: results/339-curl.processed, results/346-curl.processed: curl
3043: functionality tests
3044:
3045: 2016-08-02 moko
3046:
3047: * tests/: 339.html, results/339.processed: test for tables in
3048: ^file:load[] and ^curl:load[] (commented) added (related to
3049: feature #1042)
3050:
3051: * tests/: 345.html, results/345.processed: code coverage tests for
3052: file class
3053:
3054: * tests/: 344.html, results/344.processed: code coverage tests
3055:
3056: * tests/: 344.html, results/344.processed: mdate removed from
3057: output
3058:
3059: * src/classes/file.C: minor bugfix: is_text should be taked from
3060: fcontent.is_text_mode() if not set (related to feature #1061)
3061:
3062: * tests/: 344.html, results/344.processed: more tests
3063:
3064: * tests/: 343.html, 344.html, results/343.processed,
3065: results/344.processed: tests for ^file::create[ $.from-charset
3066: and $.to-charset ] (related to feature #1061)
3067:
3068: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3069: aset_text_mode argument optimized
3070:
3071: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3072: checkBOM now used in detect_binary_content (related to feature
3073: #1061)
3074:
3075: * src/main/pa_request.C: load_charset no longer required to_upper
3076:
3077: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
3078: preserves original file mode (if no $.mode specified)
3079:
3080: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
3081: ^file::create now supports $.from-charset[] and $.to-charset
3082: options (implements feature #1061), automatic transcode is done
3083: if text file is created from binary file and charset is detected.
3084:
3085: 2016-07-30 moko
3086:
3087: * src/classes/table.C: ^t.hash[..;] now supported (related to
3088: feature #1057)
3089:
3090: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
3091: added (related to feature #1057)
3092:
3093: * tests/: 286.html, results/286.processed: code tests coverage
3094:
3095: 2016-07-29 moko
3096:
3097: * src/classes/table.C: table size should be checked inside menu and
3098: foreach (related to feature #858)
3099:
3100: * src/: classes/curl.C, classes/file.C, classes/string.C,
3101: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
3102: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
3103: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
3104: charsets.get now does str_upper inside (related to feature #1061)
3105:
3106: * tests/: 342.html, results/342.processed: more code coverage tests
3107:
3108: * tests/: 342.html, outputs/342.processed: table menu code coverage
3109: + foreach test added (related to feature #858)
3110:
3111: * tests/: 341.html, results/341.processed: tests for
3112: ^table.hash[]{code} added + code coverage tests (related to
3113: feature #1057)
3114:
3115: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
3116: value} support (implements feature #1057)
3117:
3118: * src/classes/table.C: whitespace
3119:
3120: 2016-07-28 moko
3121:
3122: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
3123: from URL, if not specified query string removed from url-based
3124: filenames in ^curl:load[] and ^file::load[] (related to feature
3125: #1042)
3126:
3127: 2016-07-27 moko
3128:
3129: * tests/: 340.html, results/340.processed: test for
3130: transcode_text_result=false added (related to issue #1042)
3131:
3132: 2016-07-26 moko
3133:
3134: * src/types/pa_vfile.C: file name should not be empty (if file path
3135: is folder and ends with /) (related to feature #1042)
3136:
3137: * src/main/pa_http.C: whitespace optimizaion
3138:
3139: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
3140: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
3141: multiple headers, ^file::load supports headers transcoding
3142: (implements feature #1042)
3143:
3144: 2016-07-25 moko
3145:
3146: * src/include/pa_common.h: PA_DEFAULT added
3147:
3148: 2016-07-22 moko
3149:
3150: * tests/: 338.html, results/338.processed: test for
3151: $date.field(value) added (related to feature #1066)
3152:
3153: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3154: $date.field(value) now supported for y/m/d/h/m/s (implements
3155: feature #1066)
3156:
1.105 moko 3157: 2016-07-21 moko
3158:
3159: * src/: classes/file.C, classes/image.C, include/pa_common.h,
3160: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
3161: arguments removed; image.C - absolute path shown in exception
3162: (implements feature #1071)
3163:
3164: * tests/: 235.html, results/235.processed: test and test result
3165: updated after static boundary in mail and Errors-To: mail header
3166: removed (related to feature #1047)
3167:
3168: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
3169: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
3170: used, static boundary in mail removed, Errors-To: mail header
3171: removed (implements feature #1047)
3172:
3173: 2016-07-20 moko
3174:
3175: * src/: classes/reflection.C, types/pa_vstateless_class.h:
3176: equest.classes(): Value -> VStateless_class, part 3 (related to
3177: issue #1051)
3178:
3179: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
3180: request.classes(): Value -> VStateless_class, part 2 (related to
3181: issue #1051)
3182:
3183: * tests/results/: 224.processed, 323.processed: classes without
3184: methods should not be methoded (related to issue #1051)
3185:
3186: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
3187: main/compile_tools.h, main/pa_request.C: request.classes(): Value
3188: -> VStateless_class, part 1 (related to issue #1051)
3189:
3190: * tests/: 337.html, results/337.processed: test for
3191: ^reflection:fields_reference[] and VHashReference class added
3192: (related to feature #1072)
3193:
3194: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
3195: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
3196: and VHashReference added, allowing ^reflection:fields_reference[]
3197: implementation (closes feature #1072)
3198:
3199: 2016-07-19 moko
3200:
3201: * tests/: 323.html, results/323.processed: we want to see
3202: "methoded"
3203:
3204: * tests/: 336.html, results/336.processed: test for $BASE:property
3205: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
3206: #1059)
3207:
3208: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
3209: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
3210: somebody_entered_some_class, $BASE:property works again,
3211: ^BASE:method[] bugs fixed (fixes bug #1059)
3212:
3213: 2016-07-14 moko
3214:
3215: * tests/: 335.html, results/335.processed: test for feature #1055
3216: added
3217:
3218: * src/classes/hash.C: bugfix: $._default was not copied if empty
3219: feature: ^hash.contains[_default] added (implements feature
3220: #1055)
3221:
3222: 2016-07-13 moko
3223:
3224: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
3225: should not call @autouse (http://www.parser.ru/forum/?id=83480)
3226:
3227: 2016-07-05 moko
3228:
3229: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
3230: in ^hash.foreach (related to feature #1073)
3231:
3232: 2016-07-04 moko
3233:
3234: * tests/: 134.html, 281.html, results/134.processed,
3235: results/281.processed: tests updated after hash blocking removed
3236: (related to feature #1073)
3237:
3238: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
3239: no longer blocks on change during foreach (implements feature
3240: #1073)
3241:
3242: 2016-06-17 moko
3243:
3244: * tests/: 330.html, results/330.processed: try exception source
3245: test added (related to bug in #1062)
3246:
3247: * tests/: 334.html, results/334.processed: Exception stack trace
3248: test added (related to bug in $1062)
3249:
3250: * src/classes/op.C: Exception trace now correctly restored and
3251: errors reported (related to bug #1062)
3252:
1.104 moko 3253: 2016-05-25 moko
3254:
3255: * src/main/compile.y: minor cleanup + beauty
3256:
3257: 2016-05-24 moko
3258:
3259: * tests/: 333.html, results/333.processed: more exceptions testing
3260:
3261: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
3262: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
3263: features #1056, #1026)
3264:
3265: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
3266: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
3267: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
3268: (implements feature #1056)
3269:
3270: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3271: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
3272: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
3273: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
3274: feature #1026)
3275:
3276: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
3277: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
3278: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
3279: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
3280: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
3281: feature #1026)
3282:
3283: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
3284: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
3285: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
3286: SYMBOLS_CACHING define implemented (related to feature #1026)
3287:
3288: * src/main/main.vcproj: + ps_symbols
3289:
3290: * src/: include/Makefile.am, include/pa_string.h,
3291: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
3292: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
3293: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3294: types/pa_vstateless_class.C: initial implementation for symbols
3295: cache (related to feature #1026)
3296:
3297: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
3298:
3299: * src/main/pa_globals.C: minor cleanup
3300:
3301: 2016-05-19 moko
3302:
3303: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
3304: (related to feature #1046)
3305:
3306: * tests/: 331.html, results/331.processed: test for
3307: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
3308: (related to feature #1051)
3309:
3310: * src/main/compile.y:
3311: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
3312: (implements feature #1054)
3313:
3314: 2016-05-18 moko
3315:
3316: * src/types/pa_vtable.C, tests/results/324.processed: no more
3317: "column not found" exception for ^table.no-such-method[] (related
3318: to feature #1046)
3319:
3320: * tests/: 261.html, results/261.processed: test added and updated
3321: after feature #1046 implementation
3322:
3323: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
3324: types/pa_vvoid.h: $string.anything works for whitespace strings,
3325: ^string.contains added for hash compatibility, $string.method no
3326: longer returns stting method (implements feature #1046)
3327:
3328: 2016-05-12 moko
3329:
3330: * src/classes/curl.C: content-type response header no longer
3331: ignored (fixes issue #1045)
3332:
3333: * tests/: 330.html, results/330.processed: test for incomplete
3334: finally execution when break occures added (related to issue
3335: #1077)
3336:
3337: * src/classes/op.C: bugfix: Request::skip reset is called before
3338: executing catch and finally code (fixes issue #1062)
3339:
3340: 2016-05-11 moko
3341:
3342: * tests/: 329.html, results/329.processed: test for invalid
3343: ^break[] behavour added (bug #1077)
3344:
3345: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
3346:
3347: 2016-04-24 moko
3348:
3349: * src/types/pa_vstateless_class.h: warning war
3350:
3351: 2016-04-17 moko
3352:
3353: * tests/: 328.html, results/328.processed: test for
3354: ^break(condition) and ^continue(condition) (related to feature
3355: #1063)
3356:
3357: * src/classes/op.C: ^break(condition) and ^continue(condition)
3358: implemented (feature #1063)
3359:
3360: 2016-04-12 moko
3361:
3362: * tests/results/280.processed: ordered hash now used for class
3363: methods and properties (test results updated for feature #1069)
3364:
3365: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
3366: to xdoc.C as under FreeBSD it was inited after and inheritance
3367: failed (related to issue #1051)
3368:
3369: * tests/: 320.html, results/320.processed: xdoc and xnode methods
3370: are printed to check inheritance (related to feature #1051)
3371:
1.103 moko 3372: 2016-04-09 moko
3373:
3374: * tests/results/320.processed: ordered hash now used for class
3375: methods and properties (test results updated for feature #1069)
3376:
3377: * src/types/pa_vstateless_class.h: ordered hash now used for class
3378: methods and properties (implements feature #1069)
3379:
3380: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3381: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3382: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3383: feature #1051)
3384:
3385: 2016-04-07 moko
3386:
3387: * src/main/execute.C: returned Value in .CLASS case for VJunction
3388: (related to feature #1051)
3389:
3390: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3391: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3392: string constants deduplication (related to feature #1051)
3393:
3394: * tests/results/224.processed: test result updated (related to
3395: feature #1051)
3396:
3397: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3398: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3399: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3400: types/pa_vstatus.h: classes hash now contains only
3401: VStateless_class derived objects, .CLASS is also allways
3402: VStateless_class derived object (related to feature #1051).
3403:
3404: 2016-04-06 moko
3405:
3406: * tests/results/323.processed: test result updated after feature
3407: #1051 implementation
3408:
3409: * src/: classes/classes.h, classes/op.C, classes/response.C,
3410: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3411: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3412: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3413: types/pa_vresponse.C, types/pa_vresponse.h,
3414: types/pa_vstateless_class.h: base -> methoded_donor for static
3415: classes, type() moved from VStateless_class to VClass and
3416: Methoded (implements feature #1051)
3417:
3418: 2016-04-04 moko
3419:
3420: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3421: beauty: put_class added (related to feature #1051)
3422:
3423: 2016-04-01 moko
3424:
3425: * tests/results/: 175.processed, 192.processed, 224.processed,
3426: 229.processed, 244.processed, 246.processed, 316.processed: test
3427: results updated as class.type() removed from error messages, only
3428: type() left (related to feature #1051)
3429:
3430: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3431: classes/op.C, classes/reflection.C, main/compile.y,
3432: main/compile_tools.h, main/execute.C, main/pa_request.C,
3433: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3434: types/pa_vmethod_frame.h, types/pa_vobject.h,
3435: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
3436: from VStateless_class, type() is used instead (related to feature
3437: #1051)
3438:
3439: * src/classes/mail.C: old logic restored.
3440:
3441: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3442: classes/classes.h, classes/curl.C, classes/date.C,
3443: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3444: classes/hashfile.C, classes/image.C, classes/inet.C,
3445: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3446: classes/memcached.C, classes/memory.C, classes/reflection.C,
3447: classes/regex.C, classes/response.C, classes/string.C,
3448: classes/table.C, classes/xdoc.C, classes/xnode.C,
3449: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
3450: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
3451: feature #1051)
3452:
3453: 2016-03-30 moko
3454:
3455: * tests/: 327.html, results/224.processed, results/327.processed:
3456: test for TZ specification in ^date::create[], TZ is kept during
3457: ^date::create[$dt] (related to feature #1048)
3458:
3459: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
3460: ^date::create[], TZ is kept during ^date::create[$dt] (implements
3461: feature #1048)
3462:
3463: 2016-03-29 moko
3464:
3465: * tests/: 315.html, results/315.processed: test for timezone format
3466: +HHmm added (related to feature #1065)
3467:
3468: * src/classes/date.C: timezone format +HHmm now supported
3469: (implements feature #1065)
3470:
3471: 2016-03-28 moko
3472:
3473: * tests/: 202.html, results/131.processed, results/202.processed,
3474: results/224.processed, results/256.processed,
3475: results/315.processed: test results updated after %.2d now
3476: default for hours offset in iso-string (was %2d), test for
3477: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3478: added (related to feature #1065)
3479:
3480: 2016-03-27 moko
3481:
3482: * src/types/pa_vdate.C: '+' sign for zero offset (related to
3483: feature #1065)
3484:
3485: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3486: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3487: added (implements feature #1065)
3488:
3489: 2016-03-24 moko
3490:
3491: * tests/: 202.html, results/202.processed: test $date.week added
3492: (related to bug #1067)
3493:
3494: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
3495: date (fix for bug #1067)
3496:
3497: 2016-03-10 moko
3498:
3499: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
3500:
1.102 moko 3501: 2015-12-07 moko
3502:
3503: * tests/: 326.html, results/326.processed: test for .CLASS &
3504: .CLASS_NAME optimization added (related to feature #844)
3505:
3506: 2015-11-17 moko
3507:
3508: * tests/: 323.html, results/323.processed: order added
3509:
3510: * tests/: 325.html, results/325.processed: double range test added
3511: (related to bug #1049)
3512:
3513: 2015-11-16 moko
3514:
3515: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
3516: added to disallow NaN and Infinity (fixes bug #1049)
3517:
3518: 2015-11-11 moko
3519:
3520: * tests/324.html: parser 3.4.3 execution support added (related to
3521: feature #1017)
3522:
3523: * tests/: 324.html, results/324.processed: test for
3524: GET_ELEMENT4CALL feature added (feature #1017)
3525:
1.101 moko 3526: 2015-10-29 moko
3527:
3528: * operators.txt: updated for 3.4.4
3529:
3530: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
3531:
3532: * src/main/pa_exec.C: get_exit_status implemented for Windows
3533: (related to bug #1043)
3534:
3535: 2015-10-28 moko
3536:
3537: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
3538: hangup during ^file::exec (fixes bug #1043)
3539:
1.100 moko 3540: 2015-10-27 moko
3541:
3542: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
3543:
1.99 moko 3544: 2015-10-26 moko
3545:
1.100 moko 3546: * tests/322.html, src/classes/reflection.C: arguments reorder
3547: (related to issue #1041)
3548:
3549: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
3550: Copyright year updated
3551:
1.99 moko 3552: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
3553: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
3554: classes/form.C, classes/hash.C, classes/hashfile.C,
3555: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
3556: classes/mail.C, classes/math.C, classes/memcached.C,
3557: classes/memory.C, classes/op.C, classes/reflection.C,
3558: classes/regex.C, classes/response.C, classes/string.C,
3559: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
3560: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
3561: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3562: include/pa_config_fixed.h, include/pa_config_includes.h,
3563: include/pa_dictionary.h, include/pa_dir.h,
3564: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3565: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3566: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3567: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3568: include/pa_request_charsets.h, include/pa_request_info.h,
3569: include/pa_sapi.h, include/pa_socks.h,
3570: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3571: include/pa_stack.h, include/pa_string.h,
3572: include/pa_stylesheet_connection.h,
3573: include/pa_stylesheet_manager.h, include/pa_table.h,
3574: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
3575: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
3576: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
3577: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
3578: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
3579: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
3580: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
3581: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3582: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
3583: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
3584: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
3585: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
3586: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3587: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3588: main/pa_string.C, main/pa_stylesheet_connection.C,
3589: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
3590: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
3591: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
3592: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
3593: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
3594: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
3595: targets/isapi/parser3isapi.C, types/pa_junction.h,
3596: types/pa_method.h, types/pa_property.h, types/pa_value.C,
3597: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
3598: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
3599: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
3600: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
3601: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
3602: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
3603: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
3604: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
3605: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
3606: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
3607: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
3608: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3609: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3610: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3611: types/pa_vresponse.C, types/pa_vresponse.h,
3612: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3613: types/pa_vstateless_object.h, types/pa_vstatus.C,
3614: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3615: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3616: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3617: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3618: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
3619:
3620: * src/targets/cgi/parser3.C: year updated
3621:
3622: * src/classes/reflection.C: VS2003 compatibility fixed (related to
3623: issue #1041)
3624:
3625: * tests/: 323.html, results/323.processed: test for base classes
3626: added
3627:
3628: * tests/: 261.html, results/261.processed: updated after better
3629: error reporting done for $string.key exception
3630:
3631: * src/types/pa_vstring.h: better error report for $string.key
3632: exception
3633:
3634: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
3635: copied as VObject::get_element4call to remove extra virtual call
3636:
3637: * tests/: 322.html, results/322.processed: test for
3638: ^reflection:is[] added (related to feature #1041)
3639:
3640: * src/classes/reflection.C: ^reflection:is empty value is void
3641: (related to feature #1041)
3642:
3643: * src/classes/reflection.C:
3644: ^reflection:is[class_name|code|method;[context;]element_name]
3645: added (implements feature #1041)
3646:
3647: 2015-10-24 moko
3648:
3649: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
3650:
1.98 moko 3651: 2015-10-22 moko
3652:
3653: * tests/: 321.html, results/321.processed: test for
3654: ^reflection:method_info[] file detection added
3655:
3656: * tests/: 320.html, results/320.processed: test for
3657: ^reflection:class_by_name[class_name] added (related to feature
3658: #993)
3659:
3660: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
3661: added (implements feature #993)
3662:
3663: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
3664: (related to feature #1017)
3665:
3666: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
3667: added (related to issue #1039)
3668:
3669: * src/main/pa_request.C: ^throw origin fixed (related to feature
3670: #1039)
3671:
3672: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
3673: for VDate
3674:
3675: * tests/results/182.processed: updated after feature #1038
3676: implemented
3677:
3678: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
3679: compile-time exception origin added (test for feature #1039)
3680:
3681: * src/: include/pa_request.h, main/compile.C, main/compile.y,
3682: main/pa_request.C: exception unification: compile-time exceptions
3683: now have origin, @USE origins also tracked (implements feature
3684: #1039)
3685:
3686: 2015-10-20 moko
3687:
3688: * src/main/pa_request.C: cleanup
3689:
3690: 2015-10-15 moko
3691:
3692: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
3693:
3694: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
3695: types/pa_vtable.C: new feature: no more $table.method and
3696: $hash.method, aliases for _at, _count, _key (related to feature
3697: #1017)
3698:
1.97 moko 3699: 2015-10-14 moko
3700:
1.98 moko 3701: * tests/: 317.html, results/317.processed: test for
3702: ^string.unescape[] added (related to feature #120)
3703:
1.97 moko 3704: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
3705: defined" bug (described in issue #1036)
3706:
3707: * tests/: 247.html, results/247.processed: test for checkBOM added
3708: (test for bug #1037)
3709:
3710: * src/: include/pa_charsets.h, main/pa_charsets.C,
3711: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
3712: it's not enforced, skips BOM signature if it complies charset
3713: (fixes bug #1037)
3714:
3715: 2015-10-13 moko
3716:
3717: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
3718: linking
3719:
3720: * src/classes/inet.C: vs2003 compilation fix
3721:
3722: * src/classes/math.C: warning war
3723:
3724: * src/lib/punycode/pa_punycode.c: warning war
3725:
3726: 2015-10-12 moko
3727:
3728: * src/lib/punycode/pa_punycode.c: warning war
3729:
3730: * parser3.sln: moved parser3 first, to make it default startup
3731: project
3732:
3733: * buildall: parser "mirror" now used for external libs sources
3734: (implements feature #1036)
3735:
3736: * buildall: most external libs are updated to their current
3737: versions (related to feature #1036)
3738:
3739: * src/classes/image.C: more tags added
3740:
3741: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
3742:
3743: 2015-10-11 moko
3744:
3745: * src/classes/curl.C: minor optimization (related to feature #1035)
3746:
3747: 2015-10-09 moko
3748:
3749: * src/classes/curl.C: pa_strdup added for strings from curl
3750: (related to feature #1035)
3751:
3752: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
3753: ULLONG_MAX definition
3754:
3755: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
3756: (implements feature #1035)
3757:
3758: * src/main/pa_charset.C: String::Body(String::C) used
3759:
3760: * src/main/pa_charset.C: exceptions unified
3761:
3762: * src/: include/pa_charset.h, main/pa_charset.C: declarations
3763: unified
3764:
3765: * src/: classes/file.C, classes/image.C, classes/mail.C,
3766: classes/op.C, classes/xdoc.C, classes/xnode.C,
3767: include/pa_string.h, main/pa_request.C, main/pa_string.C,
3768: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
3769: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
3770: String::Body(String::C) constructor added (related to bug #957)
3771:
3772: * src/classes/file.C: minor optimization
3773:
3774: * src/include/pa_hash.h: hash.get(char*) added, to minimize
3775: Cord(char*) autocreation (related to bug #957)
3776:
3777: * src/: classes/string.C, main/untaint.C: minor optimizations
3778:
3779: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
3780: String(char*, Lang, length) removed, String(C(), Lang) used
3781: instead (related to bug #957)
3782:
3783: 2015-10-08 moko
3784:
3785: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
3786: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
3787: main/untaint.C: Now char * is converted to CORD only using
3788: AS_CORD() to check for empty cord bug (fixes bug #957)
3789:
3790: * src/include/pa_hash.h: fixed compilation without
3791: HASH_CODE_CACHING
3792:
3793: * src/classes/string.C:
3794: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
3795: feature #120)
3796:
3797: * src/main/pa_common.C: reduce js flags checks count (related to
3798: feature #120)
3799:
1.96 moko 3800: 2015-10-07 moko
3801:
3802: * tests/: 275.html, results/275.processed: test modified after
3803: unsigned long long int support implemented (feature #1034)
3804:
3805: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
3806: pa_atoul added for unsigned long long int support
3807:
3808: 2015-10-06 moko
3809:
3810: * src/types/pa_vdate.C: INT_MAX used
3811:
3812: 2015-10-03 moko
3813:
3814: * tests/: 302.html, results/302.processed: test for bug #1023
3815: (\u2028, \u2029 escaping) added
3816:
3817: * src/main/untaint.C: \u2028, \u2029 are now escaped in
3818: json:string[] (fixes bug #1023)
3819:
3820: 2015-09-29 moko
3821:
3822: * tests/305.html: try-catch added for OS without ipv6 support
3823:
3824: * src/lib/json/pa_json.C: more unique prefixes for Solaris
3825: compilation
3826:
3827: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
3828: main/execute.C, types/pa_value.h, types/pa_vhash.h,
3829: types/pa_vtable.C, types/pa_vtable.h: get_element4call
3830: implemented to distinguish ^hash.method from $hash.field
3831: (implements feature #1017)
3832:
3833: * src/lib/punycode/pa_punycode.c: warning war
3834:
3835: * src/include/pa_config_includes.h: warning war
3836:
3837: * src/include/pa_config_includes.h: pragma warning actualized a bit
3838:
3839: * src/include/pa_config_includes.h: warning war
3840:
3841: * src/include/pa_hash.h: clang compilation fix
3842:
3843: 2015-09-27 moko
3844:
3845: * src/main/compile.tab.C: Bison 3 is now default
3846:
3847: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
3848:
3849: 2015-09-25 moko
3850:
3851: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
3852: works with undefined HASH_ORDER (related to feature #196)
3853:
3854: 2015-09-24 moko
3855:
3856: * tests/: 027.html, results/027.processed: test modified to test
3857: ^hash.sort (feature #196)
3858:
3859: * src/: classes/hash.C, include/pa_hash.h:
3860: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
3861: added (implements feature #196)
3862:
3863: * tests/: 316.html, results/316.processed: Added test for bug #1025
3864: (exception handling in non-cached ^cache), plus for "it does not
3865: have logical value" and "$exception.handled value must be either
3866: boolean or string 'cache'" exceptions.
3867:
3868: * src/classes/op.C: ^cache: exceptions now handled in non-cached
3869: code (fixes bug #1025)
3870:
1.95 moko 3871: 2015-09-23 moko
3872:
3873: * src/classes/table.C: warning war
3874:
3875: * src/: classes/math.C, types/pa_vcookie.C: warning war
3876:
3877: * src/classes/file.C: warning war
3878:
3879: * src/: include/pa_table.h, main/pa_table.C: warning war
3880:
3881: * src/: main/pa_request.C, classes/date.C: warning war
3882:
3883: * src/: types/pa_vdate.C, classes/op.C: warning war
3884:
3885: * tests/: 122.html, results/122.processed: win sync: to remove
3886: differences with OS that doesn't keep timezone change history
3887:
3888: * src/types/pa_vdate.C: tzset() should be called in Windows after
3889: TZ change (related to feature #36)
3890:
3891: * tests/: 075.html, results/075.processed: win sync: to remove
3892: differences with OS that doesn't keep timezone change history
3893:
3894: * tests/: 315.html, results/315.processed: win sync: to remove
3895: differences with OS that doesn't keep timezone change history
3896:
3897: * tests/: 256.html, results/256.processed: win sync: to remove
3898: differences with OS that doesn't keep timezone change history
3899:
3900: * tests/: 124.html, results/124.processed: win results sync: to
3901: avoid hitting time change hole.
3902:
3903: * src/types/pa_vdate.C: static returned. :)
3904:
3905: 2015-09-22 moko
3906:
3907: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
3908:
3909: * tests/results/131.processed: more tests for feature #1032
3910:
3911: * src/classes/date.C: minor fix related to feature #1032
3912:
3913: * operators.txt: ISO date creation documented (related to feature
3914: #1032)
3915:
3916: * operators.txt: iso-string documented (related to feature #1032)
3917:
3918: * tests/: 315.html, results/315.processed: more tests added
3919: (related to feature #1032)
3920:
3921: * tests/: 131.html, results/131.processed: date range checks
3922: updated (related to feature #36)
3923:
3924: * tests/: 315.html, results/057.processed, results/315.processed:
3925: test added for ISO date support (related to issue #315)
3926:
3927: * src/classes/date.C: more readable exceptions in date creation
3928: (related to ticket #1032)
3929:
3930: 2015-09-18 moko
3931:
3932: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
3933: added (related to issue #1032)
3934:
3935: * tests/results/256.processed, src/classes/json.C: iso-string
3936: documented (related to issue #1032)
3937:
3938: * tests/: 256.html, results/256.processed: ISO date check added
3939: (related to issue #1032)
3940:
3941: * tests/: 057.html, results/057.processed, results/224.processed:
3942: tests results updated after ISO date support implemented (related
3943: to feature #1032)
3944:
3945: * src/: classes/date.C, classes/image.C, types/pa_value.h,
3946: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
3947: ^date::create[string] constructor formalized, ^date.iso-string[]
3948: added (implements feature #1032)
3949:
3950: 2015-09-05 moko
3951:
3952: * operators.txt: actualized
3953:
3954: * operators.txt: date changes documented (related to ticket #36)
3955:
3956: 2015-09-04 moko
3957:
3958: * src/types/pa_vdate.C: warning war
3959:
3960: * src/: classes/op.C, types/pa_vhashfile.C: warning war
3961:
3962: 2015-09-03 moko
3963:
3964: * tests/results/096.processed: test result updated for 0..9999 year
3965: date range support (related to feature #36)
3966:
3967: * tests/: 314.html, results/314.processed: test for
3968: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
3969: bug #1031)
3970:
3971: * src/classes/string.C: Static calls fixed for ^string:base64[],
3972: ^string:idna[], ^string:js-escape[] (closes bug #1031)
3973:
1.116 moko 3974: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
3975: configure.in -> configure.ac
1.95 moko 3976:
1.116 moko 3977: * configure, configure.in, src/include/pa_config_auto.h.in: more
3978: correct timezone check for FreeBSD Warning war: configure.in ->
3979: configure.ac
1.95 moko 3980:
3981: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 3982: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
3983: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
3984: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
3985: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
3986: src/main/Makefile.am, src/targets/apache/Makefile.am,
3987: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 3988: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
3989: check added
3990:
3991: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
3992:
3993: * tests/results/: 124.processed, 224.processed: test resuls updated
3994: for new date implementation (related to feature #36)
3995:
3996: * src/: classes/date.C, classes/image.C, include/pa_common.h,
3997: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
3998: types/pa_vdate.h: new double date implementation with internal
3999: support for extended 0..9999 year range, default timezone support
4000: (related to feature #36)
4001:
4002: 2015-08-28 moko
4003:
4004: * src/types/pa_vmail.C: fixed $mail:received.date calculations
4005: (fixes bug #1030)
4006:
4007: 2015-08-21 moko
4008:
4009: * src/classes/inet.C: snprintf size "bug" commented
4010:
4011: * src/main/pa_common.C: snprintf comments updated
4012:
4013: 2015-08-16 moko
4014:
4015: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
4016:
4017: 2015-08-11 moko
4018:
4019: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4020: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
4021: can be null (fixes bug #1029)
4022:
4023: 2015-08-06 moko
4024:
1.116 moko 4025: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
4026: pa_vdate.C added
1.95 moko 4027:
4028: 2015-08-05 moko
4029:
4030: * tests/: 313.html, results/313.processed: test for
4031: ^table.count[columns] and ^table.flip[] with nameless tables
4032: (feature #1003)
4033:
4034: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4035: max_cell added, now ^table.count[columns] and ^table.flip[] works
4036: correctly for nameless tables (implements feature #1003)
4037:
4038: 2015-08-03 moko
4039:
4040: * tests/312.html: test for ^table.append[$hash] and
4041: ^table.insert[$hash] added (related to feature #1028)
4042:
4043: * src/classes/table.C: ^table.append[$hash] and
4044: ^table.insert[$hash] now supported (implements feature #1028)
4045:
4046: * tests/: 312.html, results/312.processed: test row copy in
4047: ^table.hash[; $.type[table] ] added (related to feature #1016)
4048:
4049: * src/classes/table.C: row copy now created in ^table.hash[;
4050: $.type[table] ] (related to feature #1016)
4051:
4052: 2015-07-29 moko
4053:
4054: * tests/: 312.html, results/312.processed: test for ^table.delete[]
4055: added (related to feature #1016)
4056:
4057: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
4058: ^table.delete[] added to delete current row (related to feature
4059: 1016)
4060:
4061: 2015-07-28 moko
4062:
4063: * tests/: 312.html, results/312.processed: test for
4064: $table.column[value] and ^table.insert{row} (related to feature
4065: #1016)
4066:
4067: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
4068: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
4069: ^table.insert{row} are now implemented (feature #1016)
4070:
4071: * src/include/pa_array.h: Optimization: bool reverse removed from
4072: append(), insert() added, memmove arguments order in remove()
4073: fixed (related to feature #1016)
4074:
4075: 2015-07-23 moko
4076:
4077: * src/classes/json.C: tainted json and empty json exception added
4078: (implements feature #1015)
4079:
4080: * tests/: 311.html, results/311.processed: empty json and tainted
4081: json exception test added (related to issue #1015)
4082:
4083: 2015-07-22 moko
4084:
4085: * tests/: 311.html, results/311.processed: test for UTF-8
4086: processing added
4087:
4088: * tests/: 311.html, results/311.processed: test for
4089: json_exception_with_source added (related to issue #394)
4090:
4091: * src/classes/json.C: json_exception_with_source added (implements
4092: feature #394)
4093:
4094: 2015-06-29 moko
4095:
4096: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
4097: directories are now correctly determined if _d_type == DT_UNKNOWN
4098: (closes bug #1027)
4099:
4100: 2015-06-10 moko
4101:
4102: * src/types/pa_vxnode.h: extern "C" not requred and causes build
4103: error if libxml has LIBXML_ICU_ENABLED.
4104:
4105: 2015-06-04 moko
4106:
4107: * tests/099.html: ups, reverting
4108:
4109: * tests/: 099.html, 309.html, 310.html, results/309.processed,
4110: results/310.processed: tests for $response:body[ $.file[] ] and
4111: $response:last-modified added
4112:
4113: * src/main/pa_request.C: last-modified check fixed
4114:
4115: 2015-06-03 moko
4116:
4117: * tests/: 204.html, 205.html, 293.html, results/204.processed,
4118: results/205.processed, results/293.processed: $response:headers
4119: logging added (tests for feature #1007)
4120:
4121: * src/: include/pa_common.h, include/pa_request.h,
4122: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
4123: $response:headers are now in uppercase (closes feature #1007)
4124:
4125: 2015-06-02 moko
4126:
4127: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
4128: build errors reverted for clang compatibility
4129:
4130: 2015-06-01 moko
4131:
4132: * src/include/pa_memory.h: -pedantic build errors fixed
4133:
4134: * src/classes/math.C: -pedantic build error fixed
4135:
4136: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
4137:
4138: 2015-05-31 moko
4139:
4140: * src/classes/table.C: USE_STRINGSTREAM optimized
4141:
4142: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
4143: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
4144: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
4145: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
4146: types/pa_vxnode.h: warning war (-pedantic flag)
4147:
4148: 2015-05-28 moko
4149:
4150: * tests/: 308.html, results/308.processed: test for
4151: ^table::create[$t;], etc work added (related to bug #975)
4152:
4153: * src/classes/table.C: check_option_param removed,
4154: ^table::create[$t;], etc now works (fixes bug #975)
4155:
4156: 2015-05-27 moko
4157:
4158: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
4159: (Debian jessie) fixed (closes issue #1024)
4160:
4161: * tests/Makefile: sort added as in Debian jessie list become
4162: unsorted
4163:
4164: 2015-05-18 moko
4165:
4166: * tests/: 201.html, results/201.processed: test for
4167: ^string.trim[what] feature #1022
4168:
4169: * src/classes/string.C: ^string.trim[what] now supported,
4170: implements feature #1022
4171:
4172: 2015-05-17 moko
4173:
4174: * tests/results/185.processed: test result updated as feature #1021
4175: implemented (left/right accept negative parameter)
4176:
4177: * src/classes/string.C: left/right now accept negative parameter
4178: (implements feature #1021)
4179:
4180: 2015-05-08 moko
4181:
4182: * src/classes/math.C: isalnum -> pa_isalnum
4183:
4184: * src/main/execute.C: optimization in getter-junction processing
4185: (related to issue #997)
4186:
4187: 2015-05-07 moko
4188:
4189: * tests/: 307.html, results/307.processed: test for issue #997
4190: added
4191:
4192: * src/main/execute.C: process_getter result now checked if junction
4193: returned (closes issue #997)
4194:
4195: * tests/: 305.html, results/305.processed: sort added to ignore
4196: different order
4197:
4198: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
4199: assignment (closes issue #994)
4200:
4201: * tests/: 306.html, results/306.processed: test for issue #994
4202: added
4203:
4204: * tests/: 303.html, results/303.processed: two more errors tested
4205:
4206: 2015-05-06 moko
4207:
4208: * tests/: 305.html, results/305.processed: test for name2ip &
4209: ip2name added (related to feature #992)
4210:
4211: * tests/: 303.html, 304.html, results/303.processed,
4212: results/304.processed: tests for idna conversion added (related
4213: to issue #849)
4214:
4215: 2015-05-02 moko
4216:
4217: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
4218: implemented
4219:
4220: 2015-04-30 moko
4221:
4222: * src/main/pa_http.C: idna_host added, related to issue #849
4223:
4224: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
4225: (related to issue #849)
4226:
4227: 2015-04-24 moko
4228:
4229: * src/types/pa_vjunction.C: warning war
4230:
4231: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
4232: unification
4233:
4234: * src/lib/punycode/pa_idna.c: warning war
4235:
4236: 2015-04-22 moko
4237:
4238: * src/main/main.vcproj: punycode include path added
4239:
4240: * src/lib/punycode/pa_idna.c: windows compile error fixed
4241:
4242: * src/lib/punycode/pa_idna.c: warning war
4243:
4244: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
4245: project file added
4246:
4247: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
4248:
4249: * src/include/pa_memory.h: warning war
4250:
4251: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
4252: ^string:idna[xn--...], ^string.idna[] - idna conversion support
4253: implemented (related to feature #849)
4254:
4255: * configure.in, src/main/Makefile.am,
4256: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
4257: libpunycode added in Unix
4258:
4259: 2015-04-21 moko
4260:
4261: * configure.in: large files support
4262:
4263: 2015-04-15 moko
4264:
4265: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
4266: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
4267: pa_punycode.h: initial version for punycode/idna support library
4268: (ticket #849)
4269:
4270: 2015-04-08 moko
4271:
4272: * src/: classes/curl.C, classes/date.C, classes/file.C,
4273: classes/image.C, classes/mail.C, classes/reflection.C,
4274: classes/string.C, classes/xnode.C, include/pa_request.h,
4275: include/pa_string.h, include/pa_stylesheet_connection.h,
4276: main/compile.y, main/compile_tools.h, main/execute.C,
4277: main/pa_common.C, main/pa_request.C, main/pa_string.C,
4278: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
4279: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
4280: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
4281: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
4282: clang compiler warnings (closes issue #1018)
4283:
4284: * src/include/pa_string.h: String::Body comparation operators with
4285: char * added (related to issue #958)
4286:
4287: 2015-04-07 moko
4288:
4289: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
4290: pa_malloc/pa_free to remove system malloc/free usage (related to
4291: issue #1018)
4292:
4293: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
4294: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
4295: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
4296: main/pa_http.C, main/pa_request.C, main/pa_string.C,
4297: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
4298: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
4299: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
4300: malloc/strdup/free replaced with pa_ version and checks for
4301: accidental use of non-pa_ version added (related to issue #1018)
4302:
4303: 2015-04-03 moko
4304:
4305: * buildall: pcre-8.33 -> pcre-8.36
4306:
4307: * src/: main/compile.y, classes/form.C, classes/mail.C,
4308: classes/op.C, classes/string.C, main/compile.tab.C,
4309: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
4310: main/pa_sql_driver_manager.C, types/pa_vfile.C,
4311: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
4312: ticket #958)
4313:
4314: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
4315: main/pa_common.C, main/pa_http.C, main/pa_request.C,
4316: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
4317: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
4318: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
4319: $request:headers, $request:method added (implements feature
4320: #1007)
4321:
4322: 2015-03-17 misha
4323:
4324: * tests/302.html: - test for
4325: ^json:string[...;$._default[method-name]]
4326:
4327: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
4328: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
4329: option $._default[method-name] is specified in ^json:string[], a
4330: method with specified name will be called for classes/objects
4331: serialization ( new feature: #982 )
4332:
4333: 2015-03-16 misha
4334:
4335: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
4336: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
4337: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
4338: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
4339: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
4340: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
4341: types/pa_vmemory.h, types/pa_vmethod_frame.C,
4342: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
4343: types/pa_vrequest.h, types/pa_vstateless_class.C,
4344: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
4345: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
4346: $var.CLASS_NAME now have special opcodes. This can be switched
4347: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
4348: on pa_opcode.h ( new feature: #844 )
4349:
4350: 2015-03-15 misha
4351:
4352: * tests/075.html: - test for $response:header[]
4353:
4354: * src/types/pa_vresponse.C: - $response:header[] deletes header
4355: that was set earlie ( new feature: #1001 )
4356:
4357: 2015-03-12 misha
4358:
4359: * tests/246.html: - more tests for ^hash._at[]
4360:
4361: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
4362: accepts second param [key|value|hash] ( new feature: #1012 )
4363:
4364: 2015-03-09 moko
4365:
4366: * src/types/pa_vmail.C: exception for everything but
4367: $mail:received, closes issue #1011
4368:
4369: 2015-02-20 moko
4370:
4371: * tests/: 275.html, results/275.processed: hex detection in
4372: pa_atoui fix test (closes issue #1010)
4373:
4374: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
4375: issue #1010)
4376:
4377: 2015-02-17 moko
4378:
4379: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4380: tainted.
4381:
4382: 2015-02-03 misha
4383:
4384: * tests/301.html: - test for ^json:string($double) causes
4385: exception. bugfix: #1008
4386:
4387: * src/classes/json.C: - ^json:string($double) causes exception.
4388: bugfix: #1008
4389:
4390: * tests/014.html: - updated for work with ^hash.delete[]
4391:
4392: 2015-01-12 misha
4393:
4394: * src/: classes/form.C, include/pa_common.h,
4395: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4396: types/pa_vform.h: - supports body with PUT method as well ( new
4397: feature: #1006 )
4398:
4399: * src/classes/file.C: - warnings war
4400:
4401: 2015-01-11 misha
4402:
4403: * tests/300.html: - test for ^hash.delete[] is added
4404:
4405: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4406: feature: #989 ) - tiny optimization in intersects
4407:
4408: 2015-01-06 moko
4409:
4410: * src/types/pa_vmail.C: file names transcode added, to and cc added
4411: with transcode, attachments detection fixed
4412:
4413: * src/main/pa_request.C: filling mail received after cgi/auto.p
4414: load to allow charset switch (related to issue #996)
4415:
4416: 2014-12-31 moko
4417:
4418: * src/types/pa_vmail.C: from and subject now transcoded if not
4419: UTF-8 source charset (fixes issue 996)
4420:
4421: * src/main/pa_exception.C: fixed string from stack bug (closes
4422: issue #1000)
4423:
4424: 2014-12-11 misha
4425:
4426: * src/types/pa_vhashfile.C: - check if key is not empty before
4427: access ( bug fix: #1005 )
4428:
4429: 2014-11-13 misha
4430:
4431: * src/main/compile.y: - PC.append does not reset to false while
4432: creating a new class. bugfix: #990
4433:
4434: * tests/299.html: - test for creation class after working with
4435: partial class (create+append)
4436:
4437: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
4438: #995
4439:
4440: * tests/232.html: - test for @get[def] added
4441:
4442: 2014-10-12 moko
4443:
4444: * src/lib/pcre/pcre_internal.vcproj: correct path
4445:
4446: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
4447: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
4448: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
4449: targets/apache/ApacheModuleParser3.vcproj,
4450: targets/apache/ApacheModuleParser3Core.vcproj,
4451: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4452: types/types.vcproj: project GUID inserted in *.vcproj for correct
4453: conversion in newer VS versions
4454:
4455: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
4456: pcre_internal.vcproj added
4457:
4458: 2014-08-28 moko
4459:
4460: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
4461: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
4462: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
4463:
4464: 2014-06-30 misha
4465:
4466: * tests/298.html: - tests for ^reflection:def[class;className]
4467: added
4468:
4469: * src/classes/reflection.C: - ^reflection:def[class;className]
4470: added ( new feature: #918 )
4471:
4472: 2014-06-29 misha
4473:
4474: * src/classes/table.C: - ^table::create[unsupported data] -
4475: exception comment changed to "body must be table or code" ( bug
4476: fix: #951 )
4477:
4478: * tests/: 261.html, results/261.processed: - tests for
4479: ^json:string[...;$.void[null|string]] added
4480:
4481: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
4482: option $.void[string|null] added to ^json:string[...] ( new
4483: feature: #952 )
4484:
4485: 2014-06-28 moko
4486:
4487: * src/classes/curl.C: $.charset now processed before other curl
4488: options (closes issue #980)
4489:
4490: 2014-05-23 misha
4491:
4492: * src/classes/json.C: - bug fix: #987
4493:
4494: 2014-05-04 misha
4495:
4496: * tests/: 253.html, 253_json.txt: - test for
4497: ^json:parse[$.int(false)] is added
4498:
4499: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
4500: default true). The option is similar to $.double(bool) but for
4501: integers.
4502:
4503: 2014-05-01 moko
4504:
4505: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
4506: #12 )
4507:
4508: 2014-04-16 moko
4509:
4510: * src/main/pa_http.C: response-charset option should finally work
4511: now (fix for issue #867)
4512:
4513: * src/main/pa_http.C: response-charset option should work now (fix
4514: for issue #867)
4515:
4516: 2014-03-07 moko
4517:
4518: * buildall: libgc moved
4519:
4520: * buildall: libgc moved
4521:
4522: 2013-12-29 moko
4523:
4524: * src/classes/string.C: ^string:js-unescape result now tainted,
4525: closes issue #966
4526:
4527: * tests/: 186.html, results/186.processed: ^string:js-unescape
4528: result now tainted, issue #966
4529:
4530: 2013-12-03 moko
4531:
4532: * src/: classes/memcached.C, types/pa_vmemcached.C,
4533: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
4534: option was added for http://www.parser.ru/forum/?id=79343
4535:
4536: * src/classes/file.C: bugfix for
4537: http://www.parser.ru/forum/?id=79337
4538:
4539: 2013-11-05 moko
4540:
4541: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
4542:
4543: * src/main/pa_globals.C: spelling fixed
4544:
4545: 2013-10-29 moko
4546:
4547: * src/lib/json/json.vcproj: json.c -> pa_json.C
4548:
4549: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
4550: #892
4551:
4552: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
4553: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
4554: exceptions to be thrown thougth json library), related to issue
4555: #892
4556:
4557: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
4558: related to issue #896
4559:
4560: 2013-10-24 moko
4561:
4562: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
4563:
4564: 2013-10-23 moko
4565:
4566: * README: actualization
4567:
4568: 2013-10-22 moko
4569:
4570: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
4571: compatibility patch from Sergey Kirpichev
4572:
4573: * tests/: 297.html, results/297.processed: non-working getter fix
4574: test for issue #948
4575:
4576: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
4577: called when saving value of $match variable in ^string.match[] to
4578: increase compatibility (related to issue #948).
4579:
4580: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
4581: usage optimization
4582:
4583: 2013-10-21 moko
4584:
4585: * tests/: 182.html, results/182.processed: local path removed for
4586: compatibility
4587:
4588: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
4589: results/244.processed, results/253.processed,
4590: results/254.processed, results/275.processed,
4591: results/281.processed: try_catch -> try-catch
4592:
4593: * tests/: 288.html, 294.html, 296.html, results/288.processed,
4594: results/294.processed, results/296.processed: try_catch ->
4595: try-catch
4596:
4597: 2013-10-20 moko
4598:
4599: * tests/: 296.html, results/296.processed: test for xsl exception
4600: for issue #938 added.
4601:
4602: * src/: include/pa_xml_exception.h,
4603: main/pa_stylesheet_connection.C: forgotten to be replaced
4604: XmlException is now replaced (once again closes issue #938)
4605:
4606: 2013-10-18 moko
4607:
4608: * buildall: disable clock_gettime detection to avoid librt linking
4609: (which in turn depends on libpthread), related to issue #943
4610:
4611: 2013-10-18 misha
4612:
4613: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
4614: lib/smtp/smtp.vcproj, main/main.vcproj,
4615: targets/apache/ApacheModuleParser3Core.vcproj,
4616: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4617: types/types.vcproj: - new locations for libxml2 includes where
4618: added to vcproj files
4619:
4620: 2013-10-18 moko
4621:
4622: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
4623: fix
4624:
4625: * tests/: 295.html, results/295.processed: test for issue #948
4626: updated
4627:
4628: * src/classes/table.C: hopefully last lost part for issue #948 fix.
4629: :)
4630:
4631: * tests/: 295.html, results/295.processed: test for issue #948
4632: added
4633:
4634: * src/: classes/hash.C, classes/string.C, classes/table.C,
4635: include/pa_request.h, types/pa_method.h: for getters and setters
4636: to be executed request.put_element should be called, not
4637: context.put_element (fixes issue #948)
4638:
4639: 2013-10-17 moko
4640:
4641: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
4642: LIBXML2_NEW_BUFFER check (closes issue #943)
4643:
4644: * buildall: libxml 2.9.1 build is broken --without-reader.
4645:
4646: 2013-10-16 moko
4647:
4648: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
4649:
4650: * tests/: 294.html, results/294.processed: test for issue #938
4651:
4652: * src/: classes/xdoc.C, classes/xnode.C,
4653: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
4654: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
4655:
4656: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
4657: libxslt-1.1.26 -> libxslt-1.1.28
4658:
4659: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
4660: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
4661: to '?', related to issue #938
4662:
4663: 2013-10-15 moko
4664:
4665: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
4666: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
4667: minor optimizations (closes issue #896)
4668:
4669: * tests/results/: 292.processed, 293.processed: results updated to
4670: comply with issue #896
4671:
4672: * tests/: 292.html, 293.html, results/292.processed,
4673: results/293.processed: tests for json escaping
4674:
4675: 2013-10-14 moko
4676:
4677: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
4678: and cleanup, code moved from .h to .C, no changes in code
4679:
4680: 2013-10-12 moko
4681:
4682: * tests/results/119.processed: updated test result commited
4683:
4684: * tests/: 291.html, results/291.processed: test for issue #894
4685: added
4686:
4687: * src/types/pa_wcontext.h: base methods call support function
4688: get_somebody_entered_some_class should not be true forever, as
4689: wcontext can have many get_elements calls (fixes issue #894)
4690:
4691: 2013-10-11 moko
4692:
4693: * tests/: 290.html, results/290.processed: test for junction GPF
4694: issue #942 added
4695:
4696: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
4697: to native method fixed (closes issue #942)
4698:
4699: * tests/: 158.html, results/158.processed: test for csv-string[]
4700: added
4701:
4702: * src/classes/table.C: minor fixes for table.csv-string[] (closes
4703: feature #907)
4704:
4705: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
4706: feature #907)
4707:
4708: 2013-10-09 moko
4709:
4710: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
4711: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
4712: types/pa_vstateless_class.C: GET_default, SET_default now works
4713: properly not only in objects, but in classes as well (closes
4714: issue #903)
4715:
4716: * tests/: 289.html, results/289.processed: GET/SET_default now
4717: works in classes, not only objects, test case added, related to
4718: issue #903
4719:
4720: * tests/: 288.html, results/288.processed: test for endless
4721: recursion bug added (related to issue #903)
4722:
4723: 2013-10-05 moko
4724:
4725: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
4726: classes/table.C, main/execute.C, types/pa_method.h,
4727: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
4728: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
4729: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
4730: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
4731: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
4732: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
4733: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
4734: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4735: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
4736: optimization: put_element no longer has "bool areplace" argument,
4737: related to issue #903
4738:
4739: 2013-10-03 moko
4740:
4741: * tests/results/182.processed: result for $.replace(false) test
4742: commited
4743:
4744: * src/classes/date.C: ^date::create(number) processed correctly
4745: (fixes issue #901)
4746:
4747: * src/classes/image.C: as_no_junction removed, as param can be
4748: expression (closes issue #931)
4749:
4750: * tests/233.html: test for issue #931 added
4751:
4752: 2013-10-02 moko
4753:
4754: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
4755: modified, test for $.replace(false) added
4756:
4757: * src/main/compile_tools.h: forgotten class replace returned. :)
4758:
4759: 2013-09-30 moko
4760:
4761: * tests/: 141.html, results/141.processed: md5 tainting test added
4762:
4763: * src/: classes/op.C, include/pa_request.h, main/compile.y,
4764: main/compile_tools.h, main/pa_request.C: allow_class_replace
4765: implemented; $.replace option added to ^process and ^use
4766:
4767: 2013-08-27 moko
4768:
4769: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
4770: cstr_to_string_body_untaint should be called with charsets for
4771: possible uri language and connection for possible sql language.
4772: related to issue #857
4773:
4774: * buildall: and -> or fixed
4775:
4776: 2013-08-26 moko
4777:
4778: * buildall: prepare_ functions logic changed to support
4779: gc-7.2d.tar.gz extracting to gc-7.2 directory
4780:
4781: 2013-08-23 moko
4782:
4783: * src/include/pa_config_fixed.h: gc and xml libs are now linked
4784: statically
4785:
4786: 2013-08-22 moko
4787:
4788: * src/classes/string.C: String::Empty used (related to issue #912)
4789: append_know_length removed (related to old GPF bug)
4790:
4791: 2013-08-21 moko
4792:
4793: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
4794:
4795: * src/classes/math.C: ^math:digest[...;$file] support added
4796: (related to ticket #857
4797:
4798: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
4799: implemented
4800:
4801: * src/types/pa_vhashfile.h: warning war
4802:
4803: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
4804: include/pa_request.h, main/pa_request.C, types/pa_value.h:
4805: anti_endless_json_string_recoursion removed from request;
4806: json_string_recoursion added to json_options; $.indent[indent
4807: value] now supported and passed within recoursion closes feature
4808: #937
4809:
4810: * tests/: 287.html, results/287.processed: test for feature #937
4811:
4812: 2013-07-31 moko
4813:
4814: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
4815: compilation having #define _S
4816:
4817: * src/main/pa_globals.C: cleanup
4818:
4819: 2013-07-30 moko
4820:
4821: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
4822: main/pa_common.C: vs2003 warning war
4823:
4824: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
4825:
4826: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
4827:
4828: * src/lib/md5/pa_sha2.c: warning war
4829:
4830: 2013-07-29 moko
4831:
4832: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
4833: patches from github
4834:
4835: * src/: classes/bool.C, classes/double.C, classes/int.C,
4836: classes/memcached.C, include/pa_config_includes.h,
4837: types/pa_vfile.C, types/pa_vfile.h: warning war
4838:
4839: * src/lib/json/json.vcproj: C++ -> C
4840:
4841: * src/lib/json/: json.c, pa_json.C: C++ warning revert
4842:
4843: * src/lib/json/: json.c, pa_json.C: windows compatibility
4844:
4845: * src/lib/json/: json.c, pa_json.C: windows compatibility
4846:
4847: * src/lib/json/: json.c, pa_json.C: warning war
4848:
4849: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
4850:
4851: * src/include/pa_config_fixed.h: uint16_t added
4852:
4853: * configure.in: uint16_t check added
4854:
4855: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 4856: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
4857: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
4858: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
4859: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 4860:
4861: 2013-07-25 moko
4862:
4863: * parser3.sln: dependencies added
4864:
4865: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
4866: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
4867: module support
4868:
4869: * src/targets/apache/mod_parser3_core.C: win32 cleanup
4870:
4871: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
4872:
4873: 2013-07-23 moko
4874:
4875: * src/: include/pa_memory.h, main/pa_memory.C: non-working
4876: PA_DEBUG_GC_MEMORY removed
4877:
4878: * src/: main/pa_globals.C, targets/cgi/parser3.C:
4879: PA_DEBUG_DISABLE_GC compilation fix
4880:
4881: * src/: classes/op.C, classes/table.C, include/pa_request.h,
4882: main/pa_request.C: outdated RESOURCES_DEBUG removed
4883:
4884: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
4885: garbage cleanup
4886:
4887: * src/main/pa_common.C: warning war
4888:
4889: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
4890:
4891: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
4892: minor cleanup
4893:
4894: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
4895: uses cygwin, not WIN32 implementation
4896:
4897: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
4898: able to exec shell scripts
4899:
4900: * src/classes/math.C: ifdef WIN32 cleanup
4901:
4902: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
4903:
4904: * src/classes/curl.C: LT_MODULE_EXT used
4905:
4906: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
4907:
4908: 2013-07-22 moko
4909:
4910: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
4911: includes fix
4912:
4913: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
4914:
4915: * configure.in, src/include/pa_config_includes.h,
4916: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
4917: src/main/pa_exec.C: includes cleanup
4918:
4919: * src/targets/cgi/parser3.C: 2012->2013
4920:
4921: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
4922:
4923: * configure.in, src/include/pa_config_includes.h,
4924: src/include/pa_http.h, src/lib/json/JSON_parser.h,
4925: src/main/pa_random.C, src/main/pa_socks.C,
4926: src/types/pa_vstatus.C: cygwin support cleanup
4927:
4928: * configure.in: dirent.h check added
4929:
4930: * src/: include/pa_config_includes.h, include/pa_dir.h,
4931: main/pa_dir.C: includes cleanup, dirent.h check added filePath
4932: not copied
4933:
4934: 2013-07-21 moko
4935:
4936: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
4937:
4938: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
4939: parser3.vcproj: unused getopt.h / getopt.c removed
4940:
4941: * operators.txt, src/classes/file.C, tests/022.html,
4942: tests/results/022.processed: ^file:list[path][$.filter[regexp]
4943: $.stat(true)] usage commented
4944:
4945: * configure.in, src/classes/file.C, src/include/pa_dir.h,
4946: src/main/pa_dir.C: ^file:list[] now has dir column and when
4947: $.stat(true) it has size/*date columns modified patch from misha@
4948: that closes issue #914.
4949:
4950: * src/: include/pa_config_includes.h, main/pa_globals.C:
4951: PA_RELEASE_ASSERTS removed
4952:
4953: * src/lib/md5/pa_md5c.c: minor cleanup
4954:
4955: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
4956: localeconv()->decimal_point usage remoed (related to issue #934)
4957:
4958: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
4959: cordprnt.c removed
4960:
4961: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
4962: pa-include/pa_errno.h, pa-include/pa_file_io.h,
4963: pa-include/pa_strings.h: includes cleanup
4964:
4965: * src/lib/md5/pa_md5c.c: headers cleanup
4966:
4967: 2013-07-20 moko
4968:
4969: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
4970: cleanup
4971:
4972: 2013-07-19 moko
4973:
4974: * src/classes/math.C: extern "C" added for crypt
4975:
4976: 2013-07-18 moko
4977:
4978: * src/classes/math.C: fix redhat7.2 build
4979:
4980: 2013-07-17 moko
4981:
4982: * configure.in, src/include/pa_config_includes.h,
4983: src/include/pa_config_fixed.h: headers actualized (inttypes.h
4984: added for uint8/32/64_t)
4985:
4986: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
4987: pa_config_includes.h used for uint32/64_t
4988:
4989: 2013-07-16 moko
4990:
4991: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
4992: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
4993: war
4994:
4995: * src/main/compile.tab.C: compile.y was updated
4996:
4997: * src/main/compile.y: warning war
4998:
4999: * src/: include/pa_exception.h, main/pa_exception.C,
5000: main/pa_xml_exception.C: warning war
5001:
5002: * src/: include/pa_common.h, main/pa_common.C: warning war
5003:
5004: * configure.in: beauty :)
5005:
5006: * tests/: 141.html, results/141.processed: sha256/512 added
5007:
5008: 2013-07-13 moko
5009:
5010: * src/lib/md5/md5.vcproj: sha2 added
5011:
5012: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
5013: classes/math.C: sha2 support (sha256/sha512 digest)
5014:
5015: 2013-07-08 moko
5016:
5017: * src/classes/image.C: directory read or other read problem message
5018: fixed (related to issue #933)
5019:
5020: 2013-07-07 moko
5021:
5022: * AUTHORS: + misha + moko. :)
5023:
5024: 2013-07-06 moko
5025:
5026: * src/: classes/curl.C, include/pa_globals.h,
5027: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
5028: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
5029: for lt_dlinit to be called once and lt_dlexit called at right
5030: place (related to issue #925)
5031:
5032: 2013-07-04 moko
5033:
5034: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
5035: VString::as_vfile now uses vfile.set_binary_string to avoid
5036: content-type to be set, as it brokes badly designed logic in
5037: response output. This hopefully finishes issue #928.
5038:
5039: * tests/results/: 256.processed, 286.processed: file now displayed
5040: as name, size, mode, content-type
5041:
5042: * src/main/pa_common.C: read error now reported cottectly (fixes
5043: issue #933
5044:
5045: 2013-06-28 moko
5046:
5047: * tests/: 286.html, results/286.processed: test extended
5048:
5049: * tests/: 286.html, results/286.processed: Test for issue #928
5050: added. it tests default content-type change.
5051:
5052: * src/types/pa_vfile.C: closes issue #928 - default content-type
5053: now updated
5054:
5055: 2013-06-25 moko
5056:
5057: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
5058: content-type for text/binary files without name added;
5059: ^file::create[$f;...] options now works properly and $f
5060: properties are default (fixes issue #928)
5061:
5062: 2013-05-16 misha
5063:
5064: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
5065: added
5066:
5067: * src/main/pa_table.C: - a tiny memory optimisation while creating
5068: table if specified limit is bigger than source rows count
5069:
5070: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
5071: added ( new feature: #858 )
5072:
5073: 2013-04-29 moko
5074:
5075: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
5076: $.ipresolve(0|1|2) added (closes issue #891)
5077:
5078: * src/lib/curl/curl.h: CURL_IPRESOLVE added
5079:
5080: 2013-04-24 moko
5081:
5082: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5083: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5084: types/pa_vmemcached.h: ^memcache.release[] added, calls
5085: memcached_quit (refs #893)
5086:
5087: 2013-04-22 moko
5088:
5089: * src/: include/pa_string.h, main/pa_common.C: no more double
5090: slashes in file path (fixes bug #872)
5091:
5092: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
5093: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
5094: #739)
5095:
5096: * tests/results/266.processed: $.max_params added (feature #915)
5097:
5098: * src/: include/pa_common.h, main/pa_http.C: response-charset
5099: option added to file::load (closes issue #867)
5100:
5101: 2013-04-20 misha
5102:
5103: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
5104: commited
5105:
5106: 2013-03-15 misha
5107:
5108: * src/classes/: hash.C, table.C: - Optimisation: do not create
5109: multiple empty strings while ::sql. uae String::Empty instead
5110:
5111: 2013-03-14 misha
5112:
5113: * src/classes/reflection.C: - for user classes
5114: ^reflection:method_info[] returns $.max_params and $.extra_param
5115: with $.call_type if they available ( new feature: #915 )
5116:
5117: * src/classes/file.C: - ^file:delete[] now supports an option
5118: $.exception(false) that suppress any exception while deleting
5119: file ( new feature: #916 )
5120:
5121: * src/classes/curl.C: - parsing cookies after curl:load now should
5122: work :)
5123:
5124: 2013-03-12 misha
5125:
5126: * src/types/pa_vfile.C: - if specified file_name is empty string
5127: set default name for the file
5128:
5129: 2013-03-11 misha
5130:
5131: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
5132: also available in $f.cookies
5133:
5134: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
5135: moved to a separate method
5136:
5137: 2013-03-10 moko
5138:
5139: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
5140: added
5141:
5142: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
5143: removed (declared by autoconf)
5144:
5145: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
5146: uint32_t define
5147:
5148: 2013-03-10 misha
5149:
5150: * src/classes/file.C: ^file:delete and ^file:move now support
5151: option $.keep-empty-dirs(true) ( new feature: #884 )
5152:
5153: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
5154: empty dirs is added
5155:
5156: 2013-03-10 moko
5157:
5158: * src/classes/: bool.C, double.C, int.C: default can be present,
5159: but default check removed from ^int/double/bool.int/double/bool
5160: for string.int/double/bool compatibility (related to issue #913)
5161:
5162: * src/classes/string.C: ^string.int/dobule/bool no longer
5163: internally throws exception if default is present (closes issue
5164: #913)
5165:
5166: 2013-03-09 misha
5167:
5168: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
5169: optimisations ( #845 )
5170:
5171: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
5172:
5173: 2013-03-08 moko
5174:
5175: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
5176: creates correct table (fixes issue #910)
5177:
5178: * src/classes/op.C: r.connection() -> r.connection(false) to allow
5179: use outside of 'connect' operator (fixes issue #911)
5180:
5181: * tests/results/: 096.processed, 122.processed: test results
5182: updated as doubles now printed with 15 significant digits, not 5
5183: (fixes issue #882)
5184:
5185: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
5186: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
5187:
5188: 2013-02-21 moko
5189:
5190: * src/classes/table.C: _locate_name_value does not check arguments
5191: count, so we check it in advance (fixes issue #905)
5192:
5193: 2012-10-23 moko
5194:
5195: * buildall: old shell for and echo compatibility (for six)
5196:
5197: 2012-10-19 moko
5198:
5199: * buildall: --strip added --disable-safe-mode listed in usage
5200:
5201: 2012-10-17 misha
5202:
5203: * src/classes/op.C: - apply-taint should not throw "outside
5204: connect" exception with sql lang now
5205:
5206: 2012-10-17 moko
5207:
5208: * src/main/pa_request.C: bugfix: safe mode should be inited for
5209: each request (for apache module)
5210:
5211: 2012-09-26 moko
5212:
5213: * src/doc/doxygen.cfg: png -> svg
5214:
5215: 2012-09-25 moko
5216:
5217: * tests/: 141.html, results/141.processed: md5 hmac added, long key
5218: test added
5219:
5220: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
5221: double use when key is long
5222:
5223: 2012-09-16 moko
5224:
5225: * src/classes/math.C: Format -> Method Encode -> Format
5226:
5227: * tests/: 141.html, results/141.processed: math:digest hmac test
5228: added
5229:
5230: 2012-09-14 moko
5231:
5232: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
5233: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
5234: implementation added
5235:
5236: 2012-09-12 moko
5237:
5238: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
5239: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
5240: targets.dox and string.dox slightly actualized
5241:
5242: 2012-08-31 moko
5243:
5244: * ChangeLog: now generated with patched cvs2cl.pl
5245:
5246: 2012-07-29 moko
5247:
5248: * tests/285.html, src/main/execute.C, tests/results/285.processed:
5249: result should be pushed after VMethodFrame destructor is called,
5250: as it deletes junctions from stack params (fixes issue #868)
5251:
5252: 2012-07-23 moko
5253:
5254: * INSTALL, README: buildall script usage documented, other outdated
5255: info updated.
5256:
5257: * buildall-with-xml, buildall-without-xml: replaced by buildall
5258:
5259: 2012-07-21 moko
5260:
5261: * buildall: glib does not compile when threads are disabled...
5262:
5263: * src/types/pa_vmail.C: g_assertion fixes for empty input
5264:
5265: * src/types/pa_vmail.C: yet another fix (strange GPF on object
5266: unref, can't unref nested objects)
5267:
5268: * src/types/pa_vmail.C: another check added
5269:
5270: 2012-07-19 moko
5271:
5272: * buildall: usage added
5273:
5274: * buildall: new buildall script that unites buildall-with-xml,
5275: buildall-without-xml, --with-apache and --with-mailreceive
5276:
5277: * configure.in: support for static gmime and dynamic glib linking.
5278: fixes for FreeBSD
5279:
5280: 2012-07-17 moko
5281:
5282: * configure.in: --with-mailreceive replaced
5283: --with-static-mailreceive and --with-shared-mailreceive pathlink
5284: removed
5285:
5286: 2012-07-16 moko
5287:
5288: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
5289: capitalized, content now decoded and text content converted to
5290: $request:charset. all properties are accessed by functions, this
5291: ready for dynamic load.
5292:
5293: 2012-06-28 moko
5294:
1.116 moko 5295: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
5296: 32 bit
1.95 moko 5297:
5298: 2012-06-27 moko
5299:
5300: * buildall-with-xml, buildall-without-xml: fetch requires -p for
5301: passive ftp
5302:
5303: * src/lib/ltdl/ltdl.vcproj: release build fixed
5304:
5305: * configure.in: 3.4.2 RC -> 3.4.2
5306:
5307: 2012-06-22 moko
5308:
5309: * src/types/pa_vfile.C: returned empty mode to stated files (issue
5310: #815)
5311:
5312: * tests/: 284.html, results/284.processed: output options test
5313: (feature #265)
5314:
5315: 2012-06-22 misha
5316:
5317: * tests/215.html: - little changes
5318:
5319: 2012-06-21 moko
5320:
5321: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
5322: types/pa_vxdoc.h: output_options returned and used (bugfix for
5323: feature #265)
5324:
5325: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
5326: breaks long .*, default 10M restored. (issue #216)
5327:
5328: * tests/: 283.html, results/283.processed: test for issue #815
5329: added
5330:
5331: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
5332: again, cstrm not required.
5333:
5334: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
5335: Win32 and broken FreeBSD (issue #45)
5336:
5337: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
5338:
5339: * src/main/pa_string.C: warnings war
5340:
5341: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
5342: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
5343: main/pa_socks.C, targets/apache/pa_threads.C,
5344: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5345: types/pa_vstatus.C: compilation under cygwin fixed
5346:
5347: 2012-06-19 moko
5348:
5349: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
5350: Windows fixed
5351:
5352: * parser3.sln: removed antique pcre_ctype
5353:
5354: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
5355:
5356: * src/include/pa_config_fixed.h: undefined reference to
5357: __imp__pcre_* fix for Windows
5358:
5359: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 5360: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
5361: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
5362: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
5363: define fixed
1.95 moko 5364:
5365: 2012-06-18 moko
5366:
5367: * src/classes/memcached.C: flush -> clear
5368:
5369: * src/classes/memcached.C: memcached does not support quotes even
5370: in server name
5371:
5372: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5373: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
5374: called on open to check servers existance. $.key(true) syntax
5375: now supported
5376:
5377: 2012-06-17 moko
5378:
5379: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5380: cleanup
5381:
5382: * src/classes/table.C, tests/282.cfg, tests/282.html,
5383: tests/results/282.processed: encloser at the EOF bug fixed,
5384: incorrectly enclosed data now processed more logicaly (fixes
5385: #339)
5386:
5387: 2012-06-15 moko
5388:
5389: * buildall-without-xml: sync with buildall-with-xml
5390:
5391: * buildall-with-xml: download auto-detected between fetch and curl
5392:
5393: * configure.in: --with-gc and --with-pcre now also processed
5394: correctly
5395:
1.116 moko 5396: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5397: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5398: should be run on rol1 using automake / aclocal (GNU automake)
5399: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5400:
5401: * configure.in: new PARSER_VERSION logic
5402:
5403: * src/include/pa_version.h: new pa_version.h logic
5404:
5405: * src/: classes/curl.C, classes/file.C, classes/image.C,
5406: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5407: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5408: feols_normalized -> fis_text_content set_binary added
5409:
5410: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5411:
5412: 2012-06-15 misha
5413:
5414: * src/: classes/curl.C, classes/file.C, classes/image.C,
5415: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5416: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5417: ^file::create[text;content] EOLs in content now is normalized. (
5418: new feature: #815 )
5419:
5420: 2012-06-15 moko
5421:
5422: * configure.in: --disable-version-update added to disable version
5423: update with host information (for debian package) whitespace
5424: optimized
5425:
5426: * configure.in: version changed to 3.4.2 RC no-pic added for
5427: libtool
5428:
5429: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5430: it.
5431:
5432: 2012-06-14 moko
5433:
5434: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
5435: tests/results/281.processed: "hash flocked" error removed for
5436: safe operations like ^h._count[] ( new feature: #335 )
5437:
1.116 moko 5438: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 5439:
5440: * buildall-with-xml, buildall-without-xml: --with-static -> --with
5441:
5442: * configure.in: --with-static/shared xml replaced with --with-xml,
5443: xml compilation check added
5444:
5445: * configure.in: --with-static/shared-gc, --with-static-pcre are
5446: replaced with --with-gc and --with-pcre test for pcre linking
5447: added
5448:
5449: 2012-06-13 moko
5450:
5451: * configure.in: apxs2 check optimized
5452:
5453: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
5454: .la, includes optimized
5455:
5456: * buildall-with-xml: --with-pic looks better for -fPIC
5457:
5458: * configure.in: switched to convenience library in static linking
5459:
5460: * src/targets/apache/Makefile.am: switched to convenience library
5461: usage to avoid libtool warnings
5462:
5463: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
5464: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
5465: smtp/Makefile.am: switched to convenience library usage
5466:
5467: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
5468:
5469: * src/targets/apache/Makefile.am: updated for libtool usage
5470:
5471: * buildall-without-xml: --with-included-ltdl added
5472:
5473: * buildall-without-xml: sync with buildall-with-xml
5474:
5475: * buildall-with-xml: --with-included-ltdl added $cflags added for
5476: -fPIC for x64 $download added for wget success check added
5477:
5478: * buildall-without-xml: --with-dynamic-stdcpp removed
5479:
5480: * configure.in: disable-static returned
5481:
5482: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
5483: LIBTOOLFLAGS
5484:
5485: 2012-06-12 moko
5486:
5487: * configure.in, src/targets/cgi/Makefile.am: disable-static not
5488: compatible with LIBTOOLFLAGS for unknown reasons
5489:
5490: * buildall-with-xml: --with-dynamic-stdcpp removed
5491:
5492: * configure.in: static/dynamic -lstdc++ linking option removed
5493: apxs2 check added
5494:
5495: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
5496: option removed
5497:
5498: 2012-06-10 moko
5499:
5500: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
5501: added
5502:
5503: * src/targets/cgi/pp3.cmd: old PAF stuff
5504:
1.116 moko 5505: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
5506: beauty
1.95 moko 5507:
5508: * depcomp: from libtool 2.4.2
5509:
5510: * configure.in: ltdl directory removed, it has correct Makefile.in
5511:
5512: 2012-06-09 moko
5513:
1.116 moko 5514: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
5515: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 5516: autogenerated files updated after libtool update
5517:
1.116 moko 5518: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
5519: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 5520: config_auto.h.in, config_fixed.h, configure, configure.ac,
5521: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
5522: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
5523: config/compile, config/config.guess, config/config.sub,
5524: config/depcomp, config/install-sh, config/ltmain.sh,
5525: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
5526: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
5527: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
5528: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
5529: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
5530: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
5531: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
5532: m4/lt~obsolete.m4: libtool updated to version 2.4.2
5533:
5534: * configure.in: preparation for new libtool
5535:
5536: * configure.in: Some beauty added :)
5537:
5538: * src/targets/apache/Makefile.am: := -> =
5539:
5540: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
5541: again. :)
5542:
5543: * src/include/pa_config_includes.h, configure.in: limits.h added,
5544: previously was taken from pcre_internal.h. :)
5545:
5546: * src/lib/pcre/Makefile.am: config.h returned
5547:
5548: * src/lib/pcre/config.h: still need this. :)
5549:
5550: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
5551:
5552: * configure.in: --with-charsets removed; --with-mysql-client & co
5553: removed
5554:
5555: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
5556: now in parser tree, no need to copy
5557:
5558: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
5559: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
5560: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
5561: debian/patches/101_pcre.patch - local copy of pcre_internal.h
5562: extracts now used old trash removed
5563:
5564: * etc/parser3.charsets/Makefile.am: charsets now in share
5565: (debian/patches/104_automake.patch) + all charsets are copied
5566:
5567: * buildall-with-xml, buildall-without-xml: curl option removed +
5568: extra arguments now supported
5569:
5570: 2012-06-08 misha
5571:
5572: * src/classes/table.C: - one params.as_hash usage was rolled back:
5573: the 2nd option in ^table.hash[] could be hash or table so
5574: .as_hash will throw an exception when table option is specified
5575:
5576: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5577: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
5578: classes/table.C, classes/void.C, classes/xdoc.C,
5579: include/pa_exception.h, types/pa_vmethod_frame.C,
5580: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
5581: and improved (whitespaces are allowed as empty options) -
5582: MethodParams::as_table is added - above methods are used for
5583: parsing methods' options ( new feature: #9 )
5584:
5585: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
5586: to vclass. now class fields can be accessible as a hash:
5587: $h[^hash::create[$asd:CLASS]]
5588:
5589: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
5590: have get_fields method so their fields can be accessed with
5591: ^reflection:fields[...] & ^reflection:field[...]
5592:
5593: 2012-06-06 misha
5594:
5595: * tests/280.html: - tests for
5596: ^reflection:method[obj-or-class;method],
5597: ^reflection:field[obj-or-class;field] and
5598: ^reflection:fields[obj-or-class] are added
5599:
5600: 2012-06-05 misha
5601:
5602: * src/classes/reflection.C: - ^reflection:method[class or
5603: object;method name] and ^reflection:field[class or object;field
5604: name] are added
5605:
5606: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
5607: is used
5608:
5609: * src/types/pa_method.h: - Method::as_vjunction method is added
5610:
5611: 2012-06-05 moko
5612:
1.116 moko 5613: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 5614:
5615: * src/classes/memcached.C: flish ttl fixed
5616:
5617: 2012-06-04 moko
5618:
5619: * src/classes/json.C, src/classes/op.C, tests/279.html,
5620: tests/results/279.processed: ^json:parse[] now supports $.taint
5621: option (new feature #833)
5622:
5623: 2012-06-04 misha
5624:
5625: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
5626: - search_stop method was moved from pa_vcookie.C to pa_common.C
5627:
5628: 2012-06-03 misha
5629:
5630: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
5631: cookies are parced and stored into $.cookies ( new feature: #31 )
5632:
5633: 2012-05-30 misha
5634:
5635: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
5636: incomplete class into a scope while @USE is found
5637:
5638: * src/main/compile.y: - add incomplete class into a scope while
5639: @USE and @CLASS instructions are found ( bugfix: #838 )
5640:
5641: 2012-05-30 moko
5642:
5643: * src/types/pa_vclass.C, tests/278.html,
5644: tests/results/278.processed: removed "property has no getter
5645: method" exception when GET_DEFAULT present (fixes #269)
5646:
5647: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
5648: $._default
5649:
5650: 2012-05-29 moko
5651:
5652: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
5653: uninitialized values usage (new feature: #154)
5654:
5655: 2012-05-28 moko
5656:
5657: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
5658: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
5659: src/types/pa_vdate.h, src/types/pa_vdouble.h,
5660: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
5661: src/types/pa_vobject.C, src/types/pa_vobject.h,
5662: src/types/pa_vstring.h, src/types/pa_vtable.C,
5663: tests/results/277.processed, src/types/pa_vtable.h,
5664: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
5665: ^json:string[$o; $.default[$method]] implemented for VObject (new
5666: feature #803)
5667:
5668: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
5669: tests/results/277.processed: json numbers are now treated as
5670: double ( new feature: #834 )
5671:
5672: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
5673: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
5674: added for out of range checks, zero division in vint/vdouble
5675: check added ( fixes #832 )
5676:
5677: * tests/: 275.html, results/275.processed: tests for pa_atoui added
5678: ( fixes #832 )
5679:
5680: 2012-05-28 misha
5681:
5682: * buildall-with-xml: - --without-lzma option is added to libxml2
5683: configure
5684:
5685: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
5686: added - tests for unsupported values for options $.file, $.table
5687: and $.date are added
5688:
5689: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
5690: accepts "stat" $.file[] option's value in addition to existed
5691: "text" and "base64" ( new feature: #835 )
5692:
5693: * tests/276.html: - test for
5694: ^reflection:delete[$object-or-class;field-name]
5695:
5696: * src/classes/reflection.C: -
5697: ^reflection:delete[$object-or-class;field-name] is added ( new
5698: feature: #268 )
5699:
5700: 2012-05-27 misha
5701:
5702: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
5703:
5704: 2012-05-24 misha
5705:
5706: * src/include/pa_common.h: - method lastposafter was removed
5707:
5708: * src/classes/file.C: - use strrpbrk & rskipchars instead of
5709: lastposafter - ^file:dirname[] & Co proper handle windows file
5710: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
5711: work as *nix commands
5712:
5713: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
5714:
5715: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
5716: rskipchars were added
5717:
5718: * tests/270.html: - more tests for ^file:find[]
5719:
5720: * tests/065.html: - more tests for ^file:dirname[] & Co
5721:
5722: * src/include/pa_version.h: - must be "win32" here. it is
5723: auto-generated on *nix
5724:
5725: 2012-05-24 moko
5726:
5727: * src/classes/math.C: ^math:convert[] now supports uint32 and
5728: throws overflow exception ( new feature: #830 )
5729:
5730: * tests/: 275.html, results/275.processed: test for ^math:convert[]
5731: uint32 support and overflow added ( new feature: #830 )
5732:
5733: 2012-05-23 moko
5734:
5735: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
5736: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
5737: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
5738: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
5739: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
5740: types/pa_vregex.h, types/pa_vstateless_class.C,
5741: types/pa_vstateless_class.h, types/pa_vstring.h,
5742: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
5743: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
5744: "return string as-is" removed from as_expr_result. ( new feature:
5745: #831 )
5746:
5747: * tests/results/244.processed: test changed after bug #782 fix
5748: commited
5749:
5750: * tests/results/229.processed: test results for bug #782 commited
5751:
5752: * tests/: 254.html, results/254.processed: uid now just compared,
5753: not printed. :)
5754:
5755: 2012-05-20 moko
5756:
5757: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
5758: feature: #341 )
5759:
5760: * tests/: 254.html, results/254.processed: test for
5761: ^reflection:uid[] added
5762:
5763: * tests/: 254.html, results/254.processed: test for
5764: ^reflection:uid[$obj] added
5765:
5766: 2012-05-17 misha
5767:
5768: * src/main/untaint.C: - do not replace ' char by _26 while
5769: exploding filespec-tainting ( new feature: #829 )
5770:
5771: 2012-05-12 moko
5772:
5773: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
5774: not.
5775:
5776: 2012-05-08 moko
5777:
5778: * src/types/pa_vmethod_frame.h: bug #782 fixed
5779:
5780: * tests/229.html: test for bug #782
5781:
5782: * tests/results/259.processed, src/main/pa_request.C,
5783: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
5784: src/types/pa_vstring.h, src/types/pa_vvoid.C,
5785: src/types/pa_vvoid.h: feature #154 - first empty param now
5786: string; defined locals are empty strings; $STRICT-VARS(true)
5787: added
5788:
5789: 2012-04-27 moko
5790:
1.116 moko 5791: * src/targets/apache/Makefile.am:
1.95 moko 5792: ../../lib/memcached/libmemcached.a added
5793:
5794: 2012-04-27 misha
5795:
5796: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
5797: ( #827 )
5798:
5799: 2012-04-25 moko
5800:
5801: * src/: classes/json.C, classes/memcached.C,
5802: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
5803: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
5804: implemented.
5805:
5806: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
5807:
5808: 2012-04-23 moko
5809:
5810: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5811: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5812: types/pa_vmemcached.h: open allows options hash for new
5813: memcached(options) function
5814:
5815: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
5816: not appended
5817:
5818: 2012-04-21 moko
5819:
5820: * src/classes/curl.C: '' added. :)
5821:
5822: * src/classes/classes.vcproj: new curl.h location
5823:
5824: * src/classes/curl.C: verbose output redirection from stderr to
5825: file curl option added
5826:
5827: 2012-04-20 moko
5828:
5829: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
5830: contains what we need from curl, #ifdef HAVE_CURL removed
5831:
1.116 moko 5832: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 5833: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 5834: src/lib/Makefile.am, src/lib/curl/Makefile.am,
5835: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 5836: configure option
5837:
5838: 2012-04-19 moko
5839:
5840: * src/: classes/double.C, classes/inet.C, classes/int.C,
5841: classes/string.C, lib/gc/include/gc_allocator.h,
5842: types/pa_vform.C: PVS-Studio detected errors fixes, unused
5843: options from sql_result_string removed. (closes issue #468)
5844:
5845: * src/types/pa_vmemcached.C: empty string fix
5846:
5847: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
5848: pa_vstring.C, pa_vstring.h: serialization helpers moved to
5849: pa_vmemcached.C
5850:
5851: 2012-04-18 moko
5852:
5853: * src/targets/apache/mod_parser3.c: "Parser3 module requires
5854: apache2-mpm-prefork" error displayed in threaded mpm.
5855:
5856: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
5857: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
5858: installed (issue #354)
5859:
5860: 2012-04-16 moko
5861:
5862: * src/types/pa_vmemcached.C: call to memcached_result_create and
5863: memcached_result_free removed
5864:
5865: 2012-04-14 moko
5866:
5867: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
5868:
5869: * src/types/pa_vmemcached.C: check_key added and used
5870:
5871: 2012-04-13 moko
5872:
5873: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
5874: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
5875: Serialization_data now added and used, VString now serialized
5876: with languages into memcached.
5877:
5878: 2012-03-28 moko
5879:
5880: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
5881: lib/memcached/pa_memcached.h: result lengths added
5882:
5883: 2012-03-27 moko
5884:
5885: * src/types/pa_vmemcached.C: strdup added
5886:
5887: 2012-03-24 moko
5888:
5889: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5890: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5891: types/pa_vmemcached.h: memcached: mget, flush, fttl added
5892:
5893: 2012-03-20 moko
5894:
1.116 moko 5895: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 5896:
5897: * src/targets/cgi/Makefile.am: cleanup
5898:
5899: * src/: types/Makefile.am, types/pa_vmemcached.C,
5900: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
5901:
5902: * src/: classes/Makefile.am, classes/memcached.C,
5903: lib/memcached/Makefile.am, lib/memcached/constants.h,
5904: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
5905: lib/memcached/types.h, lib/Makefile.am: memcached initial
5906:
5907: 2012-03-16 moko
5908:
5909: * src/main/execute.C: ident now works under Linux + ident displays
5910: filenames (closes issue #818)
5911:
1.116 moko 5912: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 5913: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
5914: pa_vmethod_frame_local.h removed
5915:
5916: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
5917: classes/classes.h, classes/curl.C, classes/date.C,
5918: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
5919: classes/hashfile.C, classes/image.C, classes/inet.C,
5920: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
5921: classes/memory.C, classes/op.C, classes/reflection.C,
5922: classes/regex.C, classes/response.C, classes/string.C,
5923: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
5924: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
5925: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
5926: include/pa_config_fixed.h, include/pa_config_includes.h,
5927: include/pa_dictionary.h, include/pa_dir.h,
5928: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
5929: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
5930: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
5931: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
5932: include/pa_request_charsets.h, include/pa_request_info.h,
5933: include/pa_sapi.h, include/pa_socks.h,
5934: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
5935: include/pa_stack.h, include/pa_string.h,
5936: include/pa_stylesheet_connection.h,
5937: include/pa_stylesheet_manager.h, include/pa_table.h,
5938: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
5939: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
5940: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
5941: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
5942: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
5943: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
5944: main/compile.tab.C, main/compile.y, main/compile_tools.C,
5945: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
5946: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
5947: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
5948: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
5949: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
5950: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
5951: main/pa_string.C, main/pa_stylesheet_connection.C,
5952: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
5953: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
5954: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
5955: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
5956: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
5957: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
5958: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5959: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
5960: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
5961: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
5962: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
5963: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
5964: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
5965: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
5966: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
5967: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
5968: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
5969: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
5970: types/pa_vmemory.h, types/pa_vmethod_frame.C,
5971: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
5972: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
5973: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
5974: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
5975: types/pa_vresponse.h, types/pa_vstateless_class.C,
5976: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5977: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
5978: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
5979: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
5980: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
5981: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
5982: ident now works under Linux + ident displays filenames (closes
5983: issue #818) Copyright updated
5984:
5985: 2012-03-13 moko
5986:
5987: * src/main/pa_string.C: compilation fix for feature #741
5988:
5989: 2012-03-09 misha
5990:
5991: * tests/193.html: - tests for ^string:base64[encoded] are updated
5992:
5993: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
5994: now detects invalid base64 chars in the middle of encoded stricg
5995: ( new feature: #55 )
5996:
5997: * src/include/pa_exception.h: - new exception type for base64
5998: decoding is added
5999:
6000: 2012-03-06 misha
6001:
6002: * tests/274.html: - tests for ^date::today[] and
6003: ^date.sql-string[datetime|date|time] are added
6004:
6005: * src/classes/date.C: - constructor ^date::today[] is added ( new
6006: feature: #811 ) - ^date.sql-string[] now can accept one param --
6007: strings "datetime", "date" or "time" - comments tidying up
6008:
6009: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
6010: date and time
6011:
6012: 2012-03-03 misha
6013:
6014: * tests/193.html: - tests for
6015: ^string:base64[encoded;$.strict(true)] are added
6016:
6017: * tests/results/auto.p: - try-catch operator is added
6018:
6019: * src/: classes/file.C, classes/string.C, include/pa_common.h,
6020: main/pa_common.C: - $.strict(true|false) option is added to
6021: base64 decode methods ( new feature: #55 )
6022:
6023: * src/main/pa_common.C: - base64 decode memory usage was decreased
6024: ( new feature: #819 )
6025:
6026: 2012-02-28 moko
6027:
6028: * src/classes/hash.C: ident test
6029:
6030: 2012-02-27 misha
6031:
6032: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
6033:
6034: 2012-01-08 misha
6035:
6036: * tests/273.html: - tests for ^string.replace[from;to] are added
6037:
6038: * src/: classes/string.C, include/pa_dictionary.h,
6039: main/pa_dictionary.C, main/pa_string.C: -
6040: ^string.replace[from;to] is added ( new feature: #741 ) -
6041: ^string.replace[one subst here] is slightly optimized
6042:
6043: 2011-12-07 misha
6044:
6045: * src/classes/table.C: - $t[^table::create{$empty}] now creates
6046: named table with one empty column ( bugfix: #63 )
6047:
6048: 2011-11-30 misha
6049:
6050: * src/classes/json.C: - it's possible to set user's method for
6051: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
6052: #763 )
6053:
6054: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
6055:
6056: 2011-11-23 misha
6057:
6058: * src/: classes/curl.C, classes/file.C, classes/image.C,
6059: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
6060: types/pa_vfile.h, types/pa_vform.C: - constructor
6061: ^file::create[mode;filename;content[;options]] now accepts binary
6062: mode and file-content - new constructor's format:
6063: ^file::create[string-or-file-content[;$.name[filename]
6064: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
6065: feature: #65 )
6066:
6067: * src/: include/pa_request.h, main/pa_request.C: - new method
6068: mime_type_of(const String*) is added
6069:
6070: * src/include/pa_exception.h: - new exception constant
6071: FILE_NAME_MUST_BE_SPECIFIED is added
6072:
6073: * src/classes/table.C: - bug with negative offset transformed into
6074: a feature. it means pointing to a row from the end of the table (
6075: new feature: #810 )
6076:
6077: 2011-11-19 misha
6078:
6079: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
6080: â ìåòîäå _select ( new feature: #810 )
6081:
6082: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
6083: options were specified together is simplified
6084:
6085: 2011-11-12 misha
6086:
6087: * src/main/pa_request.C: - forgotten fix for escaping filename in
6088: HTTP content-disposition header (a part of bug #361 )
6089:
6090: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
6091: checks for ancestors' classes as well ( new feature: #456 )
6092:
6093: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
6094: "without cycle" now have types "parser.break" and
6095: "parser.continue" instead of "parser.runtime" ( new feature: #799
6096: )
6097:
6098: 2011-11-11 misha
6099:
6100: * tests/results/: 099.processed, 100.processed, 205.processed,
6101: 237.processed: - since bug #361 was fixed the content of filename
6102: in HTTP headers is quoted
6103:
6104: * tests/results/270.processed: - result for test 270
6105:
6106: * tests/: 065.html, results/065.processed: - more tests for
6107: ^file:basename[] & Co were added
6108:
6109: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
6110:
6111: * tests/270.html: - tests for ^file:find[] are added
6112:
6113: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
6114: using option $.charset. option $.engoding is still supported but
6115: these options can not be specified together
6116:
6117: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
6118: comparation charset name with string "UTF-8" ( bugfix: #759 )
6119:
6120: 2011-10-11 misha
6121:
6122: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
6123: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
6124: #622)
6125:
6126: 2011-09-30 misha
6127:
6128: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
6129: exception "saving stat-ed file" ( bugfix: #395 )
6130:
6131: 2011-05-30 misha
6132:
6133: * src/classes/string.C: - fixed bug which was added with
6134: params.as_hash into string:sql
6135:
6136: 2011-05-29 misha
6137:
6138: * src/types/pa_value.C: - filename in content-disposition header
6139: must be quoted ( bugfix: #361 )
6140:
6141: 2011-05-27 misha
6142:
6143: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
6144: created file
6145:
6146: * src/classes/: hash.C, mail.C: - little tunning with get_hash
6147: usage
6148:
6149: * src/include/pa_exception.h: - one more string for exception was
6150: added
6151:
6152: 2011-05-25 misha
6153:
6154: * tests/269.html: - tests for checking input params in some dom
6155: methods
6156:
6157: * src/classes/: xdoc.C, xnode.C: - validation of some input params
6158: was added. it isn't possible not wo create xdoc with invalid
6159: tagName. ( bugfix: #160 )
6160:
6161: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
6162: string "data must be string" was mover from pa_exception.h to
6163: pa_xml_exception.h
6164:
6165: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
6166: as_xmlncname, as_xmlname and as_xmlnsuri were added
6167:
6168: * src/main/pa_xml_exception.C: - XmlException accepts more options
6169:
6170: * src/include/pa_xml_exception.h: - XmlException accepts more
6171: options - XML-related exception's strings were added
6172:
6173: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
6174: output_options were removed)
6175:
6176: 2011-05-19 misha
6177:
6178: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
6179: params.as_hash is used more while parsing methods hash-options
6180:
6181: 2011-05-18 misha
6182:
6183: * operators.txt: - info about json-serialization of xdoc was added
6184:
6185: * tests/256.html: - tests for json-serialization xdoc were added
6186:
6187: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
6188:
6189: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
6190: classes/json.C, classes/xdoc.C: - now json:string can serialize
6191: xdoc-objects. options (the same as ^xdoc.string[]) could be
6192: specified in $.xdoc[] ( new feature: #265 )
6193:
6194: 2011-05-15 misha
6195:
6196: * tests/268.html: - tests for ^table.count[with options] were added
6197:
6198: * src/classes/table.C: - method ^table.count[] now can accept
6199: options ( new feature: #93 ): ^table.count[column] returns number
6200: of columns for named table; ^table.count[cells] returns number of
6201: cells in the current row; ^table.count[] & ^table.count[rows]
6202: return number of rows in a table.
6203:
6204: * tests/267.html: - test for checking switch/case in boolean mode
6205: was added
6206:
6207: * src/classes/op.C: - if switch's or case's value is bool, they are
6208: compared as bool values, not as double values: new feature: #351
6209:
6210: 2011-05-06 misha
6211:
6212: * tests/242.html: - EOL before EOF was added
6213:
6214: * tests/169.html: - tests for splitting empty string and void were
6215: added
6216:
6217: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
6218: returned table with one empty cell)
6219:
6220: 2011-04-03 misha
6221:
6222: * src/include/pa_version.h, configure.in: - version in head was
6223: changed to 3.4.2b
6224:
6225: 2011-03-30 misha
6226:
6227: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
6228: as well ( new feature #294 )
6229:
6230: 2011-03-29 misha
6231:
6232: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
6233: limited to approx. 6 MB. previous limits were too big for real
6234: life. bugfix: #216
6235:
6236: 2011-03-04 moko
6237:
6238: * etc/parser3.charsets/cp866.cfg: Conforms to
6239: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
6240:
6241: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
6242: vlalek@
6243:
6244: 2011-02-22 misha
6245:
6246: * src/include/pa_charset.h, operators.txt: - some methods mustn't
6247: be under #ifdef XML or parser can't be compiled without xml
6248: support
6249:
6250: 2011-02-21 misha
6251:
1.116 moko 6252: * src/targets/apache/: Makefile.am: - mention
1.95 moko 6253: ApacheModuleParser3.vcproj was removed
6254:
6255: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
6256: removed)
6257:
6258: 2011-02-20 misha
6259:
6260: * tests/: 266.html, 266.p: - tests for checking $.inherited and
6261: $.overridden in ^reflection:method_info[...] were added
6262:
6263: * src/classes/reflection.C: - beautifying result of
6264: ^reflection:method_info[] ($.overridden/inherited)
6265:
6266: 2011-02-18 misha
6267:
6268: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
6269: and pa_isalnum instead of isalpha and isalnum - bug with
6270: redundand quoting lowercased latin chars while building email
6271: body was fixed
6272:
6273: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
6274: added (they check for latin chars only)
6275:
6276: 2011-02-16 misha
6277:
6278: * src/main/pa_charset.C: - bugfix: in some cases the calculating
6279: string size for transcoding gave too small value (should ever
6280: look for availability char in dest charset inspite of the char
6281: size)
6282:
6283: 2011-02-04 moko
6284:
6285: * tests/223.html: header values now not url-encoded (issue #195)
6286:
6287: 2011-02-01 misha
6288:
6289: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
6290:
6291: 2011-01-31 misha
6292:
6293: * src/main/pa_request.C: - throw exception if param file_name in
6294: use_file is empty
6295:
6296: 2011-01-08 moko
6297:
6298: * src/classes/curl.C: compilations errors fixed
6299:
6300: 2010-12-29 moko
6301:
6302: * tests/: 265.html, results/265.processed: test for issue #200
6303: added
6304:
6305: * src/main/pa_string.C: empty regex result check added (fixes issue
6306: #200)
6307:
6308: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
6309:
6310: * tests/results/223.processed: header values now not url-encoded
6311: (issue #195)
6312:
6313: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
6314: main/untaint.C: L_HTTP_HEADER now used in http headers values,
6315: pa_http_safe_header_name added for headers names (fixes bug #195)
6316:
6317: 2010-12-18 misha
6318:
6319: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
6320: => pa-include
6321:
6322: 2010-11-28 moko
6323:
6324: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
6325:
6326: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
6327: -> pa
6328:
6329: * configure.in: apr -> pa
6330:
6331: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
6332:
6333: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
6334: classes/Makefile.am, types/Makefile.am: apr -> pa
6335:
6336: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
6337: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
6338: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
6339: pa-include/pa_apr.h, pa-include/pa_errno.h,
6340: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
6341: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
6342: module apr name conflict resolved)
6343:
6344: 2010-11-27 misha
6345:
6346: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
6347: libbz2
6348:
6349: 2010-11-26 misha
6350:
6351: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
6352: warnings removed
6353:
6354: 2010-11-25 moko
6355:
6356: * operators.txt: $.indent(true)
6357:
6358: * operators.txt: another bugfix. :)
6359:
6360: * operators.txt: bugfix. :)
6361:
6362: * buildall-with-xml: libxml2-2.7.8 + with-apache
6363:
6364: 2010-11-24 moko
6365:
1.116 moko 6366: * configure: apxs support
1.95 moko 6367:
6368: * configure.in: apxs support -Bstatic gc removed for OS X
6369:
6370: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
6371:
6372: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
6373: THREAD_LOCAL usage
6374:
6375: * src/: classes/curl.C, include/pa_config_includes.h,
6376: main/pa_globals.C: THREAD_LOCAL defined and used
6377:
6378: 2010-11-23 moko
6379:
6380: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6381: should be passed to pa_sleep, and only fractional part (bugfix:
6382: #188)
6383:
6384: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6385:
6386: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6387: GC_dont_gc=1, as in cgi version
6388:
6389: * src/targets/apache/mod_parser3.c: warning war
6390:
6391: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6392: pa_httpd.h: version removed, some trash removed
6393:
6394: * src/targets/apache/mod_parser3.c: version removed (we don't want
6395: to show it), warning war
6396:
6397: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6398: pa_httpd.h: parser_status_allowed removed + merge config
6399: functions removed (override is the default) + beauty
6400:
6401: * src/: include/pa_request.h, main/pa_request.C,
6402: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6403: hide $status used in apache module removed
6404:
6405: 2010-11-18 moko
6406:
6407: * operators.txt: $.table[compact] added for ^json:string[]
6408:
6409: 2010-11-16 moko
6410:
6411: * src/targets/apache/mod_parser3.c: some cleanup done
6412:
6413: * src/main/untaint.C: bugfix: first, second String::Body argument
6414: is hashcode; second, info.fragment_begin is original, not
6415: resulting length
6416:
6417: * src/classes/file.C: new feature: $.stdin now untainted
6418:
6419: * tests/results/264.processed: new feature: $.stdin[] now untainted
6420:
6421: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6422:
6423: * src/classes/op.C: ^apply-taint[] method added
6424:
6425: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6426: added; $.stdin untaint test added
6427:
6428: 2010-11-15 moko
6429:
6430: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6431: removed
6432:
6433: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6434: pa_httpd.h: 2x2 calculated under apache2. :)
6435:
6436: 2010-11-13 moko
6437:
6438: * src/targets/apache/mod_parser3.c: initial changes to build module
6439: with apache 2.x includes
6440:
6441: * src/targets/apache/: Makefile.am, mod_parser3.c,
6442: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
6443: united apache 1.3 / apache 2.x DSO module
6444:
6445: 2010-11-09 moko
6446:
6447: * src/types/pa_method.h: check added to dissallow @method[name;*]
6448: syntax
6449:
6450: * tests/: 263.html, results/263.processed: test from method[*args]
6451: added
6452:
6453: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
6454: number of params can now be passed to a method declared with *arg
6455:
6456: 2010-11-06 moko
6457:
6458: * src/classes/table.C: formating fixed. :)
6459:
6460: * src/classes/table.C: closes #4: ^table.select now supports
6461: $.limit(), $.offset, $.reverse() options
6462:
6463: * tests/: 262.html, results/262.processed: test for ^table:select
6464: with options added (feature #4)
6465:
6466: * src/include/pa_array.h: remove function added
6467:
6468: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
6469: object in get_element/put_element, using static one.
6470:
6471: 2010-11-04 moko
6472:
6473: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
6474: options is passed
6475:
6476: * tests/: 256.html, results/256.processed: $.table[compact] feature
6477: now tested; k and p in handler now tested.
6478:
6479: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
6480: $.table[compact] feature added
6481:
6482: * src/classes/json.C: key is now passed to handler in
6483: value_json_string; ^json:string result now process tainting
6484: inside and returns clean string, related to issue #153
6485:
6486: * src/main/untaint.C: bugfix: charset can be null (in
6487: ^string:save[] as example), thus check is added
6488:
6489: 2010-10-31 moko
6490:
6491: * src/classes/string.C: error message changed (fixes issue #149)
6492:
6493: 2010-10-29 moko
6494:
6495: * src/main/pa_http.C: ":port" is now added to "Host:" header if
6496: port is not default (fixes issue #155); exception on invalid port
6497: added.
6498:
6499: * src/main/untaint.C: '*' is now not urlencoded to allow header
6500: "Accept: */*" to be passed
6501:
6502: 2010-10-28 moko
6503:
6504: * src/classes/curl.C: bugfix: detect_charset() was throwing
6505: exception on unknown charset even if response_charset was
6506: specified
6507:
6508: 2010-10-27 moko
6509:
6510: * src/classes/string.C: ^string.append removed for void
6511: compatibility
6512:
6513: 2010-10-26 moko
6514:
6515: * src/classes/json.C: libjson supports array at top level, we too
6516: (GPF fixed)
6517:
6518: 2010-10-25 moko
6519:
6520: * tests/: 253.html, results/253.processed: libjson supports array
6521: at top level, parser now supports it as well.
6522:
6523: * tests/261.html, tests/results/261.processed,
6524: src/types/pa_vstring.h: empty string is now void compatible
6525: (allows $empty.key)
6526:
6527: 2010-10-22 misha
6528:
6529: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
6530: while adding additional expires checkout)
6531:
6532: * tests/030.html: - test for session cookie was added
6533:
6534: 2010-10-21 moko
6535:
6536: * src/: classes/string.C, classes/void.C, main/execute.C,
6537: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
6538: string (feature #111)
6539:
6540: * tests/: 261.html, results/261.processed: checks void from string
6541: inheritance (feature #111)
6542:
6543: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
6544: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
6545: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
6546: now true by default
6547:
6548: 2010-10-17 moko
6549:
6550: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
6551: upload now uses binary blocks instead of L_FILE_POST tainting.
6552: (bugfix: #128)
6553:
6554: * tests/: 223.html, results/223.processed: binary file upload test
6555: added, GPF (issue #128) also checked in this test
6556:
6557: 2010-10-13 misha
6558:
6559: * tests/260.html: - test for math:convert
6560:
6561: * src/classes/math.C: - error in math:convert was fixed
6562:
6563: * operators.txt: - info about
6564: ^math:convert[number](from-base;to-base) was added
6565:
6566: * src/classes/math.C: - method
6567: ^math:convert[number](from-base;to-base) for converting number
6568: represention from one base to another was added ( new feature:
6569: #23 )
6570:
6571: 2010-10-13 moko
6572:
6573: * src/main/compile.tab.C: [] now is empty string, not void
6574:
6575: * src/main/compile.y: [] now is empty string, not void
6576:
6577: * src/types/pa_vvoid.h: void now passed as parameter
6578:
6579: * tests/: 259.html, results/259.processed: to test difference
6580: between void and empty string (see ticket #111)
6581:
6582: * tests/results/152.processed: $sEmpty[] is now empty string, not
6583: void
6584:
6585: * tests/256.html: $s[$void] is no longer empty string
6586:
6587: * tests/254.html: empty string is no longer void
6588:
6589: 2010-10-12 misha
6590:
6591: * src/types/pa_vcookie.C: - check if $.expires value can be
6592: converted to date during cookies set up ( bugfix: #104 )
6593:
6594: * tests/041.html: - more tests for ^table.locate were added
6595:
6596: * src/classes/table.C: - ^table.locate[field;value;options] didn't
6597: work ( bugfix: #129 ) - exception comment for incorrect options
6598: ^table.locate[field;value;options] was fixed
6599:
6600: 2010-10-10 moko
6601:
6602: * src/: classes/reflection.C, main/execute.C: constructor returning
6603: another object feature returned
6604:
6605: * tests/results/258.processed: test result updated as constructor
6606: returning another object feature returned
6607:
6608: * tests/: 258.html, results/258.processed: test for constructor
6609: returning another object
6610:
6611: 2010-10-08 misha
6612:
6613: * tests/257.html: - whitespaces after @METACOMMANDS and their
6614: options shouldn't cause exceptions any longer
6615:
6616: 2010-10-06 moko
6617:
6618: * src/classes/: hash.C, table.C: length from sql server is now
6619: ignored, as sql string can contain 0x00 inside (bugfix: #119)
6620:
6621: 2010-10-02 misha
6622:
6623: * operators.txt: - the X mark was removed from ^cache[file]. it is
6624: usable to delete cache file.
6625:
6626: 2010-10-02 moko
6627:
6628: * tests/: 253.html, results/253.processed: hook_key added for key
6629: checking
6630:
6631: * src/classes/json.C: null key bug fixed
6632:
6633: 2010-09-29 misha
6634:
6635: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
6636:
6637: 2010-09-25 moko
6638:
6639: * src/classes/json.C: small fixed
6640:
6641: * tests/results/: 253.processed, 255.processed: just updated
6642:
6643: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
6644: results/255.processed: charset transcode test added for
6645: json:parse
6646:
6647: 2010-09-24 moko
6648:
6649: * src/types/pa_value.h: warning war :)
6650:
6651: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
6652: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
6653: ^json:string
6654:
6655: 2010-09-22 moko
6656:
6657: * src/main/pa_charset.C: parser charset tables declare only
6658: white-space before 0x20, thus adding the missing chars
6659:
6660: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
6661: to http://unicode.org/Public/MAPPINGS/VENDORS/
6662:
6663: 2010-09-21 misha
6664:
6665: * src/main/compile.y: - some semicolons were added (VS2010 don't
6666: want to compile grammar if they are absent)
6667:
6668: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
6669:
6670: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
6671:
6672: * src/main/main.vcproj: - path to bison is changed
6673:
6674: 2010-09-21 moko
6675:
1.116 moko 6676: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
6677: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
6678: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 6679:
6680: 2010-09-20 misha
6681:
6682: * src/types/pa_vtable.C: - add EOLs while json-serializing table
6683:
6684: * src/classes/json.C: - add EOL while json-serializing hash
6685:
6686: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
6687: compilers don't like 'ES'.
6688:
6689: 2010-09-17 misha
6690:
6691: * operators.txt: - info about json class was added
6692:
6693: * src/classes/json.C: - ^json:string[object]
6694:
6695: * src/: include/pa_request.h, main/pa_request.C: - stuff for
6696: preventing infinite recursion while executing json:string was
6697: added
6698:
6699: * src/include/pa_string.h: - method append_quoted was added
6700:
6701: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
6702: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
6703: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
6704: was added to Value & Co
6705:
6706: * src/classes/date.C: - methods get_gmt_string and get_sql_string
6707: were used
6708:
6709: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
6710: were added
6711:
6712: 2010-09-10 moko
6713:
6714: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6715: die_or_abort (backport from 3.4.1)
6716:
6717: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6718: die_or_abort (bugfix: #106)
6719:
6720: 2010-09-09 moko
6721:
6722: * src/classes/json.C: warning war. :)
6723:
6724: 2010-09-08 misha
6725:
6726: * src/lib/json/Makefile.am: - additional include directories were
6727: added (for pa_memory.h and gc.h)
6728:
6729: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
6730: compile as C++ instead default - additional include directory was
6731: added (for gc.h)
6732:
6733: * src/types/pa_vform.C: - little code reformating
6734:
6735: * src/classes/file.C: - $.content-type option now can be specified
6736: in ^file::create ( new feature: #102 )
6737:
6738: 2010-09-08 moko
6739:
6740: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
6741: pa_malloc/pa_free
6742:
6743: 2010-09-07 moko
6744:
6745: * tests/results/254.processed: VStateless_class:put_element
6746: exception was fixed
6747:
6748: * src/types/: pa_value.h, pa_vstateless_class.h: now
6749: VStateless_class:put_element barks self.type, not this.type
6750: (bugfix: #105)
6751:
6752: 2010-09-06 moko
6753:
6754: * src/classes/reflection.C: bugfix: new String() is required for
6755: exception handling
6756:
6757: * tests/: 254.html, results/254.processed: test modified
6758:
6759: 2010-09-05 moko
6760:
6761: * tests/: 254.html, results/254.processed: ^reflection:copy test
6762: added
6763:
6764: * src/: classes/reflection.C, include/pa_request.h:
6765: ^reflection:copy implemented (new feature: #100)
6766:
6767: 2010-09-03 moko
6768:
6769: * src/lib/json/JSON_parser.C: c++ compatiblity
6770:
6771: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
6772: option testing added
6773:
6774: 2010-09-02 moko
6775:
6776: * src/classes/json.C: $.distinct[first|last|all] added
6777:
6778: 2010-09-01 moko
6779:
6780: * tests/results/253.processed: json test result
6781:
6782: * tests/: 253.html, 253_json.txt: json test added
6783:
6784: * src/classes/json.C: json.C update to actual version + hash key
6785: creation bugfix
6786:
6787: 2010-08-31 misha
6788:
6789: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
6790: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
6791: src/lib/Makefile.am, src/classes/Makefile.am,
6792: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
6793: json library was added
6794:
6795: 2010-08-30 moko
6796:
6797: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
6798: types/pa_vobject.C: cosmetic optimization in
6799: request:execute_method usage
6800:
6801: * src/: include/pa_charset.h, main/pa_charset.C: small
6802: optimization, just to decrease number of lines. :)
6803:
6804: 2010-08-27 misha
6805:
6806: * src/classes/op.C: - taint[json] was added
6807:
6808: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
6809: were added
6810:
6811: * src/main/pa_exec.C: - warning fix was rolled back.
6812:
6813: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
6814: include/pa_string.h: - taint[json] was added - escaping was
6815: slightly modified
6816:
6817: 2010-08-25 misha
6818:
6819: * src/classes/file.C: - typo in file:sql exception was fixed
6820:
6821: * src/main/pa_exec.C: - warning about declared and not used
6822: variable forced_allow was removed
6823:
6824: 2010-08-14 misha
6825:
6826: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
6827: were removed
6828:
6829: 2010-08-11 moko
6830:
6831: * tests/: 249.html, results/249.processed: default setter and
6832: anti-recursive default getter test added
6833:
6834: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
6835: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
6836: types/pa_vobject.h, types/pa_vstateless_class.C,
6837: types/pa_vstateless_class.h: default setter support +
6838: anti-recursive default getter support ( new feature: #13 )
6839:
6840: * src/include/pa_hash.h: optimization: threshold member removed
6841: from hash, reducing sizeof(hash)
6842:
6843: 2010-08-10 misha
6844:
6845: * tests/196.html: - junction-method was added to the test
6846:
6847: * tests/248.html: - ups. typo :)
6848:
6849: * tests/248.html: - test for checking .match with 4 params
6850:
6851: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
6852: 247_windows1251.txt: - test for "transcode file from utf-8 to
6853: $request:charset during loading if the BOM code is detected"
6854:
6855: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
6856: $request:charset during loading if the BOM code is detected ( new
6857: feature: #98 )
6858:
6859: 2010-08-05 misha
6860:
6861: * src/classes/image.C: - ^image.replace now can accept only 2
6862: params. in this case the whole image is affected ( new feature:
6863: #95 )
6864:
6865: 2010-08-04 misha
6866:
6867: * tests/246.html: - test tor ^hash._at[] was added
6868:
6869: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
6870: #53 )
6871:
6872: * src/include/pa_hash.h: - methods for accessing the first and the
6873: last values of ordered hash were added (first_value and
6874: last_value)
6875:
6876: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
6877: (similar to others file's methods):
6878: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
6879: #68 )
6880:
6881: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
6882:
6883: 2010-08-01 moko
6884:
6885: * src/classes/op.C: to correctly process $result[] in code, called
6886: from ^process
6887:
6888: * tests/245.html: $result in ^process[] test added
6889:
6890: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
6891: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
6892: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
6893: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
6894: caller, self) op_call(VMethodFrame &frame, bool constructing)
6895: removed, construct(class,method) added
6896:
6897: * tests/results/: 192.processed, 244.processed: request::construct
6898: added
6899:
6900: * tests/: 244.html, 245.html, results/244.processed,
6901: results/245.processed: object creation exceptions and ^process
6902: tests added
6903:
6904: 2010-07-28 misha
6905:
6906: * tests/make_tests.cmd: - win32 EOLs
6907:
6908: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
6909: tests on Win32 were added (The system timezone should be GMT+3)
6910:
6911: 2010-07-26 misha
6912:
6913: * tests/: 212.html, results/212.processed: - sizes were removed
6914: mecause they could be different on different OSs
6915:
6916: * tests/065.html: - make it "win32 friendly"
6917:
6918: 2010-07-25 misha
6919:
6920: * src/main/compile.y: - all EOLs between methods are removed during
6921: compilation ( new feature: #47 )
6922:
6923: * tests/results/149.processed: - prepare tests to trim trailing
6924: methods' EOLs
6925:
6926: * tests/149.html: - prepare tests to trim trailing methods' EOLs
6927:
6928: * tests/: results/006.processed, results/014.processed, 006.html,
6929: 014.html, 022.html: - prepare tests to trim trailing methods'
6930: EOLs
6931:
6932: * tests/: 059.html, 071.html, 149.html, results/059.processed,
6933: results/071.processed, results/022.processed: - prepare tests to
6934: trim trailing methods' EOLs
6935:
6936: * tests/: results/073.processed, results/109.processed,
6937: results/142.processed, results/144.processed,
6938: results/149.processed, 073.html, 096.html, 109.html, 142.html,
6939: 144.html: - prepare tests to trim trailing methods' EOLs
6940:
6941: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
6942: 149.html, 152.html, results/096.processed, results/107.processed,
6943: results/109.processed, results/142.processed,
6944: results/144.processed: - prepare tests to trim trailing methods'
6945: EOLs
6946:
6947: 2010-07-24 moko
6948:
6949: * tests/results/: 156.processed, 224.processed: fix for #54 changed
6950: the hash order in this test
6951:
6952: * tests/014.html: to check hash order, hash no is longer sorted
6953: before print
6954:
6955: * src/include/pa_hash.h: hash copy constructor now keeps order
6956: (bugfix: #54)
6957:
6958: 2010-07-23 moko
6959:
6960: * tests/results/224.processed: @auto[] is no longer inherited
6961:
6962: * src/types/pa_vstateless_class.C, tests/227.html,
6963: tests/results/227.processed: @auto[] is no longer inherited
6964: (bugfix: #57)
6965:
6966: 2010-07-22 misha
6967:
6968: * src/classes/table.C: - don't skip comment lines during
6969: table::load if encloser or separator is set as '#' ( new feature:
6970: #30 )
6971:
6972: * src/targets/cgi/parser3.C: - don't run as cgi if
6973: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
6974: #12 )
6975:
6976: * src/classes/file.C: - set PARSER_VARSION env before external
6977: script executing
6978:
6979: 2010-07-13 misha
6980:
6981: * tests/058.html: - test for suppressing @border was added - test
6982: for user attribute was added
6983:
6984: * tests/results/186.processed: unescaping from \uXXXX
6985:
6986: * tests/186.html: unescaping from \uXXXX
6987:
6988: * tests/: 239.html, results/239.processed: method call type
6989:
6990: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
6991: $junction_method.CLASS_NAME (+CLASS)
6992:
6993: 2010-07-07 misha
6994:
6995: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
6996: *nix
6997:
6998: 2010-07-05 misha
6999:
7000: * src/: classes/curl.C, classes/file.C, classes/hash.C,
7001: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
7002: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
7003: comment strings "options must be hash", "options must be hash,
7004: not code" and "called with invalid option" were replaced by
7005: constatns - exception comment string "invalid option passed" was
7006: replaced by "called with invalid option" (now in different
7007: methods are the same exception comment string)
7008:
7009: * src/include/pa_exception.h: - more exception strings were defined
7010:
7011: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
7012: types/pa_vstateless_class.h: - now we can define possible
7013: method's call type ( new feature: #5 ) 1.
7014: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
7015: methods 2. @static:method[params] (only static keyword could be
7016: used here) -- for specified methods
7017:
7018: * src/main/pa_common.C: - junction points should not be deleted on
7019: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
7020: cleanup
7021:
7022: 2010-07-03 misha
7023:
7024: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
7025: results/158.processed, results/160.processed,
7026: results/161.processed, results/162.processed,
7027: results/163.processed: - prepare tests to trim trailing methods'
7028: EOLs
7029:
7030: * tests/results/169.processed: - prepare tests to trim trailing
7031: methods' EOLs
7032:
7033: * tests/results/: 168.processed, 169.processed: - prepare tests to
7034: trim trailing methods' EOLs
7035:
7036: * tests/: results/170.processed, results/167.processed,
7037: results/168.processed, results/169.processed, 167.html, 168.html,
7038: 169.html: - prepare tests to trim trailing methods' EOLs
7039:
7040: * tests/: results/170.processed, results/171.processed,
7041: results/172.processed, results/173.processed,
7042: results/174.processed, results/175.processed, 170.html, 171.html,
7043: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
7044: trailing methods' EOLs
7045:
7046: * tests/: results/176.processed, results/180.processed,
7047: results/184.processed, results/185.processed,
7048: results/191.processed, results/192.processed,
7049: results/196.processed, results/197.processed,
7050: results/198.processed, 176.html, 180.html, 184.html, 185.html,
7051: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
7052: to trim trailing methods' EOLs
7053:
7054: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
7055: results/199.processed, results/208.processed,
7056: results/209.processed, results/213.processed,
7057: results/214.processed: - prepare tests to trim trailing methods'
7058: EOLs
7059:
7060: 2010-06-29 misha
7061:
7062: * tests/: 220.html, 218.html, results/218.processed,
7063: results/215.processed, results/217.processed, 215.html, 217.html:
7064: - prepare tests to trim trailing methods' EOLs
7065:
7066: * tests/: results/224.processed, 224.html, 223.html,
7067: results/223.processed, results/220.processed: - prepare tests to
7068: trim trailing methods' EOLs
7069:
7070: * tests/results/: 226.processed, 230.processed: - prepare tests to
7071: trim trailing methods' EOLs
7072:
7073: * tests/: 229.html, results/229.processed: - prepare tests to trim
7074: trailing methods' EOLs
7075:
7076: * tests/: 232.html, 235.html, results/232.processed,
7077: results/235.processed, 226.html, 227.html, 228.html, 230.html,
7078: results/226.processed, results/227.processed,
7079: results/228.processed, results/230.processed: - prepare tests to
7080: trim trailing methods' EOLs
7081:
7082: 2010-06-16 moko
7083:
7084: * tests/: 229.html, results/229.processed: elseif now supported in
7085: ^if
7086:
7087: * src/classes/op.C: new feature: #56 elseif now supported in ^if
7088:
7089: 2010-06-03 misha
7090:
7091: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
7092: instead of memcopy for overlaped regions
7093:
7094: 2010-05-25 misha
7095:
7096: * src/main/pa_common.C: - wanring about unused vars was removed
7097:
7098: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
7099: get_method_filename was moved to execute.C
7100:
7101: 2010-05-23 misha
7102:
7103: * src/main/pa_request.C: - more accurate detection of method's file
7104:
7105: 2010-05-22 misha
7106:
7107: * src/classes/reflection.C: - bugfix: core during detection of
7108: .file if filespec isn't detected successfully
7109:
7110: 2010-05-20 misha
7111:
7112: * src/main/pa_request.C: - fix in get_method_filename
7113:
7114: * src/include/pa_request.h: - new feature: #24 -- searching
7115: included file in @USE/^use is changed. if its filespec doesn't
7116: start from '/' it will be searched in caller file directory
7117:
7118: * src/classes/reflection.C: - ^reflection:method_info returns file
7119: where the method is defined
7120:
7121: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
7122: classes/op.C: - new feature: #24 -- searching included file in
7123: @USE/^use is changed. if its filespec doesn't start from '/' it
7124: will be searched in caller file directory
7125:
7126: * src/: classes/file.C, include/pa_common.h: - method lastposafter
7127: is moved to pa_common.h
7128:
7129: 2010-05-18 misha
7130:
7131: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
7132: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
7133: cookie parser decode \uXXXX as well as %uXXXX
7134:
7135: 2010-05-17 misha
7136:
7137: * src/classes/curl.C: beauty: - unused param is removed in method
7138: _curl_version_action - some spaces were removed or replaced by
7139: tabs
7140:
7141: * src/classes/table.C: - bugfix: #72 core with empty value during
7142: ^table.hash[...;name_of_the_last_column][$.type[string]]
7143:
7144: 2010-05-16 misha
7145:
7146: * src/classes/curl.C: new: #61 more curl options were added
7147: (contributed by Sumo)
7148:
7149: 2010-04-29 pretender
7150:
7151: * src/main/pa_string.C: fixes #63 Split result from empty string
7152: now empty string.
7153:
7154: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
7155: string type.
7156:
7157: 2010-04-28 pretender
7158:
7159: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
7160: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
7161: macrodefinition removed
7162:
7163: 2010-04-19 pretender
7164:
7165: * src/main/execute.C: fixes #60 Stacktrace now contains info for
7166: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
7167:
7168: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
7169: fixes #64 Now file.missing exception generates in unsafe mode to.
7170:
7171: * src/classes/file.C: fixes #48 Now not throw "not save environment
7172: variable" exception in grpunlim version.
7173:
7174: 2010-04-05 misha
7175:
7176: * src/classes/string.C: - new feature: 4th param was added to
7177: match. if specified its value is returned in case of nothing was
7178: found
7179:
7180: 2010-04-01 misha
7181:
7182: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
7183: multiple execution of /a/b/auto.p
7184:
7185: 2010-03-19 misha
7186:
7187: * src/main/execute.C: - core in $table1.$table2 was fixed
7188:
7189: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
7190:
7191: 2010-01-27 misha
7192:
7193: * src/main/pa_common.C: - bugfix: there are no excaption.type if
7194: trying to open file by path /existing-file/non-exixting-file
7195:
7196: 2010-01-26 misha
7197:
7198: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
7199: was added (returns file)
7200:
7201: 2009-12-22 misha
7202:
7203: * src/classes/curl.C: - method 'option' was renamed to 'options' -
7204: now parser doesn't have class curl if it was built without it
7205:
7206: 2009-12-15 misha
7207:
7208: * configure.in: - little cheat with curl include dir was added
7209:
7210: 2009-12-05 misha
7211:
7212: * src/classes/curl.C: - some fixes
7213:
7214: 2009-12-04 misha
7215:
7216: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
7217: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
7218: buildall-with-xml, buildall-without-xml, configure.in: - curl
7219: class was added
7220:
7221: * src/include/pa_hash.h: - hash-iterator was added
7222:
7223: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
7224: was added to pcre
7225:
7226: 2009-11-27 misha
7227:
7228: * src/classes/image.C: - don't add @border attribute to output of
7229: ^image.html[] if it was specified by user with empty value
7230:
7231: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
7232: root element and we are trying to access .documentElement
7233:
7234: 2009-11-11 misha
7235:
7236: * src/classes/table.C: - in ^table.flip[] look at number of columns
7237: instead of number of items in first row for named tables
7238:
7239: 2009-11-10 misha
7240:
7241: * operators.txt: - info about hash-options in ^file::create was
7242: added
7243:
7244: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
7245: added
7246:
7247: 2009-11-09 misha
7248:
7249: * buildall-with-xml: - moving to libxml 2.7.6
7250:
7251: * tests/236.html: - tests for comparations cords with functions
7252: were added
7253:
7254: * src/include/pa_string.h: - optimisation: cacheing of cstr was
7255: added
7256:
7257: * src/main/pa_http.C: - little optimisation
7258:
7259: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
7260: GPF mallocs + stringstream (table.save)
7261:
7262: * src/classes/file.C: - file::create now accepts 4th param: options
7263: with $.charset
7264:
7265: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
7266: bug in cord (comparation cords with functions was buggy)
7267:
7268: 2009-11-06 misha
7269:
7270: * src/main/pa_string.C: - bugfix: calculation string.length
7271: sometimes was buggy
7272:
7273: * src/classes/string.C: - bugfix: Temp_value_element wasn't
7274: destroyed if exception occured during match/replace
7275:
7276: * src/: main/pa_charset.C, include/pa_charset.h: - method
7277: lengthUTF8Char was added
7278:
7279: * src/classes/op.C: - clean tainting lang was added for user's
7280: usage
7281:
7282: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
7283: fixed: checkouts are required after GC_MALLOC
7284:
7285: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
7286:
7287: * operators.txt: - actually, there is no ^untaint[xml] in
7288: file::create
7289:
7290: 2009-10-15 misha
7291:
7292: * tests/: 235.html, 235_attach.txt: - tests for preparing email
7293: were added
7294:
7295: * tests/234.html: - more tests for checking ^taint[uri] escaping
7296: were added
7297:
7298: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
7299: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
7300: hacking: for dealing with transcoding+^taint[uri]
7301: transcode_and_untaint was replaced by untaint_and_transcode
7302:
7303: 2009-10-13 misha
7304:
7305: * tests/: 121.html, results/121.processed: - test transcoding +
7306: url-escaping now
7307:
7308: * tests/results/auto.p: - more helpers' methods were added
7309:
7310: * src/main/pa_globals.C: - die instead of abort
7311:
7312: 2009-10-06 misha
7313:
7314: * src/main/pa_common.C: - don't allocate memory during
7315: capitalization if input string is already capitalized
7316:
7317: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
7318:
7319: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
7320: use format function because it calls malloc
7321:
7322: * src/include/pa_common.h: - more capitalized headers were added
7323:
7324: * src/main/pa_common.C: - in safe mode clear executable bits during
7325: file writing
7326:
7327: 2009-10-05 misha
7328:
7329: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
7330:
7331: 2009-10-03 misha
7332:
7333: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
7334: ^img.text[] & ^img.length[] can work in utf-8 now
7335:
7336: * src/: include/pa_charset.h, main/pa_charset.C: - class
7337: UTF8_string_iterator was added
7338:
7339: * src/classes/image.C: - respect utf-8 when calculate alphabet
7340: length
7341:
7342: * src/classes/mail.C: - check from before get message.cstr
7343:
7344: 2009-10-02 misha
7345:
7346: * tests/233.html: - test for image.font, image.length, image.text
7347: with text in utf-8 were added
7348:
7349: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
7350:
7351: * buildall-with-xml, buildall-without-xml: - comment about gc
7352: version for freebsd 4 was added
7353:
7354: 2009-10-01 misha
7355:
7356: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
7357: terminator) - read_pipe were slightly optimized
7358:
7359: 2009-09-28 misha
7360:
7361: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
7362: removed
7363:
7364: * src/types/pa_vmail.C: - forgot about space after ':'
7365:
7366: * src/types/pa_vmail.C: - escape filenames while preparing mail
7367: body - small simplifications
7368:
7369: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
7370: inout params like pa_base64
7371:
7372: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
7373: option $.debug-print(1) was added to mail:send - changes for
7374: using uue_encode which uses less memory
7375:
7376: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7377:
7378: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7379: memory now
7380:
7381: 2009-09-26 misha
7382:
7383: * src/types/pa_vmail.C: - default encoding now is base64
7384:
7385: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7386:
7387: 2009-09-25 misha
7388:
7389: * src/types/pa_vmail.C: - capitalization of headers was added to
7390: sending mail as well
7391:
7392: * buildall-with-xml: - catalog package was removed from libxml
7393:
7394: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7395: win32 absolute path
7396:
7397: * src/include/pa_common.h: - one more capitalized header was added
7398:
7399: 2009-09-22 misha
7400:
7401: * INSTALL: - comment about building just httpd binary while
7402: building apache module was added
7403:
7404: 2009-09-21 misha
7405:
7406: * buildall-with-xml: - moving to the latest versions of xml libs:
7407: libxml 2.7.4 and libxslt 1.1.25
7408:
7409: 2009-09-19 misha
7410:
7411: * tests/231.html: - test for encoding cookie in win-1251
7412:
7413: 2009-09-18 misha
7414:
7415: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7416: object] were added
7417:
7418: * operators.txt: - info about method ^reflection:fields[class or
7419: object] was added
7420:
7421: * src/classes/reflection.C: - method ^reflection:fields[class or
7422: object] was added
7423:
7424: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7425: methods get_fields were added
7426:
7427: * tests/232.html: - tests for @GET[name]
7428:
7429: * src/classes/table.C: - some changes in handling hash-options for
7430: creare, join and locate
7431:
7432: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7433: defined with option: the type of requested value
7434:
7435: 2009-09-17 misha
7436:
7437: * tests/212.html: - tests for .pattern and .options were added
7438:
7439: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
7440: $regex.options were added
7441:
7442: 2009-09-11 misha
7443:
7444: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
7445: rewrited. it checks not just one case of sending cookies during
7446: file::load[http], but also sending headers and fields (including
7447: files)
7448:
7449: 2009-09-10 misha
7450:
7451: * src/main/untaint.C: - workaround in file-spec lang for old Macs
7452: was removed => now parser can open files with Russian 'r' in
7453: filename
7454:
7455: * src/main/untaint.C: - bugfix: client charset whould be analized
7456: while escaping cookies but now source charset
7457:
7458: * src/main/pa_http.C: - bugfix: the values of http headers didn't
7459: ^tainted[uri] so it was possible to make request with incorrect
7460: http header
7461:
7462: * src/main/pa_http.C: - capitalization of http headers during
7463: file::load[http was slightly changes - bugfix: all headers which
7464: parser sends during file::load[http should be transcoded and only
7465: then escaped
7466:
7467: * src/main/untaint.C: - a bit more comments were added
7468:
7469: * src/classes/: file.C, string.C: - types where changes (minus 2
7470: warnings)
7471:
7472: * src/include/pa_common.h: - 2 capitalized strings for making http
7473: headers during file::load[http were added
7474:
7475: 2009-09-08 misha
7476:
7477: * operators.txt: - changes in file.save and string.save were added
7478:
7479: * tests/: 230.html, 230.txt: - tests for checking options in
7480: file.save and string.save were added
7481:
7482: * src/main/pa_request.C: - http headers names, which are passed to
7483: SAPI::add_header_attribute are lowercased now (it'll be
7484: capitalized in that method)
7485:
7486: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
7487: classes/string.C: - file_write accepts Request_charsets and asked
7488: charset and cound transcode content before writing - string.save
7489: and file.save have option $.charset now
7490:
7491: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
7492: classes/xdoc.C: - file_write accepts Request_charsets and asked
7493: charset and cound transcode content before writing
7494:
7495: * src/include/pa_exception.h: - new exception comment string was
7496: defined
7497:
7498: 2009-09-07 misha
7499:
7500: * src/main/compile.y: - grammar $name\ name stops now for regex
7501: sub-pattern\s
7502:
7503: 2009-09-04 misha
7504:
7505: * src/main/pa_http.C: - capitalization of http headers during
7506: file::load[http was implemented
7507:
7508: 2009-09-03 misha
7509:
7510: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
7511: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
7512: types/pa_vmail.C, targets/cgi/parser3.C,
7513: targets/isapi/parser3isapi.C: - back to storing response http
7514: headers in lowercase - capitalize them during output
7515:
7516: 2009-08-31 misha
7517:
7518: * src/classes/table.C: - allow call with any brackets (it could be
7519: useful in methods with explict result declaration)
7520:
7521: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
7522: correctly if $request:charset==koi8-r
7523:
7524: 2009-08-30 misha
7525:
7526: * src/: include/pa_common.h, main/pa_request.C: - http headers were
7527: changed: content-type => Content-type and so on
7528:
7529: * src/classes/file.C, src/include/pa_common.h,
7530: src/include/pa_request.h, src/main/pa_http.C,
7531: src/main/pa_request.C, src/types/pa_vcookie.C,
7532: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
7533: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
7534: tests/results/002.processed, tests/results/003.processed,
7535: tests/results/004.processed, tests/results/005.processed,
7536: tests/results/006.processed, tests/results/007.processed,
7537: tests/results/008.processed, tests/results/009.processed,
7538: tests/results/010.processed, tests/results/011.processed,
7539: tests/results/012.processed, tests/results/013.processed,
7540: tests/results/014.processed, tests/results/015.processed,
7541: tests/results/016.processed, tests/results/017.processed,
7542: tests/results/018.processed, tests/results/019.processed,
7543: tests/results/020.processed, tests/results/021.processed,
7544: tests/results/022.processed, tests/results/023.processed,
7545: tests/results/024.processed, tests/results/025.processed,
7546: tests/results/026.processed, tests/results/027.processed,
7547: tests/results/028.processed, tests/results/029.processed,
7548: tests/results/030.processed, tests/results/031.processed,
7549: tests/results/032.processed, tests/results/033.processed,
7550: tests/results/034.processed, tests/results/035.processed,
7551: tests/results/036.processed, tests/results/037.processed,
7552: tests/results/038.processed, tests/results/039.processed,
7553: tests/results/040.processed, tests/results/041.processed,
7554: tests/results/042.processed, tests/results/043.processed,
7555: tests/results/044.processed, tests/results/045.processed,
7556: tests/results/046.processed, tests/results/047.processed,
7557: tests/results/048.processed, tests/results/049.processed,
7558: tests/results/050.processed, tests/results/051.processed,
7559: tests/results/052.processed, tests/results/053.processed,
7560: tests/results/054.processed, tests/results/055.processed,
7561: tests/results/056.processed, tests/results/057.processed,
7562: tests/results/058.processed, tests/results/059.processed,
7563: tests/results/060.processed, tests/results/061.processed,
7564: tests/results/062.processed, tests/results/063.processed,
7565: tests/results/064.processed, tests/results/065.processed,
7566: tests/results/066.processed, tests/results/067.processed,
7567: tests/results/068.processed, tests/results/069.processed,
7568: tests/results/070.processed, tests/results/071.processed,
7569: tests/results/072.processed, tests/results/073.processed,
7570: tests/results/074.processed, tests/results/075.processed,
7571: tests/results/076.processed, tests/results/077.processed,
7572: tests/results/078.processed, tests/results/079.processed,
7573: tests/results/080.processed, tests/results/081.processed,
7574: tests/results/082.processed, tests/results/083.processed,
7575: tests/results/084.processed, tests/results/085.processed,
7576: tests/results/086.processed, tests/results/087.processed,
7577: tests/results/088.processed, tests/results/089.processed,
7578: tests/results/090.processed, tests/results/091.processed,
7579: tests/results/092.processed, tests/results/093.processed,
7580: tests/results/094.processed, tests/results/095.processed,
7581: tests/results/096.processed, tests/results/097.processed,
7582: tests/results/098.processed, tests/results/099.processed,
7583: tests/results/100.processed, tests/results/101.processed,
7584: tests/results/102.processed, tests/results/103.processed,
7585: tests/results/104.processed, tests/results/105.processed,
7586: tests/results/106.processed, tests/results/107.processed,
7587: tests/results/108.processed, tests/results/109.processed,
7588: tests/results/110.processed, tests/results/111.processed,
7589: tests/results/112.processed, tests/results/113.processed,
7590: tests/results/114.processed, tests/results/115.processed,
7591: tests/results/116.processed, tests/results/117.processed,
7592: tests/results/118.processed, tests/results/119.processed,
7593: tests/results/120.processed, tests/results/121.processed,
7594: tests/results/122.processed, tests/results/123.processed,
7595: tests/results/124.processed, tests/results/125.processed,
7596: tests/results/126.processed, tests/results/127.processed,
7597: tests/results/128.processed, tests/results/129.processed,
7598: tests/results/130.processed, tests/results/131.processed,
7599: tests/results/132.processed, tests/results/133.processed,
7600: tests/results/134.processed, tests/results/135.processed,
7601: tests/results/136.processed, tests/results/138.processed,
7602: tests/results/139.processed, tests/results/140.processed,
7603: tests/results/141.processed, tests/results/142.processed,
7604: tests/results/143.processed, tests/results/144.processed,
7605: tests/results/145.processed, tests/results/146.processed,
7606: tests/results/147.processed, tests/results/148.processed,
7607: tests/results/149.processed, tests/results/150.processed,
7608: tests/results/151.processed, tests/results/152.processed,
7609: tests/results/153.processed, tests/results/154.processed,
7610: tests/results/155.processed, tests/results/156.processed,
7611: tests/results/157.processed, tests/results/158.processed,
7612: tests/results/159.processed, tests/results/160.processed,
7613: tests/results/161.processed, tests/results/162.processed,
7614: tests/results/163.processed, tests/results/164.processed,
7615: tests/results/165.processed, tests/results/166.processed,
7616: tests/results/167.processed, tests/results/168.processed,
7617: tests/results/169.processed, tests/results/170.processed,
7618: tests/results/171.processed, tests/results/172.processed,
7619: tests/results/173.processed, tests/results/174.processed,
7620: tests/results/175.processed, tests/results/176.processed,
7621: tests/results/177.processed, tests/results/178.processed,
7622: tests/results/179.processed, tests/results/180.processed,
7623: tests/results/181.processed, tests/results/182.processed,
7624: tests/results/183.processed, tests/results/184.processed,
7625: tests/results/185.processed, tests/results/186.processed,
7626: tests/results/187.processed, tests/results/188.processed,
7627: tests/results/189.processed, tests/results/190.processed,
7628: tests/results/191.processed, tests/results/192.processed,
7629: tests/results/193.processed, tests/results/194.processed,
7630: tests/results/195.processed, tests/results/196.processed,
7631: tests/results/197.processed, tests/results/198.processed,
7632: tests/results/199.processed, tests/results/200.processed,
7633: tests/results/201.processed, tests/results/202.processed,
7634: tests/results/203.processed, tests/results/204.processed,
7635: tests/results/205.processed, tests/results/206.processed,
7636: tests/results/207.processed, tests/results/208.processed,
7637: tests/results/209.processed, tests/results/210.processed,
7638: tests/results/211.processed, tests/results/212.processed,
7639: tests/results/213.processed, tests/results/214.processed,
7640: tests/results/215.processed, tests/results/216.processed,
7641: tests/results/217.processed, tests/results/218.processed,
7642: tests/results/219.processed, tests/results/220.processed,
7643: tests/results/221.processed, tests/results/222.processed,
7644: tests/results/223.processed, tests/results/224.processed,
7645: tests/results/225.processed, tests/results/226.processed,
7646: tests/results/227.processed, tests/results/228.processed,
7647: tests/results/229.processed: - http headers were changed:
7648: content-type => Content-type and so on
7649:
7650: 2009-08-27 misha
7651:
7652: * src/: main/pa_random.C, include/pa_random.h,
7653: targets/cgi/parser3.C: - year was updated :)
7654:
7655: 2009-08-26 misha
7656:
7657: * tests/: 224.html, 224.p: - test for creating of parser object
7658: using constructor without params - little bugfix in test
7659:
7660: * src/main/compile_tools.h: - bugfix: should't call autouse while
7661: checking existed class while processing partial option
7662:
7663: * src/classes/reflection.C: - bugfix: core when creating object
7664: with reflection and constructor doesn't have params
7665:
7666: 2009-08-24 misha
7667:
7668: * tests/229.html: - tests for checking the number of parameters
7669: were added
7670:
7671: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
7672: number of method's parameters wasn't checked correctly (the bug
7673: was introduced in 3.4.0)
7674:
7675: 2009-08-22 misha
7676:
7677: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
7678: transcoded, but tainted pieces are escaped only when
7679: content-type==url-encoding
7680:
7681: * tests/228.html: - test for checking
7682: ^file::load[http://...;$.body[]]
7683:
7684: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
7685: post charset was too early (charsets is empty at this moment)
7686:
7687: 2009-08-21 misha
7688:
7689: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
7690: main/untaint.C: - some fixes with transcode+untaint
7691:
7692: 2009-08-15 misha
7693:
7694: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
7695: was increaced to 100 (was 50)
7696:
7697: * tests/227.html: - test for checking overriding properties in
7698: static classes was added
7699:
7700: * tests/: 226.html, 226.p: - test for @autoload[] was added
7701:
7702: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
7703: main/execute.C, main/pa_request.C, classes/reflection.C: -
7704: autouse was implemented
7705:
7706: 2009-08-14 misha
7707:
7708: * src/classes/reflection.C: - outdated checkout was removed
7709:
7710: * src/classes/reflection.C: - optimization - method ^dynamical was
7711: added.
7712:
7713: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
7714: types/pa_vstateless_class.h, main/execute.C: - optimization
7715:
7716: * src/types/pa_vclass.C: - exception if base on sytem class
7717:
7718: 2009-08-12 misha
7719:
7720: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
7721: pa_vstateless_class.h: - little optimisation
7722:
7723: 2009-08-11 misha
7724:
7725: * tests/224.html: - method_params => method_info - checking for
7726: $.inherited
7727:
7728: * src/classes/reflection.C, operators.txt: - method method_params
7729: was renamed to method_info and now it returns class name, if
7730: method was defined in ancestor
7731:
7732: * tests/225.html: - tests for cheching properties in hierarhical
7733: classes were added
7734:
7735: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
7736: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7737: main/compile.y, main/execute.C, classes/classes.C: - problems
7738: with properties in new classes implementation were fixed
7739:
7740: 2009-08-10 misha
7741:
7742: * src/main/execute.C: - now constructor shouldn't be defined in
7743: class. it could be defined in parent.
7744:
7745: 2009-08-09 misha
7746:
7747: * src/classes/reflection.C: - ^reflection:methods doesn't return
7748: base's methods
7749:
7750: 2009-08-08 misha
7751:
7752: * src/: classes/classes.h, classes/date.C, classes/file.C,
7753: classes/form.C, classes/hash.C, classes/hashfile.C,
7754: classes/image.C, classes/mail.C, classes/op.C,
7755: classes/reflection.C, classes/regex.C, classes/string.C,
7756: classes/table.C, classes/xdoc.C, classes/xnode.C,
7757: classes/xnode.h, include/pa_hash.h, main/execute.C,
7758: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
7759: types/pa_method.h, types/pa_property.h, types/pa_value.C,
7760: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
7761: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
7762: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
7763: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
7764: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
7765: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
7766: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
7767: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
7768: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
7769: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
7770: types/pa_vresponse.C, types/pa_vresponse.h,
7771: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7772: types/pa_vstateless_object.h, types/pa_vstatus.C,
7773: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
7774: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
7775: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
7776: types/pa_wwrapper.h, types/types.vcproj: - new classes
7777: implementation
7778:
7779: * buildall-with-xml, buildall-without-xml: - gc has a bug if
7780: USE_MUNMAP is used. so it is disabled as a workaround.
7781:
7782: 2009-08-05 misha
7783:
7784: * src/: main/pa_common.C, include/pa_common.h: - not needed
7785: parameter was removed
7786:
7787: * src/main/pa_http.C: - bugfix: error was during detecting
7788: content-type of file which was loaded by http
7789:
7790: 2009-08-01 misha
7791:
7792: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
7793: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
7794: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
7795: can't be disabled with defines any longer
7796:
7797: 2009-07-29 misha
7798:
7799: * src/classes/reflection.C, tests/results/224.processed: - for
7800: native methods with any call type now returned empty call_type
7801: value
7802:
7803: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
7804: classes/table.C, include/pa_hash.h, include/pa_request.h,
7805: main/pa_request.C: - break in cycles was optimized
7806:
7807: * INSTALL: - more defines were described
7808:
7809: 2009-07-28 misha
7810:
7811: * operators.txt: - some changes in information about reflection
7812: class
7813:
7814: * tests/: 224.html, 224.p: - tests for reflection class
7815:
7816: * src/classes/reflection.C: - some bugs were fixed, method classes
7817: was added, refactoring
7818:
7819: 2009-07-26 misha
7820:
7821: * src/classes/classes.vcproj: - reflection class wass added to
7822: project
7823:
7824: * operators.txt: - information about reflection class was added
7825:
7826: * src/classes/reflection.C: - class was redesigned
7827:
7828: 2009-07-24 misha
7829:
7830: * src/classes/: Makefile.am, reflection.C: - class reflection was
7831: added
7832:
7833: * src/types/pa_vstateless_class.h: - method for reflection method's
7834: in classes was added
7835:
7836: 2009-07-22 misha
7837:
7838: * src/main/compile_tools.h: - bugfix: $object.$var was
7839: over-optimized. it failed if $object1.$object2.field
7840:
7841: 2009-07-16 misha
7842:
7843: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
7844: lib/cord/cordxtra.c, lib/cord/include/cord.h,
7845: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
7846: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
7847: one more arg: length of cord
7848:
7849: 2009-07-15 misha
7850:
7851: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
7852: tainted in ^file::load[http://...;$.cookies[]]
7853:
7854: * src/classes/: op.C, regex.C, string.C: - new string with
7855: exception was used
7856:
7857: * src/include/pa_exception.h: - new string with exception was added
7858:
7859: * tests/223.html: - test for checking cookie-encoding during
7860: ^file::load[http was added
7861:
7862: * tests/: 221.html, 222.html: - tests for checking type of
7863: $table.fields.field were added
7864:
7865: * src/types/pa_vtable.C: - not used var decl was removed
7866:
7867: * src/include/pa_string.h: - use cached string length in Body::mid.
7868: it improves speed of match with brackets in pattern
7869:
7870: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
7871: outside
7872:
7873: 2009-07-14 misha
7874:
7875: * src/types/pa_vtable.C: - $table.fields.a return string even if
7876: column is empty (sometime returned void) - $table.fields was
7877: added for nameless tables
7878:
7879: * src/targets/cgi/getopt.c: - one warning resolved
7880:
7881: * src/main/pa_string.C: - potentian bug fixed
7882:
7883: * src/classes/op.C: - small optimization in taint/untaint
7884:
7885: 2009-07-13 misha
7886:
7887: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
7888: added
7889:
7890: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
7891: souldn't add the attribut to output
7892:
7893: 2009-07-11 misha
7894:
7895: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
7896: stack size was increaced to 2MB (default=1MB)
7897:
7898: 2009-07-08 misha
7899:
7900: * src/main/pa_string.C: - link to UTF-8 description was added
7901:
7902: * src/include/pa_hash.h: - hash keeps element's order in more
7903: places (ex: ._keys[])
7904:
7905: * tests/220.html: - test for checking order of elements in hash in
7906: foreach was added
7907:
7908: * tests/172.html: - small changes in printing hash
7909:
7910: * tests/129.html: - small changes in printing hash
7911:
7912: * src/: include/pa_common.h, include/pa_hash.h,
7913: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
7914: types/pa_vmethod_frame.h: - hash now keeps order of elements
7915:
7916: * tests/014.html: - small changes in printing hash
7917:
7918: 2009-07-07 misha
7919:
7920: * src/classes/op.C: - new taint language "parser-code" was added
7921:
7922: * tests/219.html: - test for auto untaint parser code in process
7923: was added
7924:
7925: * src/classes/op.C: - tainted pieces in body of process are
7926: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
7927:
7928: * src/: include/pa_string.h, main/untaint.C: - new language
7929: L_PARSER_CODE for auto-untaint in process was added
7930:
7931: * src/: classes/file.C, classes/hash.C, classes/image.C,
7932: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
7933: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
7934: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
7935: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
7936: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
7937: code cleanup
7938:
7939: 2009-07-06 misha
7940:
7941: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
7942: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
7943: deleted. taint_cstr[m] and untaint_cstr[m] should be used
7944:
7945: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
7946: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
7947: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
7948: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
7949: should be used
7950:
7951: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
7952: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
7953: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
7954: untaint_cstr[m] should be used
7955:
7956: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
7957: deleted. taint_cstr[m] and untaint_cstr[m] should be used
7958:
7959: * tests/218.html: - test for checking automatic file-spec-taint was
7960: added
7961:
7962: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
7963: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
7964: classes/file.C, classes/hash.C, classes/image.C,
7965: classes/string.C, classes/table.C, classes/void.C,
7966: classes/xdoc.C: - optimizations and simplification of
7967: string.cstr(...)
7968:
7969: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
7970: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
7971: - optimizations and simplification of string.cstr(...)
7972:
7973: 2009-07-04 misha
7974:
7975: * tests/217.html: - test for recursion detection was added
7976:
7977: * src/: types/types.vcproj, main/main.vcproj,
7978: classes/classes.vcproj, targets/cgi/parser3.vcproj,
7979: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
7980: from .vcproj
7981:
7982: * src/types/pa_wwrapper.h: - dynamic_cast was removed
7983:
7984: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
7985: uploading files and case-insensitive http-method were added
7986:
7987: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
7988: tainted pattern in ^file:list[] was added
7989:
7990: 2009-07-03 misha
7991:
7992: * src/: classes/classes.vcproj, main/main.vcproj,
7993: types/types.vcproj, targets/cgi/parser3.vcproj,
7994: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
7995: for dynamic_cast) - little options changes
7996:
7997: * src/main/pa_http.C: - file::load[http works now with uploading
7998: files _and_ changing $.charset
7999:
8000: 2009-06-29 misha
8001:
8002: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
8003: while creating pattern
8004:
8005: 2009-06-25 misha
8006:
8007: * src/classes/image.C, operators.txt: - options' names for
8008: ^image.font were changed to $.space, $.width and $spacing -
8009: default space width now == gif's width
8010:
8011: 2009-06-24 misha
8012:
8013: * tests/215.html: - tests for $file.mode were added
8014:
8015: * operators.txt: - added info about $file.mode and changes in
8016: ^image.font[
8017:
8018: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
8019: param now could be omited - third param now could be hash (with
8020: all widths options: $.space-width, $.letter-width) - it's
8021: possible to specify tracking ($.letter-space)
8022:
8023: * src/classes/file.C: - file objects now could have mode field
8024: (text|binary)
8025:
8026: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
8027:
8028: 2009-06-23 misha
8029:
8030: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8031: trim can work with utf-8 chars now
8032:
8033: 2009-06-20 misha
8034:
8035: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
8036: was implemented
8037:
8038: * src/classes/table.C: - string length cacheing was implemented
8039:
8040: * src/include/pa_string.h: - string length cacheing was implemented
8041:
8042: 2009-06-17 misha
8043:
8044: * src/main/execute.C: - value param was removed from
8045: WContext::WContext
8046:
8047: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
8048: pa_wwrapper.h: - value param was removed from WContext::WContext
8049: - field wcontext was removed from VCodeFrame (using fparent
8050: instead)
8051:
8052: * tests/214.html: - test with hash copying
8053:
8054: 2009-06-16 misha
8055:
8056: * tests/: 062.html, results/062.processed: - evaluation hardcoded
8057: strings doesn't work in expression anymore
8058:
8059: * src/main/execute.C: - less calls for get_constructing() - little
8060: refactoring
8061:
8062: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
8063: include/pa_request.h: - less calls for get_constructing()
8064:
8065: * src/classes/: hash.C, hashfile.C: - fixed bug which was
8066: introduced with OPTIMIZE_SINGLE_STRING optimization
8067:
8068: 2009-06-14 misha
8069:
8070: * src/: classes/date.C, classes/file.C, classes/hash.C,
8071: classes/hashfile.C, classes/image.C, classes/regex.C,
8072: classes/table.C, classes/xdoc.C, classes/xnode.h,
8073: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
8074: types/pa_vstateless_class.h, main/execute.C: - create object for
8075: storing object's fields only for parser objects
8076:
8077: 2009-06-13 misha
8078:
8079: * buildall-with-xml, buildall-without-xml: - new option was added
8080: for building GC (it slightly reduces memory usage)
8081:
8082: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
8083: single string write
8084:
8085: * src/main/execute.C: - bytecode optimization of ^class:constructor
8086: - optimization of single string write
8087:
8088: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
8089: - bytecode optimization of ^class:constructor
8090:
8091: 2009-06-09 misha
8092:
8093: * src/targets/cgi/parser3.C: - type size_t was changed to int in
8094: main (better compatibility)
8095:
8096: 2009-06-08 misha
8097:
8098: * src/main/compile.y: - I've forgot to commit it :(
8099:
8100: 2009-06-07 misha
8101:
8102: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
8103: WITH_READ and WITH_ROOT
8104:
8105: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8106: execute.C: - more optimizations for WITH_SELF, WITH_READ and
8107: WITH_ROOT - little refactoring
8108:
8109: 2009-06-06 misha
8110:
8111: * tests/213.html: - tests for 3rd match string-param were added
8112:
8113: * src/classes/string.C: - 3rd match param could be string now
8114:
8115: * src/main/: compile.y, compile_tools.h: - much more bytecode's
8116: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
8117: GET_OBJECT_ELEMENT
8118:
8119: 2009-06-05 misha
8120:
8121: * src/main/pa_http.C: - bugfix: content-length was not calculated
8122: if $.body was specified
8123:
8124: 2009-06-04 misha
8125:
8126: * src/classes/op.C: - optimizing write_assign_lang in connect
8127:
8128: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
8129:
8130: * src/main/execute.C: - little refactoring - optimizing
8131: write_assign_lang in taint/untaint
8132:
8133: * src/include/pa_opcode.h: - little refactoring
8134:
8135: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
8136: main/compile_tools.h, main/execute.C: - optimizations for
8137: $self.field, ^self.method, $self.field[...] and $self.field(...)
8138: were added
8139:
8140: 2009-06-03 misha
8141:
8142: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
8143:
8144: 2009-06-02 misha
8145:
8146: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
8147: include/pa_opcode.h: - refactoring in last optimizations
8148: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
8149: now but code is much easy and it is ready for further
8150: improvements.
8151:
8152: 2009-05-27 misha
8153:
8154: * src/: types/pa_junction.h, types/pa_vjunction.C,
8155: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
8156: changed in destructing junctions
8157:
8158: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
8159: String:Body
8160:
8161: 2009-05-26 misha
8162:
8163: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
8164: one method detect_charset was deleted - bug was fixed in this
8165: method (error while detecting charset in content_type withot last
8166: ';')
8167:
8168: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
8169: once
8170:
8171: 2009-05-25 misha
8172:
8173: * src/classes/file.C: - bugfix: file::exec didn't work after
8174: optimizing of helper_length
8175:
8176: 2009-05-24 misha
8177:
8178: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
8179: were added - little refactoring
8180:
8181: * src/main/execute.C: - core while printing in debug log
8182: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
8183: optimisations were added
8184:
8185: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
8186: were added
8187:
8188: 2009-05-23 misha
8189:
8190: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
8191: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
8192: CORD_cat optimization
8193:
8194: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
8195: - call constr optimisation under separate define now
8196:
8197: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
8198: in $b should be string, not void
8199:
8200: * src/main/compile.y: - little fix for rem-cut optimisation
8201:
8202: * src/: include/pa_opcode.h, main/compile_tools.C,
8203: main/compile_tools.h, main/execute.C: - optimisations for
8204: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
8205:
8206: * INSTALL: - description of some #defined were added
8207:
8208: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
8209: before 1st access (memory usage is reduced if don't access to
8210: .text field)
8211:
8212: * src/include/pa_array.h: - array grows step now not static (it
8213: reduces numbers of reallocs)
8214:
8215: 2009-05-20 misha
8216:
8217: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
8218: $.b(2), $c[d] and $.e[f] was added
8219:
8220: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8221: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
8222: $.e[f] was added
8223:
8224: * src/main/execute.C: - debug printing moved in defines
8225:
8226: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
8227: and little refactoring for OP_GET_OBJECT_ELEMENT +
8228: OP_GET_OBJECT_VAR_ELEMENT optimisation
8229:
8230: 2009-05-19 misha
8231:
8232: * src/main/: compile.y, compile_tools.C, compile_tools.h,
8233: execute.C: - $a.$b & ^a.$b bytecode optimisation
8234:
8235: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
8236: ^a.$b optimisation)
8237:
8238: * src/main/compile.y: - compiler now generate new opcodes:
8239: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
8240: ^a.b - compiler now cut off ^rem{ with all content ; any number
8241: of params }
8242:
8243: * src/main/execute.C: - code for handle new opcodes
8244: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
8245:
8246: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
8247: added for LA2V and LA2S
8248:
8249: * src/include/pa_opcode.h: - new defines which can be used for
8250: disable some bytecode optimisation and new opcodes were added
8251:
8252: 2009-05-17 misha
8253:
8254: * src/lib/cord/cordxtra.c: - bugfix.
8255:
8256: * tests/212.html: - .size[] and .study_size[] were added to tests
8257:
8258: * operators.txt: - info about regex class was added
8259:
8260: * tests/212.html: - tests for regex class were added
8261:
8262: 2009-05-16 misha
8263:
8264: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
8265: gc7.1
8266:
8267: * tests/022.html: - test for ^file:list[path;] (empty second param)
8268: was added
8269:
8270: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
8271: param) should work
8272:
8273: 2009-05-15 misha
8274:
8275: * src/classes/table.C: - automatically disable stringstream usage
8276: on freebsd4
8277:
8278: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
8279: scope
8280:
8281: * tests/211.html: - test with different types of access to hash was
8282: added
8283:
8284: * tests/210.html: - test which checks for loosing tainting in
8285: hash's keys was added
8286:
8287: * tests/208.html: - some parser work added. or stime == 0 %-)
8288:
8289: * src/lib/cord/cordbscs.c: - little hack was added to cord
8290:
8291: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
8292:
8293: * src/include/pa_version.h, configure.in: - moko have made a lot of
8294: optimisations for increacing version number more dramatically :)
8295:
8296: * src/classes/date.C: - little refactoring: use constructor which
8297: accepts formated string
8298:
8299: * src/: include/pa_string.h, main/pa_string.C: - String constructor
8300: which can print formatted string was added
8301:
8302: 2009-05-14 misha
8303:
8304: * src/include/pa_string.h: - type was fixed
8305:
8306: * src/: classes/hashfile.C, classes/op.C,
8307: include/pa_cache_managers.h, include/pa_charset.h,
8308: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
8309: include/pa_request.h, include/pa_sql_driver_manager.h,
8310: include/pa_string.h, include/pa_stylesheet_manager.h,
8311: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
8312: main/pa_charsets.C, main/pa_string.C,
8313: main/pa_stylesheet_connection.C, types/pa_value.h,
8314: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8315: types/pa_vobject.C, types/pa_vstateless_class.C,
8316: types/pa_vstateless_class.h: - hash_code caching was implemented
8317: (seaches should be faster now)
8318:
8319: * src/: classes/file.C, classes/hash.C, classes/image.C,
8320: classes/string.C, classes/table.C, include/pa_string.h,
8321: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
8322: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
8323: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
8324: types/pa_vrequest.C: - String constructors don't have that stupid
8325: true/false param which means 'tainted'. they accept lang instead.
8326:
8327: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
8328: with OPTIMIZE_RESULT
8329:
8330: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
8331: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
8332:
8333: 2009-05-13 misha
8334:
8335: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
8336: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
8337: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8338: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
8339: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
8340: main/pa_common.C, main/pa_request.C, main/pa_string.C,
8341: include/pa_string.h, classes/date.C, classes/file.C,
8342: classes/hash.C, classes/image.C, classes/string.C,
8343: classes/table.C, classes/xdoc.C: - result optimisation -
8344: helper_length parameter removed from string constructors
8345:
8346: 2009-05-11 misha
8347:
8348: * tests/209.html: - tests for ^hash::create[hash] were added
8349:
8350: * tests/208.html: - tests for $status:rusage, $status:memory,
8351: ^memory:compact[] were added
8352:
8353: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
8354: log10 were added
8355:
8356: * tests/206.html: - test for try with finally was added
8357:
8358: 2009-05-10 misha
8359:
8360: * tests/205.html: - test for ^file::create[...] was added
8361:
8362: * tests/204.html: - test for ^response:clear[] was added
8363:
8364: * tests/038.html: - tests for trigonometric functions were added
8365:
8366: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
8367: added - more tests for .add, .sub, .union, .intersects and
8368: .intersections
8369:
8370: * tests/065.html: - test for ^file:dirname was added
8371:
8372: * tests/030.html: - test for $cookie:fields was added
8373:
8374: * tests/203.html: - test for ^h._keys[column name] was added
8375:
8376: * tests/201.html: - tests for .trim were added
8377:
8378: * tests/202.html: - tests for last-day,
8379: date:calendar[type](YYYY;MM;DD) were added
8380:
8381: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8382: .offset[type](N) were added
8383:
8384: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8385: and .pos[c](N) were added
8386:
8387: * tests/141.html: - test for math:sha1 was added
8388:
8389: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8390:
8391: 2009-05-09 misha
8392:
8393: * src/main/compile.y: - rollback
8394:
8395: 2009-05-05 misha
8396:
8397: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8398: replaced by is_empty()
8399:
8400: * src/: include/pa_string.h, main/pa_charset.C: - little
8401: optimisation: somewhere length() was replaced by is_empty()
8402:
8403: * src/classes/table.C: - little optimisation: somewhere length()
8404: was replaced by is_empty()
8405:
8406: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8407: classes/op.C, classes/table.C, main/pa_exception.C: - little
8408: optimisation: somewhere length() was replaced by is_empty()
8409:
8410: 2009-05-04 misha
8411:
8412: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8413: types/pa_vstateless_class.h, main/execute.C,
8414: include/pa_request.h, classes/hash.C, classes/op.C,
8415: classes/table.C: - more optimisations were added: some operators
8416: don't switch write context anylonger
8417:
8418: 2009-05-01 misha
8419:
8420: * src/main/compile.y: - slightly more opcode optimisations for
8421: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8422:
8423: * src/main/execute.C: - simplifying process for getters
8424:
8425: 2009-04-30 misha
8426:
8427: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8428:
8429: * tests/results/199.processed: - test for checking $result into
8430: ^rem was added
8431:
8432: * tests/199.html: - test for checking $result into ^rem was added
8433:
8434: * tests/: 022.html, 096.html: - þsort after :list was asses (on
8435: some OS it returns list in different order)
8436:
8437: * src/: include/pa_array.h, include/pa_request.h,
8438: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
8439: changes in stack impl - get_element() optimisation: 3rd param
8440: removed - bugfix: problems with reading empty input param -
8441: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
8442:
8443: * tests/results/198.processed: - test for reading empty local var
8444: was added
8445:
8446: * tests/198.html: - test for reading empty local var was added
8447:
8448: 2009-04-29 misha
8449:
8450: * src/main/compile.y: - bugfix: couldn't compile because
8451: OP_VALUE__GET_ELEMENT should be unde #ifdef
8452:
8453: * src/: include/pa_array.h, include/pa_opcode.h,
8454: include/pa_request.h, main/compile.y, main/execute.C,
8455: main/pa_request.C, types/pa_vmethod_frame.C,
8456: types/pa_vmethod_frame.h: - we can work without opcode
8457: OP_STORE_PARAM, so it was removed
8458:
8459: 2009-04-28 misha
8460:
8461: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
8462: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
8463: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
8464: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
8465: 4.
8466: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
8467:
8468: * src/main/compile_tools.h: - new stuff for op-codes optimisation
8469:
8470: * src/: main/pa_string.C, classes/string.C: - !length() =>
8471: is_empty()
8472:
8473: 2009-04-27 misha
8474:
8475: * src/types/pa_vregex.h: - back explicit vars initialisation
8476:
8477: 2009-04-24 misha
8478:
8479: * src/classes/string.C: - ups. typo fixed
8480:
8481: * src/main/execute.C: - more replacements '*new VBool' to
8482: 'VBool::get' - checks for ^break[], ^continue[] and
8483: parser.interrupted were optimised
8484:
8485: * src/classes/string.C: - number of params.count() calls was
8486: slightly reduced
8487:
8488: 2009-04-23 misha
8489:
8490: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8491: make it x64 friendly
8492:
8493: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8494: parser is x64 friendly now
8495:
8496: 2009-04-22 misha
8497:
8498: * src/types/pa_vhashfile.C: - coder friendly exception about
8499: exceeding record size was added
8500:
8501: * src/classes/file.C: - use vregex object instead of direct calls
8502: methods from pcre lib
8503:
8504: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
8505: classes/string.C: - use vregex object instead of direct calls
8506: methods from pcre lib
8507:
8508: * src/: include/pa_common.h, main/pa_common.C: - method
8509: print_pcre_exec_error_text was moved to class vregex
8510:
8511: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
8512: was added
8513:
8514: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
8515: - class vregex was added
8516:
8517: 2009-04-21 misha
8518:
8519: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
8520:
8521: * src/: types/pa_junction.h, types/pa_value.C,
8522: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
8523: types/pa_wcontext.h, main/execute.C, classes/op.C: -
8524: junction-optimisation (destructors)
8525:
8526: * src/include/pa_array.h: - free under if now
8527:
8528: 2009-04-19 misha
8529:
8530: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
8531:
8532: 2009-04-18 misha
8533:
8534: * src/include/pa_version.h:
8535: :q :
8536:
8537: CV:
8538: ----------------------------------------------------------------------
8539:
8540: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
8541: refactoring
8542:
8543: * src/: include/pa_array.h, include/pa_hash.h,
8544: types/pa_vmethod_frame.h: - destructors under #ifdef now
8545:
8546: * src/include/pa_memory.h: - define for using destructors was added
8547:
8548: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8549: main/execute.C: - some junctions will be cached now
8550:
8551: * src/include/pa_hash.h: - hash destructor frees pairs now
8552:
8553: * src/include/pa_array.h: - inline was added to destructor
8554:
8555: * src/types/pa_method.h: - comment was changed
8556:
8557: 2009-04-17 misha
8558:
8559: * src/: include/pa_array.h, include/pa_hash.h,
8560: types/pa_vmethod_frame.h: - destructors were added
8561:
8562: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
8563: renamed to always_use_result
8564:
8565: * src/main/: compile.y, compile_tools.h: - rollback changes in
8566: compiler: full backward compatibility is better
8567:
8568: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
8569: result in var's hash
8570:
8571: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8572: optimisation in method_frame
8573:
8574: * src/include/pa_array.h: - optimisation in array (allocate
8575: elements only when needed)
8576:
8577: * src/types/pa_vresponse.C: - check for $response:headers field
8578: before looking at custom fields
8579:
8580: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
8581: not needed to check existance var with name 'result' in var's
8582: hash
8583:
8584: * src/main/compile.y: - compiler was changed: now it detects
8585: writings to $result and set flag writo_to_result in method
8586:
8587: * src/classes/string.C: - little optimisation: no needed to write
8588: number with lang
8589:
8590: * src/main/pa_charset.C: - methods readChar and skipChar which is
8591: used for read utf8-strings were renamed - is_escaped was renamed
8592: to isEscaped (to the same name convention)
8593:
8594: * src/: types/pa_method.h, main/compile_tools.h: - flag
8595: write_to_result added. compiler get this info from code.
8596:
8597: 2009-04-16 misha
8598:
8599: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
8600: String only before 1st write
8601:
8602: * src/include/pa_string.h: - not needed template removed
8603:
8604: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
8605: types/pa_vjunction.C, types/pa_vproperty.C,
8606: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
8607: main/pa_request.C, classes/bool.C, classes/double.C,
8608: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
8609: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
8610: bool objects)
8611:
8612: 2009-04-15 misha
8613:
8614: * src/lib/cord/cordxtra.c: - more optimisation
8615:
8616: * src/: include/pa_string.h, main/untaint.C: - String::append
8617: optimisation
8618:
8619: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
8620: then get and can sometime be used)
8621:
8622: * src/main/pa_string.C: - String::length optimisation
8623:
8624: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
8625: these methods read different strings
8626:
8627: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8628: fresult_initial_void removed + some optimisation - if $result
8629: defined we don't write to context anymore
8630:
8631: * src/main/pa_charset.C: - readChar => skipChar (in this place we
8632: need just skip char)
8633:
8634: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8635: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
8636: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
8637:
8638: * src/types/pa_vvoid.h: - added get() method for retreave one
8639: instance
8640:
8641: 2009-04-11 misha
8642:
8643: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
8644:
8645: * tests/197.html: - test for parser://test in xml was added
8646:
8647: * src/classes/string.C: - small optimisation
8648:
8649: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
8650: optimisation
8651:
8652: 2009-04-10 misha
8653:
8654: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
8655: to pcre-7.8
8656:
8657: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
8658:
8659: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
8660: added
8661:
8662: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
8663: $request:CLASS_NAME were added
8664:
8665: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
8666: were added
8667:
8668: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
8669: $env:CLASS_NAME were added
8670:
8671: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
8672: '@todo' now
8673:
8674: * src/targets/cgi/parser3.C: - size_t -> int for calming down
8675: compirer
8676:
8677: * src/main/pa_string.C: - little code cleanup
8678:
8679: * src/main/pa_common.C: - describe one more UTF-8 related error
8680: during PCRE compile/execute
8681:
8682: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
8683: normalizing todo-comments: '@todo' now
8684:
8685: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
8686:
8687: * src/main/pa_charset.C: - type changed for making compiler happy
8688:
8689: 2009-03-10 misha
8690:
8691: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
8692: in main()
8693:
8694: 2009-02-01 misha
8695:
8696: * src/main/pa_http.C: - bugfix: double CRLF before the end of
8697: boundary
8698:
8699: 2009-01-25 misha
8700:
8701: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
8702:
8703: * src/classes/file.C: - more changes for parsing different number
8704: of params for file::load
8705:
8706: * tests/193.html: - tests for exception while base64-decode binary
8707: to string was added
8708:
8709: * tests/192.html: - tests for file::load with different number of
8710: options
8711:
8712: * src/classes/math.C: - ups. forgot '+1'
8713:
8714: * src/: classes/table.C, classes/file.C, include/pa_common.h,
8715: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
8716: main/pa_http.C: - ^file::load[...;http://...;] now can post files
8717: (new option $.encode[multipart-form/data] should be specified) -
8718: $.method[] option for file::load now is not case-sensitive
8719:
8720: * src/: include/pa_string.h, main/untaint.C: - for file post the
8721: new taint language L_FILE_POST was added
8722:
8723: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
8724: main/main.vcproj, classes/math.C, include/Makefile.am: - some
8725: stuff was moved to separate files
8726:
8727: 2009-01-23 misha
8728:
8729: * src/classes/math.C: - little optimisation in ^math:sha1[] -
8730: spaces to tabs were converted
8731:
8732: 2009-01-12 misha
8733:
8734: * src/main/pa_http.C: - value of $.method[] option force uppercased
8735: now
8736:
8737: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
8738: types/pa_vform.C, types/pa_vmail.C: - some constants changed
8739: their names
8740:
8741: * src/main/pa_common.C: - changes in formating
8742:
8743: * src/: classes/file.C, main/pa_http.C: - some constants changed
8744: their names
8745:
8746: * src/include/pa_http.h: - some spaces were converted to tabs
8747:
8748: * src/include/pa_common.h: - some constants changed their names
8749:
8750: * src/classes/file.C: - fixed 4-th paramether for file::load -
8751: little code rewriting
8752:
8753: * src/types/pa_vfile.C: - little code rewriting
8754:
8755: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
8756: types/pa_value.h: - some formating changes
8757:
8758: * src/include/pa_common.h: - some formating spaces transformed to
8759: tabs
8760:
8761: * src/classes/string.C: - exception while base64-decode binary to a
8762: string
8763:
8764: 2009-01-11 misha
8765:
8766: * configure.in: - version changed to 3.3.1b
8767:
8768: 2008-09-05 misha
8769:
8770: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
8771: release_3_3_0 on 2008-09-05 10:59:35 +0000
8772:
8773: 2008-09-04 misha
8774:
8775: * tests/: 130.html, 131.html: - these exceptions not typeless
8776: anymore
8777:
8778: * src/classes/op.C: - exception with 'invalid taint language' not
8779: typeless anylonger
8780:
8781: * src/classes/image.C: - some exceptions while operations with
8782: image not typeless anymore
8783:
8784: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
8785: main/pa_exec.C, main/pa_http.C: - some exceptions while
8786: operations with files not typeless anymore
8787:
8788: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
8789: types/pa_vdate.h: - exceptions while checking date range not
8790: typeless anymore
8791:
8792: * src/include/pa_exception.h: - exception type string for invalid
8793: date range was added
8794:
8795: 2008-09-03 misha
8796:
8797: * src/: classes/file.C, main/pa_string.C: - exception while pce
8798: operations not typeless anymore
8799:
8800: * src/include/pa_exception.h: - exception type for pce operations
8801: was added
8802:
8803: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
8804: and .CLASS_NAME insite classes
8805:
8806: * src/classes/table.C: - don't save table header whiile
8807: ^table.save[append;filename] if file exists
8808:
8809: 2008-09-02 misha
8810:
8811: * src/main/compile.y, src/main/compile_tools.h,
8812: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
8813: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
8814: renamed to partial and it login changed: we must mark class as
8815: partial for allow their modifications in future.
8816:
8817: 2008-08-29 misha
8818:
8819: * tests/results/022.processed: - testing taint[regex] in mask for
8820: file:list
8821:
8822: * tests/022.html: - testing taint[regex] in mask for file:list
8823:
8824: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
8825: for file:list was added
8826:
8827: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
8828: file:list
8829:
8830: 2008-08-26 misha
8831:
8832: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
8833: last derived object
8834:
8835: * src/classes/image.C: - many strings "image.format" replaced by
8836: IMAGE_FORMAT constant string - handle GPS info while parse exif -
8837: understand some more exif tags
8838:
8839: * src/include/pa_exception.h: - string "image.format" was added
8840:
8841: 2008-08-21 misha
8842:
8843: * src/: main/pa_string.C, classes/file.C: - use method for print
8844: pcre_exec text error
8845:
8846: * src/main/pa_common.C: - method for print pcre_exec text error was
8847: added
8848:
8849: * src/include/pa_common.h: - method declaration for print pcre_exec
8850: text error was added
8851:
8852: 2008-08-19 misha
8853:
8854: * src/main/execute.C: - bugfix: opcodes must be in separate
8855: namespace while debug execution as well
8856:
8857: * tests/: 015.html, results/015.processed: - test for escaping some
8858: parser chars was added
8859:
8860: 2008-08-18 misha
8861:
8862: * tests/: 190.html, 190.p, results/190.processed: - test for
8863: $caller.self.field + default getter in one class was added
8864:
8865: * tests/: 189.html, results/189.processed: - test for
8866: ^date::create[date object]
8867:
8868: * tests/: 188.html, results/188.processed: - tests for match with
8869: UTF-8 strings
8870:
8871: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
8872: ^string.match[]
8873:
8874: * ChangeLog: - parser 3.3.0 beta13
8875:
8876: 2008-08-15 misha
8877:
1.116 moko 8878: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
8879: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
8880: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
8881: dftables.c: - old PCRE files removed
1.95 moko 8882:
8883: * src/lib/pcre/config.h: - configuration for PCRE library
8884:
8885: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8886: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
8887:
8888: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
8889: library and set flag UTF8 if $request:charset is UTF-8
8890:
8891: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
8892: include/pa_config_fixed.h: - moved to new PCRE library
8893:
8894: * src/: main/main.vcproj, types/types.vcproj,
8895: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
8896: win32\pcre instead of parser3\src\lib\pcre
8897:
8898: * src/: include/pa_opcode.h, include/pa_operation.h,
8899: main/compile.C, main/compile.y, main/compile_tools.C,
8900: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
8901: opcodes were moved to separate namespace
8902:
8903: 2008-08-14 misha
8904:
8905: * src/types/pa_vstateless_class.C: - newline at the end missed
8906:
8907: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
8908: tainting
8909:
8910: 2008-08-11 misha
8911:
8912: * tests/: 187.html, 187.p, results/187.processed: - tests for
8913: $caller.self, $caller.self.field and $caller.self.field[value]
8914: were added
8915:
8916: * src/types/pa_vmethod_frame.h: - still need to check 'self'
8917: runtime as well (for $caller.self)
8918:
8919: 2008-07-25 misha
8920:
8921: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
8922: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
8923: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
8924: tests with international characters
8925:
8926: 2008-07-23 misha
8927:
8928: * src/main/pa_http.C: - escape $cookies as %uXXXX while
8929: file::load[...;http://
8930:
8931: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
8932: now everywhere in separate namespace
8933:
8934: * src/types/pa_vmethod_frame.h: - looking for caller before looking
8935: for vars
8936:
8937: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
8938: can be escaped by '^'
8939:
8940: 2008-07-22 misha
8941:
8942: * src/classes/string.C, tests/186.html: - names changes:
8943: escape=>js-escape, unescape=>js-unescape
8944:
8945: 2008-07-21 misha
8946:
8947: * tests/results/186.processed: - test for string escape/unescape
8948:
8949: * tests/186.html: - test for string escape/unescape
8950:
8951: * src/classes/string.C: - string has escape and unescape methods
8952: now
8953:
8954: * src/: include/pa_string.h, main/pa_string.C: - escape method was
8955: added
8956:
8957: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
8958: method-layers added (with different params)
8959:
8960: 2008-07-18 misha
8961:
8962: * tests/results/185.processed: - test for ^str.pos[substr](offset)
8963: was added
8964:
8965: * tests/185.html: - test for ^str.pos[sub](offset) added
8966:
8967: * src/classes/string.C, src/classes/void.C, operators.txt: -
8968: ^string.pos[substr](offset) -- 2nd param accepted now
8969:
8970: * src/main/pa_string.C: - .pos works fine with offset for utf-8
8971: strings
8972:
8973: 2008-07-17 misha
8974:
8975: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8976: helper length added for mid for small optimisation
8977:
8978: 2008-07-16 misha
8979:
8980: * tests/: 185.html, results/185.processed: - tests for
8981: length/left/right/mid/pos with utf-8 strings
8982:
8983: * src/classes/string.C: - left/right/mid/length/pos works fine for
8984: utf-8 strings
8985:
8986: * src/main/untaint.C: - comments removed
8987:
8988: * src/: include/pa_string.h, main/pa_string.C,
8989: include/pa_charset.h, main/pa_charset.C: - methods for working
8990: with pos/mid for strings in utf-8 were added
8991:
8992: 2008-07-15 misha
8993:
8994: * tests/: 184.html, results/184.processed: - test for case body as
8995: expression: $var(^switch(1){^case(1)(true)..})
8996:
8997: * src/classes/op.C: - case body can be expression now:
8998: $var(^switch(1){^case(1)(true)..})
8999:
9000: * tests/: results/183.processed, 183.html: - added test for testing
9001: new cookie encoding (%uXXXX)
9002:
9003: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
9004: decoding for backward compatibility they decoded from %XX in
9005: request:charset too
9006:
9007: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
9008: - cookie class now decode cookies before first access after last
9009: request:charset changing (as form class).
9010:
9011: * src/main/pa_charset.C: - added method escape for escaping cookies
9012: as %uXXXX - before transcode calculate required space for dest
9013: string. it reduce mem usage for transcode
9014:
9015: * src/include/pa_charset.h: - added method escape for escaping
9016: cookies as %uXXXX
9017:
9018: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
9019: was added. will used for escaping cookies as %uXXXX
9020:
9021: * src/include/pa_common.h: - escape method has new option for skip
9022: converting '+' to a space char
9023:
9024: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
9025: transcode - escape method has new option for skip converting '+'
9026: to a space char
9027:
9028: 2008-07-08 misha
9029:
9030: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
9031: (no UE if more then 1 case matches anylonger) - optimization:
9032: doing searching.as_string() || searching.as_double() only once
9033:
9034: 2008-07-04 misha
9035:
9036: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
9037: now ^date::create[date object] works
9038:
9039: * src/classes/string.C: - left and right added as aliases for start
9040: and end in ^string.trim[]
9041:
9042: 2008-07-03 misha
9043:
9044: * src/classes/file.C: - allow $.limit for file::sql as well
9045:
9046: * src/classes/file.C: - allow $.offset option for file::sql - force
9047: send limit=1 to query for use sql specifics authomatically
9048:
9049: * src/classes/: hash.C, string.C, table.C: - don't throw exception
9050: if $.limit value if empty. autoconvert it as everywere
9051:
9052: 2008-07-02 misha
9053:
9054: * configure.in: - time to change version number to 3.3.0 %-)
9055:
9056: * src/include/pa_version.h: - time to change version number to
9057: 3.3.0 %-)
9058:
9059: 2008-06-26 misha
9060:
9061: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
9062: $.limit(0) fixes
9063:
9064: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
9065: - $.limit(0) fixes
9066:
9067: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
9068: new API)
9069:
9070: * src/: include/pa_sql_driver_manager.h,
9071: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
9072: classes/op.C: - document_root added
9073:
9074: * src/main/compile.tab.C: - error message was changed
9075:
9076: 2008-06-25 misha
9077:
9078: * src/main/compile.y: - error message was changed
9079:
9080: 2008-06-24 misha
9081:
9082: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
9083:
9084: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
9085: tests for @OPTIONS\nappend
9086:
9087: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
9088:
9089: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
9090:
9091: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
9092:
9093: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
9094: compile.y
9095:
9096: 2008-06-17 misha
9097:
9098: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
9099: compilation: ^if(default){true. it's incorrect. must be
9100: exception}
9101:
9102: 2008-06-16 misha
9103:
9104: * tests/: 181.ent, 181.html, results/181.processed: - test for
9105: checking external reference loading with 'http://localhost'
9106: prefix while creating xdoc
9107:
9108: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
9109: ^math:long2ip[] and ^math:ip2long[]
9110:
9111: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
9112: added which use scalar stateless class method when user object
9113: used in scalar context - use get_scalar_value when user object
9114: requested in scalar context
9115:
9116: * src/main/pa_common.C: - size must be int but not size_t or we
9117: can't compare with 0 sprintf result
9118:
9119: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
9120: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
9121: with internal switch between local/global vars
9122:
9123: * src/types/pa_vclass.C: - register scalar if method @GET[] was
9124: specified
9125:
9126: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
9127: pa_vstateless_object.h: - stateless class and object now has
9128: private scalar field and getter/setter for working with it
9129:
9130: * src/classes/math.C: - methods math:long2ip & math:ip2long were
9131: moved to inet static class
9132:
9133: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
9134: class added (^inet:aton[IP], ^inet:ntoa(number))
9135:
9136: * tests/: 180.html, results/180.processed: - tests for
9137: ^math:long2ip(long) and ^math:ip2long[IP]
9138:
9139: * src/classes/math.C: - ^math:ip2long[IP] added
9140:
9141: 2008-06-11 misha
9142:
9143: * src/main/pa_xml_io.C: - use file_read_text again because of we
9144: need cut BOM code and remove DOS newline chars. but don't
9145: transcode it anyway.
9146:
9147: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
9148: main/pa_http.C: - option for disable transcoding while file_read
9149: and file_read_text added
9150:
9151: 2008-06-10 misha
9152:
9153: * tests/: 179.html, 179.p, results/179.processed: - test for many
9154: classes in 1 file
9155:
9156: * src/main/: compile.C, compile_tools.h: - compile return list of
9157: classes now.
9158:
9159: * src/main/: compile.y, compile.tab.C: - compile return list of
9160: classes now. internals.
9161:
9162: * src/main/pa_request.C: - compile return list of classes now. try
9163: call @conf and @auto for each returned class
9164:
9165: * src/include/pa_request.h: - compile return list of classes now
9166:
9167: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
9168: return list of classes when compile buf)
9169:
9170: 2008-06-07 misha
9171:
9172: * src/main/pa_request.C: - constructing VRequest object with 3rd
9173: param -- form
9174:
9175: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
9176: 3rd param: form. needed for get post_charset
9177:
9178: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
9179: added
9180:
9181: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
9182: types/pa_vform.C, types/pa_vform.h: - some polish
9183:
9184: 2008-06-06 misha
9185:
9186: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
9187: charset and decode chars from it but not from response:charset
9188:
9189: * src/main/pa_http.C: - detect_charset moved out of here
9190:
9191: * src/: include/pa_common.h, main/pa_common.C: - more helpers
9192: methods moved here - unescape_chars accepn one charset now
9193:
9194: * src/main/pa_http.C: - new constants used - don't allow
9195: $.content-type in ^file::load[;http://;$.method[POST]] - add
9196: charset info while ^file::load[;http://;$.method[POST]] - option
9197: $.omit-post-charset(true) added to ^file::load[;http://] for
9198: disabling charset during post
9199:
9200: * src/types/pa_vform.C: - new constants used
9201:
9202: * src/include/pa_common.h: - some constants were added
9203:
9204: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
9205: instead of StrEqNc
9206:
9207: * src/main/pa_common.C: - new method for caseless search
9208: c-substring in c-string - use isxdigit instead of is_hex_digit
9209:
9210: * src/include/pa_common.h: - new method for caseless search
9211: c-substring in c-string
9212:
9213: 2008-06-05 misha
9214:
9215: * tests/results/178.processed: - test for testing default getter
9216:
9217: * tests/178.html: - test for testing default getter
9218:
9219: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
9220: for test for testing default getter
9221:
9222: * src/main/execute.C: - default getter soul
9223:
9224: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
9225: requested objects' field not found
9226:
9227: * src/types/pa_vclass.C: - register default getter if defined - get
9228: default getter if requested field not found
9229:
9230: * src/types/pa_vstateless_object.h: - method get_default_getter was
9231: added
9232:
9233: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9234: pointer to default getter and methods for get/set it were added
9235:
9236: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
9237: auto_name field (for default getter)
9238:
9239: 2008-06-04 misha
9240:
9241: * src/main/pa_xml_io.C: - load external xml in binary mode (no
9242: transcoding, no cutting BOM code, no fixing line breaks) and get
9243: it to libxml "as is"
9244:
9245: 2008-06-03 misha
9246:
9247: * src/main/pa_common.C: - use store_Char instead of
9248: transcodeCharFromUTF8
9249:
9250: * src/: include/pa_charset.h, main/pa_charset.C: - method
9251: store_Char added, transcodeCharFromUTF8 -- removed
9252:
9253: 2008-06-02 misha
9254:
9255: * tests/: results/177.processed, 177.html: - test for checking
9256: .[acm]date after local ^file::load[] was added
9257:
9258: * tests/: results/176.processed, 176.html: - test for checking
9259: @OPTION\locals + @method[vars][locals] added
9260:
9261: * tests/results/auto.p: - CLASS_PATH specified for checking use
9262:
9263: 2008-05-30 misha
9264:
9265: * src/main/: compile.y, compile.tab.C: - changes in compiler:
9266: @OPTION\nlocals + @method[vars][;locals;] were added
9267:
9268: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
9269: moved to separate method op_code - switch from VMethodFrame to
9270: VMethodFrameGlobal + VMethodFrameLocal
9271:
9272: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
9273: was moved to separate method op_code
9274:
9275: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
9276: VMethodFrame now
9277:
9278: * src/types/pa_vstateless_class.h: - stateless class have bool flag
9279: all_vars_local as well
9280:
9281: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
9282: pa_vmethod_frame_local.h, Makefile.am: - who children for
9283: VMethodFrame were added: one (global) works as VMethodFrame
9284: before and second (local) write all vars in self vars scope
9285:
9286: * src/types/pa_method.h: - method has bool flag all_vars_local now
9287:
9288: 2008-05-29 misha
9289:
9290: * tests/: 129.html, results/129.processed: - more tests for
9291: ^table.hash[]
9292:
9293: * src/classes/hash.C: - ^hash::sql has a new option:
9294: $.type[hash|string|table] as ^table.hash[] one.
9295:
9296: * src/classes/op.C: - ^try has 3rd param now: finally code which
9297: executed anyway after try or catch section
9298:
9299: 2008-05-27 misha
9300:
9301: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
9302: must not fail if $.distinct(1) wasn't specified
9303:
9304: 2008-05-26 misha
9305:
9306: * src/classes/op.C: - allow ^throw[my type]
9307:
9308: 2008-05-22 misha
9309:
9310: * configure.in, configure: - version number updated to 3.2.4b
9311:
9312: * src/classes/: op.C, string.C: - trim format string before
9313: eval/format
9314:
9315: * tests/: results/175.processed, 175.html: - more tests for
9316: different format strings in .format[]
9317:
9318: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
9319: as well (not only %XX)
9320:
9321: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
9322: charset specified - checks for format before print number
9323: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
9324: (instead of tabs) removed
9325:
9326: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
9327: charset specified
9328:
9329: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
9330: char in requested charset from utf code was added
9331:
9332: 2008-05-19 misha
9333:
9334: * tests/: 174.html, results/174.processed: - test for
9335: ^hashfile.cleanup[] added
9336:
9337: * src/classes/hashfile.C: - optimization: don't create any key or
9338: value variable if it's name weren't specified
9339: (^hf.foreach[;v]{...})
9340:
9341: 2008-05-16 misha
9342:
9343: * src/classes/hash.C: - optimization: don't create any key variable
9344: if variable name wasn't specified (^h.foreach[;v]{...})
9345:
9346: 2008-05-15 misha
9347:
9348: * src/classes/op.C: - small changes
9349:
9350: * src/classes/hashfile.C: - code reformating (as hash.foreach)
9351:
9352: * src/classes/hash.C: - calculate var_context once before foreach
9353:
9354: 2008-05-14 misha
9355:
9356: * src/classes/hashfile.C: - incorrect vars context calculation for
9357: ^hashfile.foreach[;]{} fixed
9358:
9359: * src/classes/: hash.C, table.C: - little optimisation
9360:
9361: * src/classes/file.C: - bugfix: double absolute path while loading
9362: file
9363:
9364: * tests/: 174.html, results/174.processed: - tests for hashfile
9365: were added
9366:
9367: * buildall-with-xml: - moving to libxslt 1.1.24
9368:
9369: 2008-04-30 misha
9370:
9371: * src/classes/file.C: - stat file while loading (local only) so
9372: .adate, .mdate and .cdate available without additional ::stat
9373:
9374: 2008-04-28 misha
9375:
9376: * src/classes/file.C: - $.name and $.content-type available for
9377: stated file
9378:
9379: 2008-04-14 misha
9380:
9381: * src/targets/cgi/parser3.C: - new year in copyright %-)
9382:
9383: * src/include/pa_version.h: - new version number in head
9384:
9385: 2008-04-10 misha
9386:
9387: * tests/: 080.html, results/080.processed: - cut '0' from
9388: exponential part because of on diff OS it differ (20 or 020 for
9389: ex)
9390:
9391: * tests/: 119.html, results/119.processed: - check for encoding
9392: while creating xdoc
9393:
9394: 2008-04-09 misha
9395:
9396: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9397:
9398: * src/main/pa_common.C: - comment added
9399:
9400: * src/classes/date.C: - little refactoring
9401:
9402: 2008-04-07 misha
9403:
9404: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9405: style of ^table.save[]: prepare one big string and sabe it at
9406: once. it's safe on freebsd 4.x but use much more memory.
9407:
9408: * buildall-with-xml, buildall-without-xml: - option
9409: --disable-stringstream added (under comment. use it on freebsd
9410: 4.x)
9411:
9412: 2008-02-22 misha
9413:
9414: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9415: specified together in file::load[;http] - get back transcoding
9416: $.body[] in file::load[;http]
9417:
9418: 2008-02-21 misha
9419:
9420: * src/classes/date.C: - ^date.gmt-string[] was added
9421:
9422: * src/types/pa_value.C: - method for output date in RFC 822 format
9423: moved to pa_common.h
9424:
9425: * src/include/pa_common.h: - method for output date in RFC 822
9426: format moved here from pa_value.C
9427:
9428: * src/types/pa_vmail.C: - fixed core in sending mail with
9429: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9430:
9431: 2008-02-20 misha
9432:
9433: * src/main/pa_http.C: - transcode $.headers before escaping into
9434: specified charset while ^file::load[...;http://...] (L_URI
9435: instead of L_HTTP_HEADER) - $.cookies param available in
9436: ^file::load[;http://...] now (but we don't parse set-cookies from
9437: response yet) (cookies not transcoded as common $cookies)
9438:
9439: 2008-02-19 misha
9440:
9441: * src/main/pa_request.C: - rollback: we mustn't force taint
9442: $response:field values because in this case
9443: $response:locateion[http://...] don't works.
9444:
9445: 2008-02-15 misha
9446:
9447: * src/classes/op.C: - little refactoring
9448:
9449: * src/main/pa_http.C: - taint names of $.headers for load[;http
9450:
9451: * src/main/pa_request.C: - force taint values of $response:field
9452:
9453: 2008-02-14 misha
9454:
9455: * src/main/pa_request.C: - $response:field transcoded to
9456: $response:charset before escaping now
9457:
9458: * src/main/pa_http.C: - some outdated comments removed
9459:
9460: * src/classes/date.C: - lastdat -> last-day
9461:
9462: * src/classes/date.C: - ^date:lastday(year;month) and
9463: ^date.lastday[] were added - little code refactoring - comments
9464: changes
9465:
9466: * tests/: 159.html, results/159.processed: - test for number of
9467: days in February
9468:
9469: * src/types/pa_value.C: - fixes in code formatting
9470:
9471: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
9472: and comments
9473:
9474: 2008-02-13 misha
9475:
9476: * src/main/pa_common.C: - bugfix for february at leap year
9477:
9478: 2008-01-28 misha
9479:
9480: * tests/: 160.html, results/160.processed: - more test for cache
9481: added
9482:
9483: * src/classes/op.C: - bugfix: cache body executed twice if contains
9484: unhandled exception
9485:
9486: 2008-01-25 misha
9487:
9488: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
9489: bug when hashfile became inavailable after memory:compact)
9490:
9491: * src/lib/sdbm/apr_strings.C: - +arp_malloc
9492:
9493: 2008-01-22 misha
9494:
9495: * src/classes/table.C: - little refactiring and exception texts
9496: changes in method ^table.hash[]
9497:
9498: * src/types/pa_vcookie.C: - link to cookie specification changed
9499:
9500: 2008-01-21 misha
9501:
9502: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
9503: file::exec/cgi
9504:
9505: * src/classes/file.C: - bugfix: core while processing headers if
9506: executed cgi script don't return content
9507:
9508: 2008-01-18 misha
9509:
9510: * buildall-with-xml: - move to libxml2 version 2.6.31
9511:
9512: * src/include/pa_version.h, configure.in: - version number updated
9513: to '3.2.3b'
9514:
9515: 2007-12-28 misha
9516:
9517: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
9518: hash.contains
9519:
9520: 2007-12-27 misha
9521:
9522: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9523: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
9524: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
9525: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
9526: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9527: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
9528: src/targets/cgi/parser3.vcproj,
9529: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
9530: back to VS2003 because of Apache 1.3 module can't work if it was
9531: built in VS 2005. with cgi all file so VS2003 project files can
9532: be easy converted to the new format.
9533:
9534: 2007-12-04 misha
9535:
9536: * src/types/pa_vcode_frame.h: - changes in comment
9537:
9538: 2007-11-29 misha
9539:
9540: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
9541: intercept strings any longer
9542:
9543: * tests/: 173.html, results/173.processed: - tests for
9544: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
9545: but not in main code frame
9546:
9547: * tests/: 172.html, results/172.processed: - more tests for pass
9548: objects from code frames
9549:
9550: 2007-11-27 misha
9551:
9552: * tests/: 152.html, results/152.processed: - tests for converting
9553: strings 'true'/'false' to bool were added
9554:
9555: * tests/152.html: - added checks for converting strings
9556: 'true'/'false' to bool
9557:
9558: * src/classes/string.C: - ^srting.bool[] now can convert to bool
9559: not only strings with numbers but with values 'true'/'false' as
9560: well
9561:
9562: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
9563: for parser3.log increased
9564:
9565: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
9566:
9567: * src/include/pa_common.h: - remove_crlf return cstring size now
9568:
9569: * src/include/pa_types.h: - constant with buffer size for
9570: parser3.log added
9571:
9572: 2007-11-16 misha
9573:
9574: * tests/cat.sh: - script for tests for file::exec/cgi
9575:
9576: * tests/171.html: - tests for file::exec/cgi
9577:
9578: * tests/results/171.processed: - tests results for file::exec/cgi
9579:
9580: 2007-11-15 misha
9581:
9582: * src/main/pa_exec.C: - fixed incorrect exec code for unix
9583:
9584: * src/classes/file.C: - .body must be set before analyzing cgi
9585: headers
9586:
9587: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
9588: only if exec/cgi return anything.
9589:
9590: 2007-11-14 misha
9591:
9592: * operators.txt: - info about new text|binary option for
9593: file::exec/cgi was added
9594:
9595: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
9596: ^file:exec[[text|binary];script;...]
9597:
9598: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
9599: classes/string.C, classes/table.C: - more text strings moved to
9600: the one place
9601:
9602: 2007-11-09 misha
9603:
9604: * src/types/pa_vrequest.C: - $request:argv must be taint
9605:
9606: * ChangeLog: - $request:argv [patch from Sumo]
9607:
9608: * operators.txt: - $request:argv
9609:
9610: * src/: include/pa_request_info.h, types/pa_vrequest.C,
9611: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
9612:
9613: 2007-10-25 misha
9614:
9615: * buildall-with-xml, buildall-without-xml: - options preparations
9616: for ./configure rewrited
9617:
9618: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
9619: error occure in unhandled_exception finally fixed
9620:
9621: 2007-10-23 misha
9622:
9623: * tests/: 170.html, results/170.processed: - test for
9624: @method[][result]
9625:
9626: * operators.txt: - added info about node.prefix and
9627: node.namespaceURI
9628:
9629: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
9630:
9631: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
9632: added for node and attribute
9633:
9634: 2007-10-22 misha
9635:
9636: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
9637:
9638: * src/main/pa_request.C: - added const content-transfer-encoding
9639:
9640: * src/include/pa_request.h: - added const content-transfer-encoding
9641: - ups. constants must be in lowercase (for search)
9642:
9643: * src/types/pa_vmail.C: - more constants used -
9644: content-transfer-encoding: 8bit added
9645:
9646: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
9647:
9648: * src/include/pa_request.h: - more constants
9649:
9650: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
9651: ommit anymore if $.content-disposition was specified - little
9652: refactoring
9653:
9654: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
9655:
9656: 2007-10-17 misha
9657:
9658: * operators.txt: - info about
9659: table::create[nameless]{data}[>options<] was added
9660:
9661: * src/main/: compile.tab.C, compile.y: - if error occure while
9662: compile method don't put this method in methods table anymore.
9663: in other case the parser coredumped if @unhandled_exception
9664: method can't be compiled because of parser.compile error.
9665:
9666: * src/main/execute.C: - little code reformating
9667:
9668: * src/main/pa_request.C: - little code reformating - comment
9669: changed
9670:
9671: 2007-10-16 misha
9672:
9673: * tests/: 035.html, results/035.processed: - tests
9674: table::create[]{}[options] added
9675:
9676: * src/classes/table.C: - table::create[]{} now accept 3rd param:
9677: options (only $.seperator[] yet)
9678:
9679: 2007-10-10 misha
9680:
9681: * src/classes/table.C: - some contstants moved to pa_common.h -
9682: some code changes
9683:
9684: 2007-10-02 misha
9685:
9686: * src/main/pa_uue.C: - memory usage during uuencode reduced more
9687: then three time as much. but base64 encoding method still use
9688: less memory anyway.
9689:
9690: 2007-09-17 misha
9691:
9692: * operators.txt: - added info about $cookie:fields
9693:
9694: * src/types/pa_vcookie.C: - $cookie:fields available now
9695:
9696: * src/classes/hash.C: - some stuff for use with .for_each moved to
9697: common
9698:
9699: * src/include/pa_common.h: - some stuff for use with .for_each
9700: moved here
9701:
9702: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
9703:
9704: 2007-09-14 misha
9705:
9706: * buildall-with-xml: - new xml libs again =)
9707:
9708: 2007-08-28 misha
9709:
9710: * operators.txt: - texts about ^table.columns[[column name]] and
9711: ^string.split[...][v][column name] were added
9712:
9713: * tests/: 168.html, 169.html, results/168.processed,
9714: results/169.processed: - tests for ^table.columns[[column name]]
9715: and ^string.split[...][v][column name] were added
9716:
9717: * src/classes/table.C: - new option ^table.columns[[column name]]
9718: was added
9719:
9720: * src/classes/string.C: - new option ^string.split[...;v;[column
9721: name]]
9722:
9723: * src/include/pa_exception.h: - error text message for
9724: ^hash._keys[], ^table.columns[] and ^string.split[]
9725:
9726: 2007-08-27 misha
9727:
9728: * src/main/untaint.C: - try to fix coredump on unix if print to
9729: body ^taint[sql][something] outside of connect
9730:
9731: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
9732: outside of connect
9733:
9734: * buildall-with-xml, buildall-without-xml: - strip parser3 was
9735: added (commented by default)
9736:
9737: 2007-08-20 misha
9738:
9739: * operators.txt: - comment about new method ^node.hasAttributes[]
9740: was added
9741:
9742: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
9743: duplicated exception text strings were removed
9744:
9745: * src/include/pa_exception.h: - more exception text strings moved
9746: here
9747:
9748: * src/classes/table.C: - some duplicate exceptions' text strings
9749: removed
9750:
9751: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
9752: xdoc.C, xnode.C: - some duplicate exceptions' text strings
9753: removed
9754:
9755: * src/include/pa_exception.h: - some exception text strings movet
9756: to pa_exception
9757:
9758: * tests/: 149.html, results/149.processed: - test for
9759: ^xnode.hasAttributes[] was added - some code changes
9760:
9761: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
9762: added
9763:
9764: 2007-08-17 misha
9765:
9766: * tests/: results/006.processed, results/059.processed, 006.html,
9767: 059.html: - more tests for match
9768:
9769: * tests/: 129.html, results/129.processed: - tests for
9770: ^table.hash[...][$.type[string|hash|table]] added
9771:
9772: * src/targets/cgi/parser3.C: - little syntax changes
9773:
9774: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
9775: syntax changes
9776:
9777: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
9778: messages in parser3.log switched off by default. If someone
9779: really still need it: use $SIGPIPE(1)
9780:
9781: 2007-08-08 misha
9782:
9783: * buildall-with-xml, buildall-without-xml: - remove libs source
9784: files by default since now
9785:
9786: 2007-08-07 misha
9787:
9788: * buildall-without-xml: - some option syntax changes
9789:
9790: * buildall-with-xml: - compile libxml2 without http support - some
9791: option syntax changes
9792:
9793: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
9794:
9795: 2007-08-06 misha
9796:
9797: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
9798:
9799: * tests/: 160.html, results/160.processed: - cache test was
9800: rewrited
9801:
9802: 2007-07-06 misha
9803:
9804: * tests/: 153.html, results/153.processed: - added test for
9805: ^math:sha1[string]
9806:
9807: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
9808: transcoded
9809:
9810: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
9811: were added
9812:
9813: 2007-06-28 misha
9814:
9815: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
9816: some incorrect chars
9817:
9818: 2007-06-19 misha
9819:
9820: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
9821: were moved on top because of gcc 4 had a problems during
9822: building.
9823:
9824: 2007-06-18 misha
9825:
9826: * tests/results/019.processed: - new image commited
9827:
9828: 2007-06-09 misha
9829:
9830: * src/classes/: op.C, table.C: - in while and table.select method
9831: as_expression used now
9832:
9833: * src/types/pa_vmethod_frame.h: - method as_expression was added
9834:
9835: 2007-06-08 misha
9836:
9837: * tests/: 166.html, results/166.processed: - test for
9838: ^match[...][n]
9839:
9840: * tests/: 165.html, results/165.processed: - tests for loops
9841:
9842: * src/lib/cord/include/private/cord_pos.h: - back to origin value
9843: because of no speed/memory optimisation but some proglems with
9844: long cycles occure
9845:
9846: 2007-06-06 misha
9847:
9848: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
9849: ^table.select(true) and ^table.select(1) didn't works because of
9850: awaiting junction-param only. fixed.
9851:
9852: 2007-05-24 misha
9853:
9854: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
9855: with 0.5 secs interval
9856:
9857: * src/classes/op.C: - cache was rewrited. I hope it works with
9858: locking system now on unix
9859:
9860: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
9861: system locks which wait till other threads release it but try get
9862: lock, if fail wait 1 sec and make 10 attempts.
9863:
9864: * src/include/pa_os.h: - consts for blocking locks + some comments
9865: were added
9866:
9867: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
9868: opening files
9869:
9870: * src/classes/table.C: - changes in includes. if unclude <sstream>
9871: after our classes on unix it can't be build
9872:
9873: * src/types/pa_vhashfile.C: - not needed code removed
9874:
9875: 2007-05-23 misha
9876:
9877: * src/: classes/file.C, classes/op.C, main/pa_common.C,
9878: include/pa_common.h: - cosmetic changes
9879:
9880: 2007-05-18 misha
9881:
9882: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
9883: often. it's give some speed increasing
9884:
9885: * tests/results/160.processed: - returned time corrected
9886:
9887: * tests/160.html: - time increased because on unix 1 mean nothing
9888: :(
9889:
9890: * operators.txt: - added info about ^hash.contain[key]
9891:
9892: * src/classes/hash.C: - added ^hash.contain[key]
9893:
9894: * src/include/pa_hash.h: - added method for checking key exists in
9895: hash
9896:
9897: 2007-05-07 misha
9898:
9899: * src/include/pa_string.h: - was compilation error during build on
9900: freebsd4
9901:
9902: 2007-05-03 misha
9903:
9904: * src/classes/table.C: - option $.type[hash|string|table] was added
9905: for ^table.hash[]
9906:
9907: * src/classes/file.C: - comment removed
9908:
9909: 2007-04-26 misha
9910:
9911: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
9912: real files doesn't opened in place anymore
9913:
9914: 2007-04-24 misha
9915:
9916: * src/classes/math.C: - I thought one more time and remove lg(N) :)
9917:
9918: * src/include/pa_exception.h: "static" removed
9919:
9920: 2007-04-23 misha
9921:
9922: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
9923:
9924: * src/classes/math.C: added: - ^math:ln(N) (the same as
9925: ^math:log(N)) - ^math:lg(N)
9926:
9927: * tests/: 097.html, results/097.processed: - charsets converstion
9928: during ^file::load[text;http://...] added
9929:
9930: * tests/: 164.html, results/164.processed: - check for set expires
9931: as a date
9932:
9933: * tests/: 164.html, results/164.processed: - test for hashfile
9934:
9935: * src/classes/hashfile.C: - little comment changes
9936:
9937: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
9938: access
9939:
9940: * src/: classes/date.C, classes/double.C, classes/file.C,
9941: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
9942: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
9943: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
9944: classes/xnode.h, include/pa_request.h, main/execute.C,
9945: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
9946: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
9947: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
9948: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
9949: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
9950: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
9951: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
9952: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
9953: "parser.runtime" strings were removed
9954:
9955: * src/classes/hashfile.C: - with .clear[] called files_delete()
9956: now.
9957:
9958: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
9959:
9960: * src/include/pa_exception.h: - string constant with
9961: "parser.runtime" text was added
9962:
9963: 2007-04-20 misha
9964:
9965: * operators.txt: - some comments changing
9966:
9967: * operators.txt: - added info about .^hashfile.release[],
9968: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
9969:
9970: * configure: =cheching for unsetenv
9971:
9972: * src/classes/hashfile.C: - ^hashfile.cleanup[],
9973: ^hashfile.release[] were added
9974:
9975: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
9976: ^string.match[][] understand new option now: return number of
9977: matches but not table wit results
9978:
9979: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
9980: reopen now
9981:
9982: * src/classes/op.C: - bug. must be false
9983:
9984: * configure.in: - checking for unsetenv was added
9985:
9986: * src/types/pa_vform.C: - some comments
9987:
9988: 2007-04-18 misha
9989:
9990: * buildall-with-xml: moving to libxml2-2.6.28
9991:
9992: * buildall-with-xml, buildall-without-xml: added commented lines
9993: with --disable-safe-mode option
9994:
9995: * operators.txt: - info about $form:files
9996:
9997: 2007-04-17 misha
9998:
9999: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
10000: $form:files was added
10001:
10002: * tests/: 163.html, results/163.processed: removing auto format
10003:
10004: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
10005:
10006: 2007-04-16 misha
10007:
10008: * tests/: 163.html, results/163.processed: - test for .int[],
10009: floor, round, ceiling and .format[]
10010:
10011: * src/classes/file.C: - little optimization for getting args in
10012: exec/cgi
10013:
10014: 2007-04-13 misha
10015:
10016: * src/classes/file.C: - arguments for file::exec/cgi can be
10017: specified now as s table with one column
10018:
10019: 2007-03-27 misha
10020:
10021: * tests/: 162.html, results/162.processed: - test for
10022: ^table.select(^condition[$t])
10023:
10024: * tests/results/auto.p: - load windows-1251 charset for some tests
10025:
10026: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
10027:
10028: * tests/: results/161.processed, 161.html, 161_utf8.txt,
10029: 161_windows1251.txt: - added test for
10030: ^file::load[text;/local/file.txt;$.charset[...]]
10031:
10032: * tests/: results/013.processed, 013.html: - added test for
10033: checking $._default value while hash modifications
10034:
10035: * tests/: 160.html, results/160.processed: - add test for
10036: ^cache[key](secs){code}, ^cache[] and ^cache(0)
10037:
10038: 2007-03-22 misha
10039:
10040: * src/include/pa_common.h: - "charset" string defined for
10041: ^file::load[text;/local.txt] and ^table::load[/table.txt]
10042:
10043: * src/main/: pa_common.C, pa_http.C: - $.charset option for
10044: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
10045: added - not needed transcodes were removed from
10046: ^file::load[...;http://...]
10047:
10048: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
10049: added
10050:
10051: * src/classes/date.C: - date.week was fixed
10052:
10053: * operators.txt: - added info about date.weekyear
10054:
10055: * tests/: 159.html, results/159.processed: - tests for date.week
10056: and date.weekyear added
10057:
10058: 2007-03-15 misha
10059:
10060: * src/classes/table.C: - enclose column numbers for nameless tables
10061: as well
10062:
10063: 2007-03-14 misha
10064:
10065: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
10066:
10067: * src/classes/table.C: - table.save optimization: now required much
10068: less memory
10069:
10070: 2007-03-13 misha
10071:
10072: * tests/results/: 158.processed, 158.processes: - tests for
10073: table.save/table.load
10074:
10075: * tests/: 158.html, results/158.processes: - tests for
10076: table.save/table.load
10077:
10078: * buildall-with-xml: libxml2: --without-ftp --without-docbook
10079:
10080: * buildall-with-xml: - pattern needed now for building
10081:
10082: * tests/results/097.processed: - added test results for xdoc::load
10083: & xdoc::load[http://...]
10084:
10085: * tests/097.html: - added test for xdoc::load
10086:
10087: 2007-03-12 misha
10088:
10089: * tests/: 107.html, results/107.processed: - added test for xpath
10090: '//man'
10091:
10092: 2007-03-01 misha
10093:
10094: * tests/: 097.html, results/097.processed: - added test for
10095: creating xdoc from file
10096:
10097: * tests/: results/157.processed, 157.html: - added test for
10098: file:move
10099:
10100: 2007-02-28 misha
10101:
10102: * src/classes/xdoc.C: - another attempt
10103:
10104: * src/classes/xdoc.C: - roll back last changes for a while
10105:
10106: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
10107:
10108: * src/classes/file.C: - under lock we create non-exist dir anyway
10109:
10110: * tests/results/099.processed: - ever send content-disposition to
10111: client with file
10112:
10113: * tests/157.html: + test for file:copy
10114:
10115: 2007-02-26 misha
10116:
10117: * src/classes/file.C: - some similar strings moved to #define
10118: instead of to be copy/pasted many times
10119:
10120: * src/types/pa_vfile.h: - class name string ("file") moved to
10121: #define
10122:
10123: 2007-02-20 misha
10124:
10125: * configure.in: - added some strings for sqlite detection
10126:
10127: 2007-02-19 misha
10128:
10129: * operators.txt: - some comments changes
10130:
10131: * buildall-with-xml, buildall-without-xml: - some modifications
10132:
10133: 2007-02-17 misha
10134:
10135: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
10136:
10137: * src/main/pa_request.C: - damn, i forgot to commit it while I
10138: change console behaviour
10139:
10140: 2007-02-12 misha
10141:
10142: * src/targets/cgi/parser3.C: - don't print headers if
10143: $console:line[data] was used during cgi execution.
10144:
10145: * src/types/pa_vconsole.h: - console class have bool flag now which
10146: marked as 'true' if class was used.
10147:
10148: * tests/: 152.html, results/152.processed: - more types was added
10149: to test 152
10150:
10151: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
10152: adding 'bool' (^if($image){} caused exception)
10153:
10154: 2007-02-09 misha
10155:
10156: * tests/: 152.html, results/152.processed: - test alightly updated
10157:
10158: * tests/: 152.html, results/152.processed: - test rewrited
10159:
10160: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
10161: bugfix. I broke xdoc & xnode in expression
10162:
10163: 2007-02-08 misha
10164:
10165: * tests/: 152.html, results/152.processed: - add test for checking
10166: 'def' for void, string, bool, int & double
10167:
10168: 2007-02-07 misha
10169:
10170: * operators.txt: - ^file:base64[filespec] was added
10171:
10172: * tests/results/153.processed: - result test for
10173: ^file:base64[filespec] was updated
10174:
10175: * tests/153.html: - test for ^file:base64[filespec] was added
10176:
10177: * src/types/pa_vconsole.h: - little optimization
10178:
10179: * src/classes/file.C: - ^file:base64[filespec]
10180:
10181: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
10182:
10183: * src/include/pa_common.h: - declarations for
10184: ^file:base64[filespec]
10185:
10186: * src/types/pa_vcookie.C: - little optimization
10187:
10188: 2007-02-06 misha
10189:
10190: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
10191: were temporary commented
10192:
10193: * src/types/pa_vbool.h: - bugfix
10194:
10195: * tests/156.html: - added test for bool cookie
10196:
10197: * src/types/pa_vcookie.h: - not needed string "cookie" removed
10198:
10199: * tests/: 155.html, results/155.processed: - added test for check
10200: $.encloser[] option for table save/load
10201:
10202: * tests/: 153.html, 154.html, todo.txt: - two more tests added
10203:
10204: 2007-02-05 misha
10205:
10206: * tests/results/152.processed: - newline at the end was missed
10207:
10208: * tests/results/141.processed: - math:md5 must be lowercased
10209:
10210: * src/targets/cgi/parser3.C: - 2007 in help ;)
10211:
10212: 2007-02-03 misha
10213:
10214: * tests/results/: 150.processed, 151.processed, 152.processed: -
10215: test for bool added and some content length fixes
10216:
10217: * tests/152.html: - test for bool added
10218:
10219: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
10220:
10221: * operators.txt: - info bool class was added
10222:
1.116 moko 10223: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 10224: classes/classes.vcproj, classes/double.C, classes/int.C,
10225: classes/string.C, classes/void.C, classes/xnode.C,
10226: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
10227: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
10228: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
10229: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10230: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
10231: types/types.vcproj: - bool class was added
10232:
10233: * src/main/pa_request.C: - fix
10234:
10235: 2007-01-18 misha
10236:
10237: * src/: main/pa_string.C, classes/string.C: - return table during
10238: ^string.match[][] even if no matched found.
10239:
10240: 2006-12-20 misha
10241:
10242: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
10243: http://www.parser.ru/forum/?id=55598 ]
10244:
10245: 2006-12-19 misha
10246:
10247: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
10248: details: http://www.parser.ru/forum/?id=52359
10249:
10250: * src/main/pa_request.C: - always set content-disposition for
10251: $response:body[hash here]. more details:
10252: http://www.parser.ru/forum/?id=52130
10253:
10254: 2006-12-07 misha
10255:
10256: * operators.txt: - added info about bool params in cookie set
10257:
10258: * src/types/pa_vcookie.C: - bool param in cookies available now
10259: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
10260: ]
10261:
10262: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
10263: was added
10264:
10265: 2006-12-02 misha
10266:
10267: * src/classes/file.C: - file_block_read used instead of native read
10268:
10269: * src/main/pa_common.C: - added file_block_read with read error
10270: detection - file_block_read used instead of native read
10271:
10272: * src/include/pa_common.h: - added file_block_read declaration
10273:
10274: 2006-12-01 misha
10275:
10276: * operators.txt: - info about $var.CLASS_NAME was added
10277:
10278: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
10279: $var.CLASS_NAME added
10280:
10281: * operators.txt: - added info about ^file:copy[]
10282:
10283: * src/classes/file.C: - ^file:copy[from;fo] was added
10284:
10285: 2006-11-20 misha
10286:
10287: * src/classes/date.C: - bug fix :)
10288:
10289: 2006-11-17 misha
10290:
10291: * src/include/pa_common.h: - array in crc32 calculation was changed
10292: to static
10293:
10294: * src/main/pa_common.C: - little optimization in getMonthDays -
10295: small changes in crc32 calculation
10296:
10297: * src/classes/date.C: - not needed code was removed
10298:
10299: 2006-11-16 misha
10300:
10301: * src/types/pa_vmail.C: - fix missed brakes
10302:
10303: * src/types/pa_vmail.C: - mail:send now set content-type:
10304: multipart/related instead of multipart/mixed if file have
10305: $.content-id[]
10306:
10307: 2006-11-15 misha
10308:
10309: * src/types/pa_vdouble.h: abs -> fabs
10310:
10311: 2006-11-14 misha
10312:
10313: * operators.txt: - added info about ^file.md5[] and
10314: ^file:md5[file-name]
10315:
10316: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
10317: added
10318:
10319: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
10320: FILE_BUFFER_SIZE
10321:
10322: * src/classes/math.C: - hex_string was moved to pa_common.h
10323:
10324: * src/include/pa_common.h: - hex_string was moved from math.C -
10325: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
10326:
10327: * src/types/pa_vdouble.h: - incorrect frac detection with negative
10328: values was fixed
10329:
10330: 2006-11-13 misha
10331:
10332: * operators.txt: - added info about ^math:crc32[string],
10333: ^file:crc32[file-name] & ^file.crc32[]
10334:
10335: * src/classes/math.C: - added ^math:crc32[string]
10336:
10337: * src/classes/file.C: - some comments were changed - added
10338: ^file:crc32[file-name] and ^file.crc32[]
10339:
10340: * src/: include/pa_common.h, main/pa_common.C: - some functions for
10341: crc32 calculation added
10342:
10343: 2006-11-03 misha
10344:
10345: * src/include/pa_array.h: - not needed variable removed
10346:
10347: * tests/: 150.html, 151.html, results/150.processed,
10348: results/151.processed: - 2 tests were added
10349:
10350: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
10351: with $.reverse(1) were fixed
10352:
10353: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
10354: query converted to $.charset during ^file::load[http://...]
10355:
10356: 2006-11-02 misha
10357:
10358: * src/include/pa_table.h: ups. forget '=' char
10359:
10360: * src/include/pa_table.h: - one more fix in
10361: .locate[...][$.reverse(1)]
10362:
10363: 2006-11-01 misha
10364:
10365: * src/classes/math.C: - bug fix, details:
10366: http://www.parser.ru/forum/?id=53360
10367:
10368: * src/include/pa_table.h: - bug fix during ^table.locate( condition
10369: false for all records )[$.reverse(1)]
10370:
10371: * src/main/pa_http.C: - second param for this mid method is length
10372: but not end_index so this method has error and can't detect
10373: charsets in next content-types: Content-type: text/html;
10374: charset="windows-1251" Content-type: text/html;
10375: charset="windows-1251"; Content-type: text/html;
10376: charset=windows-1251;
10377:
10378: only Content-type: text/html; charset=windows-1251 was fine
10379:
10380: 2006-10-31 misha
10381:
10382: * src/classes/file.C: - empty args in file::exec removed now
10383:
10384: 2006-09-03 paf
10385:
10386: * src/classes/file.C: proper tainting of
10387: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10388:
10389: 2006-06-09 paf
10390:
10391: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10392:
10393: * src/classes/table.C: formatting
10394:
10395: * src/classes/table.C: incorporated patch from misha: Sent:
10396: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10397: ignoring string options for ^table.save[]
10398:
10399: * src/classes/hash.C: incorporated patch from misha Sent:
10400: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10401: $hash._default disappear while
10402:
10403: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10404: $.format[!uue|!base64] << new base64 option. default uue ] ]
10405:
10406: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10407: PM Subject: patch for base64 in ^mail:send[] %-)
10408:
10409: 2006-04-09 paf
10410:
10411: * src/main/compile.tab.C: ` change compiled
10412:
10413: * gnu.vcproj, operators.txt, parser3.sln,
10414: src/classes/classes.vcproj, src/classes/file.C,
10415: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10416: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10417: src/classes/xnode.C, src/include/pa_array.h,
10418: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10419: src/include/pa_memory.h, src/include/pa_request.h,
10420: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10421: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10422: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10423: src/lib/pcre/pcre_dftables.vcproj,
10424: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10425: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10426: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10427: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10428: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10429: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10430: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10431: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10432: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10433: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10434: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10435: src/types/pa_value.h, src/types/pa_vcookie.C,
10436: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10437: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10438: src/types/pa_vstatus.C, src/types/types.vcproj,
10439: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
10440: ^menu, ^hash/hashfile.foreach
10441:
10442: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10443: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
10444: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10445: src/classes/xnode.C, src/include/pa_array.h,
10446: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10447: src/include/pa_memory.h, src/include/pa_request.h,
10448: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10449: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10450: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10451: src/lib/pcre/pcre_dftables.vcproj,
10452: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10453: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10454: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10455: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10456: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10457: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10458: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10459: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10460: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10461: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10462: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10463: src/types/pa_value.h, src/types/pa_vcookie.C,
10464: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10465: src/types/pa_vstatus.C, src/types/types.vcproj,
10466: tests/descript.ion: ! switched to VS2005 (projects and
10467: object<info explicitly typed>.for_each(, info)) +
10468: $response:field[] setting void means removing + grammar $name`
10469: name stops now, for mysql `$field` + started ^break[]
10470: ^continue[], in ^for. TODO: to other iterators (while, menu,
10471: foreach) + all log messages += [uri=, method=, cl=]
10472:
10473: * buildall-with-xml: merged . ftp paths update
10474:
10475: * buildall-with-xml: . ftp paths update
10476:
10477: 2006-03-04 paf
10478:
10479: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
10480: checks++ [thanks to Igor Zinkovsky for detailed report]
10481:
10482: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
10483: Igor Zinkovsky for detailed report]
10484:
10485: 2006-03-01 paf
10486:
10487: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10488: \n to ' ' in
10489:
10490: 2006-02-18 paf
10491:
10492: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10493: \n to ' ' in
10494:
10495: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
10496:
10497: 2006-02-03 paf
10498:
10499: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
10500: base64
10501:
10502: * src/main/pa_common.C: ! bugfix: decoding from base64
10503:
10504: 2006-01-20 paf
10505:
10506: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10507: economy fix
10508:
10509: * src/classes/: table.C: merged from HEAD ! bugfix
10510: ^table.save[$.encloser-s now handled properly
10511:
10512: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
10513: handled properly
10514:
10515: 2006-01-19 paf
10516:
10517: * buildall-with-xml, buildall-without-xml: merged from HEAD !
10518: libgc:USE_MUNMAP activates merging of free memory blocks which
10519: helps a lot in our case: after transform we want
10520: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
10521:
10522: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10523: economy fix
10524:
10525: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
10526: activates merging of free memory blocks which helps a lot in our
10527: case: after transform we want CORD(main.result)->cstr[big
10528: malloc]->transcode[big malloc]
10529:
10530: 2006-01-17 paf
10531:
10532: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
10533: before reading them. got rid of reallocs = became quicker and
10534: less fragmentated
10535:
10536: 2005-12-29 paf
10537:
1.116 moko 10538: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
10539: configure, configure.in, src/include/pa_version.h,
10540: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 10541: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
10542: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
10543: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
10544: src/lib/ltdl/missing: . merged from 3.2.1
10545:
1.116 moko 10546: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
10547: packaged when 'make dist', so do configure companion files in
10548: src/lib/ltdl
10549:
10550: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
10551: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
10552: missing: . now config_auto.h is created with configure [were
10553: constant]
1.95 moko 10554:
10555: * INSTALL: . references to documentation and some clarification
10556:
10557: * buildall-with-xml, buildall-without-xml: . farawell doc
10558: indication
10559:
1.116 moko 10560: * Makefile.am: . dist+=buildall*
1.95 moko 10561:
10562: 2005-12-28 paf
10563:
10564: * configure: . 3.2.1
10565:
10566: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
10567: simplify build process, see INSTALL
10568:
10569: 2005-12-26 paf
10570:
10571: * configure: ver
10572:
10573: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
10574: version
10575:
10576: 2005-12-21 paf
10577:
10578: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
10579: compiled with bison 1.875b, it reports unexpected token names
10580:
10581: 2005-12-19 paf
10582:
10583: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
10584: holds a link to xmlNode to prevent premature gc(xmlNode)
10585:
10586: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
10587: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
10588: src/main/main.vcproj, src/main/pa_globals.C,
10589: src/targets/cgi/parser3.vcproj,
10590: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
10591: configure, configure.in, src/include/pa_version.h: . killing
10592: gdome [what a relief]
10593:
10594: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
10595: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
10596: run_parser.sh, results/001.processed, results/002.processed,
10597: results/003.processed, results/004.processed,
10598: results/005.processed, results/006.processed,
10599: results/008.processed, results/009.processed,
10600: results/010.processed, results/011.processed,
10601: results/012.processed, results/013.processed,
10602: results/014.processed, results/015.processed,
10603: results/016.processed, results/017.processed,
10604: results/018.processed, results/020.processed,
10605: results/021.processed, results/022.processed,
10606: results/023.processed, results/024.processed,
10607: results/025.processed, results/026.processed,
10608: results/027.processed, results/028.processed,
10609: results/029.processed, results/030.processed,
10610: results/031.processed, results/032.processed,
10611: results/033.processed, results/034.processed,
10612: results/035.processed, results/036.processed,
10613: results/037.processed, results/038.processed,
10614: results/039.processed, results/040.processed,
10615: results/041.processed, results/042.processed,
10616: results/043.processed, results/044.processed,
10617: results/045.processed, results/046.processed,
10618: results/047.processed, results/048.processed,
10619: results/049.processed, results/050.processed,
10620: results/051.processed, results/052.processed,
10621: results/053.processed, results/054.processed,
10622: results/055.processed, results/056.processed,
10623: results/057.processed, results/058.processed,
10624: results/059.processed, results/060.processed,
10625: results/061.processed, results/062.processed,
10626: results/063.processed, results/064.processed,
10627: results/065.processed, results/066.processed,
10628: results/067.processed, results/068.processed,
10629: results/069.processed, results/070.processed,
10630: results/071.processed, results/072.processed,
10631: results/073.processed, results/074.processed,
10632: results/075.processed, results/076.processed,
10633: results/077.processed, results/078.processed,
10634: results/079.processed, results/080.processed,
10635: results/081.processed, results/082.processed,
10636: results/083.processed, results/084.processed,
10637: results/085.processed, results/086.processed,
10638: results/087.processed, results/088.processed,
10639: results/089.processed, results/090.processed,
10640: results/091.processed, results/092.processed,
10641: results/093.processed, results/094.processed,
10642: results/095.processed, results/096.processed,
10643: results/097.processed, results/099.processed,
10644: results/100.processed, results/101.processed,
10645: results/102.processed, results/104.processed,
10646: results/105.processed, results/106.processed,
10647: results/107.processed, results/108.processed,
10648: results/109.processed, results/110.processed,
10649: results/111.processed, results/112.processed,
10650: results/113.processed, results/114.processed,
10651: results/115.processed, results/117.processed,
10652: results/119.processed, results/120.processed,
10653: results/121.processed, results/122.processed,
10654: results/123.processed, results/124.processed,
10655: results/125.processed, results/126.processed,
10656: results/127.processed, results/128.processed,
10657: results/129.processed, results/130.processed,
10658: results/131.processed, results/132.processed,
10659: results/133.processed, results/134.processed,
10660: results/135.processed, results/136.processed,
10661: results/138.processed, results/139.processed,
10662: results/140.processed, results/141.processed,
10663: results/142.processed, results/143.processed,
10664: results/144.processed, results/145.processed,
10665: results/146.processed, results/147.processed,
10666: results/148.processed, results/149.processed, results/auto.p: .
10667: now works if we turn off default auto.p
10668:
1.116 moko 10669: * configure: . makes
1.95 moko 10670:
10671: * src/types/pa_vxnode.C: . less warnings
10672:
10673: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
10674: tests/145.html, tests/149.html, tests/descript.ion,
10675: tests/outputs/d.cmd, tests/results/142.processed,
10676: tests/results/143.processed, tests/results/144.processed,
10677: tests/results/145.processed, tests/results/146.processed,
10678: tests/results/147.processed, tests/results/148.processed,
10679: tests/results/149.processed: . removed .nodeValue from all node
10680: types other than 5 (grabbed piece from gdome)
10681:
10682: * tests/: 137.html, results/137.processed: . not handled this case
10683: yet. code does not hang from inserting parent into child,
10684: considering thing minor issue -- nodes are removed from source
10685: anyway, don't know why shold that be an error after all
10686:
10687: * src/targets/cgi/parser3.C: . style
10688:
10689: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
10690: xdoc too [were barking "not element"]
10691:
10692: 2005-12-16 paf
10693:
10694: * tests/: 146.html, 147.html, 148.html: . more tests
10695:
10696: * src/classes/xnode.C: . also bark on possible errors
10697:
10698: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
10699: props
10700:
10701: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
10702: main/compile.y: merged from HEAD ! fixed overoptimized
10703: ^call(false) case. (confused it with ^call[] case)
10704:
10705: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
10706: ^call(false) case. (confused it with ^call[] case)
10707:
10708: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
10709:
10710: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
10711: results/001.processed, results/002.processed,
10712: results/003.processed, results/004.processed,
10713: results/005.processed, results/006.processed,
10714: results/008.processed, results/009.processed,
10715: results/010.processed, results/011.processed,
10716: results/012.processed, results/013.processed,
10717: results/014.processed, results/015.processed,
10718: results/016.processed, results/017.processed,
10719: results/018.processed, results/019.processed,
10720: results/020.processed, results/021.processed,
10721: results/022.processed, results/023.processed,
10722: results/024.processed, results/025.processed,
10723: results/026.processed, results/027.processed,
10724: results/028.processed, results/029.processed,
10725: results/030.processed, results/031.processed,
10726: results/032.processed, results/033.processed,
10727: results/034.processed, results/035.processed,
10728: results/036.processed, results/037.processed,
10729: results/038.processed, results/039.processed,
10730: results/040.processed, results/041.processed,
10731: results/042.processed, results/043.processed,
10732: results/044.processed, results/045.processed,
10733: results/046.processed, results/047.processed,
10734: results/048.processed, results/049.processed,
10735: results/050.processed, results/051.processed,
10736: results/052.processed, results/053.processed,
10737: results/054.processed, results/055.processed,
10738: results/056.processed, results/057.processed,
10739: results/058.processed, results/059.processed,
10740: results/060.processed, results/061.processed,
10741: results/062.processed, results/063.processed,
10742: results/064.processed, results/065.processed,
10743: results/066.processed, results/067.processed,
10744: results/068.processed, results/069.processed,
10745: results/070.processed, results/071.processed,
10746: results/072.processed, results/073.processed,
10747: results/074.processed, results/075.processed,
10748: results/076.processed, results/077.processed,
10749: results/078.processed, results/079.processed,
10750: results/080.processed, results/081.processed,
10751: results/082.processed, results/083.processed,
10752: results/084.processed, results/085.processed,
10753: results/086.processed, results/087.processed,
10754: results/088.processed, results/089.processed,
10755: results/090.processed, results/091.processed,
10756: results/092.processed, results/093.processed,
10757: results/094.processed, results/095.processed,
10758: results/096.processed, results/097.processed,
10759: results/099.processed, results/101.processed,
10760: results/102.processed, results/104.processed,
10761: results/105.processed, results/106.processed,
10762: results/107.processed, results/108.processed,
10763: results/109.processed, results/110.processed,
10764: results/111.processed, results/112.processed,
10765: results/113.processed, results/114.processed,
10766: results/115.processed, results/116.processed,
10767: results/117.processed, results/118.processed,
10768: results/119.processed, results/120.processed,
10769: results/121.processed, results/122.processed,
10770: results/123.processed, results/124.processed,
10771: results/125.processed, results/126.processed,
10772: results/127.processed, results/128.processed,
10773: results/129.processed, results/130.processed,
10774: results/131.processed, results/132.processed,
10775: results/133.processed, results/134.processed,
10776: results/135.processed, results/136.processed,
10777: results/137.processed, results/138.processed,
10778: results/139.processed, results/140.processed,
10779: results/141.processed: . refreshed old tests, made them work
10780: without auto.p (in utf8) . things noted: . gif got encoded
10781: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
10782: some strange year)
10783:
10784: * INSTALL: . revived linux libgc fix
10785:
10786: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
10787: glib/gdome in INSTALL and patches]
10788:
10789: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10790: include/pa_charset.h, include/pa_config_includes.h,
10791: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
10792: include/pa_xml_exception.h, lib/cord/Makefile.am,
10793: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
10794: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
10795: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
10796: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
10797: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
10798: types/pa_vxnode.h: . started killing gdome
10799:
10800: 2005-12-13 paf
10801:
10802: * src/main/: pa_request.C: merged from HEAD ! when code in
10803: @unhandled_exception thrown another exception, print correct
10804: origin (earlier code in catch of exception inside of
10805: @unhandled_exception grabbed parent_frame(original_exception)
10806: origin and printed it, instead of true origin)
10807:
10808: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
10809: another exception, print correct origin (earlier code in catch of
10810: exception inside of @unhandled_exception grabbed
10811: parent_frame(original_exception) origin and printed it, instead
10812: of true origin)
10813:
10814: 2005-12-09 paf
10815:
10816: * INSTALL: . updated INSTALL doc to work around linux stack base
10817: detection problem, due to change in gc6.4 code
10818:
10819: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
10820: ignored in ^string.matched :(
10821:
10822: * src/main/pa_string.C: ! regex tainting were ignored in
10823: ^string.matched :(
10824:
10825: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
10826: src/include/pa_config_fixed.h, src/include/pa_version.h,
10827: src/main/compile.y, src/main/compile_tools.h,
10828: src/main/pa_charset.C, src/main/pa_common.C,
10829: src/main/pa_globals.C, src/main/pa_string.C,
10830: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
10831: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
10832:
10833: 2005-12-08 paf
10834:
10835: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
10836: 500 chars now handled OK [were wrapped on 500th char according to
10837: rfc, but sendmail failed to unwrap it properly]
10838:
10839: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
10840: handled OK [were wrapped on 500th char according to rfc, but
10841: sendmail failed to unwrap it properly]
10842:
10843: * src/targets/isapi/parser3isapi.C: . less warnings
10844:
10845: * src/targets/isapi/parser3isapi.C: . undone some strange change
10846: since 3.1.5
10847:
10848: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
10849: link fixes
10850:
10851: * src/: classes/date.C, include/pa_config_fixed.h,
10852: main/compile.tab.C, main/compile.y, main/compile_tools.h,
10853: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
10854: main/pa_string.C, targets/cgi/getopt.c: . less warnings
10855:
10856: * src/include/pa_config_fixed.h: . removed outdated string origins
10857: [in current storage scheme there's no place for them. someday we
10858: can add third CORD to store origins and special version of parser
10859: which stores origins there [separate binary]]
10860:
10861: 2005-12-07 paf
10862:
10863: * src/targets/isapi/parser3isapi.C: . now links in release mode
10864:
10865: * src/include/pa_version.h: makefiles
10866:
10867: * src/include/pa_version.h: . not beta
10868:
10869: * configure, configure.in, src/include/pa_version.h: not beta
10870:
10871: 2005-12-06 paf
10872:
10873: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
10874: [some details here http://i2/tasks/edit/?id=4869912143891354460]
10875: decided to undo the change ^call[$void] passes void. now it will
10876: pass empty string again.
10877:
10878: * src/main/: compile.tab.C, compile.y: . version readded
10879:
10880: * src/classes/op.C: . in this version there is no ^switch[$nothing]
10881: = ^switch[void] problem
10882:
10883: 2005-12-01 paf
10884:
10885: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
10886: caused ^case[string] to be coerced to double since searching
10887: value were not string (it was vvoid)
10888:
10889: * src/classes/op.C: . bugfix ^switch[$void_value] caused
10890: ^case[string] to be coerced to double since searching value were
10891: not string (it was vvoid)
10892:
10893: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
10894: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
10895:
10896: 2005-11-30 paf
10897:
10898: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
10899: win32 must putenv("TZ="), on unix works only putenv("TZ")
10900:
10901: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
10902: putenv("TZ="), on unix works only putenv("TZ")
10903:
10904: * INSTALL: . xml libs versions updated
10905:
10906: * src/main/pa_globals.C: //20051130 trying to remove this, author
10907: claims that fixed a lot there // 20040920 for now both
10908: workarounds needed. wait for new libxml/xsl versions
10909:
10910: 2005-11-28 paf
10911:
10912: * src/classes/table.C: merged from HEAD: ! nameless table has
10913: columns==0
10914:
10915: * src/classes/table.C: ! nameless table has columns==0
10916:
10917: * src/main/pa_http.C: merged from HEAD: ! status line check made
10918: earlier [was totally wrong]
10919:
10920: * src/main/pa_http.C: ! status line check made earlier [was totally
10921: wrong]
10922:
10923: 2005-11-25 paf
10924:
10925: * src/include/pa_array.h: -this reduces speed(table::load) strange.
10926: undoing for now...
10927:
10928: * src/include/pa_version.h: -this reduces speed(table::load),
10929: strange. undoing
10930:
10931: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
10932:
10933: * src/classes/op.C: + ^while(){}[SEPARATOR]
10934:
10935: * src/include/pa_array.h: + optimistics added: all arrays (table
10936: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
10937: this speeds things up and saves memory a LOT! (not noticed
10938: negative effect on syntetic tests, future will tell...)
10939:
10940: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
10941: changed gc_malloc implementation, which obscured profiling
10942:
10943: * src/classes/table.C: merged from HEAD: + optimized
10944: table::load/sql, now row ArrayString-s allocated with
10945: columns.count() elements and don't always grow from
10946: count=3[realloc,realloc]
10947:
10948: * src/classes/table.C: + optimized table::load/sql, now row
10949: ArrayString-s allocated with columns.count() elements and don't
10950: always grow from count=3[realloc,realloc]
10951:
10952: * src/classes/table.C: merged from HEAD: . ^table.save unused
10953: buffer after save
10954:
10955: * src/classes/table.C: . ^table.save unused buffer after save
10956:
10957: 2005-11-24 paf
10958:
10959: * configure.in: . merged glib2-config patch
10960:
10961: * configure.in: + trying to find glib2-config
10962:
10963: * src/: classes/file.C, include/pa_common.h, main/execute.C,
10964: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
10965: file/dir_readable to simple file/dir_exist, this would help in
10966: situations "class not found because .p file has bad rights" << in
10967: that case error would be explicit "access denied to 'this' file"
10968:
1.116 moko 10969: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 10970:
10971: * src/: classes/file.C, include/pa_common.h, main/execute.C,
10972: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
10973: to simple file/dir_exist, this would help in situations "class
10974: not found because .p file has bad rights" << in that case error
10975: would be explicit "access denied to 'this' file"
10976:
10977: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
10978: include/pa_http.h, main/Makefile.am, main/main.vcproj,
10979: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
10980: ^file::exec/cgi[script;$.charset[changed]
10981: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
10982: encoded in $.charset charset
10983:
10984: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
10985: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
10986: encoded in $.charset charset
10987:
10988: * src/: include/Makefile.am, include/pa_common.h,
10989: include/pa_http.h, main/Makefile.am, main/main.vcproj,
10990: main/pa_common.C, main/pa_http.C: . extracted http:// into
10991: separate file [preparation for
10992: ^file::cgi[script;$.form[$.field1[]
10993:
10994: 2005-11-22 paf
10995:
10996: * src/: include/pa_version.h, main/compile.tab.C: makefiles
10997:
10998: * acinclude.m4, configure.in: . merged underquting fixes
10999:
1.116 moko 11000: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 11001:
11002: * src/classes/op.C: . overmerged a little
11003:
11004: * src/main/compile.tab.C: Makefile
11005:
11006: * src/main/: pa_common.C: . less gcc warnings
11007:
11008: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
11009: now reports original exception if we have no old cache
11010:
11011: * src/classes/op.C: + $exception.handled[cache] now reports
11012: original exception if we have no old cache
11013:
11014: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
11015: from HEAD: + ^taint/untaint[regex] << escapes these:
11016: \^$.[]|()?*+{}
11017:
11018: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
11019: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
11020:
11021: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11022: getenv-ed variable, which does not work both on win32&unix.
11023: copied old TZ value now
11024:
11025: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
11026: stored pointer to getenv-ed variable, which does not work both on
11027: win32&unix. copied old TZ value now
11028:
11029: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
11030: getenv-ed variable, which does not work both on win32&unix.
11031: copied old TZ value now
11032:
11033: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
11034: access to internal hash
11035:
11036: * src/types/pa_vresponse.C: + $response:headers access to internal
11037: hash
11038:
11039: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
11040: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11041: isapi] this reduces number of "GC Warning: Repeated allocation of
11042: very large block" messages to only important onces
11043:
11044: * src/targets/isapi/parser3isapi.C: +
11045: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
11046: isapi] this reduces number of "GC Warning: Repeated allocation of
11047: very large block" messages to only important onces
11048:
11049: * src/classes/string.C: merged from HEAD: + removed limitation on
11050: ^string/int/double:sql{}[$.default[({param style})] ]
11051:
11052: * src/classes/string.C: + removed limitation on
11053: ^string/int/double:sql{}[$.default[({param style})] ]
11054:
11055: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
11056: with ?params or $.form option" limitation
11057:
11058: * src/main/pa_common.C: + removed "use either uri with ?params or
11059: $.form option" limitation
11060:
11061: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11062: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
11063: ^file::base64[encoded] decode
11064:
11065: * src/: classes/file.C, classes/string.C, include/pa_common.h,
11066: main/pa_common.C: + ^file.base64[] encode +
11067: ^file::base64[encoded] decode
11068:
11069: * src/classes/: file.C, string.C: + ^string.base64[] encode +
11070: ^string:base64[encoded] decode
11071:
11072: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
11073: ^string:base64[in] encode + ^string.base64[] decode
11074:
11075: 2005-11-21 paf
11076:
11077: * src/classes/file.C: + merged from HEAD:
11078: ^file::create[text;file.xml;^untaint[xml]{data}]
11079:
11080: * src/classes/file.C: +
11081: ^file::create[text;file.xml;^untaint[xml]{data}]
11082:
11083: * src/main/pa_request.C: ! merged: $response:body[file] now
11084: differes from :download, it does not return content-disposition
11085: at all now [previusely it returned valueless content-disposition]
11086:
11087: * src/main/pa_request.C: ! $response:body[file] now differes from
11088: :download, it does not return content-disposition at all now
11089: [previusely it returned valueless content-disposition]
11090:
11091: * src/main/: compile.tab.C, compile.y: ! overoptimized void
11092: literals, reverted to just vvod, recreating empty array with each
11093: void_value token. that's absolutely needed, since that array
11094: grows
11095:
11096: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11097: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11098: types/pa_vmethod_frame.h: + merged: expression literals:
11099: true/false. ^format[$.indent(true)]
11100:
11101: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
11102: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
11103: types/pa_vmethod_frame.h: + expression literals: true/false.
11104: ^format[$.indent(true)]
11105:
11106: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11107: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11108: i386-pc-win32)"
11109:
11110: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
11111: $env:PARSER_VERSION reports "3.1.5beta (compiled on
11112: i386-pc-win32)"
11113:
11114: 2005-11-18 paf
11115:
11116: * src/classes/: double.C, int.C: ! ^int/double:sql{select
11117: null}[$.default(123)] will now return default value
11118:
11119: * src/classes/op.C: + merged ^cache[] << returns current cache
11120: expiration time
11121:
11122: * src/classes/op.C: + ^cache[] << returns current cache expiration
11123: time
11124:
11125: * src/classes/table.C: ! merged ^table::create[not'nameless';
11126: failed << Exception.problem_source pointed to local var!
11127:
11128: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
11129: Exception.problem_source pointed to local var!
11130:
11131: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
11132: now loads VFile.ptr!=0, so such files can be saved now
11133:
11134: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
11135: loads VFile.ptr!=0, so such files can be saved now
11136:
11137: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
11138: only . and .. now removed from list [were removed all .*]
11139:
11140: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
11141: .. now removed from list [were removed all .*]
11142:
11143: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
11144: open error now checked, were not :( [stole that piece from apache
11145: 1.3 sources]
11146:
11147: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
11148: checked, were not :( [stole that piece from apache 1.3 sources]
11149:
11150: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
11151: untainting of @main result if returned by $result or
11152: $response:body
11153:
11154: * src/main/pa_request.C: ! ensured proper untainting of @main
11155: result if returned by $result or $response:body
11156:
11157: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
11158: issue: now tries to guess content-length and allocates one big
11159: piece if possible [regretfully gc_realloc works as malloc+free,
11160: leaving lots of holes behind]
11161:
11162: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
11163: fixed file load memory issue: now tries to guess content-length
11164: and allocates one big piece if possible [regretfully gc_realloc
11165: works as malloc+free, leaving lots of holes behind]
11166:
11167: 2005-11-16 paf
11168:
11169: * src/: include/pa_common.h, classes/file.C, classes/table.C,
11170: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
11171: table::save with enclosers now doubles them: "->"" !
11172: table::save/load do not remove elements from options hash
11173:
11174: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
11175: [were overoptimized ^if(double_literal), compiler confused
11176: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11177:
11178: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
11179: [were overoptimized ^if(double_literal), compiler confused
11180: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
11181:
11182: * src/: classes/file.C, classes/table.C, include/pa_common.h,
11183: main/pa_common.C: ! table::save with enclosers now doubles them:
11184: "->"" ! table::save/load do not remove elements from options hash
11185:
11186: 2005-11-03 paf
11187:
1.116 moko 11188: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
11189: compilation, not all makefiles liked that
1.95 moko 11190:
11191: 2005-08-30 paf
11192:
11193: * src/classes/op.C: merge . speedup check of [DEFAULT]
11194:
11195: * src/classes/op.C: . speedup check of [DEFAULT]
11196:
11197: 2005-08-26 paf
11198:
11199: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
11200:
11201: * src/: classes/date.C, types/pa_vdate.h: + date.week
11202:
11203: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
11204: complains about bad!=nameless
11205:
11206: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
11207: about bad!=nameless
11208:
11209: * src/classes/: hash.C, string.C, table.C, void.C: merged !
11210: optional options were allowed to be empty. were checked
11211: if(is_string), changed to !defined||is_string to allow void
11212:
11213: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
11214: classes/string.C, classes/table.C, classes/void.C: ! optional
11215: options were allowed to be empty. were checked if(is_string),
11216: changed to !defined||is_string to allow void
11217:
11218: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
11219: as_junction where they needed as_int/double, so failed with
11220: recent "(const) now no junction" optimization
11221:
11222: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
11223: merged ! many classes/* used as_junction where they needed
11224: as_int/double, so failed with recent "(const) now no junction"
11225: optimization
11226:
11227: * src/: classes/double.C, classes/int.C, classes/math.C,
11228: classes/op.C, classes/string.C, classes/table.C,
11229: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
11230: used as_junction where they needed as_int/double, so failed with
11231: recent "(const) now no junction" optimization
11232:
11233: 2005-08-24 paf
11234:
11235: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
11236: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
11237: stripped it
11238:
11239: 2005-08-09 paf
11240:
11241: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11242: not cleared
11243:
11244: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11245: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11246: classes/hashfile.C, classes/image.C, classes/int.C,
11247: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11248: classes/response.C, classes/string.C, classes/table.C,
11249: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11250: include/pa_array.h, include/pa_cache_managers.h,
11251: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11252: include/pa_config_fixed.h, include/pa_config_includes.h,
11253: include/pa_dictionary.h, include/pa_dir.h,
11254: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11255: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11256: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11257: include/pa_request_charsets.h, include/pa_request_info.h,
11258: include/pa_sapi.h, include/pa_socks.h,
11259: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11260: include/pa_stack.h, include/pa_string.h,
11261: include/pa_stylesheet_connection.h,
11262: include/pa_stylesheet_manager.h, include/pa_table.h,
11263: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11264: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11265: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11266: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11267: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
11268: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
11269: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
11270: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
11271: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
11272: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
11273: main/pa_sql_driver_manager.C, main/pa_string.C,
11274: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11275: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11276: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11277: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11278: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11279: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
11280: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
11281: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11282: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11283: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
11284: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
11285: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
11286: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11287: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
11288: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
11289: types/pa_vmemory.h, types/pa_vmethod_frame.C,
11290: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11291: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
11292: types/pa_vresponse.C, types/pa_vresponse.h,
11293: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11294: types/pa_vstateless_object.h, types/pa_vstatus.C,
11295: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11296: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11297: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11298: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11299: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
11300:
11301: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11302: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
11303: speedup consequent checks in vmethod_frame
11304:
11305: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
11306: not cleared
11307:
11308: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
11309: params: 50 max (were 10)
11310:
11311: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
11312: params: 50 max (were 10)
11313:
11314: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
11315: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
11316: pa_wcontext.h: + ^call[$void] param inside now is void (were:
11317: empty string) ! simplified (double) speedup consequent checks in
11318: vmethod_frame
11319:
11320: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
11321: optimized constants in expressions vstring->vdouble + optimized
11322: ^call(vdouble), no junction creation, no calls later
11323:
11324: 2005-08-08 paf
11325:
11326: * src/main/: compile.tab.C, compile.y, compile_tools.C,
11327: compile_tools.h: merged + optimized constants in expressions
11328: vstring->vdouble + optimized ^call(vdouble), no junction
11329: creation, no calls later
11330:
11331: * src/types/pa_vdouble.h: merged . double values without fractional
11332: part now default printed as %.0f instead of %g
11333:
11334: * src/types/pa_vdouble.h: . double values without fractional part
11335: now default printed as %.0f instead of %g
11336:
11337: * src/classes/hashfile.C: . merged ! second hashfile::open would
11338: cause an exception
11339:
11340: * src/classes/hashfile.C: ! second hashfile::open would cause an
11341: exception
11342:
11343: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
11344: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11345: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11346: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11347: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
11348: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11349: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11350: types/pa_vresponse.h, types/pa_vstateless_class.C,
11351: types/pa_vstateless_object.h, types/pa_vvoid.h,
11352: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11353: merged VJunction(new Junction) optimization from 3.1.4
11354:
11355: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
11356: types/pa_vstateless_class.C: + optimized new VJunction(new
11357: Junction(params)) to new VJunction(params), thousands of mallocs
11358: removed
11359:
11360: 2005-08-05 paf
11361:
11362: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
11363: types/pa_vdouble.h, types/pa_vmethod_frame.C,
11364: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
11365: creation, no calls later
11366:
11367: * src/: classes/classes.C, classes/classes.h, classes/date.C,
11368: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
11369: classes/hashfile.C, classes/image.C, classes/int.C,
11370: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
11371: classes/response.C, classes/string.C, classes/table.C,
11372: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
11373: include/pa_array.h, include/pa_cache_managers.h,
11374: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
11375: include/pa_config_fixed.h, include/pa_config_includes.h,
11376: include/pa_dictionary.h, include/pa_dir.h,
11377: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11378: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11379: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11380: include/pa_request_charsets.h, include/pa_request_info.h,
11381: include/pa_sapi.h, include/pa_socks.h,
11382: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11383: include/pa_stack.h, include/pa_string.h,
11384: include/pa_stylesheet_connection.h,
11385: include/pa_stylesheet_manager.h, include/pa_table.h,
11386: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11387: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11388: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11389: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11390: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11391: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11392: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11393: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11394: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11395: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11396: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11397: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11398: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11399: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11400: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11401: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11402: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11403: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11404: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11405: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11406: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11407: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11408: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11409: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11410: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11411: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11412: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11413: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11414: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11415: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11416: types/pa_vstateless_object.h, types/pa_vstatus.C,
11417: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11418: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11419: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11420: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11421: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11422:
11423: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11424: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11425: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11426: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11427: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11428: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11429: optimized constants in expressions vstring->vdouble
11430:
11431: 2005-07-29 paf
11432:
11433: * src/types/pa_vclass.C: . shaped up error messages a bit
11434:
11435: * src/types/pa_vclass.C: + property getter can now be overridden
11436:
11437: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
11438: bug fix: static parent fields were not replaced in case
11439: $derived:field[put] + property setter can now be overridden
11440:
11441: 2005-07-28 paf
11442:
11443: * configure, configure.in, src/classes/classes.h,
11444: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
11445: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
11446: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
11447: src/classes/xnode.h, src/include/pa_hash.h,
11448: src/include/pa_version.h, src/main/execute.C,
1.116 moko 11449: src/types/Makefile.am, src/types/pa_method.h,
11450: src/types/pa_value.h, src/types/pa_vclass.C,
11451: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
11452: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
11453: src/types/pa_vcookie.h, src/types/pa_vhash.h,
11454: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
11455: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
11456: src/types/pa_vobject.C, src/types/pa_vobject.h,
11457: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
11458: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
11459: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
11460: src/types/pa_vstateless_class.h,
1.95 moko 11461: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
11462: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
11463: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
11464: dynamic_fields_join
11465:
11466: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
11467: classes/xnode.C, include/pa_hash.h, main/execute.C,
11468: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11469: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11470: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11471: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11472: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11473: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11474: types/pa_vresponse.h, types/pa_vstateless_object.h,
11475: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
11476: types/pa_wwrapper.h: ! restored put_element('replace' param), and
11477: restored its checks in vobject.put_element->static fields |
11478: dynamic properties
11479:
11480: 2005-07-27 paf
11481:
11482: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
11483: is some old code containing @set_name $name
11484:
11485: * src/types/pa_vobject.h: . fixed warning
11486:
11487: * configure, configure.in, src/include/pa_version.h,
1.116 moko 11488: src/types/Makefile.am: 3.2.0beta started
1.95 moko 11489:
11490: * src/: classes/xnode.C, include/pa_hash.h,
11491: types/pa_vstateless_class.C: ! new asserts were all false.
11492: regretfully reverted them all to checks
11493:
11494: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11495: classes/op.C, main/execute.C, types/pa_method.h,
11496: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11497: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11498: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11499: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11500: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11501: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11502: types/pa_vstateless_object.h, types/pa_vvoid.h,
11503: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11504: joined_dynamic_fields: removed unused param from put_method
11505: (returned to 3 params)
11506:
11507: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
11508: joined_dynamic_fields: dynamic get/set works with overriding
11509: props [alpha2]
11510:
11511: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
11512: works [alfa]
11513:
11514: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11515: classes/op.C, include/pa_hash.h, main/execute.C,
11516: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11517: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11518: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11519: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11520: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11521: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11522: types/pa_vresponse.h, types/pa_vstateless_class.C,
11523: types/pa_vstateless_object.h, types/pa_vvoid.h,
11524: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11525: joined_dynamic_fields: just compiled
11526:
11527: * src/: classes/date.C, classes/file.C, classes/hash.C,
11528: classes/hashfile.C, classes/image.C, classes/table.C,
11529: classes/xdoc.C, classes/xnode.h, main/execute.C,
11530: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
11531: types/pa_vstateless_class.h: joined_dynamic_fields: started
11532:
11533: * src/types/pa_vobject.C: . object setters [only started, does not
11534: work yet]
11535:
11536: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
11537: object setters [only started, does not work yet]
11538:
11539: 2005-07-26 paf
11540:
11541: * src/: include/pa_request.h, main/execute.C: . properties: set
11542: works [alpha2]. for classes. todo: for objects
11543:
11544: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
11545: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11546: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11547: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11548: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11549: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11550: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11551: types/pa_vstateless_object.h, types/pa_vvoid.h,
11552: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11553: properties: set works [alpha1]
11554:
11555: 2005-07-25 paf
11556:
11557: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
11558: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
11559: properties: started, get works [alpha1, other approach]
11560:
11561: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
11562: properties: started, get works [alpha2]
11563:
11564: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
11565: pa_vstateless_class.h: . properties: started, get works [alpha]
11566:
11567: 2005-07-15 paf
11568:
11569: * src/: classes/classes.h, classes/op.C, main/execute.C,
11570: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
11571: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11572: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11573: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11574: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
11575: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
11576: types/pa_vresponse.C, types/pa_vresponse.h,
11577: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11578: types/pa_vstateless_object.h, types/pa_vvoid.h,
11579: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
11580: types/pa_wwrapper.h, types/types.vcproj: + started property
11581: [getters work but think of changing them too to precaching]
11582:
11583: 2005-07-08 paf
11584:
11585: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
11586: gpf
11587:
11588: 2005-06-28 paf
11589:
11590: * src/: classes/file.C, main/untaint.C: ! string invariant violated
11591: in passing empty strings to file::exec/cgi environment
11592:
11593: 2005-06-06 paf
11594:
11595: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
11596: ^table:sql ^hash:sql now DO process $.bind option
11597:
11598: 2005-05-24 paf
11599:
11600: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
11601: $.limit] now work again [support was broken in 3.1.4]
11602:
11603: * src/: main/pa_string.C, classes/op.C: . steps toward removing
11604: ALL_INTERIOR_POINTERS
11605:
11606: 2005-05-12 paf
11607:
11608: * configure: 3.1.5beta
11609:
11610: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
11611:
11612: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
11613: $.limit] now work again [support was broken in 3.1.4]
11614:
11615: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
11616: line-width [was refusing to fill if line-width >1, thanks to
11617: Seras <seras@pinxit.lt> for repro case
11618:
11619: 2005-04-25 paf
11620:
11621: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
11622: correctly
11623:
11624: 2005-04-19 paf
11625:
11626: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
11627: in VString violating invariant!!
11628:
11629: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
11630: getenv("TZ")==null
11631:
11632: 2005-04-08 paf
11633:
11634: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
11635: bugfix: when there is no char in charset one byte produces 6
11636: (ÿ <<max). increased buffer size!
11637:
11638: 2005-03-23 paf
11639:
11640: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
11641: ^date.sql-string now takes TZ into account
11642:
11643: 2005-03-16 paf
11644:
11645: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
11646: gcc 3.4
11647:
11648: * src/types/pa_vhash.C: . warning about eof eol
11649:
11650: 2005-02-17 paf
11651:
11652: * operators.txt, src/classes/op.C: + operator ^sleep(double
11653: seconds)
11654:
11655: 2005-02-02 paf
11656:
11657: * src/classes/xnode.C: beauty: removed needless includes
11658:
11659: 2005-01-31 paf
11660:
11661: * src/types/pa_vmail.C: change: $.partX now always 1... change:
11662: $.partNoNumber now alias to $.part1
11663:
11664: * src/types/pa_vmail.C: change: incoming letter part contains
11665: "content-disposition" header with any value? now considering that
11666: part to be "file#" [for text/plain text/html were $.text#
11667: $.html#]
11668:
11669: * INSTALL: updatet to latest working versions available
11670:
11671: 2005-01-20 paf
11672:
11673: * configure.in, src/include/pa_version.h: version
11674:
11675: 2005-01-19 paf
11676:
1.116 moko 11677: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
11678: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
11679: couple warnings in parser3.C
1.95 moko 11680:
11681: 2004-12-23 paf
11682:
11683: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
11684:
11685: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
11686: dir to directory of script (when shbang used), not to directory
11687: of its interpreter
11688:
11689: * src/include/pa_version.h: compiled on win32...
11690:
11691: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
11692: we need more hspace
11693:
11694: * configure, configure.in, src/include/pa_version.h: configured
11695: host to pa_version. will be displayed everywhere
11696:
11697: * src/main/pa_request.C: new: @unhandled_exception can prevent
11698: exception from being logged by setting $exception.handled(1)
11699:
11700: * operators.txt, src/classes/file.C: change:
11701: ^file::sql{query}[[options]] options: $.name[file name]
11702: $.content-type[application/what]
11703:
11704: * src/: include/pa_common.h, main/pa_common.C,
11705: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
11706: new file
11707:
11708: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
11709: bugfix: table->hash now regards _default
11710:
11711: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
11712: created by accessing $name_of_method it acquired bad self=closest
11713: methodframe; instead of proper self (current class)
11714:
11715: * src/types/pa_vhashfile.C: bugfix: reading empty string from
11716: hashfile produced bad cord
11717:
11718: 2004-12-10 paf
11719:
11720: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
11721: subsequent failures though defined in .h
11722:
11723: * src/main/pa_common.C: comment on volatile
11724:
11725: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
11726: alarm function were not used since the beginning due to stupid
11727: error [setsigjmp were not checked in configure.in]
11728:
11729: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
11730: unix too
11731:
11732: * src/main/pa_common.C: http: exception status of send/recv errors
11733: change to most probable http.timeout
11734:
11735: * src/main/pa_common.C: win32: http connection $.timeout option now
11736: works [setsockopt on send/receive]
11737:
11738: 2004-12-08 paf
11739:
11740: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
11741: cstr-ed knowing mail charset, and untainting uri lang now knows
11742: proper charset
11743:
11744: 2004-11-24 paf
11745:
11746: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
11747:
11748: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
11749: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
11750:
11751: 2004-11-12 paf
11752:
11753: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
11754: [since 3.0.4]
11755:
11756: 2004-11-09 paf
11757:
11758: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
11759: writes basics to c:\parser3.log
11760:
11761: 2004-10-21 paf
11762:
11763: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
11764: tainted strings [were returning clean onces]
11765:
11766: 2004-10-15 paf
11767:
11768: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
11769: cycles(i=1; i=2), which was wrong, now does ONE
11770:
11771: 2004-10-12 paf
11772:
11773: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
11774:
11775: 2004-10-07 paf
11776:
11777: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
11778: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
11779: release asserts
11780:
11781: * src/: main/pa_string.C, include/pa_string.h: debugger help:
11782: String.dump() to stdout in detailed form [were String.v() in
11783: short form]
11784:
11785: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
11786: \t\r\n as @#| and truncates long char sequences less
11787:
11788: 2004-10-06 paf
11789:
11790: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
11791: win32 beauty: socket errors properly decoded
11792:
11793: 2004-10-05 paf
11794:
11795: * src/: include/pa_request.h, main/pa_request.C: bugfix:
11796: request::configure_user/admin done always, even if no
11797: file-to-process useful in @unhandled_exception [say, if they
11798: would want to mail by SMTP something]
11799:
11800: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
11801: now performed prior to file loading [and @auto executing] thus
11802: making $cookie:value available in @auto and in
11803: @unhandled_exception when IIS is configured to run interpreter
11804: even if no file exist
11805:
11806: 2004-09-20 paf
11807:
11808: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
11809: somewhere where it should have called xmlMalloc and it calls
11810: xmlFree when it should have not called it. inserted two
11811: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
11812: xmlFree just ignored. put away a testcase, maybe someday libxml
11813: author would fix all that. until that day: we have SLOW garbage
11814: collecting when many xml objects are alive hint: do
11815: ^memory:compact[] before xdoc::create
11816:
11817: 2004-09-17 paf
11818:
11819: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
11820: error from 3.0.8 version]
11821:
11822: 2004-09-14 paf
11823:
11824: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
11825: part bugfix: hashfile.foreach iterated only part if hashfile were
11826: modified inside
11827:
11828: 2004-09-13 paf
11829:
11830: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
11831: [were as octal]
11832:
11833: * src/types/pa_vhashfile.C: beauty: not reproduced
11834: $hashfile.key[$novalue] bug [reported by motorin], inserted
11835: safety-check
11836:
11837: * src/types/pa_vhashfile.C: change: empty keys now error in parser
11838: [not something obscure from sdbm lib]
11839:
11840: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
11841: = strerror now returnes something and we can properly report that
11842: to client
11843:
11844: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
11845: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
11846:
11847: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
11848: [tainted as-is] this helps //[space][newline] to remain as-is and
11849: not be unnecessary optimized away [ruining javascript]
11850:
11851: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
11852: [tainted as-is]
11853:
11854: * src/classes/mail.C: bugfix: typo error
11855:
11856: 2004-09-09 paf
11857:
11858: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
11859: separators bugfix: loads header with endings \r\n\r\n and \n\n
11860: (bloody yandex.server)
11861:
11862: 2004-09-06 paf
11863:
11864: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
11865: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
11866: encoded
11867:
11868: 2004-09-01 paf
11869:
11870: * src/types/pa_vmail.C: change: multipart/mixed changed to
11871: multipart/related outlook express have no problems showing
11872: unrelated attachments. todo: someday figure out a way of
11873: multipart/mixed multipart/related text/html
11874: image/xxx application/octet-stream << true attachments
11875:
11876: * src/types/pa_vmail.C: new:
11877: ^mail:send[$.file[$.content-disposition can be overriden new:
11878: empty mail header fields removed from letter
11879:
11880: * src/: classes/mail.C, include/pa_config_fixed.h,
11881: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
11882: ^mail:send[ $.file[ $.any[header]
11883:
11884: 2004-08-30 paf
11885:
11886: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
11887: warnings
11888:
11889: * src/main/pa_common.C: beauty: do not bother with charset
11890: detection when ^file::load[binary
11891:
11892: 2004-08-27 paf
11893:
11894: * src/main/pa_common.C: hack: for yandex.server http server
11895:
11896: 2004-08-18 paf
11897:
11898: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
11899: possibly-chunked response
11900:
11901: 2004-08-17 paf
11902:
11903: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
11904: $f.content-type now = that of http response
11905:
11906: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
11907: $f.content-type now = that of http response
11908:
11909: 2004-07-30 paf
11910:
11911: * src/: include/pa_request.h, main/pa_request.C,
11912: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
11913: win32: system&parser exceptions in release mode reported properly
11914: parser exception in exception handler WERE mistakenly reported as
11915: system exception, without details [in apache & isapi] +some
11916: beauty in exception text
11917:
11918: * src/: include/pa_exception.h, main/pa_request.C,
11919: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
11920: release mode reported properly parser exception in exception
11921: handler WERE mistakenly reported as system exception, without
11922: details
11923:
11924: * src/main/execute.C: beauty: simplified system exception handling
11925:
11926: 2004-07-29 paf
11927:
11928: * src/classes/table.C: bugfix:
11929: ^table.save[export.csv;$.separator[^;]] now works fine [separator
11930: were ignored, and \t used unconditionally]
11931:
11932: * src/types/Makefile.am: added vhash.c
11933:
11934: 2004-07-28 paf
11935:
11936: * src/: classes/date.C, classes/image.C, classes/math.C,
11937: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
11938: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
11939: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
11940: failed on russian letters
11941:
11942: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
11943: bugfix: isspace((unsigned char)c) everywhere. failed on russian
11944: letters
11945:
11946: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
11947: as 'currentDirectory' parameter to CreateProcess
11948:
11949: 2004-07-27 paf
11950:
11951: * src/targets/cgi/parser3.vcproj: beauty: win32:
11952: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
11953: from release somewhere [to help searching for unhandled system
11954: exceptions]
11955:
11956: * src/types/pa_vdate.h: check: for invalid datetime after temporary
11957: TZ shift
11958:
11959: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
11960: but also in ctor
11961:
11962: 2004-07-26 paf
11963:
11964: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
11965: src/main/pa_request.C, src/types/pa_vfile.h,
11966: src/types/pa_vhash.C, src/types/pa_vhash.h,
11967: src/types/types.vcproj: new: $response:body/download[
11968: $.file[name on disk] $.name[of file for user]
11969: $.mdate[date of last-modified. default from directory] ]
11970:
11971: * src/classes/file.C: moving file:send somewhere else..
11972:
11973: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
11974: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
11975: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
11976: $response:download[ $.filename[filename] $.option[] ,, ]
11977:
11978: * src/classes/file.C: beauty: invalid mode thoroughly reported
11979:
11980: 2004-07-21 paf
11981:
11982: * src/types/pa_vmail.C: bugfix: too long header values now splitted
11983: to several lines
11984:
11985: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
11986:
11987: note: ms outlook[!express] shows only first 255 characters of
11988: subject
11989:
11990: 2004-07-15 paf
11991:
11992: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
11993: off]
11994:
11995: 2004-07-14 paf
11996:
11997: * src/classes/table.C: bugfix: $.bind values now got untainted
11998: according to lang [were: as-is]
11999:
12000: 2004-07-07 paf
12001:
12002: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
12003: checked that
12004:
12005: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
12006: now untainted according to their languages. were: as-is.
12007: EVERYWHERE
12008:
12009: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
12010: environment string now untainted according to their languages.
12011: were: as-is. EVERYWHERE
12012:
12013: * src/main/pa_exec.C: bufix: on unix environment string now
12014: untainted according to their languages. were: as-is. on win32:
12015: ok
12016:
12017: * parser3.vssscc: ...would not go unnoticed
12018:
12019: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
12020: fails. in case on input appears nonutf, those bytes will be
12021: printed in %HH form. that can be easily decoded/recovered.
12022:
12023: this form is quite noticable, and hopefully would not go noticed
12024:
12025: 2004-07-06 paf
12026:
12027: * src/main/pa_exec.C: bufix: on unix environment string now
12028: untainted according to their languages. were: as-is. on win32:
12029: ok
12030:
12031: 2004-07-01 paf
12032:
12033: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
12034: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
12035: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12036: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
12037: main/main.vcproj, targets/cgi/parser3.vcproj,
12038: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
12039: option: global optimization ON
12040:
12041: * src/main/untaint.C: workaround kinda bug in libxml: life requires
12042: to do xdoc::create{invalid chars} standard disables chars less
12043: then \x20, except tab, cr, lf.
12044:
12045: changed tainting so that those become '!'
12046:
12047: 2004-06-25 paf
12048:
12049: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12050: int on odd address [prev bugfix failed due to superwize
12051: optimizer, which turned memcpy into same 'ld' asm command]
12052:
12053: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
12054: int on odd address
12055:
12056: 2004-06-22 paf
12057:
12058: * src/sql/pa_sql_driver.h: note: about possible optimization
12059:
12060: * operators.txt, src/classes/hash.C, src/classes/memory.C,
12061: src/classes/string.C, src/classes/table.C, src/classes/void.C,
12062: src/include/pa_config_includes.h: new: ^void:sql{call
12063: paf(:a)}[ $.bind[ $.a[2]
12064: ] ] output variables work. todo: check in out
12065: variables
12066:
12067: 2004-06-18 paf
12068:
12069: * src/: classes/file.C, classes/hash.C, classes/string.C,
12070: classes/table.C, classes/void.C, include/pa_globals.h,
12071: include/pa_sql_connection.h, main/compile.tab.C,
12072: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
12073: $.bind[ $.a[2] ]
12074: ] input variables work. todo:output
12075:
12076: * src/targets/cgi/parser3.C: bugfix: iis specific
12077: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
12078: /_bug.html?404;http://hpsv/test/
12079: --------------------------------------------------------------------------------
12080: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
12081: --------------------------------------------------------------------------------
12082: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
12083:
12084: 2004-06-16 paf
12085:
12086: * src/targets/cgi/parser3.C: new: iis specific
12087: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
12088: $request:query
12089: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
12090: $form:fields IIS-STATUS="404"
12091: IIS-DOCUMENT="http://server/_bug.html" f="v"
12092:
12093: todo: isapi too
12094:
12095: 2004-05-26 paf
12096:
12097: * src/include/pa_version.h: 3.1.3
12098:
12099: * operators.txt: beauty: removed outdated level 'table'
12100:
12101: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
12102:
12103: * src/main/pa_string.C: beauty: removed 3 warnings
12104:
12105: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
12106: classes/op.C: beauty: removed outdated level 'table'
12107:
12108: 2004-05-25 paf
12109:
12110: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
12111: implementation. mistery: how anything worked
12112:
12113: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
12114: changed, it is now safe to use url if pointers to it are stored
12115: to gc mem
12116:
12117: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
12118: unknown errors reported and not cause SIGSEGV now
12119:
12120: 2004-05-24 paf
12121:
12122: * src/: include/pa_string.h, lib/cord/cordbscs.c,
12123: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
12124: less memory: CORD_chars_block originally intended to ... it was
12125: good that CORD_chars_block were not used: it consumes more memory
12126: [and, might be slow too] undoing that. [and removed that func so
12127: that it would not confuse parser developer in future]
12128:
12129: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
12130: less memory: CORD_chars_block originally intended to
12131: speedup/reduce mem usage were forgotten, and were used stupid
12132: CORD_chars
12133:
12134: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
12135:
12136: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
12137: BIGENDIAN processors space-conserving mech failed, causing
12138: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
12139: (1|2|3));
12140:
12141: 2004-05-14 paf
12142:
12143: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
12144: bugfix: void now has vfile value, and $response:body[] works OK
12145:
12146: 2004-05-12 paf
12147:
12148: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
12149: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
12150: sources to use is_defined() {return as_bool();} along VBool
12151:
12152: 2004-05-11 paf
12153:
12154: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
12155: referencing to local objects
12156:
12157: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
12158: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
12159: left intact
12160:
12161: 2004-04-15 paf
12162:
12163: * src/classes/date.C: merged: beauty: unused var removed
12164:
12165: * src/classes/date.C: beauty: unused var removed
12166:
12167: * src/include/: pa_exec.h: bugfix: interface without pointer
12168: provoked bug
12169:
12170: 2004-04-09 paf
12171:
12172: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
12173:
12174: * src/types/pa_vform.C: bugfix: form:imap were incorrect
12175:
12176: 2004-04-08 paf
12177:
12178: * src/classes/date.C: new: ^date::create[y-m-d
12179: h-M-s>>.milliseconds<<] now allowed, ignored so far
12180:
12181: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
12182:
12183: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
12184: to consult default catalog [usually, that file belongs to other
12185: user/group]
12186:
12187: 2004-04-06 paf
12188:
12189: * src/main/pa_common.C: beauty: gcc warning removed
12190:
12191: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
12192: accept that trick, trying other
12193:
12194: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
12195: explicit result problem
12196:
12197: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
12198: explicit result problem
12199:
12200: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
12201: explicit result problem
12202:
12203: * operators.txt, src/classes/string.C: new: ^string.append[string]
12204:
12205: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
12206: main/execute.C: attempt_check_call_in_explicit_result_mode:
12207: failed
12208:
12209: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12210: http://i.p.a.ddress gethostbyaddr added [on some platforms
12211: gethostbyname failed with such 'domains'] now checked properly,
12212: were: needless reverse/forward dns lookup
12213:
12214: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
12215: http://i.p.a.ddress gethostbyaddr added [on some platforms
12216: gethostbyname failed with such 'domains'] now checked properly,
12217: were: needless reverse/forward dns lookup
12218:
12219: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
12220: @method[][result] means "no string output here" moved to lexical
12221: level [on grammar level it were too difficult]
12222:
12223: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
12224: src/main/compile.y, src/main/compile_tools.h,
12225: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
12226: @method[][result] means "no string output here", implemented part
12227: of that idea: compiler throws away string literal generation
12228: code. and barks nonwhitespace chars
12229:
12230: * operators.txt: truth: removed comment about $ORIGIN
12231:
12232: 2004-04-05 paf
12233:
12234: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
12235: src/include/pa_version.h, src/main/pa_common.C,
12236: src/targets/isapi/parser3isapi.C: merged with 3.1.3
12237:
12238: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
12239: Konstantin Tomashevitch [mailto:konst@design.ru]
12240:
12241: * src/doc/html2chm.cmd: beauty: no need in bg here
12242:
12243: * src/doc/sources2html.cmd: beauty: same window, in bg it
12244: interfered with FAR console
12245:
12246: * configure, configure.in: 3.1.3
12247:
12248: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
12249:
12250: * src/main/pa_common.C: removed warning
12251:
12252: * src/include/pa_version.h: 3.1.3
12253:
12254: 2004-04-02 paf
12255:
12256: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
12257:
12258: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
12259: allows to specify where to put parser log file
12260:
12261: 2004-04-01 paf
12262:
12263: * src/classes/table.C: bugfix: bugfix: table::load last line
12264: without tab and enter were ignored
12265:
12266: * src/: include/pa_cache_managers.h, include/pa_globals.h,
12267: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
12268: main/pa_socks.C, targets/cgi/parser3.C,
12269: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
12270: bugfix: sql connections now are disconnected
12271:
12272: 2004-03-30 paf
12273:
12274: * src/classes/table.C: bugfix: table::load last line without tab
12275: and enter were ignored
12276:
12277: * src/classes/table.C: bufix: if last table lines were commented,
12278: gpfed
12279:
12280: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
12281: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
12282: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
12283: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
12284: doc/methoded.dox, doc/object.dox, doc/string.dox,
12285: doc/targets.dox, doc/value.dox, include/pa_version.h,
12286: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
12287: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
12288: bugfixes from 3.1.2, changed version to 3.1.3beta
12289:
12290: 2004-03-29 paf
12291:
12292: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
12293: causes gpf
12294:
12295: * src/doc/: ClassExample1.dox, ClassExample2.dox,
12296: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
12297: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
12298: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
12299: value.dox: translated to english
12300:
12301: 2004-03-25 paf
12302:
12303: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
12304: parser3project dependency removed
12305:
12306: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
12307: bugfix: refused to compile without xml
12308:
12309: * src/types/pa_vform.C: beauty: removed warning
12310:
12311: * src/classes/classes.vcproj: merged bugfix: now all compiles in
12312: any folder [removed last ;) folder dependency]
12313:
12314: * src/classes/classes.vcproj: bugfix: now all compiles in any
12315: folder [removed last ;) folder dependency]
12316:
12317: * src/include/pa_version.h: release
12318:
12319: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
12320:
12321: * src/classes/table.C: beauty: comment& more meaningful error
12322: message
12323:
12324: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
12325: $.hash[$.column_value1(true) ... ] [were producing some strang
12326: thing]
12327:
12328: 2004-03-23 paf
12329:
12330: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
12331: and http status line parsing checked number of columns in table
12332: [user reported an assert]
12333:
12334: * operators.txt: example: on hashfile
12335:
12336: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
12337: bugfix: junction reattach now actually reattaches a junction to
12338: new wcontext [were only assigning it to junction, which caused
12339: junction tracking to loose junction, and it's context were not
12340: killed, and it tried to process in invalid context, gpf]
12341:
12342: * src/targets/cgi/parser3.C: debug helper added
12343:
12344: 2004-03-19 paf
12345:
12346: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
12347: "type(type)" in braces
12348:
12349: 2004-03-10 paf
12350:
12351: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
12352: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
12353: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
12354: solution to search-in-namespaces problem:
12355: $xdoc.search-namespaces.x[http://pif.design.ru/]
12356: $nodes[^xdoc.select[//x:second]]
12357:
12358: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
12359: expression][[NAMESPACES HASH]] allows to search for info in
12360: namespaces
12361:
12362: $nodes[^xdoc.select[//x:second][
12363: $.x[http://pif.design.ru/] ]]
12364:
12365: 2004-03-09 paf
12366:
12367: * operators.txt, src/main/pa_common.C: new:
12368: ^file::load[...][options] $.form[
12369: !$.field1[string]
12370: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
12371: ] !$.body[string]
12372:
12373: GET ?here notGET(POST, HEAD, others) in content-type:
12374: application/x-www-form-urlencoded
12375:
12376: todo: upload files ability
12377:
12378: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12379: properly, done
12380:
12381: 2004-03-05 paf
12382:
12383: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12384: GET/POST $.form[$.fields started, not tested yet
12385: todo:$.field[table] for multiple values
12386:
12387: * operators.txt: new: http:// options $.user $.password basic
12388: authorization
12389:
12390: * src/main/pa_common.C: beauty: link to rtf added
12391:
12392: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12393: new: http:// options $.user $.password basic authorization
12394:
12395: * src/main/pa_common.C: beauty: removed needless vars
12396:
12397: * operators.txt: new: pgsql option [like that recently added to
12398: oracle driver] ClientCharset=parser-charset <<
12399: charset in which parser thinks client works
12400:
12401: * operators.txt: new: odbc option [like that recently added to
12402: oracle driver] ClientCharset=parser-charset <<
12403: charset in which parser thinks client works
12404:
12405: * src/sql/pa_sql_driver.h: beauty: important warning added
12406:
12407: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12408: char!
12409:
12410: * etc/parser3.charsets/windows-1251.cfg: typo
12411:
12412: 2004-03-04 paf
12413:
12414: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12415: cached, sql transcoding now goes faster
12416:
12417: * operators.txt: new: mysql option [like that recently added to
12418: oracle driver] ClientCharset=parser-charset <<
12419: charset in which parser thinks client works
12420:
12421: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12422: typo error
12423:
12424: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12425: chars commented
12426:
12427: 2004-03-03 paf
12428:
12429: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12430: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12431:
12432: 2004-03-02 paf
12433:
12434: * operators.txt: new[update typo]: !^void.left(n)
12435: nothing !^void.right(n) nothing !^void.mid(p[;n])
12436: nothing
12437:
12438: * operators.txt, src/classes/void.C: new: !^void.left(n)
12439: nothing !^void.right(n) nothing !^void.pos(p[;n])
12440: nothing
12441:
12442: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
12443: ^file::sql[[name_to_become_$.name]]{} query result must be one
12444: row with columns: first: data second: file name third:
12445: content-type
12446:
12447: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
12448: ^connect gets properly escaped string, which can be passed to
12449: request now this for mysql only. it's up to parser sql driver to
12450: fix zeros properly
12451:
12452: * INSTALL: note: added on building apache with this option:
12453: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
12454:
12455: 2004-03-01 paf
12456:
12457: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
12458: extension memory:compact befor processingrequest
12459:
12460: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
12461: call sole column of result
12462:
12463: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
12464: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
12465: pixel color
12466:
12467: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
12468: beauty: image -- less checks [were ugly impl]
12469:
12470: * src/classes/string.C: bugfix: ^string.left/right/mid with
12471: negative values now considered bad
12472:
12473: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
12474:
12475: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
12476: options now have unified defaults [after transform
12477: indent/omit-xml-declaration/standalone 'default' erroreously
12478: meant 'true']
12479:
12480: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
12481: added [on some platforms gethostbyname failed with such
12482: 'domains']
12483:
12484: * src/include/pa_config_auto.h.in: no select check, no define
12485:
12486: * src/classes/string.C: feature: ^string.trim both parameters may
12487: be empty-strings, meaning kind=both chars=whitespaces
12488:
12489: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
12490: exist
12491:
12492: * src/classes/string.C: check: trim 'chars' must not be empty,
12493: exception if it is
12494:
12495: * src/classes/string.C: changed: ^string.trim [] << both,
12496: whitespaces [start|both|end] << kind, whitespaces
12497: [start|both|end;chars] full
12498:
12499: 2004-02-27 paf
12500:
12501: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
12502: method: ^string.trim[start|both|end[;chars]] default
12503: 'chars' -- whitespace chars finished
12504:
12505: * operators.txt, src/classes/string.C, src/include/pa_string.h,
12506: src/main/pa_string.C: new method:
12507: ^string.trim[start|both|end[;chars]] default 'chars' --
12508: whitespace chars started, only start works
12509:
12510: * src/main/compile.C: bugfix: line numbers after
12511: ^process{}[$.line(-10]] can be negative, allowed to print they as
12512: signed
12513:
12514: * src/main/untaint.C: speed: there's no \n chars in output
12515: [normally], so no need to optimize them they could be retrived
12516: from databases, though. but 1. should be replaced 2. if not
12517: optimized, no harm done
12518:
12519: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
12520: ^file::exec/cgi could return invalid status & zombie child can
12521: remain for short period until process exists [very bad in
12522: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
12523:
12524: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
12525: malicious SMTP server to attack as by returning too long status
12526: responses http://i2/tasks/edit/?id=4629448401140924947
12527:
12528: 2004-02-26 paf
12529:
12530: * operators.txt: feature: ^process...{CODE}[now has options] which
12531: are $.main[to what to rename @main] $.file[file,
12532: from which (user says) goes that CODE] $.lineno(line
12533: number in that file, where CODE starts. may be negative)
12534:
12535: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12536: src/main/compile.C, src/main/compile_tools.h,
12537: src/main/pa_request.C: feature: ^process...{CODE}[now has
12538: options] which are $.main[to what to rename @main]
12539: $.file[file, from which (user says) goes that CODE]
12540: $.lineno(line number in that file, where CODE starts. may be
12541: negative)
12542:
12543: 2004-02-25 paf
12544:
1.116 moko 12545: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
12546: old @charsetsdir@ recently erased from configure.in]
1.95 moko 12547:
12548: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
12549: produces hash of column=>1
12550:
12551: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
12552: with incomplete errno constants set
12553:
12554: 2004-02-24 paf
12555:
12556: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
12557: "man select"
12558:
12559: * src/main/pa_os.C: beauty: <0 better then ==-1
12560:
12561: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
12562:
12563: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
12564:
1.116 moko 12565: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 12566:
12567: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
12568: unix: steps to work on unix [extracted 'to']
12569:
12570: * src/classes/mail.C: smtp on unix: steps to work on unix
12571:
12572: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
12573:
1.116 moko 12574: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
12575: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
12576: unix [testing on solaris]
1.95 moko 12577:
12578: 2004-02-20 paf
12579:
12580: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
12581: pointing that out
12582:
12583: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
12584: fixed again [same solution, mistanenly removed one line]
12585:
12586: 2004-02-19 paf
12587:
12588: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
12589: date::create from bad datetime in spring daylightsaving hole now
12590: OK for all platforms [on some platforms it failed]
12591:
12592: * src/classes/: date.C, image.C: beauty: date::create[bad date time
12593: in daylightsaving hole] now throws error
12594:
12595: * src/classes/date.C: comment: mistake fixed
12596:
12597: 2004-02-18 paf
12598:
12599: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
12600: now renderes in $request:charset, but in header puts
12601: $response:charset todo: make that default only so that coder
12602: could override that
12603:
12604: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
12605: turns off omit-xml-declaration
12606:
12607: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
12608: /.xsl for sample
12609:
12610: 2004-02-17 paf
12611:
12612: * src/classes/xdoc.C: beauty: needless helper class removed
12613:
12614: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
12615: copied extra time
12616:
12617: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
12618: part of libxml
12619:
12620: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
12621: libxml to do the work] <xsl:output method="html"
12622: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
12623: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12624: />
12625:
12626: * src/classes/xdoc.C: beauty: no <meta ... charset generated
12627:
12628: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
12629: caused assertion
12630:
12631: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
12632: could hang. now such add does nothing, sub clears $hash
12633:
12634: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
12635: not made quoted-printable
12636:
12637: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
12638: string invariant
12639:
12640: 2004-02-16 paf
12641:
12642: * src/main/pa_globals.C: bugfix: xml errors copy from library now
12643: cleared [were not cleared properly]
12644:
12645: 2004-02-13 paf
12646:
1.116 moko 12647: * src/include/pa_version.h: prerelease
1.95 moko 12648:
12649: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
12650: used, introducing dependencies timestamp check
12651:
12652: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12653: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
12654: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
12655: .xsl.stamp now not used, introducing dependencies timestamp check
12656:
1.150 moko 12657: * configure.in: auto.p: @conf made relative
1.95 moko 12658:
12659: 2004-02-12 paf
12660:
12661: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
12662: ruined empty <input type=file> submits. parser thought there were
12663: nameless empty file and $form:field got value of type 'file'
12664:
12665: * INSTALL: --without-threads
12666:
12667: * src/include/pa_sapi.h: 2004
12668:
12669: 2004-02-11 paf
12670:
12671: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12672: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12673: classes/hashfile.C, classes/image.C, classes/int.C,
12674: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12675: classes/response.C, classes/string.C, classes/table.C,
12676: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12677: include/pa_array.h, include/pa_cache_managers.h,
12678: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12679: include/pa_config_fixed.h, include/pa_config_includes.h,
12680: include/pa_dictionary.h, include/pa_dir.h,
12681: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12682: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12683: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12684: include/pa_request_charsets.h, include/pa_request_info.h,
12685: include/pa_socks.h, include/pa_sql_connection.h,
12686: include/pa_sql_driver_manager.h, include/pa_stack.h,
12687: include/pa_string.h, include/pa_stylesheet_connection.h,
12688: include/pa_stylesheet_manager.h, include/pa_table.h,
12689: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12690: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12691: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12692: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12693: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12694: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12695: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12696: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12697: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12698: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12699: main/pa_sql_driver_manager.C, main/pa_string.C,
12700: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
12701: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
12702: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12703: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12704: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12705: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12706: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12707: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12708: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12709: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12710: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12711: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12712: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12713: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12714: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12715: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12716: types/pa_vresponse.h, types/pa_vstateless_class.C,
12717: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12718: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12719: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12720: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12721: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12722: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
12723:
12724: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
12725: debug version of gc.dll
12726:
12727: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12728: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12729: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
12730: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
12731: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
12732: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
12733: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
12734: processes
12735:
12736: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
12737: main/pa_globals.C, targets/cgi/parser3.vcproj,
12738: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
12739: changes to reflect libxml xsl new folders
12740:
12741: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12742: lib/smtp/smtp.vcproj, main/main.vcproj,
12743: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
12744: to reflect libxml xsl new folders
12745:
12746: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12747: lib/smtp/smtp.vcproj, main/main.vcproj,
12748: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
12749: types/types.vcproj: started changes to reflect libxml xsl new
12750: folders
12751:
12752: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
12753: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
12754: src/main/compile.tab.C, src/main/main.vcproj,
12755: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
12756: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12757: started changes to reflect libxml xsl new folders
12758:
12759: 2004-02-10 paf
12760:
12761: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
12762: compile. recommened latest libxml up to date
12763:
12764: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
12765: pattern compilation errors", on which spent 4 hours worktime. use
12766: versions higher than that. recommended now latest up to date
12767:
12768: 2004-02-06 paf
12769:
12770: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
12771: beauty: unified destructing style
12772:
12773: * src/main/untaint.C: beauty: removed old def/ifdef
12774:
12775: * src/main/untaint.C: beauty: coredump @unknown untaint language
12776: now
12777:
12778: 2004-02-03 paf
12779:
12780: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
12781: targets/isapi/parser3isapi.C, types/pa_value.C,
12782: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
12783: then %ld/%lu
12784:
12785: * src/main/pa_common.C: typo: %l -> %u
12786:
12787: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
12788: in attributes or documents-results of transform now not xx;
12789:
12790: * src/classes/xnode.C: memleaks found: not fixed yet. todo
12791:
12792: * src/main/pa_charset.C: bugfix: forgot to undo some
12793:
12794: * src/main/pa_charset.C: beauty: uncomment
12795: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
12796: libraries
12797:
12798: 2004-02-02 paf
12799:
12800: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
12801: $cookie:example[ $.value[value] $.path[/there/] ]
12802:
12803: $cookie:example[ $.value[] $.expires[session]
12804: $.path[/there/] $.domain[test.com] ]
12805:
12806: * src/types/pa_vform.C: bugfix: empty values with
12807: enctype=multipart/form-data now produce entries in $form:tables
12808: <form method=post enctype=multipart/form-data> <input type=hidden
12809: name=a> <input type=hidden name=b>
12810:
12811: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
12812: <hr> <pre>$request:body
12813:
12814: 2004-01-30 paf
12815:
12816: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
12817: or documents-results of transform now not xx;
12818:
12819: * src/classes/date.C: bugfix: ^date::create[invalid fields now
12820: produce exception.
12821:
12822: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
12823: bugfix: ^date::create[invalid fields now produce exception.
12824:
12825: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
12826: year] now produces exception. todo: check other fields
12827:
12828: 2004-01-29 paf
12829:
12830: * src/include/pa_memory.h: typo error
12831:
12832: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
12833: more byte then specified, then zeroed it << useless and
12834: potentially harmful(could gpf)
12835:
12836: 2004-01-22 paf
12837:
12838: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
12839:
12840: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
12841: optimization
12842:
12843: * src/main/untaint.C: bugfix: whitespace now optimized properly
12844: [were bug: ^taint[1 & 2]="1 &2"
12845:
12846: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
12847: errors
12848:
12849: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
12850: overflow
12851:
12852: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
12853: error-reporting code * in parser-error reporting code [when no
12854: @unhandled_exception defined]
12855:
12856: fixed in one place: my *snprintf override
12857:
12858: 2004-01-13 paf
12859:
12860: * operators.txt: typo erro
12861:
12862: 2003-12-25 paf
12863:
12864: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
12865: garbled [pieces after zero bytes were removed]
12866:
12867: 2003-12-22 paf
12868:
1.116 moko 12869: * src/include/Makefile.am: bugfix: removed from dist:
12870: src/include/pa_config_auto.h which were configured for
1.95 moko 12871: make-dist-platform and badly updated proper config file in target
12872: [when .tar used for updating existing source tree]
12873:
12874: * ChangeLog, operators.txt, src/classes/op.C,
12875: src/include/pa_sql_connection.h,
12876: src/include/pa_sql_driver_manager.h,
12877: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
12878: feature: sql introducing ability to transcode charsets
12879:
12880: 2003-12-19 paf
12881:
12882: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
12883: error message
12884:
12885: * src/main/pa_charset.C: bugfix: memory for charsethandler
12886: structure for libxml now allocated properly
12887:
12888: 2003-12-17 paf
12889:
12890: * src/types/pa_vfile.C: beauty: removed outdated cast
12891:
12892: * src/main/pa_common.C: bugfix: empty http response caused gpf
12893:
12894: * src/include/pa_string.h: bugfix: removed too strong a assert
12895:
12896: * src/main/pa_globals.C: bugfix: removed false warning [warning:
12897: unreported xmlGenericErrors]
12898:
12899: 2003-12-15 paf
12900:
12901: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
12902: works}
12903:
12904: 2003-12-11 paf
12905:
12906: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
12907: id
12908: !$status:tid thread id
12909:
12910: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
12911: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
12912: bugfix(solaris): removed dependency on object initialization
12913: order [one more place]
12914:
12915: * src/: classes/file.C, classes/mail.C, classes/op.C,
12916: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
12917: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
12918: understand that
12919:
12920: * src/: classes/file.C, classes/mail.C, classes/op.C,
12921: classes/xdoc.C, include/pa_cache_managers.h,
12922: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12923: include/pa_stylesheet_manager.h, main/pa_request.C,
12924: main/pa_stylesheet_manager.C, types/pa_vimage.C,
12925: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
12926: ctor call [relying on implicit String::Body(cstr) call]
12927:
12928: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
12929: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
12930: object initialization order [two places]
12931:
12932: 2003-12-10 paf
12933:
12934: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
12935: << time now ok
12936:
12937: * operators.txt, src/main/pa_sql_driver_manager.C,
12938: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
12939: operational
12940:
12941: * ChangeLog, operators.txt, src/classes/xdoc.C,
12942: src/include/pa_charset.h, src/include/pa_sql_connection.h,
12943: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
12944: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
12945: back operational
12946:
12947: 2003-12-02 paf
12948:
12949: * src/types/pa_vmail.C: bugfix:
12950: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
12951: as-is forced]
12952:
12953: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
12954: exceptions out of libxml callbacks: reimplemented error handling
12955: of http://localhost, parser://method and safemode check callbacks
12956:
12957: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
12958: [merged from HEAD]
12959:
12960: * src/classes/image.C: nothing: comment removed
12961:
12962: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
12963: addresses to int
12964:
12965: 2003-12-01 paf
12966:
12967: * src/main/pa_xml_io.C: bugfix: typo
12968:
12969: * src/main/pa_globals.C: bugfix: win32: compile prob
12970:
12971: * src/classes/xdoc.C: bugfix: typo
12972:
12973: * src/main/pa_xml_io.C: todo: safe mode check not to throw
12974: exception
12975:
12976: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
12977:
12978: 2003-11-28 paf
12979:
12980: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
12981: all xml documents read
12982:
12983: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
12984:
12985: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12986: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
12987: replaced original open mech of xdoc::create & co to use libxml
12988: open, so that this would work for root document todo: safe mode
12989: checks to libxml: ideally to some 1 point
12990:
12991: * src/main/pa_xml_io.C: comment
12992:
12993: * operators.txt, src/main/pa_xml_io.C: leading / in
12994: http://parser[abscent params]
12995:
12996: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
12997: works. todo: maybe replace original open mech of xdoc::create &
12998: co to use libxml open, so that this would work for root document
12999:
13000: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
13001: "parser://method/params/here"> <test> &test^; </test> }]
13002:
13003: ^taint[^xdoc.string[]]
13004:
13005: @method[param] <!ENTITY test
13006: "test-entity-value+$form:user+$param!">
13007:
13008: 2003-11-27 paf
13009:
13010: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
13011:
13012: * src/classes/date.C: bugfix: typo error
13013:
13014: 2003-11-26 paf
13015:
13016: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
13017: src/main/Makefile.am, src/main/main.vcproj,
13018: src/main/pa_globals.C, src/main/pa_request.C,
13019: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
13020: xml errors to hash<thread_id,error> reorganization: xml io moved
13021: to pa_xml_io.C/h
13022:
13023: * src/types/pa_value.h: warnings: --
13024:
13025: 2003-11-25 paf
13026:
13027: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
13028: whatever)
13029:
13030: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
13031: a, (c?x:y, z)
13032:
13033: * src/main/untaint.C: bugfix: consequences of not reading this
13034: comment: CORD_pos_chars_left /* Number of characters in cache.
13035: <= 0 ==> none */
13036:
13037: * src/include/pa_array.h: removed needless checks
13038:
13039: 2003-11-24 paf
13040:
13041: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
13042: removed limit: now $form:xxx can be accessed anytime, even in
13043: @auto/conf [and request/response:charset still can be changed
13044: anytime]
13045:
13046: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
13047: now not transcodes response body
13048:
13049: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
13050: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
13051: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
13052: $xdoc.firstChild.firstChild.nodeValue[different]
13053: ^taint[^xdoc.string[]]
13054:
13055: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
13056: workaround: static Hash::allocates -> static Hash_allocates
13057:
13058: 2003-11-21 paf
13059:
1.116 moko 13060: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
13061: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
13062: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 13063:
13064: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
13065:
13066: * src/classes/mail.C: bugfix: typo
13067:
13068: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 13069: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
13070: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
13071: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
13072: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 13073: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
13074:
13075: * src/main/pa_exec.C: bug in safe mode
13076:
13077: * src/include/Makefile.am: pa_xml_exception.h
13078:
13079: * src/targets/isapi/parser3isapi.C: more warnings --
13080:
13081: 2003-11-20 paf
13082:
13083: * src/: classes/math.C, classes/op.C, classes/string.C,
13084: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
13085: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
13086: --
13087:
13088: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
13089: more warnings --
13090:
13091: * src/classes/xdoc.C: more warnings --
13092:
13093: * src/classes/: date.C, image.C, xdoc.C: more warnings --
13094:
13095: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
13096: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
13097:
13098: * src/: classes/date.C, classes/file.C, classes/hash.C,
13099: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
13100: classes/table.C, include/pa_cache_managers.h,
13101: include/pa_stylesheet_connection.h, main/pa_request.C,
13102: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
13103: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
13104: --
13105:
13106: * src/main/: execute.C, pa_request.C: old forgotten todo: when
13107: can't report problem (undefined @unhandled_exception) problem
13108: source string were not reported
13109:
13110: * src/: classes/classes.C, classes/classes.h, classes/date.C,
13111: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
13112: classes/hashfile.C, classes/image.C, classes/int.C,
13113: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
13114: classes/response.C, classes/string.C, classes/table.C,
13115: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
13116: include/pa_array.h, include/pa_cache_managers.h,
13117: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
13118: include/pa_config_fixed.h, include/pa_dictionary.h,
13119: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
13120: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
13121: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
13122: include/pa_request.h, include/pa_request_charsets.h,
13123: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
13124: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
13125: include/pa_stack.h, include/pa_string.h,
13126: include/pa_stylesheet_connection.h,
13127: include/pa_stylesheet_manager.h, include/pa_table.h,
13128: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
13129: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
13130: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
13131: main/compile_tools.C, main/compile_tools.h, main/execute.C,
13132: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
13133: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
13134: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
13135: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
13136: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
13137: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
13138: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
13139: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
13140: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
13141: targets/isapi/parser3isapi.C, types/pa_junction.h,
13142: types/pa_method.h, types/pa_value.C, types/pa_value.h,
13143: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
13144: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
13145: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
13146: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
13147: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
13148: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
13149: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
13150: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
13151: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
13152: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
13153: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
13154: types/pa_vresponse.h, types/pa_vstateless_class.C,
13155: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
13156: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
13157: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
13158: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
13159: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
13160: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
13161: const IDENT
13162:
13163: * src/: include/pa_array.h, include/pa_pool.h,
13164: include/pa_request.h, include/pa_string.h, include/pa_table.h,
13165: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
13166: types/pa_wcontext.h: more warnings --
13167:
13168: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
13169: classes/file.C, classes/hash.C, classes/hashfile.C,
13170: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
13171: classes/memory.C, classes/op.C, classes/string.C,
13172: classes/table.C, classes/xdoc.C, classes/xnode.C,
13173: include/pa_config_includes.h, include/pa_operation.h,
13174: include/pa_sql_connection.h, include/pa_table.h,
13175: include/pa_types.h, lib/ltdl/config_fixed.h,
13176: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
13177: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
13178: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
13179: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
13180: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
13181: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
13182: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
13183: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
13184: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
13185: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
13186: types/pa_vmail.C, types/pa_vobject.C,
13187: types/pa_vstateless_class.h, types/pa_vtable.C,
13188: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
13189: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
13190: on all projects (except libltdl=off & libsdbm=level3) found
13191: several unitialized vars
13192:
13193: 2003-11-19 paf
13194:
13195: * src/classes/op.C: more ansi C++ comp
13196:
13197: * operators.txt, src/classes/op.C, src/include/pa_request.h,
13198: src/main/pa_request.C: ^cache[...]{body}{catch block with
13199: $exception.handled[cache] meaning "get expired cache, if any.
13200: else error"}
13201:
13202: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
13203: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
13204: ^cache[...]{body}{catch code with $exception.cache field}
13205:
13206: 2003-11-12 paf
13207:
13208: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
13209: [copy/paste bug]
13210:
13211: 2003-11-11 paf
13212:
13213: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
13214: failed]
13215:
13216: 2003-11-10 paf
13217:
13218: * src/types/pa_vconsole.h: flush
13219:
13220: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
13221: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
13222: read/write [for nntp]
13223:
13224: * operators.txt: mysql: transaction support: ?autocommit=0
13225:
13226: * operators.txt: comment: updated
13227:
13228: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
13229: serialize version and exipire now removes entries
13230:
13231: * operators.txt: ^hashfile.delete[] removes files altogether [and
13232: dir, if could]
13233:
13234: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
13235: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
13236: removes files altogether [and dir, if could]
13237:
13238: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
13239: nonexistent pair. .c coded that that was error. fixed
13240:
13241: * src/types/pa_vhashfile.C: sdbm: exception type change to
13242: file.access [regretfull can't split it to different exceptions
13243: without modifying sdbm source wich would prefer not to]
13244:
13245: 2003-11-07 paf
13246:
13247: * src/: classes/date.C, classes/file.C, classes/hash.C,
13248: classes/hashfile.C, classes/image.C, classes/table.C,
13249: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
13250: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
13251: main/execute.C, main/main.vcproj, main/pa_pool.C,
13252: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
13253: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
13254: types/pa_vstateless_class.h: resurrected: pool idea. now only for
13255: destructing objects at request processing end
13256:
13257: 2003-11-06 paf
13258:
13259: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
13260: updates
13261:
13262: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
13263: to include sdbm
13264:
1.116 moko 13265: * src/include/: pa_config_includes.h, pa_version.h: our
13266: replacements of max& co only for cpp
1.95 moko 13267:
13268: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
13269: upper dir, .am updated
13270:
13271: * tests/todo.txt: hashfile: done
13272:
13273: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
13274: expiration [time in value. todo: move time to key]
13275:
13276: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
13277:
13278: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
13279: to do that in foreach, no errors, but surely wrong]
13280:
13281: * operators.txt, src/types/pa_vhashfile.C,
13282: src/types/pa_vhashfile.h: hashfile: clear and proper locking
13283:
13284: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
13285: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
13286: foreach
13287:
13288: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
13289: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
13290:
13291: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
13292: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
13293:
13294: * src/: include/pa_memory.h, targets/cgi/parser3.C,
13295: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
13296: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
13297: get/put [raw]
13298:
13299: * src/: classes/op.C, main/pa_os.C: just linked
13300:
13301: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
13302: XmlException changes
13303:
13304: * src/: include/pa_charset.h, include/pa_globals.h,
13305: include/pa_stylesheet_connection.h, main/pa_exception.C:
13306: XmlException changes
13307:
13308: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
13309:
13310: * src/: include/pa_common.h, include/pa_exception.h,
13311: main/main.vcproj, main/pa_common.C, include/pa_os.h,
13312: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
13313: main/pa_xml_exception.C: locking move to pa_os [along with
13314: pa_sleep] apr-impl locking done
13315:
13316: * configure, configure.in, operators.txt, parser3.sln,
13317: src/classes/classes.vcproj, src/classes/hashfile.C,
13318: src/classes/xdoc.C, src/include/pa_config_fixed.h,
13319: src/include/pa_exception.h, src/include/pa_globals.h,
13320: src/include/pa_memory.h, src/include/pa_version.h,
13321: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
13322: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
13323: src/main/compile.tab.C, src/main/main.vcproj,
13324: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
13325: src/types/Makefile.am, src/types/pa_vhash.C,
13326: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
13327: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
13328: again with sdbm from apache
13329:
13330: 2003-11-05 paf
13331:
13332: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13333: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
13334: \parser3project dir anymore
13335:
13336: * src/main/pa_charset.C: bugfix: had broken binary search [copied
13337: thoughtlessly from xalan]
13338:
13339: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
13340: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
13341: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
13342:
13343: * src/main/helpers/CaseFolding.txt:
13344: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
13345:
13346: 2003-11-04 paf
13347:
13348: * operators.txt: comment: ^mail:send[$.options[
13349:
13350: * src/classes/table.C: compiled on unix
13351:
1.116 moko 13352: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 13353:
13354: * src/classes/mail.C: compiled on unix
13355:
13356: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
13357: src/types/pa_vmail.h: !^mail:send[
13358: $.options[unix: string to append to sendmail command
13359: line]
13360:
13361: * operators.txt, src/classes/table.C, src/main/pa_string.C,
13362: tests/todo.txt: ^table.save[... $.separator[^#09]
13363: $.encloser["] <nothing> by default
13364:
13365: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
13366: !$.separator[^#09] !$.encloser["] <nothing> by
13367: default
13368:
13369: 2003-11-03 paf
13370:
13371: * operators.txt, src/classes/table.C, src/main/pa_common.C:
13372: ^table::load[; options: !$.column-separator[^#09]
13373: !$.column-encloser["]
13374:
13375: * operators.txt, src/include/pa_config_fixed.h,
13376: src/types/pa_vrequest.C: $request:document-root
13377:
13378: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13379: [already included into uri=xxx]
13380:
13381: * operators.txt, src/classes/image.C, tests/todo.txt:
13382: ^image.gif[filename] for $response:download
13383:
13384: * src/classes/date.C: minor precaution
13385:
13386: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13387: !^date.unix-timestamp[]
13388:
13389: 2003-10-30 paf
13390:
13391: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13392: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13393:
13394: * src/classes/: date.C, image.C: improvement diagnostics:
13395: $now[^date::create[$undefined]] now is error
13396:
13397: * src/main/pa_common.C: read errors would now be reported 'actually
13398: read -1 bytes'
13399:
13400: 2003-10-24 paf
13401:
13402: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13403: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13404: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13405: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13406:
13407: 2003-10-22 paf
13408:
13409: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13410:
13411: 2003-10-21 paf
13412:
13413: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13414: fixed: string.match[g] without <'> option produced columns with
13415: NULL's, which gpf'ed at table.save time
13416:
13417: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13418: recoursion' message with intensive throw-catches fixed: incorrect
13419: name and line (one name upper then needed) in error message about
13420: problems inside try block
13421:
13422: 2003-10-10 paf
13423:
13424: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13425: check offset argument for validity did that in String::Body::pos
13426: myself http://i2/tasks/edit/?id=4577425257580789777
13427:
13428: 2003-10-07 paf
13429:
13430: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13431: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13432:
13433: 2003-10-03 paf
13434:
13435: * parser3.sln, src/include/pa_dictionary.h,
13436: src/main/pa_dictionary.C, src/main/pa_string.C,
13437: src/targets/cgi/parser3.vcproj: dictionary optimized by
13438: precalculating cstr&length
13439:
13440: 2003-10-02 paf
13441:
13442: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13443: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13444: main/pa_stylesheet_manager.C: bugfix: ^throw context were
13445: saved/restored incompletely http://www.parser.ru/forum/?id=21484
13446:
13447: 2003-09-30 paf
13448:
13449: * src/main/pa_string.C: string::replace bug fix [were ignoring
13450: occurrances after lang-mismatched
13451:
13452: 2003-09-29 paf
13453:
13454: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
13455: helper
13456:
13457: * src/main/pa_string.C: string::serialize bug fix with
13458: zero-terminator
13459:
13460: * src/classes/table.C: ^nameless_table.save column row now has no
13461: \t at the end
13462:
13463: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13464: @postprocess now takes $response:body/download
13465:
13466: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
13467: error message
13468:
13469: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
13470:
13471: * src/classes/table.C: bugfix: flip: must produce nameless
13472: http://i2/tasks/edit/?id=4573405524674081244
13473:
13474: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
13475: main/helpers/simple_folding.pl: utf-8 upper/lower
13476:
13477: * src/main/pa_common.C: bugfix: utf signature were not ignored due
13478: to typo error http://i2/tasks/edit/?id=4573354650786434584
13479:
13480: 2003-09-26 paf
13481:
13482: * src/main/untaint.C: removed needless field
13483:
13484: * src/main/untaint.C: removed needless const
13485:
13486: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
13487: String.for_each bug fixed [omited one-char cases]
13488:
13489: * src/include/pa_stack.h: bugfix: before collecting garbage,
13490: runtime-executor stack were cleared... BADLY
13491:
13492: * src/main/pa_string.C: ^stirng.replace code used old
13493: param-convention on langs.append, fixed that search fo the like,
13494: found none
13495:
13496: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
13497: string::serialize/deserialize implemented Language enum assigned
13498: meaningful letters [more convinient for debugging. read warning
13499: before adding/changing anything]
13500:
13501: 2003-09-25 paf
13502:
13503: * src/: include/pa_string.h, include/pa_version.h,
13504: main/pa_string.C, main/untaint.C: templates and anonymous unions
13505: differences on unix
13506:
13507: * parser3.sln, src/classes/file.C, src/classes/image.C,
13508: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
13509: src/classes/xdoc.C, src/classes/xnode.C,
13510: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13511: src/include/pa_charsets.h, src/include/pa_common.h,
13512: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
13513: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
13514: src/include/pa_table.h, src/lib/cord/cordbscs.c,
13515: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
13516: src/lib/cord/include/cord.h, src/main/compile.tab.C,
13517: src/main/compile_tools.h, src/main/pa_charset.C,
13518: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
13519: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13520: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
13521: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
13522: src/types/pa_vmail.C, src/types/pa_vmath.C,
13523: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
13524: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
13525:
13526: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
13527: functions aligned to that of eeparser3 look
13528:
13529: * src/lib/cord/cordprnt.c: removed warnings
13530:
13531: 2003-09-24 paf
13532:
13533: * src/: classes/file.C, classes/image.C, classes/mail.C,
13534: classes/op.C, classes/xdoc.C, classes/xnode.C,
13535: include/pa_cache_managers.h, include/pa_charset.h,
13536: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
13537: include/pa_sql_driver_manager.h, include/pa_string.h,
13538: include/pa_stylesheet_manager.h, include/pa_table.h,
13539: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
13540: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
13541: main/pa_sql_driver_manager.C, main/pa_string.C,
13542: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
13543: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
13544: types/pa_vstateless_class.h, types/pa_vstatus.C,
13545: types/pa_vxnode.C: v() functions of String::Body,
13546: String::Languages and String itself StringBody->String::Body
13547:
13548: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13549: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
13550: never optimized anything. todo: somehow speed up harder cases:
13551: concatenationA+concatenationB when last block of A and first of B
13552: contain same letters
13553:
13554: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13555: lib/cord/include/cord.h: langs: speed up by joining adjucent
13556: blocks of same char [CORD_append_block]
13557:
13558: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13559: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
13560: save space by extending blocks when appending block with c ==
13561: lastblock.c
13562:
13563: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
13564: working yet :( but more working &understood :)
13565:
13566: * src/: classes/table.C, include/pa_string.h,
13567: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
13568:
13569: 2003-09-23 paf
13570:
13571: * src/main/untaint.C: $a[ok!] $a works!
13572:
13573: * src/main/untaint.C: something even more works :)
13574:
13575: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13576: something more works :)
13577:
13578: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13579: lib/cord/cordxtra.c: something already works :)
13580:
13581: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
13582: serialize&deserialize
13583:
13584: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
13585: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
13586: main/untaint.C: main idea implemented, details left
13587:
13588: 2003-09-22 paf
13589:
13590: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
13591:
13592: * src/classes/xnode.C: copy/paste comment bugfix
13593:
13594: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
13595: allocator returns 0, just die.
13596: http://i2/tasks/edit/?id=4570798492410259445
13597:
13598: * src/classes/xdoc.C: copy/paste comment bugfix
13599:
13600: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
13601: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
13602: xnode: getAttributeNS setAttributeNS removeAttributeNS
13603: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
13604:
13605: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
13606: chars due to bitwise operation signed-char error]
13607:
13608: 2003-09-19 paf
13609:
13610: * src/types/pa_wcontext.C: output message: more practical
13611: suggestion
13612:
13613: * src/main/pa_common.C, operators.txt: merged
13614: $f[^file::load[binary;http://...]] $f.tables
13615:
13616: 2003-09-02 paf
13617:
13618: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
13619: flush stdout without referencing 'stdout' symbol. to hell with
13620: non-ansi libraries without 'stdout' symbol
13621:
13622: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
13623: unix (users reported problems with some old libc)
13624:
13625: * src/types/pa_vdate.h: forgot initializer
13626:
13627: 2003-09-01 paf
13628:
13629: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
13630: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
13631: zone]
13632:
13633: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
13634:
13635: 2003-08-19 paf
13636:
13637: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
13638: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
13639: simplified a little
13640:
13641: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
13642: [lost fix from 3.0.8]
13643:
13644: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
13645: visible here }
13646:
13647: bug fix
13648:
13649: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
13650:
13651: * src/main/compile.tab.C: initialized couple of variables about
13652: which user reported runtime problems when parser were compiled
13653: with VC7, warning level4. study shows that later in bison
13654: they've fixed that. would migrate to latest bison someday
13655:
13656: * src/types/pa_vmail.C: turned off recoding in gmime (were still
13657: recoding headers)
13658:
13659: * src/types/pa_vmail.C: works as before, same charset problems:
13660: gmime recodes to UTF-8 only headers, not body. so not recoding
13661: anything for now
13662:
13663: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
13664: problems with body
13665:
13666: * src/types/pa_vmail.C: mail_receive just compiled
13667:
13668: 2003-08-18 paf
13669:
13670: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13671: main/main.vcproj, types/types.vcproj: win32: continued process
13672: detaching from \parser3project directory
13673:
13674: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
13675: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
13676: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
13677: src/lib/pcre/pcre_dftables.dsp,
13678: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
13679: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
13680: src/types/types.dsp: moved to MSVC 7
13681:
13682: * gnu.vcproj.vspscc, parser3.vssscc,
13683: src/classes/classes.vcproj.vspscc,
13684: src/lib/cord/cord.vcproj.vspscc,
13685: src/lib/ltdl/libltdl.vcproj.vspscc,
13686: src/lib/md5/md5.vcproj.vspscc,
13687: src/lib/pcre/pcre_dftables.vcproj.vspscc,
13688: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
13689: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
13690: src/targets/isapi/parser3isapi.vcproj.vspscc,
13691: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
13692: moved to MSVC 7
13693:
13694: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
13695: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
13696: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
13697: src/lib/pcre/pcre_dftables.vcproj,
13698: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
13699: src/targets/cgi/parser3.vcproj,
13700: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13701: new VS project files
13702:
13703: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
13704: .NET to detect Jalindi Igloo capabilities.
13705:
13706: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 13707: src/classes/classes.awk, src/doc/footer.htm,
13708: src/include/pa_config_fixed.h, src/include/pa_version.h,
13709: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 13710: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
13711: src/types/pa_vmail.C: merged 3.1.0 latest changes
13712:
13713: 2003-08-15 paf
13714:
13715: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13716: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
13717:
13718: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13719: non-ascii <yyy> now encoded correctly
13720:
13721: 2003-07-29 paf
13722:
1.116 moko 13723: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
13724: dist
1.95 moko 13725:
13726: * src/types/pa_vmail.C: just started --with-mail-receive
13727:
13728: 2003-07-28 paf
13729:
1.116 moko 13730: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
13731: dependence in src/classes, src/lib/gc now in dist
1.95 moko 13732:
13733: * src/main/pa_string.C: ^cache bug fix [were not working at all]
13734:
13735: 2003-07-25 paf
13736:
13737: * src/doc/footer.htm: year
13738:
13739: 2003-07-24 paf
13740:
13741: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
13742: fix
13743:
13744: * src/include/pa_version.h: release
13745:
1.116 moko 13746: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 13747:
13748: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
13749: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
13750: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
13751: getting rid of win32xml pseudo project
13752:
13753: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
13754:
1.116 moko 13755: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
13756: configure.in, operators.txt, parser3.dsw,
1.95 moko 13757: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 13758: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 13759: src/classes/classes.C, src/classes/classes.awk,
13760: src/classes/classes.dsp, src/classes/classes.h,
13761: src/classes/date.C, src/classes/double.C, src/classes/file.C,
13762: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
13763: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13764: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13765: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13766: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13767: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
13768: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 13769: src/include/pa_array.h, src/include/pa_cache_managers.h,
13770: src/include/pa_charset.h, src/include/pa_charsets.h,
13771: src/include/pa_common.h, src/include/pa_config_auto.h.in,
13772: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
13773: src/include/pa_dictionary.h, src/include/pa_dir.h,
13774: src/include/pa_exception.h, src/include/pa_exec.h,
13775: src/include/pa_globals.h, src/include/pa_hash.h,
13776: src/include/pa_memory.h, src/include/pa_opcode.h,
13777: src/include/pa_operation.h, src/include/pa_pool.h,
13778: src/include/pa_pragma_pack_begin.h,
1.95 moko 13779: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
13780: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
13781: src/include/pa_sapi.h, src/include/pa_socks.h,
13782: src/include/pa_sql_connection.h,
13783: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
13784: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
13785: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
13786: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 13787: src/include/pa_uue.h, src/lib/Makefile.am,
13788: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
13789: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
13790: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
13791: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 13792: src/lib/cord/include/ec.h,
13793: src/lib/cord/include/private/Makefile.am,
13794: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 13795: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
13796: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 13797: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 13798: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
13799: src/main/compile_tools.C, src/main/compile_tools.h,
13800: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
13801: src/main/pa_cache_managers.C, src/main/pa_charset.C,
13802: src/main/pa_charsets.C, src/main/pa_common.C,
13803: src/main/pa_dictionary.C, src/main/pa_dir.C,
13804: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 13805: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
13806: src/main/pa_request.C, src/main/pa_socks.C,
13807: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13808: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 13809: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
13810: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
13811: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
13812: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
13813: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
13814: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
13815: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 13816: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
13817: src/targets/isapi/parser3isapi.dsp,
13818: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 13819: src/types/pa_junction.h, src/types/pa_method.h,
13820: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 13821: src/types/pa_vclass.C, src/types/pa_vclass.h,
13822: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
13823: src/types/pa_vcookie.h, src/types/pa_vdate.h,
13824: src/types/pa_vdouble.h, src/types/pa_venv.h,
13825: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
13826: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
13827: src/types/pa_vimage.C, src/types/pa_vimage.h,
13828: src/types/pa_vint.h, src/types/pa_vjunction.h,
13829: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
13830: src/types/pa_vmath.h, src/types/pa_vmemory.h,
13831: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
13832: src/types/pa_vobject.C, src/types/pa_vobject.h,
13833: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
13834: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
13835: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
13836: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
13837: src/types/pa_vstatus.h, src/types/pa_vstring.C,
13838: src/types/pa_vstring.h, src/types/pa_vtable.C,
13839: src/types/pa_vtable.h, src/types/pa_vvoid.h,
13840: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
13841: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
13842: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
13843: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
13844: HEAD
13845:
13846: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
13847: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
13848: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
13849: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
13850: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
13851: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
13852: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
13853: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
13854: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
13855: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
13856: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
13857: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
13858: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
13859: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
13860: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
13861: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
13862: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
13863: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
13864: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
13865: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
13866: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
13867: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
13868: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
13869: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
13870: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
13871: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
13872: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
13873: outputs/create-dir, results/001.processed, results/002.processed,
13874: results/003.processed, results/004.processed,
13875: results/005.processed, results/006.processed,
13876: results/007.processed, results/008.processed,
13877: results/009.processed, results/010.processed,
13878: results/011.processed, results/012.processed,
13879: results/013.processed, results/014.processed,
13880: results/015.processed, results/016.processed,
13881: results/017.processed, results/018.processed,
13882: results/019.processed, results/020.processed,
13883: results/021.processed, results/022.processed,
13884: results/023.processed, results/024.processed,
13885: results/025.processed, results/026.processed,
13886: results/027.processed, results/028.processed,
13887: results/029.processed, results/030.processed,
13888: results/031.processed, results/032.processed,
13889: results/033.processed, results/034.processed,
13890: results/035.processed, results/036.processed,
13891: results/037.processed, results/038.processed,
13892: results/039.processed, results/040.processed,
13893: results/041.processed, results/042.processed,
13894: results/043.processed, results/044.processed,
13895: results/045.processed, results/046.processed,
13896: results/047.processed, results/048.processed,
13897: results/049.processed, results/050.processed,
13898: results/051.processed, results/052.processed,
13899: results/053.processed, results/054.processed,
13900: results/055.processed, results/056.processed,
13901: results/057.processed, results/058.processed,
13902: results/059.processed, results/060.processed,
13903: results/061.processed, results/062.processed,
13904: results/063.processed, results/064.processed,
13905: results/065.processed, results/066.processed,
13906: results/067.processed, results/068.processed,
13907: results/069.processed, results/070.processed,
13908: results/071.processed, results/072.processed,
13909: results/073.processed, results/074.processed,
13910: results/075.processed, results/076.processed,
13911: results/077.processed, results/078.processed,
13912: results/079.processed, results/080.processed,
13913: results/081.processed, results/082.processed,
13914: results/083.processed, results/084.processed,
13915: results/085.processed, results/086.processed,
13916: results/087.processed, results/088.processed,
13917: results/089.processed, results/090.processed,
13918: results/091.processed, results/092.processed,
13919: results/093.processed, results/094.processed,
13920: results/095.processed, results/096.processed,
13921: results/097.processed, results/098.processed,
13922: results/099.processed, results/100.processed,
13923: results/101.processed, results/102.processed,
13924: results/103.processed, results/104.processed,
13925: results/105.processed, results/106.processed,
13926: results/107.processed, results/108.processed,
13927: results/109.processed, results/110.processed,
13928: results/111.processed, results/112.processed,
13929: results/113.processed, results/114.processed,
13930: results/115.processed, results/116.processed,
13931: results/117.processed, results/118.processed,
13932: results/119.processed, results/120.processed,
13933: results/121.processed, results/122.processed,
13934: results/123.processed, results/124.processed,
13935: results/125.processed, results/126.processed,
13936: results/127.processed, results/128.processed,
13937: results/129.processed, results/130.processed,
13938: results/131.processed, results/132.processed,
13939: results/133.processed, results/134.processed,
13940: results/135.processed, results/136.processed,
13941: results/137.processed, results/138.processed,
13942: results/139.processed, results/140.processed,
13943: results/141.processed: merged(copied) to HEAD from template_gc
13944:
13945: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
13946: towards \parser3project not having to be in root
13947:
13948: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
13949: module compiled [were minor unnecessary changes in lib/md5
13950: interface]
13951:
13952: * src/include/pa_version.h: release
13953:
13954: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
13955:
13956: * src/classes/math.C: merged uuid bugfix
13957:
13958: * tests/: 141.html, results/141.processed: fixed bug with
13959: too-small-a-buffer
13960:
13961: * src/classes/math.C: uuid bugfix
13962:
13963: * tests/: 141.html, Makefile, results/005.processed,
13964: results/030.processed, results/075.processed,
13965: results/078.processed: to reflect date format change (were -
13966: become ' ')
13967:
13968: * src/classes/math.C: uuid bugfix
13969:
13970: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
13971: debug/release changes
13972:
13973: * src/lib/md5/pa_md5c.c: PA_ -> pa_
13974:
13975: 2003-07-23 paf
13976:
13977: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
13978: renamed a little [to move to comman naming conv]
13979:
1.116 moko 13980: * src/targets/Makefile.am: apache13 splitted to simplify apache
13981: build
1.95 moko 13982:
13983: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
13984: main/pa_request.C, main/pa_sql_driver_manager.C,
13985: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
13986: stack top_index() fixed
13987:
13988: * src/main/pa_globals.C: minor style changes
13989:
13990: * src/: classes/op.C, include/pa_sql_connection.h: connection
13991: closing/caching fixed [connections were not closed/put to cache]
13992:
13993: 2003-07-22 paf
13994:
13995: * INSTALL: gc part updated stightly
13996:
13997: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
13998: new sapi interface
13999:
14000: * src/classes/file.C: comment on OS
14001:
14002: * src/main/pa_string.C: removed reduntant invariant check [there is
14003: one deeper in cord lib]
14004:
14005: * src/main/pa_exec.C: on win32 bugfix in handling shbang
14006:
14007: * src/main/pa_memory.C: out of memory is no longer coredump
14008:
14009: * INSTALL: disable-threads adviced
14010:
14011: 2003-07-21 paf
14012:
1.116 moko 14013: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 14014:
14015: * src/classes/file.C: file::exec/cgi environment variables now must
14016: be UPPERCASE and A-Z 0-9 _-
14017:
14018: * src/classes/file.C: env passing fixed
14019:
14020: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
14021:
14022: * src/main/pa_common.C: http:// CRLF now
14023:
14024: 2003-07-02 paf
14025:
14026: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
14027: fields to reflect their real meaning
14028:
14029: 2003-06-27 paf
14030:
14031: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
14032: include/pa_hash.h, main/pa_charset.C: merged from HEAD
14033: file::exec/cgi .charset
14034:
14035: 2003-06-26 paf
14036:
14037: * ChangeLog, src/classes/file.C, src/classes/hash.C,
14038: src/classes/image.C, src/classes/op.C, src/classes/string.C,
14039: src/classes/table.C: fixed several uninitialized local
14040: structures. notably ^hash.foreach now inserts delimiters
14041: properly [were inserting it before first body]
14042:
14043: 2003-06-24 paf
14044:
14045: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
14046:
14047: 2003-06-20 paf
14048:
14049: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
14050: src/main/pa_globals.C: introducing
14051: $f[^file::load[binary;http://...]] $f.tables
14052:
14053: 2003-06-06 paf
14054:
14055: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
14056: table. [were method lookup: inconsistent]
14057:
14058: 2003-06-02 paf
14059:
14060: * src/include/pa_memory.h: empty string clone fixed to return
14061: writable memory
14062:
14063: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
14064: were not appended] which violated string invariant
14065:
14066: 2003-05-30 paf
14067:
14068: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
14069: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
14070:
14071: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
14072: GMT ; RFC 822, updated by RFC 1123
14073:
14074: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
14075: targets/isapi/parser3isapi.C: initialized request_info properly
14076:
14077: * src/classes/xnode.C: found minor bug, commended for future
14078:
14079: 2003-05-28 paf
14080:
14081: * src/classes/form.C: request_info.content_length can't be <0,
14082: size_t for some time
14083:
14084: 2003-05-26 paf
14085:
14086: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
14087: forgotten <0 changed to !=STRING_NOT_FOUND
14088:
14089: * src/classes/math.C: merged ffffu from HEAD
14090:
14091: 2003-05-11 paf
14092:
14093: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
14094:
14095: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
14096: premature doc free. transformed document had xmlDoc reference
14097: stored to non-gc-memory (libgdome) added holding-reference
14098:
14099: 2003-04-29 paf
14100:
14101: * src/main/pa_globals.C: started digging on double free. on win32
14102: found that that's perfectly normal.
14103:
14104: 2003-04-25 paf
14105:
14106: * src/classes/table.C: table.join bug fix [bad limit check]
14107:
14108: * src/classes/math.C: merged from HEAD: simpiler hash_string
14109:
14110: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
14111: print anything. changed to quicker and simplier code
14112:
14113: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
14114: strict a check]
14115:
14116: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
14117:
14118: 2003-04-24 paf
14119:
14120: * src/include/pa_table.h: too strict assert loosened
14121:
14122: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
14123: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
14124: report
14125:
14126: 2003-04-21 paf
14127:
1.116 moko 14128: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 14129:
14130: * src/main/pa_globals.C: pcre memory management changed to use GC
14131: memory
14132:
14133: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
14134: xmlMallocAtomic [author agreed to my suggestion], used that
14135:
14136: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
14137:
14138: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
14139: types/pa_vmail.C: attributed_meaning_to_string added
14140: L_UNSPECIFIED piece which was sortof OK, but violated string
14141: invariant [assertion barked on that] changed to L_PASS_APPEND,
14142: made that param obligatory
14143:
14144: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
14145: fixed [assert helped]
14146:
14147: * src/include/pa_string.h: assert added [looking for bug]
14148:
14149: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
14150: names on Win32 considered disk-global
14151:
14152: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
14153: considered disk-global
14154:
14155: 2003-04-18 paf
14156:
14157: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
14158: filenames
14159:
14160: * src/main/untaint.C: enabled '~' letter in filenames
14161:
14162: 2003-04-16 paf
14163:
14164: * src/classes/file.C: small bug introduced in autoptr times fixed
14165:
14166: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
14167: HEAD
14168:
1.116 moko 14169: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 14170:
14171: 2003-04-15 paf
14172:
14173: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14174: src/lib/md5/pa_md5c.c, tests/141.html,
14175: tests/results/141.processed: merged from head ^math:uuid[]
14176: ^math:uid64[] ^math:md5[string]
14177:
14178: test added: 141.html
14179:
14180: * operators.txt, src/classes/math.C: ^math:uid64[]
14181:
14182: * src/classes/math.C: ^math:uuid[]
14183:
14184: * operators.txt, src/classes/math.C: ^math:uuid[]
14185:
14186: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
14187: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
14188:
14189: * operators.txt, src/classes/file.C, src/include/pa_common.h,
14190: src/include/pa_config_fixed.h, src/main/pa_common.C:
14191: ^file::load[mode;name; $.offset $.limit
14192:
14193: 2003-04-14 paf
14194:
14195: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
14196: started ^math:md5
14197:
14198: * src/classes/table.C, src/include/pa_array.h,
14199: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
14200: tests/results/140.processed: table $.reverse option works in
14201: create&co table $.distinct[tables] bug fix merged
14202:
14203: * src/: classes/table.C, include/pa_table.h: table
14204: $.distinct[tables] bug fixed
14205:
14206: * src/classes/table.C: more warnings
14207:
14208: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
14209: removed checks in table::set_current, moved them back to
14210: table::locate implemented table::create/join ñ $.reverse
14211:
14212: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
14213: removed checks in table::set_current, moved them back to
14214: table::locate
14215:
14216: 2003-04-11 paf
14217:
14218: * operators.txt, src/classes/date.C, src/classes/table.C,
14219: src/include/pa_array.h, src/include/pa_common.h,
14220: src/include/pa_config_includes.h, src/include/pa_string.h,
14221: src/include/pa_table.h, src/main/pa_request.C,
14222: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14223: src/main/pa_table.C: merged from HEAD from
14224: before_append_array_limit_sense_change to
14225: after_append_array_limit_sense_change
14226:
14227: * src/classes/table.C: typo
14228:
14229: * operators.txt, src/classes/date.C, src/classes/table.C,
14230: src/include/pa_array.h, src/include/pa_common.h,
14231: src/include/pa_config_includes.h, src/include/pa_globals.h,
14232: src/include/pa_table.h, src/main/pa_array.C,
14233: src/main/pa_globals.C, src/main/pa_request.C,
14234: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14235: src/main/pa_table.C: append_array_limit_sense_change locate
14236: accepts options same as create new option: $.reverse(1) [do not
14237: work in table::create]
14238:
14239: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
14240: (stat xxx,
14241:
14242: * src/classes/: table.C: typo
14243:
14244: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
14245: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
14246: results/130.processed, results/131.processed,
14247: results/132.processed, results/133.processed,
14248: results/134.processed, results/135.processed,
14249: results/136.processed, results/137.processed,
14250: results/138.processed, results/139.processed: added few mustfail
14251: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
14252: date/time 132.html mustfail: access to junction outside of
14253: context 133.html mustfail: access to junction outside of context,
14254: case version 134.html mustfail: hash: adding a key inside of
14255: foreach 135.html mustfail: modifying system class 136.html
14256: mustfail: $.name outside of $hash[here] 137.html mustfail:
14257: appendChild without import 138.html mustfail: invalid encoding
14258: inside of xml 139.html mustfail: bad XPath
14259:
14260: * operators.txt, src/classes/table.C, tests/084.html,
14261: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
14262: tests/129.html, tests/results/125.processed,
14263: tests/results/126.processed, tests/results/127.processed,
14264: tests/results/128.processed, tests/results/129.processed: merged
14265: from HEAD ^table.hash[key][$.distinct[tables]]
14266:
14267: maked appropriate tests [changed one old nonconforming]
14268:
14269: * operators.txt, src/classes/table.C:
14270: ^table.hash[key][$.distinct[tables]]
14271:
14272: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14273: merged fix for found very old xml (dom) bug: were passing
14274: domString objects and later ERROREOUSLY freed them
14275:
14276: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
14277: src/main/pa_charset.C: re-added libgdome patch. regretfully
14278: libgdome bug can not be worked around
14279:
14280: 2003-04-10 paf
14281:
14282: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
14283: found very old xml (dom) bug: were passing domString objects and
14284: later ERROREOUSLY freed them
14285:
14286: * src/doc/string.dox, src/include/pa_memory.h,
14287: src/include/pa_string.h, src/lib/cord/cordbscs.c,
14288: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
14289: tests/123.html, tests/124.html, tests/results/001.processed,
14290: tests/results/002.processed, tests/results/003.processed,
14291: tests/results/004.processed, tests/results/005.processed,
14292: tests/results/006.processed, tests/results/008.processed,
14293: tests/results/009.processed, tests/results/010.processed,
14294: tests/results/011.processed, tests/results/012.processed,
14295: tests/results/013.processed, tests/results/014.processed,
14296: tests/results/015.processed, tests/results/016.processed,
14297: tests/results/017.processed, tests/results/018.processed,
14298: tests/results/020.processed, tests/results/021.processed,
14299: tests/results/022.processed, tests/results/023.processed,
14300: tests/results/024.processed, tests/results/025.processed,
14301: tests/results/026.processed, tests/results/027.processed,
14302: tests/results/028.processed, tests/results/029.processed,
14303: tests/results/030.processed, tests/results/031.processed,
14304: tests/results/032.processed, tests/results/033.processed,
14305: tests/results/034.processed, tests/results/035.processed,
14306: tests/results/036.processed, tests/results/037.processed,
14307: tests/results/038.processed, tests/results/039.processed,
14308: tests/results/040.processed, tests/results/041.processed,
14309: tests/results/042.processed, tests/results/043.processed,
14310: tests/results/044.processed, tests/results/045.processed,
14311: tests/results/046.processed, tests/results/047.processed,
14312: tests/results/048.processed, tests/results/049.processed,
14313: tests/results/050.processed, tests/results/051.processed,
14314: tests/results/052.processed, tests/results/053.processed,
14315: tests/results/054.processed, tests/results/055.processed,
14316: tests/results/056.processed, tests/results/057.processed,
14317: tests/results/058.processed, tests/results/059.processed,
14318: tests/results/060.processed, tests/results/061.processed,
14319: tests/results/062.processed, tests/results/063.processed,
14320: tests/results/064.processed, tests/results/065.processed,
14321: tests/results/066.processed, tests/results/067.processed,
14322: tests/results/068.processed, tests/results/069.processed,
14323: tests/results/070.processed, tests/results/071.processed,
14324: tests/results/072.processed, tests/results/073.processed,
14325: tests/results/074.processed, tests/results/075.processed,
14326: tests/results/076.processed, tests/results/077.processed,
14327: tests/results/078.processed, tests/results/079.processed,
14328: tests/results/080.processed, tests/results/081.processed,
14329: tests/results/082.processed, tests/results/083.processed,
14330: tests/results/084.processed, tests/results/085.processed,
14331: tests/results/086.processed, tests/results/087.processed,
14332: tests/results/088.processed, tests/results/089.processed,
14333: tests/results/090.processed, tests/results/091.processed,
14334: tests/results/092.processed, tests/results/093.processed,
14335: tests/results/094.processed, tests/results/095.processed,
14336: tests/results/096.processed, tests/results/097.processed,
14337: tests/results/101.processed, tests/results/102.processed,
14338: tests/results/104.processed, tests/results/105.processed,
14339: tests/results/106.processed, tests/results/107.processed,
14340: tests/results/108.processed, tests/results/109.processed,
14341: tests/results/110.processed, tests/results/111.processed,
14342: tests/results/112.processed, tests/results/113.processed,
14343: tests/results/114.processed, tests/results/115.processed,
14344: tests/results/116.processed, tests/results/117.processed,
14345: tests/results/118.processed, tests/results/119.processed,
14346: tests/results/120.processed, tests/results/121.processed,
14347: tests/results/122.processed, tests/results/123.processed,
14348: tests/results/124.processed: new convention: char* never 0.
14349: assert in cord on that
14350:
14351: * src/main/pa_charset.C: couple more asserts
14352:
14353: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
14354: speedup
14355:
14356: * src/main/pa_charset.C: couple assertions on fantastic situations
14357: added [may be those is the case now?]
14358:
14359: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14360: that's memory from gc_malloc, not from g_malloc :(, but would
14361: hope]
14362:
14363: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
14364: that's memory from gc_malloc, not from g_malloc :(, but would
14365: hope]
14366:
14367: * src/main/pa_charset.C: checked custom malloc for returning 0
14368:
14369: 2003-04-09 paf
14370:
14371: * src/classes/date.C: merged ^date.roll changes
14372:
14373: * src/classes/date.C: ^date.roll bug fix
14374:
14375: * src/classes/date.C: ^date.roll now throws less errors: month
14376: shifts handles end of month situation by reducing day number
14377: hour-hole shift reduces hour to recover
14378:
14379: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14380: Sort by function time
14381:
14382: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14383: http:// $.charset[] param done
14384:
14385: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14386: added [after volatile fix. passes on win&intel-solaris]
14387:
14388: 2003-04-08 paf
14389:
14390: * src/: classes/file.C, classes/op.C, classes/table.C,
14391: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14392: include/pa_common.h, include/pa_request_charsets.h,
14393: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14394: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14395: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14396: types/pa_vresponse.C: started http:// $.charset[] param and
14397: http response charset detection just compiled. todo:test
14398:
14399: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14400:
14401: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14402: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14403: types/pa_vmail.C: changed transcode param converntion along with
14404: string creating convention -- all strings are zero-terminated,
14405: this allowed to fix one remaining String("123", 2) case
14406:
14407: * src/: classes/date.C, classes/file.C, classes/hash.C,
14408: classes/op.C, classes/string.C, classes/table.C,
14409: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14410: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14411: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14412: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14413: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14414: violated String::invariant. started fixing [not compiled now]
14415:
14416: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14417: main/compile.tab.C, main/compile.y, main/pa_string.C,
14418: main/untaint.C, targets/cgi/parser3.C: number of string style
14419: improvements & optimizations
14420:
14421: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14422: :(]
14423:
14424: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14425: [for it's a pointer really]
14426:
14427: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14428: 'n' param. worked that around
14429:
14430: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14431: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14432: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14433: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14434: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
14435:
14436: Thanks for the bug report and patch.
14437:
14438: I hadn't looked at this code in a while. Reading it now, it
14439: seems to me that the tests should also be ">= MAX_DEPTH" to
14440: comply with the invariant, though that may not matter a lot. I
14441: changed that, too.
14442:
14443: Hans
14444:
14445: 2003-04-07 paf
14446:
14447: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
14448: merged from head:safe mode error message now includes numbers
14449:
14450: * src/main/execute.C: n-th attempt to make a=a work with double.
14451: problem: as_double returns it's result in fp-register compiler
14452: optimizes access to that register after b->as_double, and just
14453: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14454: from memory. _SAME_ double values do not match here. when
14455: forced to REload fp-register, values do match.
14456:
14457: tried to make them volatile.
14458:
14459: * src/main/execute.C: n-th attempt to make a=a work with double.
14460: problem: as_double returns it's result in fp-register compiler
14461: optimizes access to that register after b->as_double, and just
14462: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14463: from memory. _SAME_ double values do not match here. when
14464: forced to REload fp-register, values do match.
14465:
14466: tried to make them volatile.
14467:
14468: * src/types/pa_vobject.h: small style change
14469:
14470: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
14471:
14472: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
14473: mode error message now includes numbers
14474:
14475: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
14476: now causes death
14477:
14478: 2003-04-04 paf
14479:
14480: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
14481: incorportated pa_exec patch by From: "Victor Fedoseev"
14482: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
14483: Sent: Thursday, January 23, 2003 9:14 AM
14484:
14485: huge speedup on ^file::cgi with big result
14486:
14487: * src/classes/table.C: sort table with 0 rows bug fixed
14488:
14489: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
14490: fix http://i2/tasks/edit/?id=4493701604654042676
14491:
14492: @main[] $with_default[ $.a[1] $._default[default from
14493: with_default] ] ^show[$with_default]
14494:
14495: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14496: =$to_add_to.xxx=<br>
14497:
14498: ^show[$to_add_to]
14499:
14500: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14501: ^show[$cloned]
14502:
14503: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14504:
14505: } <hr>
14506:
14507: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
14508: http://i2/tasks/edit/?id=4493701604654042676
14509:
14510: @main[] $with_default[ $.a[1] $._default[default from
14511: with_default] ] ^show[$with_default]
14512:
14513: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14514: =$to_add_to.xxx=<br>
14515:
14516: ^show[$to_add_to]
14517:
14518: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14519: ^show[$cloned]
14520:
14521: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14522:
14523: } <hr>
14524:
14525: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
14526: http://i2/tasks/edit/?id=4507350336410850921
14527:
14528: * src/classes/xdoc.C: memory allocation func bugfix
14529: http://i2/tasks/edit/?id=4499303470368629745
14530:
14531: * src/classes/math.C: allowed random 1...
14532:
14533: * src/classes/math.C: allowed random 0..
14534:
14535: * src/main/pa_globals.C: exif mem leak
14536: http://i2/tasks/edit/?id=4480590323629807263
14537:
14538: * src/: classes/classes.dsp, main/main.dsp,
14539: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
14540: fix http://i2/tasks/edit/?id=4493946731322521294
14541: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
14542:
14543: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14544: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
14545: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
14546: links to xml libs made relative, no need to unpack parser3project
14547: to /parser3project.
14548:
14549: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
14550: column more precise - tab handling bug fixed
14551:
14552: * src/main/: compile.tab.C, compile.y: more understandable error
14553: message in case @CLASS with more then one line inside
14554:
14555: * src/targets/cgi/parser3.C: more understandable error message in
14556: case of errors in @unhandled_exception
14557:
14558: 2003-04-03 paf
14559:
14560: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
14561: src/main/compile.tab.C, src/main/compile.y,
14562: src/main/compile_tools.C, src/main/compile_tools.h,
14563: src/main/execute.C, src/main/pa_request.C: debug info format
14564: simplified, now it's: OP_VALUE Operation::Origin << here value*
14565:
14566: higher limits: file number (max: 255) line number (max:
14567: 64535) column number (max: 255)
14568:
14569: * src/classes/math.C: top limit
14570:
14571: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
14572: precise parse error position in case of
14573:
14574: ^bug ]
14575:
14576: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
14577: changed to realities, and passed [bug fixed]
14578:
14579: * src/: classes/op.C, include/pa_request.h, main/compile.C,
14580: main/compile.tab.C, main/compile.y, main/compile_tools.C,
14581: main/compile_tools.h, main/pa_request.C: introducing
14582: ^process...[main-method-alias]
14583:
14584: * src/: classes/date.C, classes/image.C, classes/op.C,
14585: classes/string.C, classes/table.C, classes/xdoc.C,
14586: types/pa_vmethod_frame.h: MethodParams& now [methods without
14587: params receive zero reference, but they are expected not to look
14588: there]
14589:
14590: * operators.txt, src/classes/date.C, src/classes/double.C,
14591: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
14592: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14593: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14594: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14595: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14596: src/main/execute.C, src/types/pa_method.h: MethodParams& now
14597: [methods without params receive zero reference, but they are
14598: expected not to look there]
14599:
14600: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14601: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
14602: ^process...[filename] useful for better error reporting
14603: [file/line/col]
14604:
14605: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14606: types/pa_vstring.h: slightly improved error messages text: 1. is
14607: '%s', it 2. method undefined in case of ^void[]
14608:
14609: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14610: include/pa_types.h, main/execute.C, main/pa_request.C: exception
14611: handling done. now we have error columns todo: test it
14612:
14613: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
14614: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
14615:
14616: this makes life easier: were: bad stack order -- were in
14617: exception catch unwind order, which didn't match execution order
14618:
14619: @main[] ^try{ ^first[] }{ ^throw[c;3] }
14620:
14621: @first[] ^throw[a;1]
14622:
14623: showed throw a first throw b try
14624:
14625: which is no good
14626:
14627: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14628: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
14629: trace reset after handled exception [old bug fixed]
14630:
14631: * src/main/: compile.tab.C, compile.y: parse position old bug
14632: fixed. position reporting made precise [both, in parse erros and
14633: runtime errors]
14634:
14635: 2003-04-02 paf
14636:
14637: * src/: include/pa_operation.h, include/pa_request.h,
14638: main/compile.C, main/compile.tab.C, main/compile.y,
14639: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14640: main/pa_exception.C, main/pa_request.C: debug info: started
14641: using. todo:complete
14642:
14643: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
14644: main/compile.C, main/compile.tab.C, main/compile.y,
14645: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14646: main/pa_request.C: prepared debug info todo:use it
14647:
14648: * src/include/pa_operation.h: strange mistake fixed: forgot to
14649: return Operation class->union after switching from autoptrs.
14650:
14651: * tests/: Makefile, results/108.processed, results/117.processed:
14652: meta considered OK [it's up to coder now to remove it not needed]
14653:
14654: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
14655: Dictionary constructor when moved to gc]
14656:
14657: * src/main/pa_common.C: uncommented http:// file loading
14658:
14659: * src/include/pa_array.h, src/main/execute.C,
14660: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
14661: fix [gdGrowingBuf]
14662:
14663: * configure.in, src/lib/Makefile.am: removed patches
14664:
14665: * configure, src/include/pa_config_auto.h.in,
14666: src/main/pa_charset.C: --enable-assertions autoconf-ed
14667:
14668: * src/main/pa_common.C: uncommented http:// file loading
14669:
14670: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
14671: xdoc::create/load
14672:
14673: * src/: classes/form.C, classes/hash.C, classes/image.C,
14674: classes/string.C, classes/table.C, classes/void.C,
14675: include/pa_common.h, main/pa_common.C, main/pa_request.C,
14676: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
14677: String::String(str,helper_length) are checked. found/fixed one
14678: place: $request:body now zero-terminated,
14679:
14680: * src/: classes/op.C, classes/table.C, include/pa_request.h,
14681: main/compile_tools.C, main/execute.C, types/pa_value.h,
14682: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
14683: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14684: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14685: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
14686: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14687: types/pa_vxnode.h: more locally scoped vars in execute (more
14688: easily optimizable)
14689:
14690: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
14691: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
14692:
14693: * src/: include/pa_array.h, include/pa_stack.h,
14694: include/pa_string.h, main/compile_tools.C, main/main.dsp,
14695: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
14696: become assertion iterator in methodframe filler
14697:
14698: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
14699: targets/cgi/parser3.C: array::get/put inlined
14700:
14701: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
14702: gc_substitute_memory_management_functions +installed CORD_oom
14703: function
14704:
14705: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
14706: src/include/pa_config_includes.h, src/include/pa_string.h,
14707: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
14708: src/targets/cgi/parser3.C: converted debug hacks to ANSI
14709: assertions started configure.in --enable-assertions
14710:
14711: 2003-04-01 paf
14712:
14713: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
14714: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
14715: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
14716: gdome uses glib memory, and stores last pointer to xmlDoc there,
14717: gc misses that and collects valid memory fixed by remembering
14718: xmlDoc from dom object in xdoc. todo: do something with
14719: premature free of xdoc with xnodes/node values referring into it
14720:
14721: * src/classes/: mail.C: typo fix
14722:
14723: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
14724: changes
14725:
14726: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
14727: main/pa_memory.C: moved memory debugging to global level: to
14728: pa_gc_malloc
14729:
14730: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
14731: debugging showed no errors. todo: debug parser memory
14732:
14733: * src/targets/cgi/: parser3.C, parser3.dsp: more build
14734: configurations
14735:
14736: * src/: classes/classes.dsp, include/pa_config_fixed.h,
14737: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
14738: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
14739: types/types.dsp: prepared xml-static configuration
14740:
14741: 2003-03-31 paf
14742:
14743: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
14744: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
14745: xml lib memory debugging, simple checks failed: it seems that
14746: library does realloc(bad ptr), and recording those ptrs in heap
14747: [for debugging] was bad: heap situation changes = everything
14748: works fine
14749:
14750: * src/: main/pa_charset.C, include/pa_charset.h: worked around
14751: xmlRegisterCharEncodingHandler limitation [currently imposed
14752: limit of 10 user-defined charsets]
14753:
14754: 2003-03-28 paf
14755:
14756: * src/main/execute.C: execution stack copied to local register
14757: variable, removed lots [~2e7) of memory accesses
14758:
14759: 2003-03-27 paf
14760:
14761: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
14762: works in debug, but fails in release todo: fix that
14763:
14764: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
14765: targets/cgi/parser3.C: forgot to merge XML memory funcs
14766: replacement from gc branch
14767:
14768: * src/main/pa_exec.C: introducing append_help_length [radical
14769: improvement here]
14770:
14771: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
14772: 'not recommened' in gc.h, on win32 noticed no difference]
14773:
14774: * src/include/pa_array.h: returned checked array get [were disabled
14775: for debugging] result:not slower [don't understand that, it were
14776: INLINED] todo: find out a way of inlining it!
14777:
14778: * src/: include/pa_string.h, lib/gc/include/gc.h,
14779: lib/gc/include/gc_fake.h, main/compile.tab.C,
14780: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
14781: convention changed: all resulting strings are zero-terminated
14782:
14783: * src/: classes/date.C, classes/file.C, classes/hash.C,
14784: classes/string.C, classes/table.C, classes/void.C,
14785: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
14786: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
14787: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
14788: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14789: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
14790: types/pa_vfile.C, types/pa_vmail.C: introducing
14791: append_help_length [radical improvement here]
14792:
14793: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
14794: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
14795: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
14796: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
14797: even slower
14798:
14799: * src/: classes/string.C, classes/table.C, include/pa_array.h,
14800: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
14801: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
14802: clients of &get(): most to use non-ref version, some[in tight
14803: places] to get_unchecked_ref
14804:
14805: * src/doc/memory.dox: forgot to add
14806:
14807: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
14808: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
14809: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
14810: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
14811: main/compile.y, main/compile_tools.C, main/compile_tools.h,
14812: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
14813: targets/cgi/parser3.dsp, types/pa_vmail.C,
14814: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
14815: T>>&<< removed after Stack::pop wiping removed [moved to separate
14816: func] other Array & removed
14817:
14818: 2003-03-26 paf
14819:
14820: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
14821: classes/table.C, include/pa_array.h, include/pa_charset.h,
14822: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
14823: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14824: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
14825: main/main.dsp, main/pa_charset.C, main/pa_common.C,
14826: main/pa_exec.C, main/pa_sql_driver_manager.C,
14827: main/pa_stylesheet_manager.C, main/pa_table.C,
14828: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14829: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
14830: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
14831: pre-evaluated .count() in some places
14832:
14833: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14834: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
14835: types/types.dsp: .dsp profiling updated
14836:
14837: * src/: classes/classes.dsp, lib/cord/cord.dsp,
14838: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
14839: targets/cgi/parser3.dsp, types/types.dsp: started profiling
14840:
14841: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
14842: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
14843: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
14844: use lib/gc,lib/cord
14845:
1.116 moko 14846: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
14847: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 14848: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
14849: src/include/pa_config_includes.h, src/include/pa_request.h,
14850: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14851: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 14852: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 14853: src/lib/cord/include/Makefile.am,
1.116 moko 14854: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
14855: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
14856: src/targets/cgi/Makefile.am, src/types/Makefile.am,
14857: src/types/pa_vclass.h, src/types/pa_vcookie.h,
14858: src/types/pa_vform.h, src/types/pa_vhash.h,
14859: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
14860: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
14861: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
14862: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
14863: funcs ported pa_exec
1.95 moko 14864:
14865: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
14866:
14867: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
14868: bundled gc includes
14869:
14870: * src/: classes/op.C, include/pa_array.h,
14871: include/pa_sql_connection.h, include/pa_string.h,
14872: include/pa_version.h, main/compile.tab.C, main/compile.y,
14873: main/execute.C, main/pa_common.C, main/pa_exception.C,
14874: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
14875: targets/cgi/parser3.dsp: a number of bugfixes [while testing
14876: first real site (aval)]
14877:
14878: 2003-03-25 paf
14879:
14880: * operators.txt, src/main/pa_sql_driver_manager.C,
14881: src/types/pa_vstatus.C: $status.memory used free since_compact
14882: process
14883:
14884: * src/: include/pa_sql_connection.h, main/pa_globals.C,
14885: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
14886:
14887: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
14888:
14889: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
14890: src/types/pa_value.h, src/types/pa_vfile.h,
14891: src/types/pa_vobject.C, src/types/pa_vobject.h,
14892: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
14893: tests/results/121.processed: untaint.C L_URI
14894:
14895: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
14896: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
14897: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
14898: src/types/pa_vmemory.h: ^memory:compact[]
14899:
14900: * tests/results/109.processed: it was a bug in parser. updated 109
14901: test result
14902:
14903: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
14904:
14905: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
14906: tests/results/107.processed: fixed dom language [values are now
14907: considered tainted. it was a bug in parser. updated 107 test
14908: result
14909:
14910: * src/classes/xdoc.C: fixed transform params
14911:
14912: * src/: include/pa_stylesheet_manager.h,
14913: main/pa_stylesheet_manager.C: fixed stylesheet caching
14914:
14915: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
14916: overloads for structure handling
14917:
14918: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
14919: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
14920: StringBody(0) ambiguilty, introducting static
14921: StringBody::Format(int)
14922:
14923: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
14924: linked
14925:
14926: * src/types/pa_vxdoc.C: vxdoc compiled
14927:
14928: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
14929: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
14930: finalizers isntalled
14931:
14932: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
14933: doc/exception.dox, doc/index.dox, include/pa_charset.h,
14934: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
14935: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
14936: compiled todo: xnode.C / finalizers
14937:
14938: * src/doc/string.dox: updated: new string internals
14939:
14940: 2003-03-24 paf
14941:
14942: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14943: include/pa_charset.h, include/pa_config_fixed.h,
14944: include/pa_request.h, include/pa_stylesheet_connection.h,
14945: include/pa_stylesheet_manager.h, main/pa_charset.C,
14946: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
14947: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
14948: types/pa_vxnode.h: started XML
14949:
14950: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
14951:
14952: * src/: classes/file.C, classes/image.C, classes/mail.C,
14953: include/pa_string.h, main/pa_common.C,
14954: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
14955:
14956: * src/: classes/file.C, classes/image.C, classes/mail.C,
14957: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
14958: main/pa_request.C, main/pa_sql_driver_manager.C,
14959: types/pa_vimage.h: size_t pos everywhere checks changed to check
14960: for eq STRING_NOT_FOUND
14961:
14962: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
14963: optimize bit implemented
14964:
14965: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
14966: String::ArrayFragment::append_positions fixed
14967:
14968: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
14969: String::this_starts fixed
14970:
14971: * src/main/pa_string.C, tests/Makefile: string::pos fixed
14972:
14973: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
14974: hashcode implemented fully, including per-char callback [it can
14975: be - substr CORD node]
14976:
14977: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
14978: rewritten to rewalloc with 100byte buf ahead
14979:
14980: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
14981: src/include/pa_string.h, src/main/compile.tab.C,
14982: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
14983: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
14984: CORD_ec [bad] would rewrite as realloc now
14985:
14986: * src/: classes/date.C, classes/file.C, classes/form.C,
14987: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
14988: include/pa_cache_managers.h, include/pa_charsets.h,
14989: include/pa_common.h, include/pa_request.h,
14990: include/pa_sql_driver_manager.h, include/pa_table.h,
14991: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
14992: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
14993: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
14994: types/pa_vmail.C, types/pa_vmethod_frame.C,
14995: types/pa_vstateless_class.h: 2*2 worked :)
14996:
14997: * parser3.dsw, src/classes/date.C, src/classes/file.C,
14998: src/include/pa_exec.h, src/include/pa_string.h,
14999: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
15000: passed OK
15001:
15002: * src/: classes/hash.C, classes/string.C, classes/table.C,
15003: types/pa_value.C: all linked todo: debug
15004:
15005: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
15006: types/pa_vstateless_class.C: all compiled. todo:link
15007:
15008: * src/types/pa_wcontext.C: pa_wcontext.C compiled
15009:
15010: * src/types/pa_vtable.C: pa_vtable.C compiled
15011:
15012: * src/types/pa_vstring.C: pa_vstring.C compiled
15013:
15014: * src/types/pa_vstatus.C: pa_vstatus.C compiled
15015:
15016: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
15017: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
15018: pa_vstateless_class.C, pa_vstateless_class.h:
15019: pa_vstateless_class.C compiled
15020:
15021: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
15022: types/pa_vmath.C: pa_vmail.C compiled
15023:
15024: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
15025:
15026: * src/types/pa_vform.C: pa_vform.C compiled
15027:
15028: * src/types/pa_vfile.C: pa_vfile.C compiled
15029:
15030: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
15031: pa_vstateless_class.C: pa_vcookie.C compiled
15032:
15033: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
15034: types/pa_vhash.h: pa_value.C compiled
15035:
15036: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
15037: classes.lib main.lib compiled
15038:
15039: * src/classes/void.C: void.C compiled
15040:
15041: * src/: classes/string.C, classes/table.C, include/pa_string.h,
15042: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
15043: compiled
15044:
15045: * src/: classes/string.C, include/pa_request.h,
15046: include/pa_string.h, main/pa_string.C: string.C compiled
15047:
15048: * src/: classes/op.C, classes/string.C, classes/table.C,
15049: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
15050: main/pa_request.C, main/pa_string.C: op.C compiled
15051:
15052: * src/classes/: math.C, op.C: math.C compiled
15053:
15054: * src/: classes/mail.C, classes/string.C, classes/table.C,
15055: types/pa_vmail.h: mail.C compiled
15056:
15057: * src/classes/: int.C, table.C: int.C compiled
15058:
15059: * src/: classes/hash.C, classes/image.C, classes/string.C,
15060: classes/table.C, include/pa_memory.h, include/pa_string.h,
15061: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
15062: compiled
15063:
15064: * src/: classes/hash.C, classes/string.C, classes/table.C,
15065: classes/void.C, classes/xdoc.C, include/pa_request.h,
15066: include/pa_sql_connection.h: hash.C compiled
15067:
15068: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
15069: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
15070: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15071: classes/math.C, classes/op.C, classes/response.C,
15072: classes/string.C, classes/table.C, classes/void.C,
15073: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
15074: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15075: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
15076: file.C table.C compiled
15077:
15078: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
15079: main/untaint.C: main.lib compiled
15080:
15081: 2003-03-21 paf
15082:
15083: * src/: classes/op.C, include/pa_cache_managers.h,
15084: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15085: include/pa_stylesheet_manager.h, main/pa_exception.C,
15086: main/pa_globals.C, main/pa_sql_driver_manager.C,
15087: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
15088: compiled
15089:
15090: * src/: classes/hash.C, classes/image.C, classes/op.C,
15091: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
15092: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15093: main/compile.C, main/pa_common.C, main/pa_request.C,
15094: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
15095: pa_request.C compiled
15096:
15097: * src/: classes/hash.C, classes/mail.C, classes/op.C,
15098: include/pa_request.h, main/execute.C, main/pa_request.C,
15099: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
15100: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
15101: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
15102: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
15103: compiled
15104:
15105: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
15106: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
15107: on unix
15108:
15109: * src/: include/pa_charset.h, include/pa_charsets.h,
15110: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
15111: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
15112: pa_charsets.C compiled
15113:
15114: * src/: classes/image.C, classes/mail.C, classes/op.C,
15115: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
15116: main/compile.y, main/execute.C, main/pa_common.C,
15117: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
15118: types/pa_vcode_frame.h, types/pa_vimage.h,
15119: types/pa_vmethod_frame.h: execute.C compiled
15120:
15121: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15122: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15123: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15124: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
15125: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15126: include/pa_cache_managers.h, include/pa_charsets.h,
15127: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
15128: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
15129: include/pa_sql_driver_manager.h, include/pa_string.h,
15130: include/pa_stylesheet_connection.h,
15131: include/pa_stylesheet_manager.h, include/pa_table.h,
15132: main/compile.C, main/compile.tab.C, main/compile.y,
15133: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15134: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15135: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
15136: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
15137: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15138: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
15139: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
15140: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15141: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15142: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15143: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15144: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15145: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15146: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15147: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15148: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15149: types/pa_vresponse.h, types/pa_vstateless_class.C,
15150: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15151: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15152: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15153: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15154: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15155: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
15156: [C++ CORD wrapper]
15157:
15158: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
15159:
15160: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
15161: $file::exec/cgi[script; $.charset[this is script's charset]
15162:
15163: command line, env values, input got transcoded before call
15164: stdout, stderr got transcoded after call
15165:
15166: * src/classes/file.C: ^file::exec/cgi now does not pass post data
15167: by default. use: ^file::exec[...;$.stdin[$request.body]
15168:
15169: * src/main/pa_common.C: } typo bug fix
15170:
15171: * src/main/pa_common.C: } typo bug fix
15172:
15173: 2003-03-20 paf
15174:
15175: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
15176: main/untaint.C: cord bug fix, but still errors todo: clear out
15177:
15178: * src/include/pa_string.h: more tests
15179:
15180: * src/main/pa_string.C: string.pos fixed
15181:
1.116 moko 15182: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
15183: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
15184: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
15185: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
15186: replaces
1.95 moko 15187:
15188: * src/: classes/image.C, include/pa_dictionary.h,
15189: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15190: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
15191: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
15192: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
15193:
15194: * src/include/pa_string.h: warning
15195:
15196: * src/include/pa_string.h: this_starts fixed
15197:
15198: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
15199: new String ctor & append params convention
15200:
15201: * src/: classes/file.C, classes/hash.C, classes/image.C,
15202: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
15203: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
15204: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
15205: main/pa_exception.C, main/pa_exec.C,
15206: main/pa_sql_driver_manager.C, main/pa_string.C,
15207: main/pa_stylesheet_manager.C, main/untaint.C,
15208: targets/isapi/parser3isapi.C, types/pa_vimage.C,
15209: types/pa_vmail.C: more tests OK
15210:
15211: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
15212: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
15213: gc/exit runned OK
15214:
15215: * src/types/pa_vmail.C: another naming problem: should not name
15216: vars like that: unpredictable close caused problems with later
15217: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
15218: descriptors missing on startup: stdin; Bad file number
15219:
15220: todo: find out why so many filters(stream) here. probably wrong?
15221:
15222: * src/: include/pa_dictionary.h, include/pa_string.h,
15223: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
15224: main/untaint.C: test compiled
15225:
15226: * src/: classes/image.C, classes/mail.C, classes/math.C,
15227: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
15228: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
15229: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
15230: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
15231: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15232: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
15233: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
15234: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
15235: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
15236:
15237: * parser3.dsw, src/classes/file.C, src/classes/image.C,
15238: src/classes/op.C, src/classes/string.C, src/classes/table.C,
15239: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
15240: src/include/pa_memory.h, src/include/pa_request.h,
15241: src/include/pa_request_charsets.h,
15242: src/include/pa_sql_connection.h, src/include/pa_string.h,
15243: src/main/compile.tab.C, src/main/execute.C,
15244: src/main/pa_charset.C, src/main/pa_common.C,
15245: src/main/pa_exception.C, src/main/pa_exec.C,
15246: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15247: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
15248: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
15249: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
15250: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15251: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
15252: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15253: src/types/pa_vobject.C, src/types/pa_vresponse.C,
15254: src/types/pa_vstatus.C, src/types/pa_vstring.C,
15255: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15256: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
15257: pa_common.C [done, without http for now]
15258:
15259: 2003-03-19 paf
15260:
15261: * src/: classes/date.C, classes/form.C, classes/hash.C,
15262: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
15263: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
15264: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
15265: include/pa_string.h, include/pa_table.h, main/compile.C,
15266: main/compile_tools.C, main/execute.C, main/pa_charset.C,
15267: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
15268: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
15269: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
15270: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
15271: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
15272: types/pa_vstateless_class.h, types/pa_vtable.C,
15273: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
15274: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
15275: types/pa_wwrapper.h: started test
15276:
1.116 moko 15277: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
15278: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 15279:
15280: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
15281: include/pa_string.h, main/pa_string.C: string compiled todo: test
15282: it
15283:
15284: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
15285: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
15286: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
15287: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
15288: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
15289: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
15290: types/pa_vmethod_frame.h, types/types.dsp: string
15291: reimplementation with cord+array<fragment>: 70%
15292:
15293: 2003-03-18 paf
15294:
15295: * src/: classes/date.C, classes/file.C, classes/form.C,
15296: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
15297: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
15298: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
15299: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
15300: can ignore lang in cmp and pos really, but would
15301: split properly!
15302:
15303: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
15304: cord part made parser/src/lib: it's not compiled into libgc by
15305: default
15306:
15307: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
15308: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15309: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15310: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15311: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15312: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15313: src/classes/xnode.C, src/classes/xnode.h,
15314: src/include/Makefile.am, src/include/pa_cache_managers.h,
15315: src/include/pa_charset.h, src/include/pa_charsets.h,
15316: src/include/pa_common.h, src/include/pa_dictionary.h,
15317: src/include/pa_exception.h, src/include/pa_exec.h,
15318: src/include/pa_globals.h, src/include/pa_hash.h,
15319: src/include/pa_memory.h, src/include/pa_pool.h,
15320: src/include/pa_request.h, src/include/pa_request_charsets.h,
15321: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
15322: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15323: src/include/pa_stylesheet_connection.h,
15324: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
15325: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
15326: src/main/compile.C, src/main/compile.tab.C,
15327: src/main/compile_tools.C, src/main/compile_tools.h,
15328: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
15329: src/main/pa_charsets.C, src/main/pa_common.C,
15330: src/main/pa_dictionary.C, src/main/pa_exception.C,
15331: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
15332: src/main/pa_pool.C, src/main/pa_request.C,
15333: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
15334: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
15335: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
15336: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
15337: src/types/pa_junction.h, src/types/pa_method.h,
15338: src/types/pa_value.C, src/types/pa_value.h,
15339: src/types/pa_vclass.C, src/types/pa_vclass.h,
15340: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
15341: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15342: src/types/pa_vdouble.h, src/types/pa_venv.h,
15343: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
15344: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
15345: src/types/pa_vimage.C, src/types/pa_vimage.h,
15346: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
15347: src/types/pa_vmath.C, src/types/pa_vmath.h,
15348: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15349: src/types/pa_vobject.C, src/types/pa_vobject.h,
15350: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15351: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15352: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15353: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
15354: src/types/pa_vstatus.h, src/types/pa_vstring.C,
15355: src/types/pa_vstring.h, src/types/pa_vtable.C,
15356: src/types/pa_vtable.h, src/types/pa_vvoid.h,
15357: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15358: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
15359: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
15360: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
15361: gc: PA_Object done lots of replacements also
15362:
15363: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
15364: gc logging
15365:
15366: 2003-03-17 paf
15367:
15368: * src/: classes/date.C, classes/file.C, classes/form.C,
15369: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
15370: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
15371: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
15372: include/pa_string.h, include/pa_types.h, main/compile.C,
15373: main/compile.tab.C, main/execute.C, main/pa_charset.C,
15374: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
15375: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15376: main/pa_sql_driver_manager.C, main/pa_string.C,
15377: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15378: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15379: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15380: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15381: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15382: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15383: types/pa_vxnode.h: libgc attempt
15384:
15385: 2003-03-13 paf
15386:
15387: * src/: include/pa_sql_driver_manager.h,
15388: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15389: called
15390:
15391: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15392: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15393: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15394: types/pa_value.h, types/pa_vobject.h,
15395: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15396: set_base, set_derived simplified [counter leaks fixed]
15397:
15398: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15399: src/types/types.dsp: incorporated status class patch From:
15400: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15401: 2003 8:14 AM
15402:
15403: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15404: Win32 specific: QuotaPeakNonPagedPoolUsage
15405: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15406:
15407: 2003-03-12 paf
15408:
1.116 moko 15409: * configure, configure.in, src/lib/ltdl/configure,
15410: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15411: lib/ltdl/Makefile now created by /configure.in only [were by
15412: lib/ltdl/configure.in OVERWRITE]
15413:
1.116 moko 15414: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15415: linkage fixed for g++ 3.2.2
1.95 moko 15416:
15417: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15418: on using privately declared class [fixed]
15419:
15420: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15421: 3.2 rightliy complained on using privately declared class [fixed]
15422:
15423: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15424: sigpipe before request constructor now causes death
15425:
15426: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15427: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15428: not cause exception in exception handler
15429:
1.116 moko 15430: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15431: now default links libstdc++ statically. that can be overriden by
15432: --with-dynamic-stdcpp
1.95 moko 15433:
15434: 2003-03-11 paf
15435:
15436: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
15437: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
15438: necessity of libstdc++
15439:
15440: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15441:
15442: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15443:
15444: 2003-03-08 paf
15445:
15446: * tests/Makefile: make install & co
15447:
15448: * src/: include/pa_request.h, classes/op.C: removing
15449: vclass,object.h -> pa_request.h dependency
15450:
15451: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
15452: main/pa_request.C: removing vform,response,cookie.h ->
15453: pa_request.h dependency
15454:
15455: * src/include/pa_request.h: removing vmail.h -> pa_request.h
15456: dependency [testing...]
15457:
15458: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
15459: return 0; fixed
15460:
15461: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
15462: types/pa_vmail.h: vmail.C received just compiled [not tested]
15463:
15464: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
15465:
15466: * src/main/pa_request.C: forgotten: ifdef XML
15467:
15468: * src/main/pa_request.C: forgotten: ifdef XML
15469:
15470: * src/targets/cgi/parser3.C: todo: move to latest xml version on
15471: win32 and run memleak tests again
15472:
15473: * src/targets/cgi/parser3.C: charsets: see some strange things with
15474: old xml lib-- it's internal memory handling has faults
15475:
15476: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
15477: problems when transcode from charset A to A.
15478:
15479: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
15480: todo: still problems when transcode from charset A to A.
15481:
15482: * src/: classes/hash.C, classes/mail.C, classes/string.C,
15483: classes/table.C, include/pa_array.h,
15484: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
15485: started full-scale-site-test [~ http://parser.ru sources]
15486:
15487: some fixes
15488:
15489: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
15490: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15491: 117.html, 118.html, 119.html, 120.html, results/109.processed,
15492: results/110.processed, results/111.processed,
15493: results/112.processed, results/113.processed,
15494: results/114.processed, results/115.processed,
15495: results/116.processed, results/117.processed,
15496: results/118.processed, results/119.processed,
15497: results/120.processed: xml: tests 109 dom create/show 110 xpath
15498: selectSingle 111 xdoc.create from tainted & 112
15499: xdoc.create/output with russian attr value 113 xpath
15500: selectString/Number 114 dom attributes.count 115 xpath selectBool
15501: 116 output media-type change 117 transform by dom stylesheet 118
15502: empty transform result 119 dom setAttribute 120 nbsp letter
15503: output
15504:
15505: =END OF PREPARED XML TESTS=
15506:
15507: 2003-03-07 paf
15508:
15509: * src/classes/xdoc.C, src/include/pa_charset.h,
15510: src/include/pa_stylesheet_connection.h, tests/108.html,
15511: tests/108.xsl, tests/results/108.processed: xml: test 108
15512: transform with params [bugs fixed]
15513:
15514: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
15515: from copy/paste bug
15516:
15517: * src/classes/xdoc.C, src/include/pa_charset.h,
15518: src/include/pa_request.h, src/main/execute.C,
15519: src/main/pa_charset.C, src/main/pa_exception.C,
15520: src/main/pa_globals.C, src/main/pa_request.C,
15521: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15522: src/types/pa_vxnode.C, tests/107.html,
15523: tests/results/107.processed: xml: test: 107 bug fixes
15524:
15525: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15526: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15527: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
15528:
15529: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
15530: string
15531:
15532: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
15533: mem alloc functions used for different cases [libxml, libxsl]
15534:
15535: * src/classes/classes.C: fixed: prevent system classes from
15536: modification to lock ALL the classes, not only directly used
15537:
15538: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
15539: linked
15540:
15541: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
15542:
15543: 2003-03-06 paf
15544:
15545: * src/classes/xdoc.C: xdoc.C 50%
15546:
15547: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
15548: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15549: main/pa_globals.C, main/pa_request.C,
15550: main/pa_stylesheet_manager.C: xnode.C compiled
15551:
15552: * src/: include/pa_stylesheet_connection.h,
15553: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
15554: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
15555:
15556: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
15557: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
15558: xml: stylesheet&manager STARTED
15559:
15560: * src/: include/pa_globals.h, main/pa_charset.C,
15561: main/pa_exception.C, main/pa_globals.C: xml: exceptions
15562:
15563: * src/: include/pa_charset.h, include/pa_config_fixed.h,
15564: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
15565: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
15566: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
15567: charsets
15568:
15569: * tests/023.html: in some cases it rounded up badly. postponing
15570: solution of that problem, making more simple test
15571:
15572: * tests/: 058_paf2000.png, results/058.processed: .png added with
15573: -kb now
15574:
15575: * src/: include/pa_charset.h, include/pa_charsets.h,
15576: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
15577: moved to charsets.C
15578:
15579: 2003-03-05 paf
15580:
15581: * src/classes/string.C, src/include/pa_string.h,
15582: src/main/pa_string.C, tests/105.html,
15583: tests/results/105.processed: String::match bug fixed
15584:
15585: * src/classes/op.C, src/main/main.dsp, tests/104.html,
15586: tests/results/104.processed: ^bpt operator added [does int3 in
15587: debug build on win32]
15588:
15589: * tests/: 057.html, results/057.processed: test bug fixed
15590:
1.116 moko 15591: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 15592:
15593: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
15594: missing
15595:
1.116 moko 15596: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
15597: forgotten files added to Makes
1.95 moko 15598:
15599: * ltmain.sh: ltmain.sh added
15600:
15601: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15602: change undone ;(
15603:
15604: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15605: made static
15606:
15607: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 15608: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
15609: todo:make linker happy
1.95 moko 15610:
15611: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
15612: env param made optional
15613:
15614: 2003-03-04 paf
15615:
15616: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
15617: types/pa_vimage.h: number of gcc compiler bugs fixed
15618:
15619: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
15620: results/103.processed: tests: 103 image.copy transparence test
15621:
15622: * src/main/execute.C, tests/101.html, tests/102.html,
15623: tests/results/101.processed, tests/results/102.processed: tests:
15624: 101 method/variable name conflict test 102 form fields change
15625: should not not change anything [bug fix]
15626:
15627: * tests/: 057.html, 099.html, 100.html, results/057.processed,
15628: results/099.processed, results/100.processed: tests: 57 date
15629: create 2002: added 99,100 response:body/download
15630:
15631: * src/classes/image.C, tests/098.html, tests/098font.gif,
15632: tests/results/098.processed: test: 98 image font text [bug fixed]
15633:
15634: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
15635: tests/results/097.processed: test: 97 file::load http:// [bugs
15636: fixed]
15637:
15638: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
15639: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
15640: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
15641: image EXIF [bug fixed]
15642:
15643: * src/classes/table.C, src/main/execute.C, tests/061.dat,
15644: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
15645: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
15646: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
15647: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
15648: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
15649: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
15650: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
15651: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
15652: tests/094.html, tests/095.html, tests/results/061.processed,
15653: tests/results/062.processed, tests/results/063.processed,
15654: tests/results/064.processed, tests/results/065.processed,
15655: tests/results/066.processed, tests/results/067.processed,
15656: tests/results/068.processed, tests/results/069.processed,
15657: tests/results/070.processed, tests/results/071.processed,
15658: tests/results/072.processed, tests/results/073.processed,
15659: tests/results/074.processed, tests/results/075.processed,
15660: tests/results/076.processed, tests/results/077.processed,
15661: tests/results/078.processed, tests/results/080.processed,
15662: tests/results/081.processed, tests/results/082.processed,
15663: tests/results/083.processed, tests/results/084.processed,
15664: tests/results/085.processed, tests/results/086.processed,
15665: tests/results/087.processed, tests/results/088.processed,
15666: tests/results/089.processed, tests/results/090.processed,
15667: tests/results/091.processed, tests/results/092.processed,
15668: tests/results/093.processed, tests/results/094.processed,
15669: tests/results/095.processed, tests/079.html,
15670: tests/results/079.processed: tests: 61 file::stat size 62
15671: string->int autoconvert 63 double .int,dec,div,mul 64 date
15672: compare 65 file: basename,justname,justext 66 math:crypt 67
15673: string.match simple on long 68 string.match normalized simple on
15674: long 69 string.int 70 file::stat content-type 71 table.join 72
15675: hash parameter conditional pass 73 date daylightsaving,yearday 74
15676: date arithmetics 75 response date values/attributes 76 string.pos
15677: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
15678: with local 80 scientific numeric literal in string autoconvert 81
15679: xor: logical and numerical 82 for delims 83 menu delims 84
15680: table.hash distinct 85 long string replace 86 throw+catch
15681: current language preserve 87 bit shifts 88 junction tests +
15682: $caller test 89 hash.foreach selfmodification 90 int/void to int
15683: 91 $caller test 92 junction is + def junction tests 93 $caller
15684: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
15685:
15686: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
15687: fixed] 60 string eq string [bug fixed]
15688:
15689: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
15690: 058.html, 058_paf2000.png, 059.html, 060.html,
15691: results/053.processed, results/054.processed,
15692: results/055.processed, results/056.processed,
15693: results/057.processed, results/058.processed,
15694: results/059.processed, results/060.processed: test: 53
15695: string.replace 54 junctions 55 table.hash 56 call indirect 57
15696: date.create[string] 58 image.measure[png]
15697:
15698: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
15699: outputs/051.processed, results/052.processed: test: 52
15700: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
15701: task: fix that
15702:
15703: 2003-03-03 paf
15704:
15705: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
15706: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
15707: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
15708: outputs/049.processed, outputs/050.processed,
15709: outputs/051.processed, results/001.processed,
15710: results/002.processed, results/003.processed,
15711: results/005.processed, results/006.processed,
15712: results/008.processed, results/009.processed,
15713: results/011.processed, results/012.processed,
15714: results/013.processed, results/014.processed,
15715: results/015.processed, results/016.processed,
15716: results/017.processed, results/020.processed,
15717: results/021.processed, results/022.processed,
15718: results/024.processed, results/025.processed,
15719: results/026.processed, results/027.processed,
15720: results/028.processed, results/029.processed,
15721: results/030.processed, results/031.processed,
15722: results/049.processed, results/050.processed,
15723: results/051.processed, results/043.processed,
15724: results/044.processed, results/045.processed,
15725: results/046.processed, results/047.processed,
15726: results/048.processed: tests: 43,44,45 date rolls 46
15727: autoevaluating junction 47 table.select 48 name with subvar 49
15728: hash-creating switch 50 process 51 started parent/child, works as
15729: it were but it were NOT GOOD, created separate task to fix that
15730:
15731: * tests/: 042.html, results/042.processed: test: 42
15732: exception.handled
15733:
15734: * tests/: 041.html, results/041.processed: test: 41 table.locate by
15735: expression
15736:
15737: * tests/: 040.html, results/040.processed: test: 39 method result
15738: of type table 40 method param junction auto evaluate
15739:
15740: * tests/: 039.html, results/039.processed: test: 37 method result
15741: of type table
15742:
15743: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
15744: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
15745: tests/038.html, tests/results/033.processed,
15746: tests/results/034.processed, tests/results/035.processed,
15747: tests/results/036.processed, tests/results/037.processed,
15748: tests/results/038.processed: tests: 33 string.replace 34
15749: string.upper 35 table created 36 local/global vars with juntions
15750: 37 table clone 38 math PI & number formatting
15751:
15752: math class registring typo fixed
15753:
15754: * src/classes/op.C, src/include/pa_request.h,
15755: src/include/pa_string.h, src/main/execute.C,
15756: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
15757: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
15758: tests/032.html, tests/results/032.processed: uchar changed to
15759: String_UL in all places [was not everywhere] untaint test: 032
15760:
15761: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
15762: tests/results/004.processed, tests/parser-cygwin.sh,
15763: tests/parser-unix.sh: removed -H command line key, now testing
15764: using .sh file with SERVER_SOFTWARE=xxx
15765:
15766: 2003-02-26 paf
15767:
15768: * src/main/execute.C, src/types/pa_vstateless_class.h,
15769: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
15770: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
15771: tests/results/024.processed, tests/results/025.processed,
15772: tests/results/026.processed, tests/results/027.processed,
15773: tests/results/028.processed, tests/results/029.processed,
15774: tests/results/030.processed, tests/results/031.processed: fixed
15775: bug with name_cstr mutable CharPtr more tests
15776:
15777: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
15778: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
15779: << abort. die now just exits
15780:
15781: * src/classes/classes.awk, src/classes/classes.h,
15782: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15783: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15784: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15785: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15786: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15787: src/classes/xnode.C, src/include/pa_memory.h,
15788: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
15789: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
15790: src/types/pa_vform.C, tests/015.html, tests/016.html,
15791: tests/017.html, tests/018.html, tests/019.html,
15792: tests/019paf2001.gif, tests/020.html, tests/021.html,
15793: tests/022.html, tests/023.html, tests/022_dir/a.html,
15794: tests/022_dir/b.txt, tests/022_dir/c.htm,
15795: tests/results/015.processed, tests/results/016.processed,
15796: tests/results/017.processed, tests/results/018.processed,
15797: tests/results/019.processed, tests/results/020.processed,
15798: tests/results/021.processed, tests/results/022.processed,
15799: tests/results/023.processed: methoded_array now contains all Mxxx
15800: classes SAPI::get_env now returns info on pool more tests
15801:
15802: * src/include/pa_array.h, src/include/pa_hash.h,
15803: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
15804: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
15805: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
15806: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
15807: tests/014.html, tests/Makefile, tests/outputs/create-dir,
15808: tests/results/001.processed, tests/results/002.processed,
15809: tests/results/003.processed, tests/results/004.processed,
15810: tests/results/005.processed, tests/results/006.processed,
15811: tests/results/007.processed, tests/results/008.processed,
15812: tests/results/009.processed, tests/results/010.processed,
15813: tests/results/011.processed, tests/results/012.processed,
15814: tests/results/013.processed, tests/results/014.processed: hash
15815: cloning fixed
15816:
15817: 2003-02-25 paf
15818:
15819: * src/main/pa_common.C: typo fixed
15820:
15821: 2003-02-24 paf
15822:
15823: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
15824: [one remained]
15825:
15826: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
15827: [should have been get_string(&pool)] todo: check other such calls
15828:
15829: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
15830: test10, bad lookups
15831:
15832: xxx* xxx=smartptr.get(); << is bad style, after ";" original
15833: object got destructed, and xxx points to sky
15834:
15835: * ChangeLog, src/classes/string.C: match bug fixed
15836:
15837: * src/types/pa_vmail.C: body [text/html] transcoded to
15838: $.charset[specified] now
15839:
15840: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
15841: which failed to handle sigsetjmp+throw: crashed inside of
15842: pre-throw code. rewritten simplier [though duplicating
15843: closesocket code]
15844:
15845: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
15846: which failed to handle sigsetjmp+throw: crashed inside of
15847: pre-throw code. rewritten simplier [though duplicating
15848: closesocket code]
15849:
15850: 2003-02-21 paf
15851:
15852: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
15853: $cookie:name[$.expires[date << can be now]]
15854:
15855: written makefile with regression tests [raw]
15856:
15857: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
15858: tests' only [it's not forcing CGI mode now] now use -H to output
15859: CGI header when parser used in command line [useful for tests
15860: also]
15861:
15862: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
15863: switches on CGI mode, and is used in regression tests
15864:
15865: * src/: include/pa_request.h, main/pa_request.C,
15866: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
15867: fixed
15868:
15869: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
15870: handling pa_*
15871:
15872: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
15873: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
15874: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
15875: memory handling files
15876:
15877: * src/main/pa_array.C: pool::format_integer terminator fixed
15878:
15879: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
15880: compiles OK test to show benefits of free
15881:
15882: * src/: classes/file.C, classes/image.C, classes/mail.C,
15883: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
15884: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
15885: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
15886: use pool [as the one in ^process]
15887:
15888: * src/classes/op.C: fixed process. sould now check for all cstr's
15889: -- some must use pool [as the one in ^process]
15890:
15891: 2003-02-20 paf
15892:
15893: * src/: classes/date.C, classes/double.C, classes/file.C,
15894: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15895: classes/math.C, classes/op.C, classes/response.C,
15896: classes/string.C, classes/table.C, classes/void.C,
15897: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
15898: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
15899: string cmp fixed
15900:
15901: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
15902: values passed OK now
15903:
15904: 2003-02-19 paf
15905:
15906: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
15907: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
15908: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
15909: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
15910: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
15911: all remaning leaks resulted from pooled::malloc calls [excluding
15912: in gd -- planning complete rewrite extremely ugly code]
15913:
15914: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
15915: files
15916:
15917: 2003-02-17 paf
15918:
15919: * src/: classes/date.C, classes/double.C, classes/file.C,
15920: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15921: classes/response.C, classes/string.C, classes/table.C,
15922: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
15923: include/pa_stylesheet_connection.h,
15924: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
15925: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
15926: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
15927: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
15928: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
15929: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
15930: of unitialized simple-typed field
15931:
15932: * src/: classes/classes.C, classes/classes.h, main/execute.C,
15933: main/pa_charset.C, main/pa_request.C: another bug of unitialized
15934: simple-typed field fixed. todo: find&kill all like that one
15935:
15936: * src/: main/execute.C, targets/cgi/pa_pool.C,
15937: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
15938: debug output fixed
15939:
15940: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
15941: main/pa_request.C: stack-stored items need extra .ref to prevent
15942: object_ptr from delete[them]
15943:
15944: * src/: classes/date.C, classes/op.C, classes/table.C,
15945: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
15946: include/pa_charset.h, main/Makefile.am, main/main.dsp,
15947: main/pa_charset.C, main/pa_common.C,
15948: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
15949: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15950: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
15951: calls
15952:
15953: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
15954: couple mem leaks rusulted from old pooled::malloc usage.
15955: todo:find more like those
15956:
15957: * src/main/: compile.C, compile_tools.C: 2*2!
15958:
15959: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
15960: stackItem fixed [there were no string on stack before]
15961:
15962: * src/: main/execute.C, main/pa_request.C,
15963: types/pa_vmethod_frame.C: first letters out OK
15964:
15965: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
15966: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
15967: main/pa_string.C, main/untaint.C, types/pa_value.h,
15968: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
15969: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
15970: type not initialized with zeros :( while class fields of class
15971: types initialized with default constructors. learn C++
15972:
15973: * src/: classes/classes.awk, classes/double.C, classes/file.C,
15974: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
15975: classes/math.C, classes/xdoc.C, classes/xnode.C,
15976: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
15977: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
15978:
15979: 2003-02-14 paf
15980:
15981: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
15982: 13 link errors
15983:
15984: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
15985: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
15986: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
15987: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
15988: errors :)
15989:
15990: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
15991: classes/hash.C, classes/mail.C, classes/op.C,
15992: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
15993: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
15994: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
15995: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
15996:
15997: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
15998: classes/table.C, include/pa_common.h, include/pa_globals.h,
15999: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
16000: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
16001: types/pa_vint.h, types/types.dsp: op compiled
16002:
16003: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
16004: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
16005: main/untaint.C, types/pa_vtable.h: string, response compiled
16006:
16007: 2003-02-07 paf
16008:
16009: * src/: classes/table.C, types/pa_vtable.h: table compiled
16010:
16011: 2003-02-06 paf
16012:
16013: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
16014: mail compiled
16015:
16016: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
16017: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
16018: types/pa_vfile.h, types/pa_vimage.h: image compiled
16019:
16020: * src/classes/: file.C, form.C: form compiled
16021:
16022: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
16023: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
16024: types/pa_vfile.C, types/pa_vfile.h: file compiled
16025:
16026: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
16027: types/pa_vmath.h: math compiled [win32]
16028:
16029: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
16030: types/pa_vstring.h: hash compiled
16031:
16032: 2003-02-04 paf
16033:
16034: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
16035: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
16036: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
16037: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
16038: types/pa_vhash.h: hash 50% compiled
16039:
16040: * src/: classes/date.C, classes/file.C, classes/hash.C,
16041: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
16042: classes/string.C, classes/table.C, classes/xdoc.C,
16043: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
16044: main/pa_string.C: date compiled
16045:
16046: * src/classes/: classes.dsp, double.C: double compiled
16047:
16048: * src/: classes/date.C, classes/double.C, classes/file.C,
16049: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
16050: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
16051: classes/string.C, classes/table.C, classes/void.C,
16052: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
16053: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
16054: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
16055: compiled
16056:
16057: * src/: classes/date.C, classes/double.C, classes/file.C,
16058: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16059: classes/math.C, classes/op.C, classes/response.C,
16060: classes/string.C, classes/table.C, classes/void.C,
16061: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
16062: types/pa_vvoid.h: void compiled :)
16063:
16064: * src/: include/pa_globals.h, main/pa_cache_managers.C,
16065: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
16066: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16067: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
16068: main/pa_string.C, main/pa_uue.C, main/untaint.C,
16069: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
16070: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
16071: types/pa_vresponse.C, types/pa_vstateless_class.C,
16072: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
16073: types/pa_wcontext.C, types/types.dsp: removed stupid
16074: value_includes.h
16075:
16076: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
16077: trying to remove stupid value_includes.h
16078:
16079: * src/main/pa_exec.C: pa_exec compiled on win32
16080:
16081: * src/main/pa_exec.C: libmain.a compiled on six [unix]
16082:
16083: * src/: include/pa_globals.h, include/pa_request.h,
16084: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
16085: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
16086: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
16087: types/pa_vrequest.C, types/pa_vstateless_class.C,
16088: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
16089:
16090: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
16091: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
16092: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
16093:
16094: * src/: include/pa_array.h, include/pa_config_includes.h,
16095: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
16096: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
16097: compiled
16098:
16099: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
16100: name conflicts)
16101:
16102: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
16103: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
16104: yelds "virtual memory exhausted" while trying to compile
16105: execute.C [eating up to 127MB]
16106:
16107: 2003-02-03 paf
16108:
16109: * src/: include/pa_config_includes.h, include/pa_hash.h,
16110: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
16111: main/pa_common.C, types/pa_value.C, types/pa_value.h,
16112: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
16113: types/pa_vint.h, types/pa_vjunction.h,
16114: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
16115: started gcc compiling pa_common compiled
16116:
16117: * src/: include/pa_exception.h, include/pa_pool.h,
16118: main/pa_exception.C: exception gcc change #1
16119:
1.116 moko 16120: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
16121: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 16122:
16123: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
16124:
16125: * src/types/pa_vtable.C: vtable compiled
16126:
16127: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
16128:
16129: * src/: include/pa_cache_managers.h, main/pa_request.C,
16130: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
16131:
16132: * src/types/pa_vstateless_class.C: vstateless_class compiled
16133:
16134: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
16135:
16136: * src/types/pa_vrequest.C: vrequest compiled
16137:
16138: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
16139: pa_vobject.C, pa_vobject.h: vobject compiled
16140:
16141: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
16142: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16143: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
16144: compiled
16145:
16146: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
16147:
16148: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
16149: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
16150: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
16151: compiled
16152:
16153: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16154: main.lib - 0 error(s), 0 warning(s)
16155:
16156: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16157: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
16158:
16159: 2003-01-31 paf
16160:
16161: * src/: include/pa_array.h, include/pa_operation.h,
16162: include/pa_request.h, main/execute.C, main/main.dsp,
16163: types/pa_vjunction.h: started last file from main library:
16164: execute
16165:
16166: * src/: include/pa_request.h, include/pa_sapi.h,
16167: main/compile.tab.C, main/compile.y, main/compile_tools.h,
16168: main/pa_request.C, targets/cgi/parser3.C,
16169: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
16170: types/pa_vhash.h: pa_request compiled
16171:
16172: * src/: classes/op.C, classes/string.C, include/pa_common.h,
16173: include/pa_globals.h, include/pa_request.h,
16174: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
16175: main/execute.C, main/main.dsp, main/pa_common.C,
16176: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16177: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
16178: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
16179: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
16180: types/types.dsp: most pa_request compiled
16181:
16182: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16183: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16184: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16185: classes/op.C, classes/response.C, classes/string.C,
16186: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16187: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16188: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16189: include/pa_config_fixed.h, include/pa_config_includes.h,
16190: include/pa_dictionary.h, include/pa_dir.h,
16191: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16192: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
16193: include/pa_pool.h, include/pa_request.h,
16194: include/pa_request_charsets.h, include/pa_request_info.h,
16195: include/pa_sapi.h, include/pa_socks.h,
16196: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16197: include/pa_stack.h, include/pa_string.h,
16198: include/pa_stylesheet_connection.h,
16199: include/pa_stylesheet_manager.h, include/pa_table.h,
16200: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16201: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
16202: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
16203: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
16204: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
16205: main/compile.C, main/compile.tab.C, main/compile.y,
16206: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16207: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
16208: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16209: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16210: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
16211: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16212: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
16213: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
16214: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
16215: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
16216: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
16217: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
16218: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
16219: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
16220: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16221: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
16222: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
16223: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16224: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
16225: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
16226: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
16227: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
16228: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
16229: types/pa_vresponse.h, types/pa_vstateless_class.C,
16230: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16231: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
16232: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
16233: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
16234: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
16235: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
16236:
16237: * ChangeLog, src/classes/classes.h, src/classes/op.C,
16238: src/include/pa_cache_managers.h, src/include/pa_charset.h,
16239: src/include/pa_charsets.h, src/include/pa_common.h,
16240: src/include/pa_dictionary.h, src/include/pa_exception.h,
16241: src/include/pa_exec.h, src/include/pa_pool.h,
16242: src/include/pa_request.h, src/include/pa_sapi.h,
16243: src/include/pa_sql_connection.h,
16244: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
16245: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
16246: src/main/compile.tab.C, src/main/compile_tools.C,
16247: src/main/compile_tools.h, src/main/main.dsp,
16248: src/main/pa_charset.C, src/main/pa_charsets.C,
16249: src/main/pa_common.C, src/main/pa_dictionary.C,
16250: src/main/pa_exception.C, src/main/pa_exec.C,
16251: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
16252: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
16253: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
16254: src/types/pa_vclass.h, src/types/pa_vcookie.C,
16255: src/types/pa_vcookie.h, src/types/pa_vdate.h,
16256: src/types/pa_vdouble.h, src/types/pa_venv.h,
16257: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
16258: src/types/pa_vhash.h, src/types/pa_vimage.C,
16259: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
16260: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
16261: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
16262: src/types/pa_vobject.C, src/types/pa_vobject.h,
16263: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
16264: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
16265: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
16266: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
16267: src/types/pa_vstring.h, src/types/pa_vtable.h,
16268: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
16269: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
16270: died, long live StringPtr
16271:
16272: 2003-01-30 paf
16273:
16274: * src/: include/pa_charset.h, include/pa_request.h,
16275: include/pa_sql_driver_manager.h, main/compile.tab.C,
16276: main/compile.y, main/compile_tools.h, main/pa_request.C,
16277: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
16278:
16279: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
16280: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
16281: types/pa_vhash.h, types/pa_vmethod_frame.h,
16282: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16283: types/types.dsp: vstateless_class compiled
16284:
16285: * src/main/compile.C: compile compiled
16286:
16287: * src/: include/pa_array.h, include/pa_operation.h,
16288: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
16289: main/pa_table.C: compile_tools compiled
16290:
16291: * src/: include/pa_operation.h, main/compile.y,
16292: main/compile_tools.C, main/compile_tools.h: started
16293: compile_tools. vagues ideas of how to free compiled code
16294:
16295: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
16296: main/main.dsp, types/pa_value.C, types/pa_value.h,
16297: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
16298: compiled
16299:
16300: 2003-01-29 paf
16301:
16302: * src/: include/pa_globals.h, include/pa_request.h,
16303: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
16304: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
16305: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
16306: compiled
16307:
16308: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
16309: now
16310:
16311: * src/: include/pa_array.h, include/pa_exception.h,
16312: include/pa_pool.h, main/pa_exception.C: gd compiled
16313:
16314: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
16315: compiled
16316:
16317: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
16318: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
16319: types/pa_vfile.h: vfile compiled
16320:
16321: * src/: include/pa_common.h, include/pa_globals.h,
16322: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
16323: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
16324: types/pa_vform.C, types/pa_vform.h: vcookie compiled
16325:
16326: * src/: include/pa_exception.h, main/pa_cache_managers.C,
16327: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
16328: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
16329: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
16330: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
16331:
16332: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
16333: main/main.dsp, main/untaint.C: more compiled
16334:
16335: * src/: include/pa_charsets.h, include/pa_request.h,
16336: include/pa_request_info.h, include/pa_string.h,
16337: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
16338: types/pa_vresponse.h: vrequest compiled
16339:
16340: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
16341: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
16342: pa_vresponse.h, pa_wcontext.h: vrequest compiled
16343:
16344: * src/: classes/classes.h, include/pa_charset.h,
16345: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
16346: include/pa_request.h, include/pa_string.h, main/main.dsp,
16347: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
16348: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
16349: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
16350: types/pa_vrequest.C, types/pa_vrequest.h,
16351: types/pa_vstateless_class.h, types/pa_vstring.h,
16352: types/pa_vvoid.h: vrequest,vdouble,vint compiled
16353:
16354: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
16355: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
16356: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
16357: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
16358: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16359: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
16360: types/pa_vobject.h, types/pa_vstateless_class.h,
16361: types/pa_vstateless_object.h, types/pa_vstatus.h,
16362: types/pa_vstring.h, types/types.dsp: vmath compiled
16363:
16364: 2003-01-28 paf
16365:
16366: * src/: classes/classes.h, classes/date.C, classes/file.C,
16367: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
16368: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
16369: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
16370: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
16371: compile_tools
16372:
16373: * src/: include/pa_charset.h, include/pa_exception.h,
16374: include/pa_request.h, include/pa_string.h, main/untaint.C:
16375: untaint compiled
16376:
16377: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16378: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16379: more compiled. struck with string::store_to needing to know
16380: source/client charsets
16381:
16382: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16383: types/pa_vfile.h: uue compiled
16384:
16385: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16386: table compiled
16387:
16388: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16389: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16390:
16391: * src/: include/pa_charset.h, main/pa_charset.C,
16392: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16393: introduced]
16394:
16395: * src/: classes/date.C, include/pa_charset.h,
16396: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16397: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16398: pa_charsets compiled
16399:
16400: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16401: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16402:
16403: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16404: common compiled
16405:
16406: * src/: include/pa_charsets.h, main/pa_charsets.C,
16407: main/pa_sql_driver_manager.C: pa_charsets compiled
16408:
16409: * src/: include/pa_array.h, include/pa_charset.h,
16410: include/pa_charsets.h, include/pa_pool.h,
16411: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16412: include/pa_stack.h, include/pa_string.h,
16413: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16414: sql_driver_manager compiled
16415:
16416: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16417: letter i with two dots added to koi, all ukranian letters added
16418: to win1251.
16419:
16420: typographic simbol 0xb9 deleted from win1251 [strange one & were
16421: abscent from koi]
16422:
16423: 2003-01-27 paf
16424:
16425: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16426: include/pa_sql_driver_manager.h, include/pa_string.h,
16427: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16428: sql/pa_sql_driver.h: paused on sql_manager
16429:
16430: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16431: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16432: include/pa_stack.h, main/pa_sql_driver_manager.C,
16433: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16434:
16435: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
16436: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16437: include/pa_table.h, main/pa_sql_driver_manager.C,
16438: main/pa_table.C: table compiled
16439:
16440: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
16441: cache_managers compiled
16442:
16443: * src/: include/pa_array.h, include/pa_charset.h,
16444: include/pa_pool.h, main/pa_charset.C: charset compiled
16445:
16446: * src/: include/pa_pool.h, main/pa_common.C: common compiled
16447:
16448: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
16449: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16450: main/pa_string.C, types/pa_value.C, types/pa_value.h,
16451: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
16452: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
16453:
16454: 2003-01-24 paf
16455:
16456: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
16457: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
16458: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16459: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
16460: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
16461: types/pa_vint.h, types/pa_vjunction.h,
16462: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16463: types/pa_vstatus.h, types/pa_vstring.h: more patched
16464:
16465: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
16466: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
16467: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
16468: main/pa_string.C, main/pa_table.C: string compiled
16469:
16470: * src/: include/pa_array.h, include/pa_common.h,
16471: include/pa_dictionary.h, include/pa_exception.h,
16472: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
16473: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
16474: main/pa_string.C: dictionary compiled
16475:
16476: 2003-01-23 paf
16477:
16478: * src/: include/pa_array.h, include/pa_common.h,
16479: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16480: include/pa_request.h, include/pa_string.h, main/pa_common.C,
16481: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
16482: types/pa_value.h: resurrected pool in new sense: now it's
16483: factory, producing&accounting memory chunks for read[autofree]
16484: buffers
16485:
16486: * src/: include/pa_array.h, include/pa_exception.h,
16487: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
16488: main/pa_exception.C, main/pa_table.C: table compiled
16489:
16490: * src/: classes/image.C, classes/op.C, include/pa_array.h,
16491: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
16492: include/pa_pool.h, include/pa_pragma_pack_begin.h,
16493: include/pa_pragma_pack_end.h, include/pa_sapi.h,
16494: include/pa_string.h, include/pa_table.h, include/pa_types.h,
16495: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
16496: main/pa_table.C: aint that easy
16497:
16498: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
16499: main/main.dsp: continued with Hash
16500:
16501: * src/main/pa_common.C: connect_string allocated on heap[wes on
16502: stack] now. and exception can be reported OK now [can be reported
16503: outside of pro c with that stack]
16504:
16505: 2003-01-22 paf
16506:
16507: * src/: include/pa_array.h, include/pa_charset.h,
16508: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
16509: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
16510: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
16511: base: contains references_count. auto_ptr template calls
16512: add_ref/release
16513:
16514: 2003-01-21 paf
16515:
16516: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16517: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16518: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16519: classes/op.C, classes/response.C, classes/string.C,
16520: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16521: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16522: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16523: include/pa_config_fixed.h, include/pa_config_includes.h,
16524: include/pa_dictionary.h, include/pa_dir.h,
16525: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16526: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16527: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16528: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16529: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16530: include/pa_stack.h, include/pa_string.h,
16531: include/pa_stylesheet_connection.h,
16532: include/pa_stylesheet_manager.h, include/pa_table.h,
16533: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16534: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16535: lib/pcre/pcre_parser_ctype.c, main/compile.C,
16536: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16537: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16538: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16539: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16540: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16541: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16542: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16543: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16544: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16545: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16546: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16547: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16548: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
16549: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
16550: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16551: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16552: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16553: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16554: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16555: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16556: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16557: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16558: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16559: types/pa_vstateless_object.h, types/pa_vstatus.C,
16560: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16561: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16562: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16563: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16564: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
16565: 2002->2003
16566:
16567: 2003-01-16 paf
16568:
16569: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
16570: src/main/pa_globals.C: http:// introducing $.any-status(1)
16571:
16572: * operators.txt, src/include/pa_config_fixed.h,
16573: src/main/pa_common.C: http request now return status. and not
16574: fail on status!=200
16575:
16576: 2003-01-15 paf
16577:
16578: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
16579:
16580: 2003-01-14 paf
16581:
16582: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
16583: mkinstalldirs: removed some ancient files [they in / really]
16584:
16585: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
16586: regretfully needed patch in two places. in config_fixed.h made
16587: stubs for lib to compile in MSVC
16588:
16589: 2003-01-13 paf
16590:
16591: * config.guess, config.sub, ltmain.sh: removed last piece of
16592: configure.in(libtool) hacks
16593:
1.116 moko 16594: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 16595: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
16596: ltdl.h: moved to latest libtool (1.4.3)
16597:
16598: 2003-01-10 paf
16599:
16600: * src/lib/ltdl/: configure, configure.in: PROG_NM
16601:
16602: * src/main/pa_globals.C: moved to latest xml lib versions, changed
16603: patches. libxml2 >= 2.5.1
16604: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
16605: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
16606: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16607:
16608: * INSTALL: moved to latest versions of xml libs libxml2 >=
16609: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
16610: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
16611: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16612:
16613: 2003-01-09 paf
16614:
16615: * INSTALL: xml,xslt,gdome lib urls updated
16616:
16617: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 16618: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 16619: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 16620: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
16621: 1.7.2
1.95 moko 16622:
16623: * depcomp: moving to automake 1.7.2
16624:
16625: 2002-12-27 paf
16626:
16627: * src/include/pa_version.h: 0007
16628:
16629: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
16630: outdated parts, made links to language docs
16631:
16632: * src/include/pa_config_auto.h.in: comment
16633:
16634: 2002-12-26 paf
16635:
16636: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
16637: not contain trailing / fixed.
16638:
16639: * INSTALL: changing SAFE_MODE politics
16640:
16641: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
16642:
16643: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
16644:
16645: 2002-12-25 paf
16646:
16647: * src/main/pa_globals.C: optimized-xml
16648:
16649: * src/main/pa_globals.C: optimized-as-is
16650:
16651: 2002-12-24 paf
16652:
16653: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
16654: fixed [were really called with zero size when .html?a=&b=]
16655:
16656: * src/classes/mail.C: $MAIL in @conf now invalid when configured
16657: with --with-sendmail
16658:
16659: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
16660: fixed]
16661:
16662: 2002-12-23 paf
16663:
16664: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
16665: ignoring parameters & were storing only string with default
16666: expires
16667:
16668: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
16669: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
16670: December 23, 2002 4:22 AM Subject: bug â
16671: Charset::transcode_buf2xchar
16672:
16673: 2002-12-20 paf
16674:
16675: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
16676: non-cgi [script] runs
16677:
16678: 2002-12-19 paf
16679:
16680: * INSTALL: --without-iconv recommended [it crashes on some systems
16681: [tested on elik]] moreover, it's not needed there [parser
16682: registers charsets itself]
16683:
16684: * INSTALL: --without-iconv recommended [it crashes on some systems
16685: [tested on elik]]
16686:
16687: * operators.txt, src/include/pa_globals.h,
16688: src/include/pa_request.h, src/main/pa_globals.C,
16689: src/main/pa_request.C: $response:download
16690:
16691: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
16692: compiler [win32]].
16693:
16694: 2002-12-18 paf
16695:
16696: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
16697:
16698: 2002-12-17 paf
16699:
16700: * src/targets/cgi/parser3.C: merged die&iis changes
16701:
16702: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
16703: to exit(1) 2. more flexible iilegal call check
16704:
16705: 2002-12-16 paf
16706:
16707: * ltmain.sh: some automakes silly insist on having this handy
16708:
16709: * src/main/untaint.C: filespec russian small 'r' changed to latin
16710: 'p' bug fix
16711:
16712: 2002-12-15 paf
16713:
16714: * src/main/untaint.C: filespec russian small 'r' changed to latin
16715: 'p'
16716:
16717: * configure.in, src/include/pa_config_auto.h.in,
16718: src/main/compile.C, src/main/pa_common.C: merged small changes
16719: from branch 6 to HEAD
16720:
16721: * src/main/compile.C: removed warning
16722:
16723: * src/main/pa_common.C: ftruncate having checked
16724:
16725: * configure.in, src/include/pa_version.h: new version
16726:
16727: 2002-12-14 paf
16728:
16729: * src/classes/table.C: removed unnecessary code
16730:
16731: * src/sql/pa_sql_driver.h: exception type fixed
16732:
16733: 2002-12-09 paf
16734:
16735: * src/types/pa_vvoid.h: $void.store[now] error
16736:
16737: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16738:
16739: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
16740: tries to write core dump
16741:
16742: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16743:
16744: * src/: classes/hash.C, classes/string.C, classes/table.C,
16745: classes/void.C, main/pa_sql_driver_manager.C,
16746: sql/pa_sql_driver.h: changed exception handling mech in sql
16747: handlers #2
16748:
16749: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
16750: exception handling mech in sql handlers
16751:
16752: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
16753: handlers
16754:
16755: * src/: classes/hash.C, classes/string.C, classes/table.C,
16756: classes/void.C, main/pa_sql_driver_manager.C,
16757: sql/pa_sql_driver.h: changed exception handling mech in sql
16758: handlers
16759:
1.116 moko 16760: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
16761: to write makefile which used libtool to install things, which is
16762: not needed
1.95 moko 16763:
16764: 2002-12-06 paf
16765:
16766: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
16767: $hash.fields -- pseudo field to make 'hash' more like 'table'
16768:
16769: 2002-12-05 paf
16770:
16771: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
16772: cc/bcc OK now
16773:
16774: * src/main/untaint.C: mail header closed properly
16775:
16776: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
16777: header ',' allowed. still bugs in smtp [only one receiptient
16778: works, cc, bcc ignored now, and MAILED ;)]
16779:
16780: [strncpy killed, memnchr used]
16781:
16782: * src/main/pa_table.C: table-copy now current=0
16783:
16784: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
16785: lowlevel proc
16786:
16787: * src/targets/cgi/parser3.C: more checks on
16788: http://domain/parser.cgi start [maybe some getenv returns "",
16789: checked that now
16790:
16791: * src/targets/cgi/parser3.C: more checks on
16792: http://domain/parser.cgi start [maybe some getenv returns "",
16793: checked that now
16794:
16795: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
16796: out-of-mem errors reached log]
16797:
16798: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
16799: mail:send MIME-Version default
16800:
16801: * src/main/main.dsp: pa_version included into main.dsp
16802:
16803: 2002-12-04 paf
16804:
16805: * src/types/pa_vform.C: $form:field string value cut by premature 0
16806:
16807: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
16808: lib/libltdl -> lib/ltdl Win32 changes. s
16809:
16810: * src/classes/classes.awk: more strict *.C$
16811:
16812: * gnu.dsp: restored
16813:
1.116 moko 16814: * configure.in, gnu.dsp, src/lib/Makefile.am,
16815: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
16816: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
16817: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
16818: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
16819: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
16820: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
16821: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
16822: now created with /configure, not ltdl/configure, so it does have
16823: no problems with automake. ltdl/configure
16824: AC_OUTPUT(Makefile<<removed)
1.95 moko 16825:
16826: 2002-12-02 paf
16827:
16828: * operators.txt: removed outdated status:db
16829:
16830: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
16831: src/main/pa_common.C, src/main/pa_request.C,
16832: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
16833: tainted parts becomes http-header
16834:
16835: 2002-11-29 paf
16836:
16837: * src/classes/date.C, src/classes/image.C, operators.txt: exif
16838: dates now objects of type date
16839:
16840: * src/classes/image.C: file.seek removed [it were used in image.C
16841: only, and for parser user this means that jpeg image has bad
16842: size in fragment's header] now used image.format
16843:
16844: * src/: include/pa_common.h, main/pa_common.C,
16845: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
16846: now handled exactly like $response:header values. e.g. can be
16847: hash [can have subattributes] & contain date values.
16848:
16849: * src/main/pa_common.C: http:// param values lang forced URI
16850:
16851: * src/main/pa_common.C: http:// tainted partes now %xx
16852:
16853: 2002-11-28 paf
16854:
16855: * operators.txt: http.timeout
16856:
16857: * src/classes/image.C: ^image.length now counts interchar space.
16858: plus space after last char
16859:
16860: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
16861:
16862: * src/classes/image.C: ^image.font width measurer now scans full
16863: height [were -1]
16864:
16865: * configure.in: stopped double libltdl/Makefile generation
16866:
16867: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
16868: chars [one top horizontal line of 1pixel height were missing]
16869:
16870: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
16871: 'false' to go into (Hash *) parameter
16872:
16873: 2002-11-27 paf
16874:
16875: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
16876: types/pa_vmail.C: response:body[file] if file nows it's name now
16877: returns content-disposition: >>attachment<<
16878:
16879: * src/classes/image.C: ^image.font << bad font file-size now
16880: properly reported
16881:
16882: 2002-11-26 paf
16883:
16884: * src/main/pa_request.C: fixed lang in reponse header
16885:
16886: * src/main/pa_common.C: utf8 prefix ignored @read text
16887:
16888: * operators.txt, src/main/pa_common.C: http:// response status!=200
16889: made exception: http.status with source=bad status#
16890:
16891: 2002-11-25 paf
16892:
16893: * configure.in, src/classes/image.C,
16894: src/include/pa_config_auto.h.in,
16895: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 16896: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
16897: const void related probs fixed
1.95 moko 16898:
16899: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
16900:
16901: $file[^file::load[http://there]] $file.SERVER
16902:
16903: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
16904: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
16905: http options [invalid onces now reported] made default
16906: user-agent: paf
16907:
16908: * operators.txt, src/classes/file.C, src/classes/table.C,
16909: src/classes/xdoc.C, src/include/pa_common.h,
16910: src/include/pa_globals.h, src/main/pa_common.C,
16911: src/main/pa_globals.C, src/main/pa_request.C,
16912: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
16913: now understand http:// prefix and additional params, sample:
16914: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
16915: $.USER-AGENT[parser3] ]]
16916:
16917: 2002-11-22 paf
16918:
16919: * src/classes/image.C, src/include/pa_globals.h,
16920: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
16921: src/types/pa_vimage.h, operators.txt: $image.exif support
16922: $image.exif.DateTime & co
16923:
16924: 2002-11-21 paf
16925:
16926: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
16927: _PASS_APPENDED)
16928:
16929: * src/classes/image.C: jpeg size measure fixed: were badly skipping
16930: EXIF information [were big block and it's size were considered
16931: negative :(]
16932:
16933: * operators.txt, src/classes/image.C, src/include/pa_common.h,
16934: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
16935: internals rewritten. no there's reader.seek, and all's ready for
16936: EXIF extraction [now we fail to measure files with EXIF info]
16937:
16938: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
16939: O_TRUNC truncates even exclusevely write-locked file [thanks to
16940: Igor Milyakov <virtan@rotabanner.com> for discovering]
16941:
16942: 2002-11-20 paf
16943:
16944: * src/targets/cgi/parser3.C: logging @signal += query_string
16945:
16946: * configure.in, src/include/pa_config_auto.h.in,
16947: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
16948: comment
16949:
16950: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
16951:
16952: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16953: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
16954: currently processed document SIGPIPE >> interrupts request
16955: processing [exception = DB rollback]
16956:
16957: * src/main/pa_exec.C: comment
16958:
16959: * src/main/pa_exec.C: pa_exec: data written only if size>0
16960:
16961: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
16962: << disable HTTP-POST repassing
16963:
16964: * src/: include/pa_config_fixed.h, main/pa_common.C,
16965: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
16966: pipe read errors now checked
16967:
16968: 2002-11-19 paf
16969:
16970: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
16971: CGI: Illegal call
16972:
16973: 2002-11-01 paf
16974:
16975: * src/main/execute.C: comment
16976:
16977: 2002-10-31 paf
16978:
16979: * src/main/execute.C: found out why, checked that for now. todo:
16980: find out a way for that user could do that
16981:
16982: * src/types/pa_vstateless_object.h: object put replaces static
16983: parent if any
16984:
16985: * src/types/pa_vobject.C: object put replaces static parent if any
16986:
16987: * src/: classes/form.C, classes/mail.C, classes/op.C,
16988: classes/xnode.h, main/compile.tab.C, main/execute.C,
16989: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
16990: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16991: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
16992: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16993: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
16994: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16995: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16996: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16997: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16998: types/pa_vstateless_object.h, types/pa_vstatus.C,
16999: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17000: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17001: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17002: types/pa_wwrapper.h: static fix merged
17003:
17004: * src/: main/compile.tab.C, types/pa_vobject.C: killed
17005: $virtual_fields in dynamic, but one can reach derived
17006: static[class] variable from base
17007:
17008: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
17009: types/pa_vobject.C, types/pa_vobject.h,
17010: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
17011: statics, left $virtual_fields in dynamic
17012:
17013: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
17014: one can't remember derivates in base class: there's so many of
17015: them. also there can be no virtual method calls in static
17016: classes
17017:
17018: * src/: classes/form.C, classes/mail.C, classes/op.C,
17019: classes/xnode.h, main/execute.C, main/pa_request.C,
17020: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17021: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17022: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17023: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17024: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17025: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17026: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17027: types/pa_vresponse.C, types/pa_vresponse.h,
17028: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17029: types/pa_vstateless_object.h, types/pa_vstatus.C,
17030: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
17031: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
17032: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
17033: types/pa_wwrapper.h: static call $self fixed
17034:
17035: * src/main/execute.C: comment
17036:
17037: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
17038: ^process[$caller.self]{...} now compiles to last derived object
17039: part of that 'self'
17040:
17041: 2002-10-29 paf
17042:
17043: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
17044: re-passing [iis to blame]
17045:
17046: * src/classes/string.C: changed string.save to pass current sql
17047: connection to cstr thus one can ^connect[some server]{
17048: $s[insert into table x (x) values (^taint[sql]{value})]
17049: ^s.save[some.sql] } and he'd get in some.sql file code with
17050: properly escaped. [tried in mssql->mysql export->import of
17051: binary data]
17052:
17053: 2002-10-25 paf
17054:
17055: * src/types/pa_vresponse.C: case insensitive response user fields
17056: get/put
17057:
17058: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
17059: types/pa_vresponse.C: saving for maybe-future
17060:
17061: 2002-10-23 paf
17062:
17063: * operators.txt, src/classes/table.C: ^table.hash{code}...
17064: ^table.hash(expr)...
17065:
17066: * src/types/pa_vmail.C: email whitespace trimBoth-ed
17067:
17068: 2002-10-22 paf
17069:
17070: * src/types/: pa_vform.C, pa_vform.h: removed needless
17071: VForm::Append...(...Value)
17072:
17073: * src/main/execute.C: $.name outside of $name[...] checked
17074:
17075: * src/main/: compile.tab.C, compile.y: lexer changed to fix
17076: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
17077:
17078: 2002-10-21 paf
17079:
17080: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
17081: $form:qtail $form:imap.x/y
17082:
17083: * operators.txt, src/types/pa_vform.C: $form:nameless =
17084: "?value&...", "...&value&...", "...&value"
17085:
17086: * operators.txt, src/types/pa_vform.C: $form:image-map
17087:
17088: * operators.txt, src/classes/file.C: /some/page.html:
17089: ^file:fullpath[a.gif] => /some/a.gif
17090:
17091: 2002-10-17 paf
17092:
17093: * src/main/: compile.tab.C, compile.y: operators precedence changed
17094: a little: logical not and bitwise negation precedence made
17095: highest, << and >> bitshits precedence made equal [were << higher
17096: than >>]
17097:
17098: * src/classes/op.C: exception handling fixed [were bad with
17099: contexts]
17100:
17101: 2002-10-16 paf
17102:
17103: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17104: main/pa_request.C: Request::self considered equal to
17105: VMethodFrame::self, and removed, Request::get_self() mapped to
17106: VMethodFrame.self()
17107:
17108: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
17109: $hash in open field now gives old good error meesage
17110:
17111: 2002-10-15 paf
17112:
17113: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
17114: use ^if($junction is junction){was and now true}
17115:
17116: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
17117: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
17118: types/pa_vxnode.C: xml->parser strings now have origin, which
17119: points to place where value left xml library and came to parser:
17120: place of dom field extraction/call
17121:
17122: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
17123: main/compile.tab.C, main/compile.y, main/execute.C,
17124: types/pa_vmethod_frame.h: removed last pieces of old code
17125: allowing $junction.xxx at compile time
17126:
17127: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
17128: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
17129: objects also considered [were only classes]
17130:
17131: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
17132: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
17133: with CLASS self. [ (request&method_frame).self temporarily
17134: changed ]
17135:
17136: * src/classes/: hash.C, op.C: method_frame now always changed, with
17137: no exception to native calls. for&foreach changed to use
17138: method_frame.caller for their var's name context
17139:
17140: * src/: main/execute.C, targets/cgi/parser3.C,
17141: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
17142: compiling to system classes disabled
17143:
17144: * operators.txt, src/classes/op.C:
17145: ^process[$caller.CLASS]{code-string} added
17146:
17147: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
17148: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
17149: src/types/Makefile.am, src/types/pa_vjunction.C,
17150: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
17151: src/types/types.dsp: removed $junction.get $junction.set[]
17152: introducing $caller
17153:
17154: * src/types/pa_value.h: removed outdated comments. doxygen would
17155: find them lower by inheritance tree
17156:
17157: * src/types/pa_vjunction.C: ident
17158:
17159: 2002-10-14 paf
17160:
17161: * src/classes/op.C: process compiles to code's class class
17162:
17163: * src/: classes/form.C, classes/mail.C, classes/op.C,
17164: include/pa_request.h, main/compile.C, main/compile.tab.C,
17165: main/compile.y, main/execute.C, main/pa_request.C,
17166: types/pa_vstateless_class.h: operators now main-class-methods
17167:
17168: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
17169: better stack trace [has "call" & co there]
17170:
17171: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
17172: operators @auto now executed in MAIN context
17173:
17174: * src/main/execute.C: operator execution context now = MAIN, not
17175: closest stack frame
17176:
17177: @touchit[] $i[after]
17178:
17179: ----t.html $i[before] << local ^touchit[] $i << now 'before',
17180: were 'after'
17181:
17182: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
17183: 'after'
17184:
17185: * src/main/execute.C: comment
17186:
17187: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
17188: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
17189: action]
17190:
17191: * src/types/pa_vxnode.C: misreplace fixed
17192:
17193: * configure, configure.in, src/include/pa_config_auto.h.in,
17194: src/types/pa_vstatus.C, operators.txt:
17195: $status:rusage.tv_secs/usecs introduced
17196:
17197: 2002-10-09 paf
17198:
17199: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
17200: on empty string [or uses (default)]
17201:
17202: 2002-10-08 paf
17203:
17204: * src/main/untaint.C: mail header quoted printable changed after
17205: RFC reread
17206:
17207: * operators.txt: plan on ^if(method
17208:
17209: * src/types/pa_vxnode.C: misreplace
17210:
17211: 2002-09-24 paf
17212:
1.116 moko 17213: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 17214:
17215: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
17216: mailreceive would compile on freebsd now
17217:
17218: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
17219: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 17220: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
17221: mailreceive would compile on freebsd now
1.95 moko 17222:
17223: * src/: classes/file.C, main/untaint.C: 1. file spec language
17224: changed: now there are only few chars are untainted: * ? ' " < >
17225: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
17226: one should use ^untaint[uri]{...} now]
17227:
17228: 2. $list[^file:list[dir]] now returns simply tainted names in
17229: $list.name, not tainted as filespec
17230:
17231: @russianindex[] #dir with files with russian-lang names
17232: $where[dir]
17233:
17234: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
17235: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
17236:
17237: 2002-09-23 paf
17238:
17239: * src/types/pa_vdouble.h: double->int round added
17240:
17241: * src/classes/date.C: date bug fix, now
17242: round(floatDays*secondsPerDay)
17243:
17244: * src/classes/date.C: date bug fix, now
17245: round(floatDays*secondsPerDay)
17246:
17247: 2002-09-20 paf
17248:
17249: * src/main/execute.C: code junction calls disabled [before: code
17250: was compiled in such a way, that there were no code-junctions in
17251: OP_CALL]
17252:
17253: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
17254:
17255: @badjunctioncallinside[code] ^code[]
17256:
17257: * src/main/: compile.tab.C, compile.y: changed grammer on junction
17258: expanding to include ^junction.method
17259:
17260: * src/main/pa_common.C: -d "DIR/" now true
17261:
17262: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
17263: as internal xdoc encoding, and after decoding attributes set by
17264: dom functions now encoded OK, not as digital entities
17265:
17266: * src/classes/xdoc.C: empty transform result, being taken as file
17267: now returns empty file, not raises stupid error about "stat-ed
17268: file"
17269:
17270: * src/types/pa_vhash.h: hash.foreach modification of existing keys
17271: allowed
17272:
17273: * src/types/types.dsp: introducing $junction.get/put(1) one can
17274: write iterators now:
17275:
17276: ^user-foreach[key;value]{$key=$value<br>}
17277:
17278: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17279: $code.value($i*2) $code }
17280:
17281: * src/main/compile_tools.h: mistype
17282:
1.116 moko 17283: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
17284: thus taking linking options configure changes into account [were:
17285: ignoring]
1.95 moko 17286:
17287: * src/types/: pa_vjunction.C, Makefile.am: introducing
17288: $junction.get/put(1) one can write iterators now:
17289:
17290: ^user-foreach[key;value]{$key=$value<br>}
17291:
17292: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17293: $code.value($i*2) $code }
17294:
17295: * src/: include/pa_opcode.h, include/pa_request.h,
17296: main/compile.tab.C, main/compile.y, main/execute.C,
17297: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
17298: introducing $junction.get/put(1) one can write iterators now:
17299:
17300: ^user-foreach[key;value]{$key=$value<br>}
17301:
17302: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
17303: $code.value($i*2) $code }
17304:
17305: 2002-09-19 paf
17306:
1.116 moko 17307: * Makefile.am: new: make commit
1.95 moko 17308:
17309: * aclocal.m4: forced to be older
17310:
17311: 2002-09-18 paf
17312:
17313: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
17314: src/main/compile.y, src/main/execute.C: << >> int shifts
17315:
17316: * src/: include/pa_common.h, include/pa_request.h,
17317: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
17318: - now this - fatal error
17319:
17320: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
17321: that one can pass binary data there
17322:
17323: * src/: classes/date.C, classes/double.C, classes/file.C,
17324: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17325: classes/op.C, classes/response.C, classes/string.C,
17326: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17327: include/pa_request.h: pa_request contexts made privated, plus
17328: get_{self/method_frame} to read. Request_context_saver used in
17329: ^try to save flang too. [were not saved]
17330:
17331: * src/types/pa_vresponse.C: header value chains joined before
17332: output, this should help $.subject[$var $var] from being
17333: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
17334:
17335: 2002-09-17 paf
17336:
17337: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
17338: removed changes, operators executed with calling self. lots of
17339: code with ^include code relies on defined/defining self variables
17340:
17341: $a[1] ^include[print_a.p] print_a.p: $a
17342:
17343: ^include[set_a.p] a=$a set_a.p: $a[1]
17344:
17345: * src/: classes/op.C, main/execute.C, main/pa_request.C,
17346: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
17347: types/pa_vstateless_class.h: operators now executed with MAIN
17348: self. it's for ^include sake, too strong a change
17349:
17350: * src/classes/op.C: made place for ^process to compile it's code to
17351: in case of no self
17352:
17353: * src/main/execute.C: found ancient param to Junction, removed.
17354: allowed passing self to native_code_operators [for ^process to
17355: work, she needs self]
17356:
17357: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
17358: types/pa_vstateless_class.h: found ancient param to Junction,
17359: removed. allowed passing self to native_code_operators [for
17360: ^process to work, she needs self]
17361:
17362: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
17363: types/pa_value.h, types/pa_vmethod_frame.h,
17364: types/pa_vstateless_class.h: allowed Request.self to be 0,
17365: checked that in VMethodFrame get/put and $self.
17366:
17367: * src/classes/: table.C, xdoc.C: table::sql options table::create
17368: copy options options checked, wrong option now fatal error
17369:
17370: * src/main/pa_string.C: string.replace fixed [were missing words on
17371: pieces boundaries]
17372:
1.150 moko 17373: * configure, configure.in: .so now detected [can be .sl on hpux,
17374: .dll on cygwin, .so in other cases)
1.95 moko 17375:
17376: * configure, configure.in: .so now detected [can be .sl on hpux,
17377: .dll on cygwin, .so in other cases)
17378:
17379: * operators.txt, src/classes/hash.C, src/classes/table.C,
17380: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17381: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17382: record taken [were last]
17383:
17384: * src/: classes/hash.C, classes/table.C,
17385: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17386: now errors
17387:
17388: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17389:
17390: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17391: ,2,3]
17392:
17393: 2002-09-16 paf
17394:
17395: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17396: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17397: stdout to be binary. now detected closest header break.
17398:
17399: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17400: closed right
17401:
17402: 2002-09-13 paf
17403:
17404: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17405: src/main/compile_tools.h: (expression #comment)
17406:
17407: (multiline expression #comment line2 #comment )
17408:
17409: (expression #comment with (brackets) comment) << OK
17410:
17411: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17412: bitwise !|| numerical xor now [preparing for expression
17413: #comments]
17414:
17415: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17416: error
17417:
17418: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17419: cheched in pa_socks.C
17420:
1.116 moko 17421: * configure, configure.in, src/include/pa_config_auto.h.in:
17422: HAVE_WINSOCK_H created in configure.in
1.95 moko 17423:
17424: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17425: cookie date now clean [were mistakenly tainted & that worked bad
17426: with opera -- 'happily' that worked OK with msie]
17427:
17428: 2002-09-12 paf
17429:
17430: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17431: VClass get_element now first looks to fields, next to methods &
17432: co todo: the rest reason: more speed
17433:
17434: * src/main/untaint.C: quoted printable encoding stops before
17435: \s*<...>$
17436:
17437: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
17438: stops before <...>$
17439:
17440: 2002-09-11 paf
17441:
17442: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
17443: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
17444: forgot to check users of those funcs. not all were using that
17445: return value convention
17446:
17447: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
17448: windows-1254 added
17449:
17450: 2002-09-10 paf
17451:
17452: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
17453: VCodeFrame parent param were specified badly
17454:
17455: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
17456: WWrapper which used in constructing objects(second param to sql
17457: method) ^...sql{}[$.default{code}] now has parent, wich helps
17458: code in hash to survivi
17459:
17460: * src/: include/pa_request.h, main/execute.C: removed redundant
17461: param to execute [stack said 'thanks']
17462:
17463: * src/: classes/op.C, main/execute.C, types/pa_value.C,
17464: types/pa_value.h, types/pa_vcode_frame.h,
17465: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17466: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
17467: responsibility to wcontext
17468:
17469: * src/classes/file.C: decided not to log exec's with stderr, that
17470: could be warnings, and it's up to scritper to log/show them
17471:
17472: * src/: classes/double.C, main/execute.C: double:sql badly called
17473: write_assign_lang, not write_no_lang, thus doing unnecessary
17474: double/string converstion, which were loosing time&precesion
17475:
17476: * src/: main/pa_charset.C, types/pa_vmail.C:
17477: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
17478: case of unfinished in buffer processing, causing accidental
17479: transcode stop [in case that source enc != utf-8 & there is
17480: incomplete utf-8 sequence at the end of 16000block iside of
17481: libxml lib] tfm readed & code updated
17482:
17483: 2002-09-04 paf
17484:
17485: * configure: makes with sjlj
17486:
17487: * INSTALL, src/include/pa_config_fixed.h,
17488: src/include/pa_sql_connection.h,
17489: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
17490: checked. on win32 it made default
17491:
17492: * src/include/pa_config_auto.h.in: sjlj define
17493:
17494: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
17495: can not work with longjump/throw pair, and one must switch that
17496: on there. todo: detect that automatically]
17497:
17498: * src/types/pa_vxnode.C: removed too strong checks of
17499: xnode.elements. now, for instance, if element does not have any
17500: attributes, $xnode.attributes is void, not error
17501:
17502: 2002-09-02 paf
17503:
17504: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
17505: removed double_result, didn't help
17506:
17507: * src/main/execute.C: double_result made to move that var away from
17508: hungry g++ optimizer (-O2), before: it were optimized and
17509: comparison operators worked badly
17510:
17511: * src/types/pa_vdate.h: removed debug
17512:
1.116 moko 17513: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 17514:
17515: * src/main/execute.C: fixed numeric < & co so that thay now use
17516: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
17517: unknown reason.
17518:
17519: 2002-08-29 paf
17520:
17521: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
17522: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
17523: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
17524: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
17525: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
17526: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
17527: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
17528: [called less frequent, allowed to remove ugly
17529: Junction.change_context-s from many places, switch,
17530: mail:send..html{}, ..] request.root renamed to method_frame [more
17531: easyreading] ancient {...PUSH/POPs...} changed to stack vars
17532: [speed up]
17533:
17534: 2002-08-28 paf
17535:
17536: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
17537: tainted
17538:
17539: * src/types/pa_vcookie.C: fixed cookie delete when
17540: $cookie:name[$.value[]]
17541:
17542: * operators.txt, src/classes/string.C:
17543: ^string.split[delim[;options]]
17544:
17545: 2002-08-27 paf
17546:
1.116 moko 17547: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 17548:
17549: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
17550: delimiter
17551:
17552: * INSTALL: recommended latest gmime 1.0.5
17553:
17554: 2002-08-26 paf
17555:
17556: * configure, configure.in: apache13/hook added to make dist.
17557:
17558: 2002-08-23 paf
17559:
17560: * src/: include/pa_common.h, main/pa_common.C,
17561: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
17562: beside binary [cgi, isapi] not accessible [due to bad rights or
17563: whatever] it's error now
17564:
17565: 2002-08-21 paf
17566:
1.116 moko 17567: * Makefile.am: can use: make happy equals to make update install
1.95 moko 17568:
17569: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17570: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
17571: class". compiled as if here they named base class
17572:
17573: * src/main/pa_string.C: fixed bad language bug, [were wrong string
17574: cloning constructor]
17575:
17576: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
17577:
1.150 moko 17578: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 17579: $mail.received.file.value.content-type fixed
17580:
17581: 2002-08-20 paf
17582:
17583: * src/classes/file.C: fixed language of file:file result
17584:
17585: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
17586: from 3.0.0005
17587:
17588: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
17589:
17590: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
17591: 3.0.0005
17592:
17593: * src/classes/void.C, operators.txt: ^void.length[] = 0
17594:
17595: 2002-08-19 paf
17596:
17597: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
17598: work now
17599:
17600: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
17601: error in xnode, which were not catched in xdoc]
17602:
17603: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
17604: prepared: // validate each document after load/create (?)
17605: //xmlDoValidityCheckingDefaultValue = 1;
17606:
17607: 2002-08-15 paf
17608:
17609: * src/classes/classes.h: write to static var caused useless
17610: Exception, introduced Methoded::put_element wich consumes those
17611:
17612: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
17613: src/types/pa_vcookie.C, src/types/pa_vdate.h,
17614: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
17615: $response:field[date] $response:field[$.xxx[date]]
17616:
17617: * src/: classes/hash.C, classes/string.C, classes/table.C,
17618: classes/void.C, include/pa_sql_connection.h: fixed source of
17619: ^hash::sql{bad}
17620:
17621: * operators.txt: $request:body unprecessed POST request body
17622:
17623: * src/types/pa_vrequest.C: $request:body unprecessed POST request
17624:
17625: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
17626: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
17627:
17628: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
17629: src/include/pa_request.h, src/main/pa_pool.C,
17630: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
17631: $request:body r.post_data now const
17632:
17633: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
17634: classes/xnode.C, main/execute.C, types/pa_value.h,
17635: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
17636: types/pa_vtable.h: instead of type() checking everywhere used
17637: Value.as now user descendants can be used in params.
17638:
17639: VObject::as_*, is_defined now taken from bases. xtable(table)
17640: ^if($xtable) now OK
17641:
17642: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
17643: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
17644: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
17645:
17646: 2002-08-14 paf
17647:
17648: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
17649: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17650: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17651: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17652: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17653: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17654: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17655: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17656: types/pa_vresponse.C, types/pa_vresponse.h,
17657: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17658: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17659: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17660: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17661: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
17662: & VClass
17663:
17664: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
17665:
17666: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
17667: removed fixopt stupidity. on stupid linux use cd /document/root
17668: ../cgi/parser3 script
17669:
17670: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
17671: params, splitting them by space, excluding argv[0], argv[argc-1]
17672:
17673: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
17674: fixopt.h: fixopt now preprocesses command line params, splitting
17675: them by space, excluding argv[0], argv[argc-1]
17676:
17677: * src/targets/cgi/parser3.C: -f config file
17678:
17679: * src/targets/cgi/parser3.C: fixed .log file dir
17680:
17681: 2002-08-13 paf
17682:
17683: * src/types/pa_vobject.C: allow override parent variables, useful
17684: for form descendants [in vobject too, were in vclass]
17685:
17686: * src/types/pa_vclass.C: allow override parent variables, useful
17687: for form descendants
17688:
17689: * src/types/pa_vclass.C: checked: form[vclass]fields can be
17690: overwritten in derived(table)
17691:
17692: * src/: classes/form.C, classes/mail.C, classes/op.C,
17693: classes/xnode.h, include/pa_request.h, main/execute.C,
17694: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17695: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17696: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17697: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17698: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17699: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17700: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17701: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17702: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17703: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17704: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17705: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17706: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
17707: Value::get_element(..., bool looking_down) [needed to exclude
17708: endless recoursion]
17709:
17710: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
17711: fix bug with put endless recoursion todo: check 'as'
17712:
17713: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
17714: reorganized modules todo: fix bug with put endless recoursion
17715: todo: check 'as'
17716:
17717: * src/types/pa_vobject.h: checked: table fields can be overwritten
17718: in derived(table)
17719:
17720: * src/types/pa_vobject.h: derived classes can have fields of their
17721: own now
17722:
17723: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
17724: fixed error message on using non-created table
17725:
17726: * src/: classes/form.C, classes/hash.C, classes/mail.C,
17727: classes/op.C, classes/xnode.h, include/pa_request.h,
17728: main/compile.C, main/compile.tab.C, main/execute.C,
17729: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17730: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17731: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17732: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17733: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
17734: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17735: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17736: types/pa_vresponse.C, types/pa_vresponse.h,
17737: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17738: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17739: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17740: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17741: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
17742: looking down/up tree todo: fix error message on non-constructed
17743: parents
17744:
17745: 2002-08-12 paf
17746:
17747: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
17748: derived OK
17749:
17750: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
17751: thorough testing
17752:
17753: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
17754: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17755: types/pa_vobject.h, types/pa_vstateless_class.h,
17756: types/pa_vstateless_object.h, types/pa_wcontext.h,
17757: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
17758: ^base:create[] dynamic call rewritten todo: thorough testing
17759:
17760: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
17761: now instantates base class, remembers it and saves child in
17762: parent VObject.get_class now returns last child = downward
17763: virtual calls OK
17764:
17765: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
17766: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
17767: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
17768: types/pa_vobject.h, types/pa_vresponse.h,
17769: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17770: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
17771: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
17772: VAliased [redundant], moved $CLASS to VObject only [parser class
17773: instance]
17774:
17775: * src/main/pa_request.C: $response:body[file] content-type check
17776: fixed [were bad when content-type is hash]
17777:
17778: 2002-08-09 paf
17779:
17780: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
17781: types/pa_vobject.h, types/pa_vxdoc.h: started as()
17782:
17783: 2002-08-08 paf
17784:
17785: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
17786: src/main/pa_globals.C: year column in month calendar [week year]
17787:
17788: * src/main/execute.C: error reporting on object writes to MAIN
17789: improved [were ruind with fixing $obj[^if(1){$obj}] ]
17790:
17791: * operators.txt, src/types/pa_vdate.h: $date.yearday
17792: $date.daylightsaving
17793:
17794: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
17795: use tainted data now. only she must specify the language.
17796:
17797: ^mail:send[ $.from[paf@mail.design.ru]
17798: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
17799: $.text[^taint[uri][ìîñêâà]=] ]
17800:
17801: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
17802: now prints more precise origin
17803:
17804: * src/include/pa_string.h: String::first_char now not fails on
17805: empty strings ^if(-f '') now ok and in 3 other places.
17806:
17807: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
17808: String::first_char now not fails on empty strings ^if(-f '') now
17809: ok and in 3 other places.
17810:
17811: 2002-08-07 paf
17812:
17813: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
17814: fixed
17815:
17816: * src/main/pa_string.C: ^string.mid(0;bad) fixed
17817:
17818: * src/: main/execute.C, types/pa_vcode_frame.h,
17819: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17820: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
17821: mistakenly not completely transparent to object writes.
17822: $hash[^if(1){$hash}] now works
17823:
17824: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
17825: now erasing cache file [there were bad check on that]
17826:
17827: * src/: classes/classes.dsp, classes/table.C,
17828: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
17829: all Debug dirs in .dsp now named 'Debug'
17830:
1.116 moko 17831: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 17832:
17833: * operators.txt, src/classes/mail.C: exception_type email.send
17834:
17835: * operators.txt, src/types/pa_vmail.C: exception_type email.format
17836:
17837: * src/types/pa_vmail.C: mail:send empty email checked
17838:
17839: 2002-08-06 paf
17840:
17841: * operators.txt, src/classes/table.C, src/include/pa_array.h,
17842: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
17843: ^table::create[$source;$.options] ^table::join[$source;$.options]
17844:
17845: * operators.txt, src/classes/hash.C, src/classes/string.C,
17846: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
17847: # $.default() }
17848:
17849: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
17850:
17851: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
17852: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
17853: $file.content-type [instead of .mime-type] now works for
17854: file::stat also
17855:
17856: * src/main/pa_request.C: case insensitive mime_type_of
17857:
17858: 2002-08-05 paf
17859:
17860: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
17861:
17862: * src/types/pa_vmail.C: file buffer relocated to parser heap
17863:
17864: * operators.txt: comment on date:calendar week column
17865:
17866: * src/main/pa_common.C: write checked
17867:
17868: * src/main/: pa_common.C: write checked
17869:
17870: * src/classes/date.C: +1 buf size for stupid snprintfs
17871:
17872: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
17873: month calendar week column [ISO 8601 Week Numbers]
17874:
17875: 2002-08-02 paf
17876:
17877: * src/: include/pa_config_fixed.h, main/pa_string.C,
17878: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
17879: DEBUG*
17880:
17881: * configure, configure.in, src/include/pa_version.h: release
17882: 3_0_0005
17883:
17884: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
17885: multipart post fixed
17886:
17887: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
17888: response transcoded source->client only when text/* or simple
17889: onoverridden $response:body
17890:
17891: 2002-08-01 paf
17892:
17893: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17894: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17895: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17896: classes/op.C, classes/response.C, classes/string.C,
17897: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17898: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17899: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17900: include/pa_config_fixed.h, include/pa_dictionary.h,
17901: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
17902: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
17903: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
17904: include/pa_socks.h, include/pa_sql_connection.h,
17905: include/pa_sql_driver_manager.h, include/pa_stack.h,
17906: include/pa_string.h, include/pa_stylesheet_connection.h,
17907: include/pa_stylesheet_manager.h, include/pa_table.h,
17908: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17909: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
17910: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
17911: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17912: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
17913: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17914: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17915: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
17916: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17917: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17918: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
17919: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
17920: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
17921: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17922: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17923: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
17924: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
17925: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17926: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
17927: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
17928: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
17929: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
17930: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
17931: types/pa_vmethod_frame.h, types/pa_vobject.h,
17932: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17933: types/pa_vresponse.h, types/pa_vstateless_class.C,
17934: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17935: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
17936: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17937: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
17938: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 17939: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 17940:
17941: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
17942: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
17943: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17944: classes/math.C, classes/op.C, classes/response.C,
17945: classes/string.C, classes/table.C, classes/void.C,
17946: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17947: include/pa_array.h, include/pa_cache_managers.h,
17948: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17949: include/pa_config_fixed.h, include/pa_config_includes.h,
17950: include/pa_dictionary.h, include/pa_dir.h,
17951: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17952: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17953: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17954: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17955: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17956: include/pa_stack.h, include/pa_string.h,
17957: include/pa_stylesheet_connection.h,
17958: include/pa_stylesheet_manager.h, include/pa_table.h,
17959: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17960: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
17961: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17962: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
17963: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
17964: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
17965: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
17966: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
17967: main/pa_sql_driver_manager.C, main/pa_string.C,
17968: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
17969: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17970: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17971: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
17972: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17973: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
17974: targets/isapi/pool_storage.h, types/pa_valiased.C,
17975: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
17976: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
17977: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17978: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
17979: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17980: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
17981: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
17982: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17983: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17984: types/pa_vresponse.C, types/pa_vresponse.h,
17985: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17986: types/pa_vstateless_object.h, types/pa_vstatus.C,
17987: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
17988: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17989: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17990: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
17991: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
17992: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
17993: types/Makefile.am: ident.C* removed
17994:
17995: * operators.txt, src/classes/file.C, src/main/pa_request.C:
17996: file:find[/can/do/this/now.txt]
17997:
17998: * src/targets/cgi/parser3.C: usage to stdout now
17999:
18000: 2002-07-31 paf
18001:
18002: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
18003:
18004: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
18005: default "postmaster"
18006:
18007: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
18008: -f postmaster now default sendmail key word "postmaster"
18009: replaced to $.from
18010:
18011: 2002-07-30 paf
18012:
1.116 moko 18013: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
18014: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 18015:
18016: * src/main/pa_charset.C: comment
18017:
18018: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
18019: table, &#decimal;
18020:
18021: * src/main/pa_request.C: comment
18022:
18023: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
18024: paragraf]
18025:
18026: 2002-07-11 paf
18027:
18028: * src/main/pa_exec.C: build command line badly added params twice
18029: [and first time without ' ']. double wrong. fixed.
18030:
18031: * src/main/pa_exec.C: invalid .exe caused error message with params
18032: wich parser did not provide = reported badly. fixed that.
18033:
18034: * src/classes/mail.C: $MAIL[ # xxx ]
18035:
18036: now ok
18037:
18038: * operators.txt: plan: sql detailed exception
18039:
18040: 2002-07-01 paf
18041:
18042: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
18043: [MForm.configure_admin were called when request.main_class ==0
18044:
18045: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
18046:
18047: * src/classes/form.C: content_length type fix
18048:
18049: 2002-06-30 paf
18050:
18051: * src/classes/mail.C: merged from 4
18052:
18053: * src/classes/mail.C: restored $MAIL
18054:
18055: 2002-06-28 paf
18056:
18057: * configure, configure.in: removed paths.h
18058:
1.116 moko 18059: * configure, src/include/pa_version.h,
1.95 moko 18060: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
18061: merged, makes updated
18062:
18063: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
18064: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18065: src/include/pa_pool.h, src/include/pa_version.h,
18066: src/main/pa_charset.C, src/main/pa_pool.C,
18067: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
18068: src/types/pa_vmail.C: merged latest updates to head
18069:
18070: 2002-06-27 paf
18071:
18072: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
18073: not error now
18074:
18075: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
18076: src/include/pa_config_fixed.h, src/include/pa_pool.h,
18077: src/main/pa_charset.C, src/main/pa_pool.C:
18078: ^xdoc::create[[uri]]... base uri for document being created,
18079: imports and other relative file names would be relative to this
18080: uri default uri=path_translated
18081:
18082: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
18083:
18084: 2002-06-26 paf
18085:
18086: * configure, configure.in, src/include/pa_version.h:
18087: release_3_0_0004
18088:
18089: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
18090: 0 now
18091:
18092: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
18093:
18094: 2002-06-25 paf
18095:
18096: * src/main/pa_string.C: emtpy string, or string of whitespaces
18097: considered bad number now
18098:
18099: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
18100: now
18101:
18102: * operators.txt, src/classes/string.C: ^string.normalize [old
18103: name: optimize
18104:
18105: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
18106: library configured
18107:
18108: * src/main/pa_request.C: configure_admin forced if no @conf
18109:
1.150 moko 18110: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
18111: ^math:crypt updated to generate random salt when needed and to
18112: call system crypt() if not $apr1$ prefix
1.95 moko 18113:
18114: 2002-06-24 paf
18115:
18116: * INSTALL: --with-static/shared-mailreceive described
18117:
18118: * src/include/pa_config_fixed.h: ssize_t fixed
18119:
1.116 moko 18120: * configure, configure.in, src/include/pa_config_auto.h.in,
18121: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 18122: src/types/pa_vmail.C: $mail:received makes update
18123:
18124: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
18125: WITH_MAILRECEIVE
18126:
18127: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
18128:
18129: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
18130: option, for $mail:receive
18131:
18132: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
18133: introducting $message:received ^mail:send rewritten with backward
18134: comp
18135:
18136: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18137: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18138: types/types.dsp: win32xml win32mailreceive pseudomodules paths
18139: now
18140:
18141: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
18142: src/include/pa_charset.h, src/include/pa_config_fixed.h,
18143: src/include/pa_request.h, src/include/pa_string.h,
18144: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
18145: src/main/pa_globals.C, src/main/pa_request.C,
18146: src/main/pa_string.C, src/main/pa_uue.C,
18147: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
18148: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
18149: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
18150: uue to separate file introducting $message:received ^mail:send
18151: rewritten with backward comp
18152:
18153: 2002-06-21 paf
18154:
1.116 moko 18155: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
18156: co changes
1.95 moko 18157:
1.116 moko 18158: * configure, configure.in, src/lib/md5/Makefile.am,
18159: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
18160: restructure .in and .am files appropriate changes
1.95 moko 18161:
18162: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
18163: pcre to libs/ added libs/md5 which is linked to non-apache
18164: targets ^math:crypt[password;$apr1$salt]
18165:
18166: * INSTALL, configure.in, operators.txt, parser3.dsw,
18167: src/Makefile.am, src/classes/Makefile.am,
18168: src/classes/classes.dsp, src/classes/math.C,
18169: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 18170: src/lib/pcre/Makefile.am, src/lib/pcre/README,
18171: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
18172: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
18173: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
18174: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
18175: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
18176: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
18177: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 18178: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
18179: src/lib/pcre/pcre_parser_ctype.dsp,
18180: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
18181: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
18182: src/main/compile.tab.C, src/main/main.dsp,
18183: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
18184: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
18185: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
18186: to libs/ added libs/md5 which is linked to non-apache targets
18187: ^math:crypt[password;$apr1$salt]
18188:
18189: 2002-06-20 paf
18190:
1.150 moko 18191: * INSTALL, configure, configure.in, operators.txt,
18192: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
18193: src/include/pa_globals.h, src/include/pa_request.h,
18194: src/main/execute.C, src/main/pa_request.C,
18195: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18196: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
18197: file:justname&co & @auto/conf[filespec
1.95 moko 18198:
18199: * operators.txt, src/classes/file.C:
18200: !^file:dirname[/a/some.tar.gz]=/a
18201: !^file:dirname[/a/b/]=/a
18202: !^file:basename[/a/some.tar.gz]=some.tar.gz
18203: !^file:justname[/a/some.tar.gz]=some.tar
18204: !^file:justext[/a/some.tar.gz]=gz
18205:
18206: * src/: classes/op.C, include/pa_request.h, main/execute.C,
18207: main/pa_request.C, types/pa_vmethod_frame.h: introducing
18208: @conf/auto[filespec]
18209:
1.116 moko 18210: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 18211:
1.150 moko 18212: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 18213: src/include/pa_globals.h, src/targets/cgi/parser3.C,
18214: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
18215:
18216: 2002-06-18 paf
18217:
18218: * configure, configure.in, src/include/pa_version.h: version to
18219: configure.in
18220:
18221: * INSTALL: reflected .conf.dist dir change
18222:
1.150 moko 18223: * Makefile.am, configure, configure.in,
1.116 moko 18224: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 18225: .in & *.am updated
18226:
18227: * src/classes/file.C: strncasecmp
18228:
18229: * src/classes/file.C: strcasecmp
18230:
1.150 moko 18231: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 18232:
18233: * src/classes/file.C: ^file::exec[script;$.bad error case
18234: insensitive check now
18235:
18236: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
18237:
18238: * configure, configure.in, src/include/pa_pool.h,
18239: src/include/pa_types.h: pack configure.in detection simplified.
18240: figured out that gcc on sparc not that stupid as thought
18241: previously: on sparc: when it sees packed class it modifies it's
18242: field-access-code to byte operations [stb, ldub] instead of 4byte
18243: operations [st, lduh] so packed must be all parts of packed
18244: class, i.e. it's parents&fields(classes). for now it's only
18245: String that packed and what was wrong is that it's parent -
18246: Pooled, were not packed. fixed that.
18247:
18248: 2002-06-14 paf
18249:
18250: * operators.txt: more precise xml-to-text options
18251:
18252: * operators.txt, src/types/pa_vxnode.C: xnode
18253: attribute_node.name/value xnode pi.node.data
18254:
18255: 2002-06-12 paf
18256:
1.116 moko 18257: * configure, configure.in, src/targets/cgi/Makefile.am,
18258: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 18259:
18260: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
18261: src/include/pa_globals.h, src/include/pa_request.h,
18262: src/main/compile.tab.C, src/main/pa_globals.C,
18263: src/main/pa_request.C, src/targets/cgi/parser3.C,
18264: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
18265:
18266: * src/classes/mail.C: sendmail -ti [default now]
18267:
18268: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
18269: to be strings. for convinient #ing
18270:
18271: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
18272: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
18273:
18274: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
18275: main/pa_globals.C, main/pa_request.C: @conf
18276:
18277: 2002-06-11 paf
18278:
18279: * src/classes/file.C: check simplified
18280:
18281: * src/: classes/file.C, targets/cgi/parser3.dsp,
18282: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
18283: valid prefix
18284:
18285: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
18286: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
18287: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
18288:
18289: 2002-06-10 paf
18290:
18291: * operators.txt, src/classes/op.C, src/include/pa_common.h,
18292: src/main/pa_common.C: lock failures reported now
18293:
18294: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
18295: string->double @ compile time were not-enough-checking...
18296:
18297: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
18298: autoconvert now ignored
18299:
18300: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
18301: check
18302:
18303: * src/classes/mail.C: mail netscape attachment name fixed. todo:
18304: $response:body content-type:name
18305:
18306: * configure, configure.in: hpux check, nsl link, no socket
18307:
18308: * operators.txt: old merge conflict removed
18309:
18310: * configure, configure.in: pack even address access on sparc&co
18311: arch checked in configure
18312:
18313: * configure, src/include/pa_version.h: makes
18314:
18315: * configure, configure.in, src/include/pa_version.h: makes
18316:
18317: * src/main/untaint.C: (bug#2) mail subject got always prepended
18318: with charset even when all letters were 7bit one
18319:
18320: * src/main/pa_common.C: merged fixed -d (bug)
18321:
18322: * src/main/pa_common.C: fixed -d (bug)
18323:
18324: 2002-06-03 paf
18325:
18326: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
18327: src/classes/classes.dsp, src/main/compile.tab.C,
18328: src/main/main.dsp, src/main/pa_globals.C,
18329: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
18330: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
18331: .dsp-s along with reorganized cvs modules dirs structure
18332:
18333: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18334: main/pa_globals.C, targets/cgi/parser3.dsp,
18335: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
18336: modules
18337:
18338: 2002-05-28 paf
18339:
18340: * src/targets/cgi/parser3.C: info.uri now ""
18341:
18342: 2002-05-17 paf
18343:
18344: * src/classes/: table.C: ^table.save << checked empty
18345: pre/match/post columns
18346:
18347: 2002-05-16 paf
18348:
18349: * src/classes/image.C: image::measure can png now
18350:
18351: 2002-05-15 paf
18352:
18353: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
18354: added
18355:
18356: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
18357:
18358: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
18359: %H[:%M[:%S]]]]]] [-%m now
18360:
18361: 2002-05-14 paf
18362:
18363: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
18364:
18365: 2002-05-07 paf
18366:
18367: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
18368: src/include/pa_globals.h, src/include/pa_request.h,
18369: src/include/pa_table.h, src/main/compile.tab.C,
18370: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
18371: src/main/pa_request.C, src/main/pa_table.C,
18372: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
18373: src/targets/isapi/parser3isapi.dsp,
18374: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
18375: name2number field now &. main_method_name now on Request pool
18376: rather on global_pool [Junction+VJunction created on same pool as
18377: name = were created on global pool, causing mem leaks]
18378:
18379: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18380: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18381: main/compile.y, main/main.dsp, main/pa_globals.C,
18382: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18383: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18384: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18385: field now &. main_method_name now on Request pool rather on
18386: global_pool [Junction+VJunction created on same pool as name =
18387: were created on global pool, causing mem leaks]
18388:
18389: 2002-05-06 paf
18390:
18391: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18392: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18393: 100*40 bytes per request memory leak [nonpool malloc in globals]
18394:
18395: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18396: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18397: 100*40 bytes per request memory leak [nonpool malloc in globals]
18398:
18399: 2002-04-30 paf
18400:
18401: * configure, src/include/pa_version.h: version now not b
18402:
18403: * src/targets/cgi/parser3.C: request.uri now never 0
18404:
18405: 2002-04-29 paf
18406:
18407: * configure.in: removed b
18408:
18409: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18410: Exception::comment/type checked in (), no there's no empty
18411: type/comment by default
18412:
18413: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18414: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18415: src/doc/value.dox, src/include/pa_exception.h,
18416: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18417: 0001
18418:
18419: 2002-04-26 paf
18420:
18421: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18422: size reduced
18423:
18424: 2002-04-25 paf
18425:
18426: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18427: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18428: now that took into account
18429:
18430: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18431: 01:03:04]
18432:
18433: * ChangeLog, operators.txt, src/classes/date.C:
18434: ^date::create[2002-12-33 01:03:04]
18435:
18436: * ChangeLog: updated changelog
18437:
18438: * src/classes/table.C: removed restriction on column count to
18439: ^table.hash to work, now must be >0 [were >1]
18440:
18441: 2002-04-24 paf
18442:
18443: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18444: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18445: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
18446: targets
18447:
18448: 2002-04-23 paf
18449:
18450: * operators.txt, src/classes/string.C:
18451: int/double/string:sql{}[$.default{code}] fixed [were barking:
18452: "junction used outside of context"]
18453:
18454: 2002-04-22 paf
18455:
18456: * types.txt, src/classes/string.C, src/include/pa_string.h,
18457: src/main/pa_string.C, src/types/pa_vstring.C,
18458: src/types/pa_vstring.h: ^string.optimize[]
18459:
18460: * src/: include/pa_globals.h, include/pa_table.h,
18461: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
18462: table template
18463:
18464: * src/classes/: string.C: optimize removed from string
18465: .left/right/pos
18466:
18467: * src/main/execute.C: rolled back to
18468: before_killing_userjunction_contexts
18469:
18470: * src/main/execute.C: user junctions context killed
18471:
18472: * src/main/execute.C: junctions to local contexts got
18473: cleanized&checked later
18474:
18475: 2002-04-19 paf
18476:
18477: * src/: classes/string.C, include/pa_request.h,
18478: include/pa_string.h, main/pa_request.C, main/pa_string.C,
18479: types/pa_vstring.C, types/pa_vstring.h: string now optimized
18480: prior to .left .right .mid .pos .match when that is profitable,
18481: and always before .replace when $ORIGINS(1) optimization disabled
18482: economy from not wasting mem on lots of strings which occur by
18483: lots of String:mid calls to get parts of source string between
18484: found_occurances
18485:
18486: * src/classes/file.C: ovector now local economy: 16 bytes per
18487: ^file:list
18488:
18489: * src/: include/pa_globals.h, include/pa_table.h,
18490: main/pa_globals.C, main/pa_string.C: String::match table columns
18491: globalized, not created @ each ^match anymore economy:
18492: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
18493:
18494: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
18495: removed from each String::match replace iteration, and made
18496: stacked sizeof(VTable)=12bytes economy on each replace code
18497:
18498: * src/doc/footer.htm: 2001,
18499:
18500: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
18501: string.match[]['] option enables generation of $match.prematch
18502: .match .postmatch columns
18503:
18504: * src/main/pa_string.C: String::match options analized without
18505: cstr-ing them now
18506:
18507: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
18508: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
18509: config updated to doxygen 1.2.15, created helper which fixes
18510: minor bugs in chm project files & htm tree. changed extension to
18511: .htm
18512:
18513: 2002-04-18 paf
18514:
18515: * src/doc/doxygen.cfg: .chi generation disabled
18516:
18517: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
18518: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
18519: fields&methods
18520:
18521: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
18522: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
18523: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
18524: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
18525: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
18526: types/pa_vresponse.h, types/pa_vstateless_class.h,
18527: types/pa_vstateless_object.h, types/pa_vstatus.h,
18528: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
18529: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
18530: VStateless_class to VObject
18531:
18532: * src/: main/pa_request.C, types/pa_valiased.h,
18533: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18534: types/pa_vstring.h: VStateless_string_object speicalized light
18535: version of VStateless_object
18536:
18537: * src/classes/op.C: ^throw comment param made optional
18538:
18539: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
18540: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
18541: and implemented down in VClass, fclass_alias removed,
18542:
18543: * src/types/pa_value.C: forced to cut that from .h because of
18544: VStateless_class usage [undefined in .h]
18545:
18546: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18547: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18548: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
18549: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
18550: on each CALL]
18551:
18552: * src/: classes/classes.h, classes/date.C, classes/double.C,
18553: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
18554: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
18555: classes/response.C, classes/string.C, classes/table.C,
18556: classes/void.C, classes/xnode.C, include/pa_globals.h,
18557: include/pa_request.h, main/execute.C, main/pa_globals.C,
18558: main/pa_request.C, types/Makefile.am, types/pa_value.h,
18559: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
18560: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18561: types/pa_vstateless_class.h, types/pa_wcontext.C,
18562: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
18563: removed Value::fname
18564:
18565: 2002-04-17 paf
18566:
18567: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
18568: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
18569: doc/pooled.dox, doc/string.dox, doc/targets.dox,
18570: include/pa_pool.h, include/pa_types.h: dox updated to current
18571: state, PTHROW freshen to throw & co
18572:
18573: * src/types/pa_vhash.h: vstring wrong parent fixed
18574:
18575: * src/classes/op.C: taint local result var bug fixed
18576:
18577: 2002-04-16 paf
18578:
18579: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
18580: Attic asm.txt as most interesting
18581:
18582: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
18583: check, preventing content-length: 0 from appearing
18584:
18585: * src/main/execute.C: $result in @main now taken into account as in
18586: usual functions
18587:
18588: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
18589: & @unhandled_exception now taken into account as in usual
18590: functions
18591:
18592: * src/doc/postbuild.txt: instructions on post .html build
18593:
18594: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
18595:
18596: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
18597: tainted
18598:
18599: * src/main/pa_request.C: uri in error log
18600:
18601: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
18602: cheched date:create(days) param for validity [later were assumed
18603: valid and crashed on invalid onces]
18604:
18605: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18606: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
18607: and used that for removing VString wrapper
18608:
18609: * src/classes/op.C: exception2vhash file now tainted
18610:
18611: * src/classes/op.C: _process pseudo origin copied from local var to
18612: heap
18613:
18614: * src/classes/op.C: extra check on empty file in origin in _execute
18615:
18616: 2002-04-15 paf
18617:
18618: * src/: main/execute.C, types/pa_value.h: fixed name update
18619:
18620: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
18621: functions
18622:
18623: * src/: classes/file.C, classes/hash.C, classes/op.C,
18624: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
18625: started dual write_xxx_lang functions, if checked & works
18626:
18627: * src/: classes/date.C, classes/file.C, classes/mail.C,
18628: classes/string.C, classes/xnode.C, include/pa_request.h,
18629: types/pa_value.h, types/pa_wcontext.h: removed absolutely
18630: unnecessary VString shells
18631:
18632: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
18633: prev changes]
18634:
18635: * src/: classes/image.C, classes/op.C, classes/string.C,
18636: classes/table.C, include/pa_request.h, main/execute.C,
18637: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
18638: StringOrValue wcontext result, now ready for dual writes
18639:
18640: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
18641: checked that
18642:
18643: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18644: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
18645: changed to OP_WRITE_VALUE in var get cases
18646:
18647: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
18648: include/pa_request.h, main/compile.tab.C, main/compile.y,
18649: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18650: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
18651: switch in hash constructor fixed [were problems with using of
18652: stacked wwrapper after it's death]
18653:
18654: 2002-04-12 paf
18655:
18656: * operators.txt, src/classes/table.C: table.select(expression) 0
18657:
18658: 2002-04-11 paf
18659:
18660: * src/: classes/string.C, include/pa_request.h, main/execute.C:
18661: Request::process_internal codeFrame & wwrapper stacked [not
18662: wasting heap anymore]
18663:
18664: 2002-04-10 paf
18665:
18666: * src/: classes/double.C, classes/file.C, classes/hash.C,
18667: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
18668: classes/string.C, classes/table.C, classes/void.C,
18669: classes/xdoc.C, include/pa_request.h, main/execute.C,
18670: main/pa_string.C: killed Request::process() wrapping
18671: VString(String) in case we need only String
18672:
18673: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18674: killed 8 bytes from String.head
18675:
18676: 2002-04-09 paf
18677:
18678: * src/: main/compile.tab.C, targets/cgi/parser3.C,
18679: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
18680: local*/char b[...]; a=b; situations
18681:
18682: * operators.txt, src/classes/xdoc.C: xslt params made literal
18683:
18684: * src/classes/xdoc.C: xslt params fixed
18685:
18686: * src/: main/pa_common.C, targets/cgi/parser3.C,
18687: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
18688: not pool.malloc(MAX_NUMBER) but really neaded
18689:
18690: * operators.txt, src/classes/double.C, src/classes/int.C:
18691: int/double.int/double(default)
18692:
18693: 2002-04-04 paf
18694:
18695: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
18696: [when reconstructing pieces were split by
18697: max_integral(piece.size), thus some strings to replace happen to
18698: be split into two = not replaced)
18699:
18700: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
18701: standalone version = current dir
18702:
18703: * src/targets/cgi/parser3.C: document root in standalone version =
18704: current dir
18705:
18706: 2002-04-03 paf
18707:
18708: * configure, configure.in: more checks on nonexistent charset
18709:
1.116 moko 18710: * INSTALL, configure, configure.in: root config configure options
1.95 moko 18711:
18712: 2002-04-02 paf
18713:
18714: * src/main/compile.C: parser.compile [exception name more like in
18715: doc]
18716:
18717: 2002-04-01 paf
18718:
18719: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
18720: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
18721: .content-type.charset, not .charset
18722:
18723: 2002-03-29 paf
18724:
18725: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
18726:
18727: * operators.txt, src/classes/date.C: ^date::create now may not
18728: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
18729: days' year. | 31.05->31.04 roll
18730:
18731: 2002-03-28 paf
18732:
18733: * operators.txt, src/classes/date.C, src/classes/op.C,
18734: src/include/pa_globals.h, src/include/pa_hash.h,
18735: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
18736: ^cache(seconds) ^cache[date] }
18737:
18738: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
18739: param
18740:
18741: 2002-03-27 paf
18742:
18743: * operators.txt, src/classes/date.C, src/classes/double.C,
18744: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
18745: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
18746: src/classes/math.C, src/classes/op.C, src/classes/string.C,
18747: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
18748: src/classes/xnode.C, src/include/pa_exception.h,
18749: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
18750: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
18751: src/main/pa_array.C, src/main/pa_charset.C,
18752: src/main/pa_charsets.C, src/main/pa_common.C,
18753: src/main/pa_dictionary.C, src/main/pa_exception.C,
18754: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
18755: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
18756: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
18757: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18758: src/types/pa_value.h, src/types/pa_vcookie.C,
18759: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
18760: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
18761: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
18762: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
18763: src/types/pa_wwrapper.h: assigned exception types
18764:
18765: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
18766: src/include/pa_request.h, src/main/execute.C,
18767: src/main/pa_request.C: decided agains resetting exception_trace,
18768: just changed name
18769:
18770: 2002-03-26 paf
18771:
18772: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
18773: fixed
18774:
18775: * src/classes/op.C: forced language of $source field of exception
18776: to 'tainted', so that sql-langed-frags could be outputed outside
18777: of connect
18778:
18779: * operators.txt: removed date.roll limit of +-1 offset
18780:
18781: * src/classes/date.C: removed date.roll limit of +-1 offset
18782:
18783: * operators.txt, src/classes/date.C: fixed date roll on
18784: daylightsaving days mktime took into account tm_isdst flag, which
18785: remained from BEFORE roll, but should have been reset
18786:
18787: 2002-03-25 paf
18788:
18789: * operators.txt, src/targets/cgi/parser3.C:
18790: http_site_config_filespec
18791:
18792: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
18793: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
18794: with any/both --disable-foreign-group-files --disable-execs
18795:
18796: * INSTALL: "--with=sendmail=COMMAND" comment
18797:
18798: * INSTALL, configure, configure.in, src/classes/mail.C,
18799: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 18800: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
18801: disables execs also. introducing --sendmail
1.95 moko 18802:
18803: * operators.txt: pgsql options comment
18804:
18805: * INSTALL: comment on --disable-link-stdcpp
18806:
1.116 moko 18807: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
18808: libstdc++ link skipping configure option
1.95 moko 18809:
18810: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
18811: with error were put to cache with 'marked_to_rollback' flag, all
18812: consequent even OK requests rolled back
18813:
18814: 2002-03-22 paf
18815:
18816: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
18817: false return
18818:
18819: * operators.txt: few comments on sets
18820:
18821: 2002-03-18 paf
18822:
18823: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
18824: src/include/pa_globals.h, src/include/pa_request.h,
18825: src/include/pa_stack.h, src/main/pa_globals.C,
18826: src/main/pa_request.C: introducing ^try
18827:
18828: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
18829: types/pa_vdouble.h: removed some tested @tests
18830:
18831: 2002-03-15 paf
18832:
18833: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
18834:
18835: 2002-03-13 paf
18836:
18837: * src/main/pa_exception.C: checked not-pooled malloc
18838:
18839: 2002-03-11 paf
18840:
18841: * INSTALL, configure, configure.in,
18842: src/include/pa_config_auto.h.in: --disable-foreign-group-files
18843:
18844: * src/main/pa_common.C: --disable-foreign-group-files
18845:
18846: * INSTALL: --disable-execs
18847:
18848: * src/main/pa_exec.C: --disable-execs
18849:
18850: * configure, configure.in, src/include/pa_config_auto.h.in:
18851: --disable-execs
18852:
18853: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
18854:
18855: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
18856: file::exec/cgi linebreaks "0D0A" changed to 0A onces
18857:
18858: 2002-03-05 paf
18859:
18860: * operators.txt, src/classes/date.C: date week calendar columns
18861: named
18862:
18863: * operators.txt, src/classes/date.C: date week calendar columns
18864: named
18865:
18866: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
18867: requires headers to be terminated with \r\n manually [refuses to
18868: separate header/body itself]
18869:
18870: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18871: targets/isapi/parser3isapi.C: isapi site config beside .dll
18872:
18873: 2002-03-04 paf
18874:
18875: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
18876: in PASS language
18877:
18878: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
18879: deserialize checks on broken file
18880:
18881: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
18882: parser3isapi.dsp: isapi updated
18883:
18884: 2002-03-01 paf
18885:
18886: * src/main/pa_exec.C: execle -> execve, now argc OK
18887:
18888: 2002-02-28 paf
18889:
18890: * src/main/untaint.C: removed some debug comments
18891:
18892: * src/main/pa_charsets.C: when placing charset to cache using
18893: global name now [were request]
18894:
18895: * configure, configure.in: apache module updated
18896:
18897: * src/main/pa_string.C: origin by first piece preferred before last
18898: piece
18899:
18900: 2002-02-27 paf
18901:
18902: * src/main/pa_charset.C: size_t
18903:
18904: * INSTALL: shared/static-xml with-pathlink
18905:
18906: * operators.txt: SMTP comment
18907:
18908: 2002-02-26 paf
18909:
18910: * src/main/pa_exec.C: more precise names for vars, cosmetic
18911:
18912: * src/classes/xnode.C: in some situation, xpath query returned
18913: result with type NODESET, but empty nodeset member field, checked
18914: that
18915:
18916: 2002-02-22 paf
18917:
18918: * INSTALL: without-zlib comment
18919:
18920: * etc/parser3.charsets/windows-1251.cfg: °
18921:
18922: * configure, configure.in: glib###.a detection fixed
18923:
18924: * INSTALL: hashfile removed from INSTALL
18925:
1.116 moko 18926: * Makefile.am: make update
1.95 moko 18927:
18928: * src/main/pa_string.C: string iterators fixed again, so were
18929: String::join_chain
18930:
18931: * src/main/pa_string.C: string iterators fixed again, so were
18932: String::join_chain
18933:
18934: * src/: include/pa_string.h, main/pa_string.C: string iterators
18935: fixed again, so were String::join_chain
18936:
18937: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
18938:
18939: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
18940: "session"
18941:
1.116 moko 18942: * configure, configure.in, src/include/pa_config_auto.h.in:
18943: --with-shared-xml --with-static-xml
1.95 moko 18944:
18945: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18946: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18947: types/types.dsp: *.dsp: removed refereces to win32db & ancient
18948: xalan&xml
18949:
18950: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
18951:
18952: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
18953: src/types/types.dsp: removed hashfile support from sources for
18954: now
18955:
1.116 moko 18956: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 18957: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 18958: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
18959: src/include/pa_db_manager.h, src/include/pa_db_table.h,
18960: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 18961: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 18962: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
18963: src/types/Makefile.am, src/types/pa_vhashfile.C,
18964: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 18965:
18966: 2002-02-21 paf
18967:
18968: * src/main/untaint.C: removed debug code, activated commented-for
18969: debug parts
18970:
1.116 moko 18971: * Makefile.am: make cvsupdate
1.95 moko 18972:
18973: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
18974: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
18975: append_row, not at link zero now string to string appending works
18976:
18977: 2002-02-20 paf
18978:
18979: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
18980: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
18981: DEBUG_STRING_APPENDS_VS_EXPANDS
18982:
18983: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18984: economy: 22%
18985:
18986: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18987: space uptimized: string::link_row removed
18988:
18989: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
18990: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
18991: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
18992: types/pa_vstring.h: speed uptimized: string::is_empty
18993:
18994: * operators.txt, src/include/pa_common.h,
18995: src/include/pa_config_fixed.h, src/include/pa_string.h,
18996: src/include/pa_types.h, src/main/compile.tab.C,
18997: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
18998: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
18999: string append optimiziation idea and estimates
19000:
19001: 2002-02-19 paf
19002:
19003: * src/classes/math.C: not used directly [but erroreously reported
19004: that 'is', thus registering twice&other probs]
19005:
19006: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
19007: to node [element]
19008:
19009: * src/main/compile.C: without string_origins parse error
19010: file+line+col possible
19011:
19012: * src/main/: compile.C: without string_origins not worked
19013:
19014: 2002-02-18 paf
19015:
19016: * src/types/pa_vdouble.h: since we have in_expression removed that
19017: trick i've installed into double::as_string
19018:
19019: * src/main/pa_globals.C: extern "C" was removed too fast
19020:
19021: * src/: include/pa_opcode.h, include/pa_request.h,
19022: main/compile.tab.C, main/compile.y, main/execute.C,
19023: types/pa_wcontext.h: in_expression aimed to solve old problem
19024: with string/nonstring values, now in expressions double/int
19025: values are passed as-is, without stupid tostring/fromstring
19026: conversions
19027:
19028: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
19029: __cplusplus } #endif
19030:
19031: * src/main/compile.tab.C: bison env set so one could compile
19032: without cygwin installed
19033:
19034: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
19035: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
19036: gnome xml libs parser .dsp-s changed accordingly
19037:
19038: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
19039:
19040: * operators.txt, src/classes/date.C: date::create [were date::set,
19041: with backward comp
19042:
19043: * src/classes/math.C: math:random range check fixed
19044:
19045: * src/main/: compile.tab.C, compile.y: integer division stops name
19046:
19047: * INSTALL: local install comment
19048:
1.116 moko 19049: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 19050:
1.116 moko 19051: * acinclude.m4, aclocal.m4, configure, configure.in,
19052: src/include/pa_config_auto.h.in,
19053: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
19054: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 19055:
19056: * operators.txt: \ comment
19057:
19058: 2002-02-13 paf
19059:
19060: * src/include/pa_config_includes.h: sys/time time both included
19061: now. vaguely remember confilicts on this on some system [not on
19062: six|ablv] so when would see them again would think up proper
19063: check
19064:
1.116 moko 19065: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
19066: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 19067:
19068: * src/main/pa_common.C: truncation never occured when writing files
19069: on unix [since i've changed cache mech] fix
19070:
19071: * src/main/pa_common.C: strnchr: sanity check added
19072:
19073: * etc/parser3.charsets/windows-1257.cfg: id added
19074:
19075: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
19076: baltic charset file generated, in generation script ispunct check
19077: added
19078:
19079: 2002-02-08 paf
19080:
1.116 moko 19081: * src/: include/Makefile.am, sql/Makefile.am,
19082: targets/isapi/Makefile.am: forgotten makes
1.95 moko 19083:
19084: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
19085: forgotten
19086:
19087: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
19088:
19089: * INSTALL, README: install&others updated
19090:
19091: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
19092:
1.116 moko 19093: * Makefile.am, configure, configure.in,
19094: etc/parser3.charsets/Makefile.am, src/Makefile.am,
19095: src/classes/Makefile.am, src/main/Makefile.am,
19096: src/main/pa_status_provider.C, src/targets/Makefile.am,
19097: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
19098: works
1.95 moko 19099:
19100: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19101: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19102: classes/hashfile.C, classes/int.C, classes/mail.C,
19103: classes/math.C, classes/op.C, classes/response.C,
19104: classes/string.C, classes/table.C, classes/void.C,
19105: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19106: include/pa_array.h, include/pa_cache_managers.h,
19107: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19108: include/pa_config_fixed.h, include/pa_config_includes.h,
19109: include/pa_db_connection.h, include/pa_db_manager.h,
19110: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19111: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19112: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19113: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19114: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19115: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19116: include/pa_stack.h, include/pa_string.h,
19117: include/pa_stylesheet_connection.h,
19118: include/pa_stylesheet_manager.h, include/pa_table.h,
19119: include/pa_threads.h, include/pa_types.h, main/compile.C,
19120: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19121: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
19122: main/pa_db_connection.C, main/pa_db_manager.C,
19123: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19124: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
19125: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
19126: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19127: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
19128: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19129: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
19130: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
19131: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
19132: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
19133: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
19134: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19135: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
19136: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
19137: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
19138: types/pa_vmethod_frame.h, types/pa_vobject.h,
19139: types/pa_vrequest.h, types/pa_vresponse.h,
19140: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19141: types/pa_vstateless_object.h, types/pa_vstatus.C,
19142: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
19143: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
19144: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
19145: classes/image.C, main/pa_common.C, main/pa_exec.C,
19146: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
19147: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
19148: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
19149: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
19150: types/pa_vxnode.C, main/pa_charset.C: name spelling
19151:
19152: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19153: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19154: classes/hashfile.C, classes/image.C, classes/int.C,
19155: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19156: classes/string.C, classes/table.C, classes/void.C,
19157: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19158: include/pa_array.h, include/pa_cache_managers.h,
19159: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
19160: include/pa_config_fixed.h, include/pa_config_includes.h,
19161: include/pa_db_connection.h, include/pa_db_manager.h,
19162: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19163: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19164: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19165: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19166: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19167: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19168: include/pa_stack.h, include/pa_string.h,
19169: include/pa_stylesheet_connection.h,
19170: include/pa_stylesheet_manager.h, include/pa_table.h,
19171: include/pa_threads.h, include/pa_types.h, main/compile.C,
19172: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19173: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
19174: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
19175: main/pa_db_connection.C, main/pa_db_manager.C,
19176: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19177: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19178: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19179: main/pa_socks.C, main/pa_sql_driver_manager.C,
19180: main/pa_status_provider.C, main/pa_string.C,
19181: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19182: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19183: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19184: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19185: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19186: targets/isapi/pool_storage.h, types/pa_valiased.C,
19187: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19188: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19189: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19190: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19191: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19192: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19193: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19194: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19195: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
19196: types/pa_vresponse.h, types/pa_vstateless_class.C,
19197: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
19198: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
19199: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
19200: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
19201: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
19202: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
19203:
19204: 2002-02-07 paf
19205:
19206: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
19207:
1.116 moko 19208: * configure, configure.in, src/include/pa_config_auto.h.in,
19209: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
19210: added yet another locking function: fcntl
1.95 moko 19211:
19212: * config.sub: on cygwin configure passes it with strange i1586
19213: const, hacked it to mean i586
19214:
19215: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
19216: disabled $if reference due to conflicts with local variables
19217:
19218: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
19219: xdoc::set obsolete now, now xdoc::create, with both sences
19220:
19221: * operators.txt, src/classes/table.C, src/include/pa_array.h,
19222: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
19223: table::create now // 'set' name obsolete now table clone.
19224:
19225: * operators.txt, src/classes/string.C,
19226: src/include/pa_config_fixed.h, src/main/compile.tab.C:
19227: ^int/double/string.format now can be called with normal []
19228: brackets, not stupid {} as it were implemented for some strange
19229: reason. retaining backward compatibility due to some
19230: already-implemented servers
19231:
19232: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
19233: main/compile.y, main/compile_tools.C, main/compile_tools.h:
19234: operators now detected by check at name_without_curly_rdive_read
19235: rule whether diving code constists only of
19236: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
19237: with OP_GET_ELEMENT_OR_OPERATOR to form
19238: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
19239:
19240: 2002-02-06 paf
19241:
19242: * configure, configure.in: prefix expanded, grr
19243:
19244: * operators.txt, src/classes/mail.C: mail:send config changed
19245:
19246: 2002-02-05 paf
19247:
19248: * operators.txt: regex options commented
19249:
19250: * src/main/: pa_exec.C: argv0 now correct
19251:
19252: * src/types/pa_vstatus.C: status:rusage 3
19253:
19254: * src/types/pa_vstatus.C: status:rusage 2
19255:
19256: * operators.txt: status:rusage described int operators
19257:
19258: * src/types/pa_vstatus.C: status:rusage 1
19259:
19260: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
19261: src/types/types.dsp: status:rusage
19262:
19263: * configure.in, operators.txt, src/classes/file.C,
19264: src/classes/op.C, src/include/pa_common.h,
19265: src/include/pa_config_includes.h, src/main/compile.tab.C,
19266: src/main/pa_common.C: rewritten ^cache to use
19267: non-blocking-exclusive-caches
19268:
19269: * src/main/pa_common.C: text file read mode on win32 adjusted
19270: [speed impact. was off for debugging purpose, but forgotten
19271: afterwards]
19272:
19273: 2002-02-01 paf
19274:
19275: * src/classes/op.C: file_write does EX lock after create, while
19276: file_read does SH after open, so there's a moment after create
19277: but before EX lock when read can sneak into, and read
19278: just-created-for-writing-and-not-yet-locked file, added a check
19279: for that in ^cache...read
19280:
19281: 2002-01-31 paf
19282:
19283: * src/main/: compile.y, compile.tab.C: disabled operator call after
19284: ^xxx:
19285:
19286: * src/main/: compile.tab.C, execute.C: made operators lookup first
19287: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
19288:
19289: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
19290: main/compile.tab.C, main/compile.y, main/compile_tools.C,
19291: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
19292: operators check 6.1 rewritten. now check is done at compile time
19293:
19294: * src/main/execute.C: operators check 5 floated up old error of
19295: staying in 'entered class/object' state after $a($a..) it
19296: prevented operators from being called thereafter
19297:
19298: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19299: main/execute.C: operators check 4 floated up old error of staying
19300: in 'entered object' state after ^a.a(a) it prevented operators
19301: from being called thereafter
19302:
19303: * src/main/execute.C: operators check 3 floated up old error of
19304: staying in 'entered class' state after $a:a(a) it prevented
19305: operators from being called thereafter
19306:
19307: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
19308: floated up old error of staying in 'entered class' state after
19309: $a:a[a] it prevented operators from being called thereafter
19310:
19311: * src/main/execute.C: operators check, thay mistakenly seen in
19312: $class:operator $object.operators contexts
19313:
19314: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
19315: win32
19316:
1.116 moko 19317: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
19318: src/classes/Makefile.am, src/main/Makefile.am,
19319: src/targets/cgi/Makefile.am,
1.95 moko 19320: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 19321: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 19322:
1.116 moko 19323: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
19324: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
19325: configure, configure.in, form.txt, ident.awk, install-sh,
19326: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
19327: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 19328: etc/parser3.charsets/Makefile.am,
19329: etc/parser3.charsets/koi8-r.cfg,
19330: etc/parser3.charsets/windows-1250.cfg,
19331: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 19332: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
19333: src/main/Makefile.am, src/targets/cgi/Makefile.am,
19334: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
19335: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 19336: straightened installation scripts procedure made
19337: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
19338: change
19339:
19340: 2002-01-30 paf
19341:
19342: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
19343: removed] those comments were a mistake, and prevented libltdl
19344: from function properly
19345:
19346: 2002-01-29 paf
19347:
1.116 moko 19348: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
19349: creation [modified acinclude.m4 which were creating int into just
19350: assignment LIBTOOL=../libtool] added default system
19351: config&charsetts prepared 'make install', now it installs
19352: targets/cgi/parser3 into bin directory etc/parser3.conf &
19353: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 19354: $sysconfdir/parser3.charsets respectively
19355:
19356: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
19357: main/pa_globals.C: few forgotten ifdef XML added
19358:
19359: 2002-01-28 paf
19360:
1.116 moko 19361: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 19362: removed
19363:
19364: * src/main/pa_exception.C: dom|generic error output fix
19365:
19366: * src/classes/xnode.C: xdoc.importNode 3 [check err]
19367:
19368: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
19369:
19370: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
19371: [fixed as_node helper func to accept docs]
19372:
19373: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
19374: xdoc.importNode 0
19375:
19376: * src/classes/xdoc.C: xdoc::set now untaints OK
19377:
19378: 2002-01-25 paf
19379:
19380: * src/main/: compile.tab.C, compile.y: #comment before @ after
19381: @SPECIAL now works OK
19382:
19383: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19384:
19385: * src/main/pa_exec.C: max arg count now 10, and proper message on
19386: violation that added
19387:
19388: * src/classes/hash.C: unified hash::sql, now
19389: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19390:
19391: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19392: ^file:lock[filename]{code}
19393:
19394: * src/: classes/file.C, classes/op.C, classes/string.C,
19395: classes/table.C, classes/xdoc.C, include/pa_common.h,
19396: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19397: to some pa_common funcs
19398:
19399: * src/: include/pa_charset.h, main/pa_globals.C:
19400: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19401:
19402: * src/: include/pa_charset.h, main/pa_charset.C,
19403: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19404: not stupid illegal define
19405:
19406: 2002-01-24 paf
19407:
19408: * src/include/pa_version.h: changed version number
19409:
19410: * src/: classes/hashfile.C, include/pa_db_table.h,
19411: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19412: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19413: main/pa_db_connection.C, main/pa_db_table.C,
19414: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19415: hashfile without logfiles
19416:
19417: * src/: classes/hashfile.C, include/pa_db_table.h,
19418: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19419: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19420: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19421: DB_INIT_TXN init bits, thus got rid of huge log files, which
19422: cluttered disk without huge need]
19423:
19424: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19425: handy macro, which is strangly abscent in dome lib
19426:
19427: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19428:
19429: * src/classes/xdoc.C: checked empty response
19430:
19431: * src/classes/xnode.C: xdoc.select fixed context node [were always
19432: /, not self node]
19433:
19434: * src/classes/xnode.C: xnode.select returns array always now, in
19435: case 'nothing found' returns empty array
19436:
19437: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
19438: be more tender with ctrl/c/v
19439:
19440: 2002-01-23 paf
19441:
19442: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
19443: substituted. // 2. when dom tree with entites goes under
19444: transform text nodes // got [erroreosly] cut on first
19445: entity occurance
19446:
19447: * src/types/pa_vdouble.h: double prec. todo: get rid of
19448: twice-converting
19449:
19450: * src/types/pa_vdouble.h: %.20E now float format when %g produced
19451: 'e' in output this is for regretful twice-converting here:
19452: $a(double value) when they write double falue they convert it to
19453: string first, thus %g were losing precesion.
19454:
19455: todo: think up some way to remove double->string string->double
19456: twice-converting
19457:
19458: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
19459: %.20E now default float format this is for regretful
19460: twice-converting here: $a(double value) when they write double
19461: falue they convert it to string first, thus %g were losing
19462: precesion.
19463:
19464: todo: think up some way to remove double->string string->double
19465: twice-converting
19466:
19467: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19468: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
19469: reasons in comment inside
19470:
19471: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
19472: statically linked]
19473:
19474: * src/: include/pa_exception.h, main/compile.tab.C,
19475: main/pa_exception.C: removed exception va_list constructor. 1.
19476: not needed anymore 2. there were a conflict[causing errors]
19477: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
19478: never detected an ambiguilty here, compiling ctor(, "hello") into
19479: ctor(, va_list) which, of course, caused gpf
19480:
19481: * src/main/pa_globals.C: removed debug xslt messages
19482:
19483: 2002-01-22 paf
19484:
19485: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19486: main/pa_globals.C: xsl stylesheet load: parsed entities, this
19487: helps compiling stylesheet properly. example: this refused to
19488: work, <b>«<xsl:value-of select="@title"
19489: />»</b> stranly worked only this way:
19490: <b>«<xsl:value-of select="@title" />»</b>
19491:
19492: docs says "set it to 1", never going into details, so I decided
19493: to try NOT to do that
19494:
19495: * src/classes/table.C: join behaived badly in case named tables
19496: structure mismatched: 0 strings sneaked into dest failing
19497: afterwards. replaced them with empty strings
19498:
19499: 2002-01-21 paf
19500:
19501: * src/main/pa_charset.C: checked empty transcoders in
19502: transcode_cstr|buf
19503:
19504: * src/classes/xdoc.C: xdoc::load error source = filespec
19505:
19506: * src/classes/xdoc.C: transform error source now
19507: stylesheet_filespec
19508:
1.116 moko 19509: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 19510: include/pa_stylesheet_connection.h, main/pa_charset.C,
19511: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 19512: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
19513: gnome
1.95 moko 19514:
19515: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19516: include/pa_globals.h, include/pa_stylesheet_connection.h,
19517: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
19518: xslt generic error 1
19519:
19520: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
19521: xml generic message 1
19522:
19523: * src/classes/table.C: ^table::load empty lines or #comments before
19524: headline
19525:
19526: * src/: include/pa_array.h, include/pa_globals.h,
19527: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
19528: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
19529: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
19530: errors 0
19531:
19532: 2002-01-16 paf
19533:
19534: * src/: classes/hash.C, classes/op.C, classes/string.C,
19535: classes/table.C, classes/void.C, classes/xdoc.C,
19536: include/pa_db_connection.h, include/pa_request.h,
19537: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19538: include/pa_stylesheet_connection.h,
19539: include/pa_stylesheet_manager.h, main/pa_request.C,
19540: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19541: targets/cgi/pool_storage.h: auto closers to sql_connection,
19542: stylesheet_connection auto destroyers to remaining gnome objects
19543:
19544: * src/classes/xdoc.C: few comments
19545:
19546: 2002-01-15 paf
19547:
19548: * src/classes/xdoc.C: xdoc file save string
19549:
19550: ready. todo: error handling
19551:
19552: * src/classes/xdoc.C: xdoc save rewritten using
19553: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
19554: result
19555:
19556: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
19557: started output options parsing
19558:
19559: 2002-01-14 paf
19560:
19561: * src/classes/xdoc.C: method
19562:
19563: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19564: include/pa_pool.h, include/pa_stylesheet_connection.h,
19565: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
19566: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
19567: xslt transform0. TODO: use output options handle errors
19568:
19569: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
19570:
19571: 2002-01-11 paf
19572:
19573: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19574: main/compile_tools.C, main/compile_tools.h, main/execute.C:
19575: partial logical && || evaluation
19576:
19577: * src/classes/xnode.C: xpath selectNodes
19578:
19579: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
19580: string/number/bool
19581:
19582: * src/classes/xnode.C: xpath selectNode 2
19583:
19584: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
19585: xpath selectNode 1
19586:
19587: 2002-01-10 paf
19588:
19589: * src/classes/xnode.C: xpath selectNode -100 [just written]
19590:
19591: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19592: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
19593: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
19594: refcounter]
19595:
19596: 2001-12-29 paf
19597:
19598: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
19599: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
19600: glib works 0
19601:
19602: 2001-12-28 paf
19603:
19604: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
19605: main/pa_exception.C: started glib transcoders
19606:
19607: * src/main/pa_globals.C: renamed gdome to libgdome.dll
19608:
19609: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
19610: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
19611: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
19612: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
19613: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
19614: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
19615: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
19616: libs just compiled in. no refcounting no xpath no xslt yet
19617:
19618: 2001-12-27 paf
19619:
19620: * src/: include/pa_charset.h, include/pa_common.h,
19621: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
19622: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
19623: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
19624: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
19625: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
19626: from xalan&xerces, started the process. globals [initialization
19627: pool [charset update charset [transcodings vxnode vxdoc [DOM
19628: calls
19629:
19630: * src/classes/Makefile.am: going away from xalan&xerces, not needed
19631: anymore
19632:
19633: 2001-12-26 paf
19634:
19635: * src/: include/pa_charset.h, include/pa_charsets.h,
19636: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
19637: key globalized [bug]
19638:
19639: 2001-12-25 paf
19640:
19641: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
19642: main/pa_string.C: table set & append changed splitting languages,
19643: separators now can be clean AND as-is same to mail command line
19644: $MAIN:MAIL.progX arguments
19645:
19646: 2001-12-24 paf
19647:
19648: * src/classes/mail.C: one parted text messages - no multipart
19649: mime-type anymore. for convinient if $.attach-ments
19650:
19651: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
19652: main/pa_string.C: read from cache size check updated
19653:
19654: * src/main/: pa_string.C: String::join_chain another ugly bug :(
19655:
19656: 2001-12-21 paf
19657:
19658: * src/classes/date.C: date:sql-string now returns localtime
19659:
19660: * src/main/pa_request.C: $result in @main actually not working, to
19661: hell with it for now
19662:
19663: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
19664: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
19665: @postprocess @exception
19666:
19667: * src/main/execute.C: junction evaluation canceled - endless
19668: recursion detected
19669:
19670: 2001-12-19 paf
19671:
19672: * src/main/pa_charset.C: charset->charset transcoding via unicode
19673: intermediate
19674:
19675: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
19676:
19677: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
19678:
19679: * src/classes/op.C: ^cache keypath now relative
19680:
19681: * src/classes/mail.C: changed weighting prior to sort
19682:
19683: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
19684: were missing
19685:
19686: 2001-12-17 paf
19687:
19688: * src/main/pa_charset.C: ifndef XML were bad type
19689:
19690: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
19691: outdated unset services_pool
19692:
19693: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
19694: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
19695: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
19696:
19697: * src/main/untaint.C: allowed space in filespec
19698:
19699: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
19700:
19701: * src/classes/image.C: no govno
19702:
19703: * src/classes/image.C: govno
19704:
19705: 2001-12-16 paf
19706:
19707: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
19708:
19709: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
19710: charset_connection&manager replaced by charset&charsets
19711:
19712: * src/main/pa_charset.C: name_cstr 0
19713:
19714: * src/main/untaint.C: uri lang now knows about client/source
19715: charsets
19716:
19717: * src/: classes/file.C, classes/math.C, classes/op.C,
19718: classes/string.C, classes/table.C, classes/xdoc.C,
19719: include/pa_array.h, include/pa_cache_managers.h,
19720: include/pa_charset_connection.h, include/pa_charset_manager.h,
19721: include/pa_common.h, include/pa_db_connection.h,
19722: include/pa_db_manager.h, include/pa_db_table.h,
19723: include/pa_dictionary.h, include/pa_exception.h,
19724: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
19725: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
19726: include/pa_sapi.h, include/pa_socks.h,
19727: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19728: include/pa_string.h, include/pa_stylesheet_connection.h,
19729: include/pa_stylesheet_manager.h, include/pa_table.h,
19730: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
19731: main/pa_charset.C, main/pa_charset_connection.C,
19732: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
19733: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
19734: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
19735: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
19736: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
19737: types/types.dsp: introducing Charset
19738:
19739: 2001-12-14 paf
19740:
19741: * src/: include/pa_request.h, include/pa_transcoder.h,
19742: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
19743: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
19744: uri lang
19745:
19746: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
19747:
19748: * src/targets/cgi/Makefile.am: -I../../pcre to .am
19749:
19750: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
19751: defalts_name global
19752:
19753: * src/: include/pa_charset_connection.h, include/pa_pool.h,
19754: include/pa_request.h, main/main.dsp,
19755: main/pa_charset_connection.C, main/pa_charset_manager.C,
19756: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
19757: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
19758: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
19759: changed charset model. now important: $request:charset
19760: $response:charset while $response:content-type.charset become
19761: unimportant [informational]
19762:
19763: 2001-12-13 paf
19764:
19765: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
19766:
19767: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
19768: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
19769: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
19770: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
19771: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
19772: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
19773:
19774: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
19775: auto_ptr part other way, because of stupid gcc 2.96
19776: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
19777: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
19778: FormatterListener] /usr/include/g++-3/memory:48:
19779: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
19780: _Tp1 = FormatterListener, _Tp = FormatterListener]
19781:
19782: * src/classes/xdoc.C: removed extra inc
19783:
19784: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
19785:
19786: * src/include/pa_types.h: msvc head debugging flag
19787:
19788: * src/classes/xdoc.C: freed up listener
19789:
19790: * src/classes/string.C: change msg '... code is not code'
19791:
19792: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
19793: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19794: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
19795: [past/future prob]
19796:
19797: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19798: include/pa_config_fixed.h, include/pa_db_manager.h,
19799: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19800: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
19801:
19802: * src/: include/pa_config_fixed.h, main/pa_common.C,
19803: main/pa_string.C: removed signed mismatch warnings
19804:
19805: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
19806: 'expires' from header outputs
19807:
19808: * src/main/pa_string.C: string::recustruct erroreusly used outdated
19809: row ptr
19810:
19811: * src/classes/file.C: file::cgi bug, request_method were passed to
19812: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
19813:
19814: * src/classes/xdoc.C: lang list updated
19815:
19816: 2001-12-10 paf
19817:
19818: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
19819:
19820: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
19821: erase files like that, knowing their full name introducing //
19822: theoretical problem with, for instance, "_2B" and "." fragments,
19823: // they would yield the same // because
19824: need_file_encode('_')=false // but we need to delete such files
19825: somehow, getting names from ^index
19826:
19827: * src/main/pa_string.C: ^string.replace bug fixed [bad
19828: string::join_chank break]
19829:
19830: 2001-12-07 paf
19831:
19832: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
19833: include/pa_common.h, include/pa_config_auto.h.in,
19834: include/pa_config_fixed.h, include/pa_config_includes.h,
19835: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
19836: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
19837: types/pa_vhashfile.C: merged from r14_simple_cache
19838:
19839: * src/main/pa_string.C: stupid sparc architecture failed to access
19840: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
19841: lduh [ %i2 + 1 ], %l0
19842:
19843: bus error, fixed that
19844:
19845: * src/main/pa_string.C: strange string deserialize bug on
19846: client[pmts], a bit shortened,
19847:
19848: * src/include/pa_config_auto.h.in: makes
19849:
19850: * src/: include/pa_common.h, include/pa_config_fixed.h,
19851: include/pa_config_includes.h, main/pa_common.C: exclusive lock
19852: file write shared lock file read
19853:
19854: * src/: classes/op.C, include/pa_common.h,
19855: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
19856:
19857: 2001-12-06 paf
19858:
19859: * src/: classes/op.C, classes/table.C, include/pa_request.h,
19860: main/pa_request.C: #ifdef RESOURCES_DEBUG
19861:
19862: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
19863: info
19864:
19865: * src/classes/hashfile.C: removed transaction from ^cache
19866:
19867: 2001-12-05 paf
19868:
19869: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
19870: IIS5 there were a prob with illegal call check
19871:
19872: 2001-12-04 paf
19873:
19874: * src/: classes/op.C, classes/table.C, include/pa_request.h,
19875: main/pa_request.C: measures to log
19876:
19877: 2001-11-23 paf
19878:
19879: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
19880: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
19881: types/pa_vhashfile.C: merged from _0014, 1
19882:
19883: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
19884: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
19885: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
19886: ^cache(33) would change
19887:
19888: 0660 bits in file_write & hashfile create
19889:
19890: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
19891: after pa_string optimization]
19892:
19893: 2001-11-22 paf
19894:
19895: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
19896: table.offset[whence]
19897:
19898: * src/classes/op.C: process cstr(,connection)
19899:
19900: * src/classes/op.C: process now gets its body on current language,
19901: not as-is
19902:
19903: * src/main/untaint.C: ORIGINS mode removed UHTML
19904:
19905: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
19906: bit
19907:
1.116 moko 19908: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 19909:
19910: 2001-11-21 paf
19911:
19912: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
19913: <xsl:output output options made identical to xsl:output
19914: attributes exclusion: cdata-section-elements what xalan can do
19915: but that not used now: it can escape and remove CDATA sections
19916:
19917: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
19918: produced by xslt
19919:
19920: * src/targets/cgi/parser3.C: removed debug cgi||1
19921:
19922: * src/main/: pa_string.C, untaint.C: cached some string::size() es
19923:
19924: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
19925: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
19926: default language for {code}, it happen to change it's language
19927: from CLEAN, so later refused to split by CLEAN \t
19928:
19929: 2001-11-20 paf
19930:
1.116 moko 19931: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
19932: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 19933: bottom of dependeces, so that errors would popup quicklier, fixed
19934: line numbering in table::sql
19935:
19936: 2001-11-19 paf
19937:
19938: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
19939: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
19940: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
19941: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
19942: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
19943: at wcontext.write
19944:
1.116 moko 19945: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 19946: _set_new_handler
19947:
1.116 moko 19948: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
19949: set_new_handler in apache&isapi
1.95 moko 19950:
19951: 2001-11-16 paf
19952:
19953: * src/targets/cgi/parser3.C: pool debug @ die
19954:
19955: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
19956: removed 8 bytes from String, 2 bytes from
19957: string::chunk::row::item
19958:
19959: * src/main/pa_string.C: removed 1+4 bytes from String
19960:
19961: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19962: types/pa_vstring.C: removed 1+4 bytes from String
19963:
19964: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
19965: 0
19966:
19967: * src/: include/pa_globals.h, include/pa_string.h,
19968: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
19969: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
19970: targets/cgi/parser3.C: introducing estimating
19971: String::cstr_bufsize, 0
19972:
19973: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
19974:
19975: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
19976:
19977: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
19978: include/pa_pool.h: die in pool::fail
19979:
19980: 2001-11-15 paf
19981:
19982: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
19983: main/pa_exception.C, targets/cgi/parser3.C: exception with
19984: dynamic buffer re-back now with counter
19985:
19986: * src/: include/pa_exception.h, main/pa_exception.C: exception with
19987: static buffer back
19988:
19989: * src/targets/cgi/parser3.C: std::
19990:
19991: * src/: classes/classes.awk, include/pa_config_auto.h.in,
19992: include/pa_config_includes.h: setnewhandler check
19993:
1.116 moko 19994: * src/include/pa_config_auto.h.in: makes
1.95 moko 19995:
19996: * src/targets/cgi/parser3.C: set_new_handler started
19997:
19998: 2001-11-14 paf
19999:
20000: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20001: was wrong
20002:
20003: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
20004: was wrong
20005:
20006: * src/main/pa_request.C: z
20007:
20008: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
20009: full returns win32 -1 solaris >buffer_size
20010:
20011: checked all that
20012:
20013: * src/classes/op.C: ^untaint{body} as-is default now
20014:
20015: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20016: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
20017: with no_bad_constructors_try
20018:
20019: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
20020: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
20021: this: $bred[^string::length[]] $bred[^response::clear[]]
20022: $bred[^int::int[]]
20023:
20024: now VObject creation moved into overriden
20025: VClass::create_new_value, thus 0 from create_new_value means that
20026: class has no ctors
20027:
20028: 2001-11-13 paf
20029:
20030: * src/classes/classes.C: returned accedently removed if in foreach
20031: callbacks [when hash no-0-restructure]
20032:
20033: 2001-11-12 paf
20034:
20035: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
20036: passed as-is to method, xalan makes & into & itself
20037:
20038: * src/classes/date.C: date.roll parser2 alg used
20039:
20040: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
20041: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20042: main/pa_dictionary.C, main/pa_hash.C,
20043: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
20044: now does not containt 0 values. put 0 actullay removes. no check
20045: on 0 value in foreach now required
20046:
20047: 2001-11-11 paf
20048:
20049: * src/sql/pa_sql_driver.h: removed extra constructor, doc
20050:
20051: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
20052:
20053: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
20054: driver initialize not const
20055:
20056: 2001-11-10 paf
20057:
20058: * src/main/pa_exec.C: doc
20059:
20060: 2001-11-09 paf
20061:
20062: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
20063: param properly
20064:
20065: * src/classes/string.C: string.save now does untainting before
20066: saving
20067:
20068: * src/main/pa_common.C: line endings fixing fixed last piece[was
20069: still cstr oriented]
20070:
20071: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20072: line endings fixing got rid of cstr, now must work ok with post
20073: multipart
20074:
20075: * src/types/pa_vform.C: line endings fixed at post / multipart /
20076: not file also now
20077:
20078: 2001-11-08 paf
20079:
20080: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20081: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20082: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
20083: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
20084: main/pa_stylesheet_manager.C: restructured Cache manager to be
20085: simple parent, not second parent [gcc 2.96 strangly refused to
20086: call virtual from second parent]
20087:
1.116 moko 20088: * src/: include/pa_common.h, main/Makefile.am,
20089: targets/cgi/pa_pool.C: makes
1.95 moko 20090:
20091: * src/: include/pa_request.h, main/pa_request.C,
20092: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
20093: 'status' class enabler
20094:
20095: <Location /parser-status.html> ParserStatusAllowed </Location>
20096:
20097: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
20098: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
20099: include/pa_stylesheet_manager.h, main/main.dsp,
20100: main/pa_cache_managers.C, main/pa_charset_manager.C,
20101: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20102: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20103: types/pa_vstatus.h: cache_managers, maybe-expiring every request
20104: todo: apache 'status' class enabler
20105:
20106: 2001-11-05 paf
20107:
20108: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
20109: debug to normal
20110:
20111: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
20112: hence i removed skipping 0 values in hash::for_each-es we need to
20113: check cleaned cache items manually. few more checks.
20114:
20115: expiring to 0 time was wrong, changed to 'now' time
20116:
20117: * src/targets/cgi/parser3.C: read can return 0, that means sort of
20118: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
20119: on apache already done :)
20120:
20121: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
20122: skipping 0 values in hash::for_each-es we need to check cleaned
20123: cache items manually
20124:
20125: * src/main/: pa_db_connection.C, pa_db_table.C:
20126: parser_multithreaded check was wrong
20127:
20128: * src/: classes/classes.C, classes/classes.h, classes/date.C,
20129: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20130: classes/hashfile.C, classes/image.C, classes/int.C,
20131: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
20132: classes/string.C, classes/table.C, classes/void.C,
20133: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20134: include/pa_array.h, include/pa_charset_connection.h,
20135: include/pa_charset_manager.h, include/pa_common.h,
20136: include/pa_config_fixed.h, include/pa_config_includes.h,
20137: include/pa_db_connection.h, include/pa_db_manager.h,
20138: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
20139: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
20140: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
20141: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
20142: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
20143: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20144: include/pa_stack.h, include/pa_string.h,
20145: include/pa_stylesheet_connection.h,
20146: include/pa_stylesheet_manager.h, include/pa_table.h,
20147: include/pa_threads.h, include/pa_types.h, main/compile.C,
20148: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
20149: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
20150: main/pa_charset_manager.C, main/pa_common.C,
20151: main/pa_db_connection.C, main/pa_db_manager.C,
20152: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
20153: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
20154: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
20155: main/pa_socks.C, main/pa_sql_driver_manager.C,
20156: main/pa_status_provider.C, main/pa_string.C,
20157: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
20158: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20159: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20160: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
20161: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20162: targets/isapi/pool_storage.h, types/pa_valiased.C,
20163: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
20164: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
20165: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
20166: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
20167: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
20168: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
20169: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
20170: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
20171: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20172: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20173: types/pa_vstateless_object.h, types/pa_vstatus.h,
20174: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
20175: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
20176: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20177: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
20178: $status:db fixed used not initialized in db_connection & db_table
20179:
20180: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
20181: $status:charset
20182:
20183: * src/: classes/xdoc.C, include/pa_db_connection.h,
20184: include/pa_stylesheet_connection.h,
20185: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
20186: types/pa_vstatus.h: $status:stylesheet
20187:
20188: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
20189: include/pa_request.h, include/pa_sql_connection.h,
20190: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20191: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
20192: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
20193: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
20194: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
20195: types/pa_vxnode.C, types/types.dsp: started status parser class
20196:
20197: 2001-11-01 paf
20198:
20199: * src/include/pa_config_auto.h.in: makes
20200:
20201: * src/main/pa_hash.C: removed old extra include
20202:
20203: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
20204: checks [for hp, there are such in math.h]
20205:
20206: * src/classes/op.C: ^for endless loop check strightened
20207:
20208: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
20209: behavior in native calls. it left unchanged, so ^for ^foreach &
20210: co can use r.root to write their i & key,value there
20211:
20212: * src/classes/op.C: detected for var storage bug, fixed.
20213: todo:foreach
20214:
20215: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
20216: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
20217: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
20218: changing of hash inside of foreach
20219:
20220: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
20221: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
20222: were hash.foreach
20223:
20224: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
20225: types/pa_vstring.C, types/pa_vstring.h:
20226: ^foreach[key|value]{body}[[separator]|{separator}]
20227:
20228: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
20229: types/pa_vcookie.C: ^hash.delete[key]
20230:
20231: 2001-10-31 paf
20232:
20233: * src/main/: compile.C, pa_common.C: completely empty file now
20234: considered "read", not ignored [not perfect trick used]
20235:
20236: * src/main/pa_common.C: simplier common ifdefs
20237:
20238: * src/main/pa_common.C: typing bug in common - bad ifdeff
20239:
20240: * src/main/pa_db_connection.C: z
20241:
20242: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
20243: lockdetector flags
20244: dbenv.lk_detect=DB_LOCK_RANDOM;
20245:
20246: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
20247: from accidental show [imagine user forgot @exception]
20248:
20249: * src/classes/table.C: ^table.save[[nameless|+append;]path]
20250:
20251: * src/: classes/file.C, classes/image.C, classes/mail.C,
20252: classes/string.C, classes/xnode.C, include/pa_common.h,
20253: main/pa_common.C: ^string.save[[append;]path]
20254:
20255: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
20256: main/execute.C: \ in expression: int divide 10/3=3
20257:
20258: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
20259: inside of ^cache
20260:
20261: * src/: include/pa_threads.h, main/pa_db_connection.C,
20262: main/pa_db_table.C, targets/cgi/pa_threads.C,
20263: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
20264: needed
20265:
20266: 2001-10-30 paf
20267:
20268: * src/: classes/classes.dsp, main/main.dsp,
20269: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20270: types/types.dsp: enabled debug incremental compile
20271:
20272: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
20273: form post data line endings not reformatted now.
20274:
20275: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
20276: now required [had bug when file= has no value]
20277:
20278: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
20279: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
20280: cstr(asis) default param removed
20281:
20282: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
20283:
20284: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
20285:
20286: * src/include/pa_dir.h: LOAD_DIR fixed
20287:
20288: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
20289: was broken} fix_line_breaks
20290:
20291: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
20292: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
20293: packed with #pragma pack
20294:
1.116 moko 20295: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 20296:
20297: 2001-10-29 paf
20298:
20299: * src/types/pa_wcontext.h: bitfield syntax stricter
20300:
20301: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
20302: string hash.puts
20303:
20304: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
20305:
20306: * src/include/pa_sql_connection.h: there were one wrong
20307: SQL_CONNECTION_FUNC_GUARDED [failed]
20308:
20309: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
20310: param.someday either ifdef or remove it
20311:
20312: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
20313:
20314: * src/main/untaint.C: optimizing returned after debugging
20315:
20316: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
20317: main/untaint.C: memory hunging #pragma pack(1)
20318:
20319: 16 419 844 13 169 394
20320:
20321: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
20322: targets/cgi/pa_pool.C: String size_t replace to uint in proper
20323: places [todo:Array]
20324:
20325: * src/: main/execute.C, targets/cgi/pa_pool.C,
20326: targets/cgi/parser3.dsp, types/pa_wcontext.h,
20327: types/pa_wwrapper.h: debugging memory WContext flags to bits
20328:
20329: total 5 652 652/158731 total 5 469 332/158731
20330:
20331: * src/: include/pa_array.h, main/pa_array.C: debugging memory
20332: Array:: without cache in get/put now
20333:
20334: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
20335: 18:25:27 2001] total 5 652 652/158731
20336:
20337: * src/: include/pa_string.h, main/pa_string.C,
20338: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
20339: now
20340:
20341: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
20342: 18:11:53 2001] total 5796092/158731
20343:
20344: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
20345: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
20346: key ref now
20347:
20348: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
20349: 17:11:17 2001] total 16867948/202658
20350:
20351: * src/: classes/file.C, classes/image.C, classes/string.C,
20352: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
20353: main/execute.C, main/pa_array.C, main/pa_common.C,
20354: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
20355: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
20356: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
20357: string::as_int/double now usually uses stack, not heap [200K out
20358: of 17M :)] VString(String&) not copies reference [29M -> 17M]
20359:
20360: * src/main/pa_sql_driver_manager.C: ping to have services [old
20361: hiding bug]
20362:
20363: * src/Makefile.am: .am order
20364:
20365: * src/: include/pa_array.h, include/pa_charset_manager.h,
20366: include/pa_db_connection.h, include/pa_db_manager.h,
20367: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
20368: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
20369: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
20370: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
20371: required "friend class"
20372:
20373: ../include/pa_request.h:51: friend declaration requires
20374: class-key, i.e. `friend class Temp_lang'
20375:
20376: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20377: main/pa_exception.C, main/pa_sql_driver_manager.C,
20378: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20379:
20380: the idea is to #1 jump to C++ some function to main body, where
20381: every function stack frame has exception unwind information and
20382: from there... #2 propagate_exception()
20383:
20384: 2001-10-28 paf
20385:
20386: * src/main/pa_db_connection.C: removed old consts
20387:
20388: * src/main/pa_db_connection.C: expire table [was accidently pasted
20389: with wrong type/cast]
20390:
20391: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20392: translation
20393:
1.116 moko 20394: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20395: remember to build DB2 with -fexceptions!!!
20396:
20397: * src/main/pa_db_table.C: DB_RMW defed
20398:
20399: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20400: include/pa_db_connection.h, include/pa_db_manager.h,
20401: include/pa_db_table.h, main/pa_db_connection.C,
20402: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20403:
20404: 2001-10-27 paf
20405:
20406: * src/: classes/hashfile.C, include/pa_db_connection.h,
20407: include/pa_db_table.h, main/pa_db_connection.C,
20408: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20409: types/pa_vhashfile.C: DB2 ifdefs
20410:
1.116 moko 20411: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20412: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20413: makes with DB2
20414:
1.116 moko 20415: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20416: types/Makefile.am: makes db
1.95 moko 20417:
20418: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20419: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20420: globals.C
20421:
20422: * src/: classes/hashfile.C, include/pa_db_connection.h,
20423: include/pa_db_table.h, main/pa_db_connection.C,
20424: main/pa_db_table.C: ^hashfile.clear[]
20425:
20426: * src/classes/classes.awk: no $ in var names
20427:
20428: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20429: connection&table [forgotten calls]
20430:
20431: 2001-10-26 paf
20432:
20433: * src/main/pa_db_connection.C: db checkpoints
20434:
20435: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
20436: checkpoints
20437:
20438: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
20439: default. but entities still reparsed. todo: tothink
20440:
20441: * src/main/pa_db_connection.C: db recover mech 2
20442:
20443: * src/: classes/hashfile.C, include/pa_db_connection.h,
20444: include/pa_db_manager.h, include/pa_db_table.h,
20445: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20446: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
20447: types/pa_vhashfile.h: db connections & tables now cached at
20448: create time & multithreaded
20449:
20450: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
20451: parsed_source
20452:
20453: * src/main/pa_db_connection.C: about to remove connection from
20454: vhashfile
20455:
20456: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
20457: transaction commit/rollback responsibility left to parent [as it
20458: sould - else there were a bug with double free]
20459:
20460: * src/include/pa_db_table.h: db: child transaction commit/rollback
20461: responsibility left to parent [as it sould - else there were a
20462: bug with double free]
20463:
20464: 2001-10-25 paf
20465:
20466: * src/: classes/hashfile.C, include/pa_common.h,
20467: include/pa_db_connection.h, include/pa_db_manager.h,
20468: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
20469: types/pa_vhashfile.C, types/pa_vhashfile.h,
20470: include/pa_db_table.h, main/pa_db_table.C: started db_home
20471: [multiple, cached] todo: autorecover [tried, but not succeded,
20472: yet]
20473:
20474: * src/include/pa_dir.h: ancient gpf on dir not found fixed
20475:
20476: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
20477: transaction parent passed
20478:
20479: 2001-10-24 parser
20480:
1.116 moko 20481: * src/classes/Makefile.am: makes
1.95 moko 20482:
20483: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
20484: isapi/pool_storage.h: pool_storage fixed
20485:
20486: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
20487: types/pa_vform.h: form fix_line_breaks
20488:
1.116 moko 20489: * src/targets/cgi/pool_storage.h: makes
1.95 moko 20490:
20491: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
20492: targets/cgi/pool_storage.h: makes
20493:
20494: * src/sql/pa_sql_driver.h: version
20495:
20496: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
20497: types/pa_vform.C, types/pa_vform.h: .am
20498:
20499: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
20500: this: DB_RMW Acquire write locks instead of read locks when doing
20501: the retrieval. Setting this flag may decrease the likelihood of
20502: deadlock during a read-modify-write cycle by immediately
20503: acquiring the write lock during the read part of the cycle so
20504: that another thread of control acquiring a read lock for the same
20505: item, in its own read-modify-write cycle, will not result in
20506: deadlock
20507:
20508: * src/targets/isapi/parser3isapi.dsp: doc
20509:
20510: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
20511:
20512: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
20513:
20514: * src/: classes/hashfile.C, include/pa_db_connection.h,
20515: main/pa_db_connection.C: hashfile expired deleted from db when
20516: get & iterate
20517:
20518: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
20519: expiring 1
20520:
20521: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
20522:
20523: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
20524: db_connection not bothers with key when not returning expired
20525: data
20526:
20527: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20528: types/pa_vhashfile.C: db_cursor constructor public now
20529:
20530: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20531: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
20532: stamped, todo: put_element analize
20533:
20534: * src/: include/pa_db_connection.h, include/pa_string.h,
20535: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
20536: serialize. todo stamp
20537:
20538: 2001-10-23 parser
20539:
20540: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
20541: classes/image.C, classes/mail.C, classes/response.C,
20542: classes/string.C, classes/table.C, classes/xdoc.C,
20543: include/pa_config_fixed.h, include/pa_db_connection.h,
20544: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
20545: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
20546: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
20547: types/pa_vtable.C: ^hashfile.hash[]
20548:
20549: * src/: classes/hashfile.C, classes/xdoc.C,
20550: include/pa_config_fixed.h, main/pa_db_manager.C,
20551: main/pa_globals.C: ifdefs so it compiled without db
20552:
20553: * src/: classes/hashfile.C, include/pa_db_connection.h,
20554: include/pa_db_manager.h, main/pa_db_connection.C,
20555: main/pa_db_manager.C, types/pa_vhashfile.h:
20556: ^hashfile.transaction{code} ^hashfile:clear[filename]
20557: ^hashfile.delete[key]
20558:
20559: 2001-10-22 parser
20560:
20561: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
20562: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
20563:
20564: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
20565: classes/xnode.C, include/pa_charset_connection.h,
20566: include/pa_db_connection.h, include/pa_db_manager.h,
20567: include/pa_exception.h, include/pa_sapi.h,
20568: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20569: include/pa_stylesheet_connection.h,
20570: include/pa_stylesheet_manager.h,
20571: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20572: main/pa_db_connection.C, main/pa_db_manager.C,
20573: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
20574: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20575: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
20576: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
20577: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
20578: types/types.dsp: hashfile 0
20579:
20580: * src/types/pa_vhashfile.C: z
20581:
20582: * src/: classes/classes.dsp, classes/hashfile.C,
20583: include/pa_config_fixed.h, main/execute.C,
20584: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
20585: types/pa_vhashfile.h, types/types.dsp: hashfile -100
20586:
20587: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
20588:
20589: * src/: include/pa_exception.h, include/pa_request.h,
20590: main/execute.C, main/pa_exception.C, main/pa_request.C,
20591: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20592: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
20593:
20594: 2001-10-19 parser
20595:
20596: * src/include/pa_pool.h: header
20597:
20598: * src/main/pa_pool.C: auto compiled on gcc
20599:
20600: * src/classes/image.C: comment
20601:
1.116 moko 20602: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 20603:
20604: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20605: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20606: types/pa_vxnode.h: xnode clone got freed
20607:
20608: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20609: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
20610: can free up xalandomstring resulting from pool::transcode
20611:
20612: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
20613: include/pa_config_fixed.h, include/pa_exception.h,
20614: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
20615: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
20616: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
20617: to c++ exceptions 1xml configure fixed to exclude xalan-patch
20618: from non-xml compile
20619:
20620: * src/main/pa_request.C: pool:: context - get_context
20621:
20622: * src/: classes/classes.h, classes/date.C, classes/double.C,
20623: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
20624: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
20625: classes/string.C, classes/table.C, classes/void.C,
20626: include/pa_config_fixed.h, include/pa_exception.h,
20627: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
20628: main/compile.C, main/compile_tools.C, main/execute.C,
20629: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
20630: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
20631: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
20632: main/pa_string.C, main/pa_table.C, main/untaint.C,
20633: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20634: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
20635: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
20636: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
20637: types/pa_vstateless_class.h, types/pa_vtable.C,
20638: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
20639: exceptions 0
20640:
20641: * src/classes/classes.awk: $ removed
20642:
20643: 2001-10-18 parser
20644:
20645: * src/types/pa_vcookie.C: cookie:CLASS
20646:
20647: * src/main/main.dsp: project
20648:
20649: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
20650: set_document & ctor question "who owns document" solved
20651:
20652: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
20653:
20654: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20655: main/pa_pool.C: encoding in dom creating funcs
20656:
20657: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
20658: be transformed now
20659:
20660: * src/classes/xdoc.C: dom created by create can be transformed now
20661:
20662: * src/classes/xdoc.C: z
20663:
20664: * src/classes/xdoc.C: comment
20665:
20666: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
20667: create now uses XercesDocumentBridge, appendChild&co now works
20668:
20669: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
20670: @ recompile
20671:
20672: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
20673: $origin @exception[
20674:
20675: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
20676: tag names forced to XML lang
20677:
20678: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
20679: leechy-found bugs in code&doc fixed
20680:
20681: 2001-10-17 parser
20682:
20683: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
20684: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
20685: n functionality preserved
20686:
20687: * src/types/pa_vimage.h: removed unused vimage::save
20688:
20689: 2001-10-16 parser
20690:
20691: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
20692:
20693: * src/classes/: xnode.C: removed few dom returns & changed op.txt
20694:
20695: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
20696:
20697: * src/classes/image.C: image.copy tolerance
20698:
20699: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
20700: ineffective, but works for small paleted image
20701:
20702: * src/types/pa_vimage.C: comment
20703:
20704: * src/classes/image.C: gd size/resize bugfix
20705:
20706: * src/: classes/classes.dsp, main/main.dsp,
20707: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20708: types/types.dsp: ident >nul 2>&1
20709:
20710: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
20711: systems
20712:
20713: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
20714: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
20715:
20716: 2001-10-15 parser
20717:
20718: * src/main/execute.C: z
20719:
20720: * src/classes/: xdoc.C: !::create{qualifiedName}
20721:
20722: * src/types/pa_vxnode.C: document_type_node.
20723: !readonly attribute DOMString name
20724: !notation_node.
20725: !readonly attribute DOMString publicId
20726: !readonly attribute DOMString systemId
20727:
1.116 moko 20728: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
20729: ::write badly passed string too transparently [failed to
20730: intercept it]
1.95 moko 20731:
20732: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
20733: include/pa_request.h, main/pa_sql_driver_manager.C,
20734: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20735: types/pa_vxnode.h: DOM1 major addtion, only few
20736: attributes/methods left
20737:
20738: 2001-10-13 parser
20739:
20740: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20741: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
20742: in main handler
20743:
20744: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
20745: cleanups & frees order
20746:
20747: * src/types/pa_vcode_frame.h: couple comments
20748:
20749: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
20750: transparent enough to handle hash if creation&passing
20751:
20752: * src/: include/pa_config_fixed.h, main/execute.C,
20753: main/pa_exception.C: noticed that vcodeframe not transparent
20754: enough, would change now
20755:
20756: 2001-10-12 parser
20757:
20758: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
20759: fixed. initialization&free on each thread!
20760:
20761: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
20762: handling changed: now type of default param analized always, not
20763: only at problem time, thus helping early problem spotting
20764:
20765: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
20766: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
20767: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
20768: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
20769: multithread bug fixed. initialization&free on each thread!
20770:
20771: 2001-10-11 parser
20772:
20773: * src/classes/xnode.C: xnode.selectSingle now
20774:
20775: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20776: include/pa_pool.h, include/pa_stylesheet_connection.h,
20777: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
20778: convertors out of Pool into Exception
20779:
20780: * src/main/pa_string.C: const
20781:
20782: * src/: include/pa_string.h, main/pa_string.C: restructured string:
20783: linked pieces of same language together prior to String::replace
20784:
20785: * src/classes/hash.C: !^hash.add[addme]
20786: !^hash.sub[subme]
20787: !^a.union[b] = new
20788: !^a.intersection[b] = new
20789: !^a.intersects[b] = bool
20790:
20791: * src/classes/hash.C: !^hash::append[append_from]
20792:
20793: * src/: classes/hash.C, types/pa_vhash.h:
20794: !^hash::create[[copy_from]]
20795:
20796: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
20797: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
20798: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
20799: fixed. got rid of empty_string, which caused errors - it hasnt
20800: exception but somebody[value.bark] tried to throw it on it's pool
20801:
1.116 moko 20802: * src/include/pa_config_auto.h.in: makes
1.95 moko 20803:
20804: 2001-10-10 parser
20805:
20806: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
20807:
20808: * src/main/: compile.tab.C, compile.y: ^a[
20809:
20810: @next_method << now unclosed ] would be reported here
20811:
20812: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
20813: compile error
20814:
20815: 2001-10-09 parser
20816:
1.116 moko 20817: * src/: classes/Makefile.am, main/Makefile.am,
20818: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 20819:
20820: * src/classes/Makefile.am: makes
20821:
20822: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
20823: win32 errors intercepted [xalan transformer patched and
20824: incorporated]
20825:
20826: * src/: classes/classes.dsp, classes/xdoc.C,
20827: include/pa_stylesheet_connection.h, main/main.dsp,
20828: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20829: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
20830: patches starting
20831:
20832: * src/classes/: string.C, table.C: ^string.save[file]
20833:
20834: * src/classes/: date.C, table.C: calendar moved to date
20835:
20836: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
20837: string/table] now
20838:
20839: * src/classes/: op.C, table.C: z
20840:
20841: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
20842: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
20843: types/pa_vxnode.h: table:menu & op for delims made allowed not to
20844: be code [be string..]
20845:
20846: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
20847: table.C: lots of
20848: params->as_int/double/as_string/as_junction/as_no_junction
20849: messages added
20850:
20851: 2001-10-08 parser
20852:
20853: * src/: classes/date.C, classes/image.C, classes/string.C,
20854: classes/table.C, classes/void.C, include/pa_request.h:
20855: params->as_int/double message added
20856:
20857: * src/classes/image.C: image:circle [and round arc] uses Bresenham
20858:
20859: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
20860: image:sector removed image:html internal "line-*" attribs
20861:
20862: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
20863: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
20864:
20865: * src/types/pa_vcookie.C: removing cookie made more netscape-like
20866: way
20867:
20868: * src/: classes/file.C, classes/form.C, main/pa_common.C,
20869: main/untaint.C: header untainting to UL_HTTP_HEADER,
20870: UL_MAIL_HEADER made nonforced [only tainted pieces]
20871:
20872: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
20873: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
20874: @ SAPI::log
20875:
20876: * src/main/untaint.C: \r to ' ' in origins mode
20877:
20878: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
20879: set]
20880:
20881: * src/: classes/xdoc.C, include/pa_config_fixed.h,
20882: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
20883: nonstandard liaison freed up
20884:
20885: 2001-10-07 parser
20886:
20887: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
20888: project
20889:
20890: 2001-10-05 parser
20891:
20892: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
20893: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
20894: from outputing to cerr. lots of "todos"
20895:
20896: * src/main/untaint.C: http_header tainting more gentle with
20897: enquoting now
20898:
20899: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
20900: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
20901: xml errorhandler. fixed string.replace a little, read @test
20902:
20903: * src/main/pa_string.C: found replace bug - first_that_starts(char
20904: *) does not have limit, and looks further eos, fixing....
20905:
20906: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
20907:
20908: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
20909:
20910: * src/main/: pa_charset_connection.C: ctype another mem clear
20911: bugfix
20912:
1.116 moko 20913: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
20914: $result[^[$p^]z] now works fine
1.95 moko 20915:
20916: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
20917: wrong. fixed it
20918:
20919: * src/main/pa_charset_connection.C: unicode zero pair at the beging
20920: of totable appered to be vital
20921:
20922: 2001-10-04 parser
20923:
20924: * src/classes/image.C: ^image.length[text]
20925:
20926: 2001-10-03 parser
20927:
20928: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
20929:
20930: * src/main/pa_request.C: restored pcre defaulting in request
20931: [mindlessly "optimized" yesterday] comment left
20932:
20933: 2001-10-02 parser
20934:
20935: * src/: main/pa_charset_manager.C,
20936: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
20937: needed
20938:
20939: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
20940: forgot non-xml pool.*charset needed
20941:
20942: * src/classes/table.C: # config comments fixed
20943:
20944: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
20945: charset_connection #comment now
20946:
20947: * src/: classes/classes.dsp, types/types.dsp: release projects
20948: options fixed to use release msvcrt lib
20949:
20950: * src/main/pa_charset_connection.C: pcre tables now const inside
20951: removed default - pcre handles that internally fixed bug on
20952: not-cleaning tables [previously was calloced, now member]
20953:
20954: * src/: include/pa_request.h, main/pa_charset_connection.C,
20955: main/pa_request.C, types/pa_vstring.h: pcre tables now const
20956: inside removed default - pcre handles that internally fixed bug
20957: on not-cleaning tables [previously was calloced, now member]
20958:
20959: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
20960: tested charset reload on file change @ apache version = OK tested
20961: freeing up prev encoding on adding new = OK
20962:
20963: 2001-10-01 parser
20964:
20965: * src/main/pa_charset_connection.C: removed entitify external hack
20966: [internal installed]
20967:
1.116 moko 20968: * src/main/Makefile.am: makes+removed dtd
1.95 moko 20969:
20970: * src/: include/pa_charset_connection.h,
20971: include/pa_charset_manager.h,
20972: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20973: main/pa_charset_connection.C, main/pa_charset_manager.C,
20974: main/pa_request.C: charset loading & caching mech 0
20975:
20976: * src/: include/pa_stylesheet_connection.h,
20977: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20978: main/pa_globals.C, main/pa_request.C: would make charset loading
20979: & caching mech now
20980:
20981: 2001-09-30 parser
20982:
20983: * src/main/pa_request.C: forgot to fill toTable
20984:
20985: * src/: include/pa_config_fixed.h, main/pa_request.C: started
20986: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
20987: failed on win32 for now..
20988:
20989: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
20990: now charsets table configuration variable is: CHARSETS
20991:
20992: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
20993: ctype with unicode 1. todo: no П entities on output somehow
20994:
20995: * src/: classes/file.C, classes/op.C, classes/string.C,
20996: include/pa_request.h, main/pa_request.C: started ctype with
20997: unicode values
20998:
20999: 2001-09-28 parser
21000:
21001: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
21002: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
21003: string passed AS-IS now
21004:
21005: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
21006: way of user-configuring... todo: implement
21007:
21008: 2001-09-27 parser
21009:
21010: * src/classes/table.C: table.sort changed to sort table itself
21011:
21012: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
21013: X^.getElementsByTagName[tagname] = array of xnode
21014: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
21015: nodes removed - regretfully not supported @ xalan. maybe someday
21016: would reimplement, if needed.
21017:
21018: win32build system: solved long waiting anti-non-started-apache
21019: problem
21020:
21021: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
21022: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
21023: types/types.dsp: win32 ident make system so not to rebuild
21024: library [ident.C.new]
21025:
21026: 2001-09-26 parser
21027:
21028: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
21029: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
21030: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
21031: types/pa_vxnode.C, types/types.dsp: z
21032:
21033: * src/classes/classes.C: forgot one non-xml check
21034:
1.116 moko 21035: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21036: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 21037:
21038: * src/targets/cgi/parser3.C: z
21039:
21040: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
21041: targets/isapi/parser3isapi.C: #ifdef SMTP
21042:
21043: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
21044: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
21045: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
21046: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
21047: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
21048: types/types.dsp: xdoc&xnode now
21049:
21050: * src/: classes/classes.C, classes/classes.awk,
21051: classes/classes.dsp, classes/classes.h, classes/date.C,
21052: classes/dnode.C, classes/dnode.h, classes/dom.C,
21053: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
21054: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
21055: classes/op.C, classes/response.C, classes/string.C,
21056: classes/table.C, classes/void.C, include/pa_array.h,
21057: include/pa_common.h, include/pa_config_fixed.h,
21058: include/pa_config_includes.h, include/pa_dictionary.h,
21059: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
21060: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21061: include/pa_socks.h, include/pa_sql_connection.h,
21062: include/pa_sql_driver_manager.h, include/pa_stack.h,
21063: include/pa_string.h, include/pa_stylesheet_connection.h,
21064: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
21065: include/pa_xslt_stylesheet_manager.h, main/compile.C,
21066: main/compile.y, main/compile_tools.C, main/compile_tools.h,
21067: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
21068: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
21069: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
21070: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
21071: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21072: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
21073: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
21074: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
21075: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
21076: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
21077: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
21078: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
21079: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
21080: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
21081: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
21082: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
21083: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
21084: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
21085: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
21086: types/pa_vmethod_frame.h, types/pa_vobject.h,
21087: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
21088: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
21089: types/pa_vstateless_object.h, types/pa_vstring.C,
21090: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
21091: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
21092: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
21093: main.dsp splitted to main+classes+types along to .am
21094:
21095: * src/classes/Makefile.am: removed useless var
21096:
21097: * src/: classes/classes.cmd, main/main.dsp,
21098: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
21099: main.dsp
21100:
21101: 2001-09-25 parser
21102:
21103: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
21104: 1251 though, todo ICU
21105:
1.116 moko 21106: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 21107: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 21108: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
21109: types/pa_vdom.h: xml configure makes
1.95 moko 21110:
21111: 2001-09-24 parser
21112:
1.116 moko 21113: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
21114: types/Makefile.am: makes
1.95 moko 21115:
1.116 moko 21116: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 21117:
21118: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
21119: started unix makes update
21120:
21121: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
21122: started unix makes update
21123:
21124: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
21125:
21126: * src/types/pa_value.h: z
21127:
21128: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
21129: bugs with usinge hash/table in expressions
21130:
21131: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
21132: resolved conflicts fixed [const]
21133:
21134: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
21135: classes/table.C, include/pa_request.h, include/pa_sapi.h,
21136: main/compile.C, main/compile.tab.C, main/compile.y,
21137: main/compile_tools.h, main/main.dsp, main/pa_common.C,
21138: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
21139: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
21140: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
21141: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
21142: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
21143: with before_xml [merge2 actually didn't happen - i've created
21144: tags on wrong branch. so this merge is in fact re-merge]
21145:
21146: 2001-09-21 parser
21147:
21148: * src/: main/main.dsp, targets/cgi/parser3.dsp,
21149: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
21150: produced "" in make file and sadly wrong interpreted on load]
21151:
1.116 moko 21152: * src/: classes/classes.h, classes/hash.C, classes/op.C,
21153: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
21154: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
21155: include/pa_sql_driver_manager.h, include/pa_string.h,
21156: main/compile.tab.C, main/main.dsp, main/pa_common.C,
21157: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
21158: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 21159:
21160: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
21161: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
21162: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
21163: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21164: main/pa_pool.C, main/pa_request.C,
21165: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
21166: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21167: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
21168: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
21169: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
21170: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
21171: types/pa_vrequest.C, types/pa_vresponse.h,
21172: types/pa_vstateless_class.C, types/pa_vstring.C,
21173: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
21174: created new projects for sql drivers [planning to remove sql
21175: drivers from main cvs project] first, will join latest changes
21176:
21177: * src/classes/: dom.C: defaulted dom writing methods encoding to
21178: pool.get_charset
21179:
21180: * src/classes/dom.C: defaulted dom writing methods encoding to
21181: pool.get_charset
21182:
21183: * src/include/pa_pool.h: defaulted dom writing methods encoding to
21184: pool.get_charset
21185:
21186: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
21187: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
21188: methods encoding to pool.get_charset
21189:
21190: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
21191: transcoder were created right "unsupported encoding" message.
21192: not @ set time, but @ use time, so until xml output functions
21193: .string, .file, .save used - no encoding name check occur
21194:
21195: reduced transcode buffer size to 60 fixed pool cleanup - no
21196: registration needed, pools are officially destructured
21197:
21198: 2001-09-20 parser
21199:
21200: * src/classes/image.C: 20K preload on jpg measure [image::measure]
21201:
21202: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
21203: $MAIN:DEFAULTS.content-type[$.charset[here]]
21204:
21205: * src/: classes/dnode.C, classes/dom.C,
21206: include/pa_config_includes.h, include/pa_globals.h,
21207: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
21208: main/pa_pool.C, targets/cgi/parser3.dsp,
21209: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
21210: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
21211: Pool::transcode 0
21212:
21213: * src/classes/dom.C: dom. string save file moved output xml options
21214: to last param and made it optional
21215:
21216: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
21217: dnodes
21218: !$attributenode.specified = boolean
21219: true if the attribute received its value explicitly
21220: in the XML document,
21221: or if a value was assigned programatically with the
21222: setValue function.
21223: false if the attribute value came from the default value
21224: declared in the document's DTD.
21225: !$pinode.target = target of this processing instruction
21226: XML defines this as being the first token following the
21227: markup
21228: that begins the processing instruction.
21229: XPath:
21230: !^node.select[xpath/query/expression] = hash of 0->node0
21231: 1->node1
21232: !^node.select-single[xpath/query/expression] = first node if
21233: any
21234:
21235: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
21236: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
21237: some 'const's added
21238:
21239: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
21240: expression context now, there value = size and boolean value
21241: size!=0
21242:
21243: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
21244: can be used in expression context now, there value = size and
21245: boolean value size!=0
21246:
21247: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
21248: types/pa_vstring.h: dnode .file .string .save moved back to dom
21249: due to strange xalan bug
21250:
21251: 2001-09-18 parser
21252:
21253: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
21254: classes/image.C, classes/op.C, classes/table.C,
21255: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
21256: include/pa_sql_driver_manager.h, main/compile.C,
21257: main/compile.tab.C, main/compile.y, main/compile_tools.h,
21258: main/execute.C, main/pa_common.C, main/pa_request.C,
21259: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
21260: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
21261: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
21262: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
21263: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
21264: before_xml branch ^if(def $hash) now true only when
21265: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
21266:
21267: * src/: classes/op.C, main/execute.C: operators self changed to
21268: root ^for variable context changed to self
21269:
21270: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
21271: dnode 1
21272:
21273: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
21274: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
21275:
21276: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
21277: poly* fixed
21278:
21279: 2001-09-17 parser
21280:
21281: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
21282: types/pa_vdom.h: started dnode+dom
21283:
21284: dnode DOM methods: $node.name $node.value
21285: ...others...
21286:
21287: ^node.xpath[/rates/USD] = hash
21288: $hash[
21289: $.0[node0]
21290: $.1[node1]
21291: ]
21292:
21293: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
21294: applies to all linear primitives
21295:
21296: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
21297: include/pa_stylesheet_connection.h, main/main.dsp,
21298: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
21299: types/pa_vimage.h: started dnode DOM: $node.name
21300: $node.value ...others... ^node.xpath[/rates/USD] = hash
21301: dom(dnode)
21302:
21303: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
21304: main/compile.y, main/compile_tools.h, main/execute.C,
21305: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
21306: in expression compound($aa.zz.xx) names now can have minus '-' in
21307: name after '.'
21308:
21309: 2001-09-15 parser
21310:
21311: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
21312: image: $line-width ^line(...)[**** style]
21313:
21314: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
21315: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
21316: pool_storage - cleanups first, allocations second. apache wisely
21317: does just like that
21318:
21319: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
21320: rewritten using template, no bugs now
21321:
21322: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
21323: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
21324: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
21325: poorly started isapi pool_storage, would rewrite using template
21326: now
21327:
21328: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
21329: include/pa_stylesheet_connection.h, main/main.dsp,
21330: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
21331: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
21332: xalan objects freed up [introducing Pool::register_cleanup]
21333:
21334: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
21335: comments
21336:
21337: 2001-09-14 parser
21338:
21339: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
21340: z
21341:
21342: * src/: classes/dom.C, classes/file.C, classes/image.C,
21343: classes/mail.C, include/pa_common.h,
21344: include/pa_sql_driver_manager.h, include/pa_string.h,
21345: include/pa_stylesheet_connection.h,
21346: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
21347: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
21348: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
21349: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
21350: compiled&cached
21351:
21352: 2001-09-13 parser
21353:
21354: * src/: classes/dom.C, classes/file.C, classes/image.C,
21355: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
21356:
21357: * src/classes/dom.C: dom:file content-type(.method)
21358:
21359: * src/: include/pa_common.h, include/pa_globals.h,
21360: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
21361: string now more informative error messages
21362:
21363: * src/: include/pa_globals.h, include/pa_request.h,
21364: main/pa_request.C, targets/cgi/parser3.C,
21365: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
21366: ParserSiteConfig .../parser3.conf
21367:
21368: cgi&isapi looks for {configure|c:\windows}/parser3.conf
21369:
21370: 2001-09-12 parser
21371:
21372: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21373: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
21374: precise error reporting: "connection string must start with
21375: protocol://" now
21376:
21377: * src/main/compile.tab.C: fixed - subname code parts actually []
21378: braced
21379:
21380: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21381: lexer on LS_USER level did [] matching without setting nestage,
21382: introduced special LS_NAME_SQUARE_PART state
21383:
21384: 2001-09-11 parser
21385:
21386: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21387: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21388: languages+=xml
21389:
21390: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21391:
21392: * src/classes/dom.C: ^dom:save/string/file[output options] output
21393: options: $.method[xml|html|text] detection fixed
21394:
21395: * src/types/pa_vdom.h: messages
21396:
21397: * src/classes/dom.C: ^dom:save/string/file[output options] output
21398: options: $.method[xml|html|text] detection fixed
21399:
21400: 2001-09-10 parser
21401:
21402: * src/classes/dom.C: ^dom:save/string/file[output options] output
21403: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21404:
21405: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21406: added]
21407:
21408: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21409: ^dom.xslt[stylesheet filename] 0
21410:
21411: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21412: ^dom.xslt[stylesheet filename] -1 doc is lying
21413:
21414: * src/classes/dom.C: ^dom.file[encoding] = file
21415:
21416: * src/classes/: dom.C: ^dom.string[encoding] 1
21417: ^dom.save[encoding;filename]
21418:
21419: * src/classes/dom.C: ^dom.string[] 0
21420:
21421: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21422:
21423: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21424: types/pa_vform.h: ^dom.save[b.xml] 0
21425:
21426: 2001-09-08 parser
21427:
21428: * src/types/pa_vform.C: $form:tables.name.field
21429:
21430: 2001-09-07 parser
21431:
21432: * src/classes/table.C: table:empty removed, superceded by ^if(def
21433: $table)...
21434:
21435: * src/targets/cgi/parser3.C: z
21436:
21437: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
21438: from '' to int/double is 0]
21439:
21440: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
21441: $table) is false when table is empty
21442:
21443: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
21444: !$form:tables $atable[$form:tables.a]
21445: ^atable.menu{a=$atable.element}[,]
21446:
21447: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
21448: types/pa_vform.h, types/pa_vhash.h: !$form:fields
21449:
1.116 moko 21450: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21451: types/pa_vdom.h, types/pa_vform.C: merged with successful start
21452: of dom
21453:
21454: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
21455: types/pa_vform.C, types/pa_vform.h: z
21456:
21457: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
21458: element [not last]
21459:
1.116 moko 21460: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21461: types/pa_vdom.h: introducing dom. dom:load[a.xml]
21462:
21463: 2001-09-06 parser
21464:
21465: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21466: table with one column 'element' and two rows: 1 and 2
21467:
21468: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21469: table with one column 'element' and two rows: 1 and 2
21470:
21471: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
21472: bad int/double conversions, and now $form:nonexistent.int(88)
21473: would return 88
21474:
21475: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
21476: types/pa_vhash.h: now there's special hash key '_default'
21477: [instead of ^_default method] $hash[ $.a[1] $.b[2]
21478: $._default[xx] ] $hash.c
21479:
21480: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
21481: fixed [thanks, fif], ^; were treated there non-literally
21482:
21483: * src/doc/doxygen.cfg: merged new default options from 1.2.10
21484: doxygen
21485:
21486: * src/: classes/image.C, classes/op.C, classes/string.C,
21487: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
21488: types/pa_vtable.C: few #ifndef DOXYGEN
21489:
21490: 2001-09-05 parser
21491:
21492: * src/classes/: string.C, table.C: sql options can be void [same as
21493: image:html the other day]
21494:
21495: * src/targets/cgi/Makefile.am: .am undo
21496:
21497: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21498: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
21499: macro expantion on param, simply qoutes whatever passed, undone
21500:
21501: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21502: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
21503: STRINGIZE(name) #name invented
21504:
21505: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21506: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
21507: MAIN_SQL_DRIVERS_NAME "drivers"
21508:
21509: moved to be availible to all users
21510:
21511: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
21512: SQL_DRIVER_CREATE_FUNC_NAME
21513:
21514: * src/classes/mail.C: MAIN:MAIL check fixed
21515:
21516: 2001-09-04 parser
21517:
21518: * src/classes/image.C: image.html now can accept void params
21519:
21520: * src/targets/isapi/parser3isapi.C: z
21521:
21522: * src/targets/cgi/parser3.C: full_file_spec bug
21523:
21524: * src/targets/cgi/parser3.C: getenvcheck
21525:
21526: * src/targets/cgi/parser3.C: zz
21527:
21528: * src/targets/cgi/parser3.C: zzz
21529:
21530: * src/classes/date.C: date
21531:
21532: * src/classes/date.C: date:sql-string is now without ''
21533:
1.116 moko 21534: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 21535: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
21536: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
21537:
1.116 moko 21538: * src/include/pa_config_auto.h.in: makes
1.95 moko 21539:
21540: 2001-09-03 parser
21541:
21542: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
21543:
21544: 2001-09-01 parser
21545:
21546: * src/classes/image.C: letter_spacing
21547:
21548: * src/classes/image.C: image: font params changed
21549:
21550: * src/classes/image.C: image: as_int as_string used
21551:
21552: * src/types/pa_vmethod_frame.h: $result[] now gets properly
21553: analized
21554:
21555: 2001-08-31 parser
21556:
21557: * src/targets/cgi/parser3.C: z
21558:
1.116 moko 21559: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
21560: cygwin
1.95 moko 21561:
21562: * src/classes/void.C: void:int/double += (default)
21563:
21564: * src/classes/image.C: image:font added space param image:font
21565: changed charwidth alg, added kerning const[for now]
21566:
21567: * src/classes/: string.C, table.C: string:int/double (defaults)
21568:
21569: 2001-08-29 parser
21570:
21571: * src/main/pa_exception.C: exception redundant debug info
21572:
21573: 2001-08-28 parser
21574:
21575: * src/classes/image.C: image error msgs
21576:
21577: * src/classes/image.C: image: gifsize little endian
21578:
21579: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
21580: doxygeneration
21581:
21582: * src/: classes/Makefile.am, main/Makefile.am,
21583: targets/cgi/Makefile.am, types/Makefile.am: .am-s
21584:
21585: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
21586: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
21587:
21588: * src/main/compile.C: NO_STRING_ORIGIN check2
21589:
21590: * src/classes/table.C: NO_STRING_ORIGIN check
21591:
21592: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
21593: storage class specifiers invalid in friend function declarations
21594:
21595: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
21596: main/untaint.C, targets/cgi/parser3.C,
21597: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
21598: case of limit
21599:
21600: * src/: classes/file.C, main/pa_common.C: file:move
21601: autocreate/remove dest/src dir
21602:
21603: * src/: classes/string.C, include/pa_dictionary.h,
21604: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
21605: main/untaint.C: pa_directory speeded up. moved zero 'from' check
21606: to directory constructor. string:replace
21607:
21608: 2001-08-27 parser
21609:
21610: * src/classes/image.C: fixed jpgsize alg
21611:
21612: * src/classes/image.C: fixed jpgsize alg
21613:
21614: * src/main/pa_exception.C: z
21615:
21616: * src/main/pa_common.C: removed debug info from pa_common
21617:
21618: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
21619: [auto.p from current dir loading]
21620:
1.116 moko 21621: * src/: main/pa_common.C, main/pa_exception.C,
21622: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
21623: for solaris -lsocket
1.95 moko 21624:
21625: 2001-08-24 parser
21626:
21627: * src/targets/cgi/parser3.C: not cgi extra \n 3
21628:
21629: * src/targets/cgi/parser3.C: not cgi extra \n 2
21630:
21631: * src/targets/cgi/parser3.C: not cgi extra \n
21632:
21633: * src/main/pa_sql_driver_manager.C: z
21634:
21635: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
21636: sql* removed services from disconnect - cross-request ideological
21637: probs.
21638:
21639: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
21640: cross-request ideological probs. oracle - fixed bug: cs
21641: allocated on request.pool and got freed before disconnect
21642:
21643: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
21644: mallocs fixed
21645:
21646: 2001-08-23 parser
21647:
21648: * src/classes/file.C: minor bug in file:save fixed
21649:
21650: * src/main/pa_sql_driver_manager.C: oracle: dlink
21651:
21652: 2001-08-22 parser
21653:
21654: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
21655: types/pa_vfile.h: file:load|save[text|binary;
21656:
21657: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
21658:
21659: 2001-08-21 parser
21660:
21661: * src/classes/: file.C, table.C: ^file:list
21662:
21663: 2001-08-20 parser
21664:
21665: * src/: main/compile.tab.C, main/compile.y,
21666: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
21667: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
21668: recousively caused problems: inc incremeted 123 literal!! fixed
21669:
21670: 2001-08-10 parser
21671:
21672: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
21673:
21674: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21675: added
21676:
21677: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21678: added
21679:
21680: * src/classes/table.C: table:sort restored [it was bad test :(]
21681:
21682: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
21683: ''
21684:
21685: * src/main/: pa_request.C: wanted to make const int
21686: MAX_EXECUTE_SECONDS=1;
21687:
21688: but couldnt, set_callback_and_alarm appeared to be not exported
21689: :(
21690:
21691: * src/main/pa_string.C: string.match hanged on. there were a hang
21692: check but it weren't wise enough
21693:
21694: @parse[dateString][tmp]
21695: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
21696: #end
21697:
21698: @main[] ^parse[2001-02-03]
21699:
21700: * src/classes/: table.C: table:sort now default desc
21701:
21702: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
21703: table.sort now creates new sorted table
21704:
21705: 2001-08-09 parser
21706:
21707: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
21708:
21709: * src/classes/hash.C: hash:_default now [was hash:default]
21710:
21711: * src/classes/op.C: case without switch check added
21712:
21713: * src/types/pa_vcookie.C: cookie name&value origins added, more
21714: precise $ORIGINS(1)
21715:
21716: * src/main/Makefile.am: .am
21717:
21718: * src/classes/void.C: void: int double copy/paste from int: bug
21719: fixed
21720:
21721: * src/classes/void.C: void: int double copy/paste from int: bug
21722: fixed
21723:
21724: 2001-08-07 parser
21725:
21726: * src/: classes/double.C, classes/int.C, classes/string.C,
21727: classes/table.C, include/pa_globals.h, main/pa_globals.C:
21728: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
21729: string, table
21730:
21731: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
21732: srand made working
21733:
21734: 2001-08-06 parser
21735:
21736: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
21737: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
21738: main/compile.tab.C, main/compile.y, main/pa_array.C,
21739: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
21740: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
21741:
21742: * src/main/pa_exec.C: exec win32 real filename
21743:
21744: * src/classes/file.C: exec stderr out
21745:
21746: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
21747:
21748: 2001-08-03 parser
21749:
21750: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
21751:
21752: 2001-08-02 parser
21753:
21754: * src/: classes/string.C, classes/table.C, include/pa_array.h,
21755: main/execute.C, main/pa_exec.C: introducing Array_iter
21756:
21757: * src/main/execute.C: detected quick_get recursion bug. changed to
21758: get@execute, but needs array iterator, separate from array to
21759: avoid it & use caching
21760:
21761: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
21762: bug fixed
21763:
21764: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
21765: main/execute.C, main/pa_globals.C: found another multithread bug
21766: in op.C (last, last global var killed) :)
21767:
21768: 2001-08-01 parser
21769:
21770: * src/: include/pa_dictionary.h, include/pa_globals.h,
21771: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
21772: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21773: main/untaint.C: speeded up typo-html replacements. introducing
21774: Dictionary with first-char caching
21775:
21776: 2001-07-31 parser
21777:
21778: * src/types/Makefile.am: pa_vtable.C added to .am
21779:
21780: * src/main/compile.tab.C: added, so that could be compiled even on
21781: non-bison-enabled platforms
21782:
21783: 2001-07-28 parser
21784:
21785: * src/classes/table.C: table:hash always produces hash, when can't
21786: - empty
21787:
21788: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
21789: skipped \n
21790:
21791: 2001-07-27 parser
21792:
21793: * src/classes/: double.C, int.C, string.C: provided meaningful msg
21794: on int/double/string :sql without result and default
21795:
21796: 2001-07-26 parser
21797:
21798: * src/classes/op.C: fixed bad multithread bug with strangly global
21799: OP
21800:
21801: * src/main/compile.y: $man[$.age[zzz]] 0
21802:
21803: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
21804: creation syntax problem persists. restored $: for a while.
21805: thinking of $man[$.age[zzz]] syntax now
21806:
21807: * src/: classes/double.C, classes/int.C, classes/string.C,
21808: include/pa_opcode.h, main/compile.C, main/compile.y,
21809: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
21810: types/pa_vmethod_frame.h, types/pa_wcontext.h,
21811: types/pa_wwrapper.h: fixing :: realization #1
21812:
21813: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
21814: main/compile_tools.h, main/execute.C, main/pa_request.C,
21815: types/pa_vmethod_frame.h: introducing :: this is constructor call
21816: prefix. ordinary : remains for static accesses
21817:
21818: 2001-07-25 parser
21819:
21820: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
21821: fields 2. methods 3. columns
21822:
21823: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
21824: quote. optimized double&int tostring-s
21825:
21826: * src/main/: compile.C, compile.y, compile_tools.h: allowed
21827: whitespace before first method decl
21828:
21829: * src/classes/table.C: allowed nontable result in table:sql,
21830: results in empty table
21831:
21832: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
21833: lines before first method decl
21834:
21835: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
21836: types/pa_vtable.h: ^table.record[] now $table.fields
21837:
21838: * src/main/compile.y: $var[] is now empty string, not void
21839:
21840: * src/main/: compile.y, execute.C: $var[] is now empty string, not
21841: void
21842:
21843: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
21844: main/pa_globals.C: match replace code context moved to implicit
21845: $match context
21846:
21847: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
21848: main/compile_tools.h, main/execute.C: with killed, code storage
21849: introduced with former 'with' syntax
21850:
21851: 2001-07-24 parser
21852:
21853: * src/: main/compile.C, main/execute.C, main/pa_string.C,
21854: types/pa_value.h: first get_element, next get operator
21855:
21856: * src/main/compile.y: removed @end handling
21857:
21858: * src/main/: compile.C, compile.y: @end handling method2
21859:
21860: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
21861: file:move
21862:
21863: * src/main/pa_common.C: file_read close @ eof when imgsize bug
21864: fixed
21865:
21866: 2001-07-23 parser
21867:
21868: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
21869: driver
21870:
21871: * src/classes/hash.C: changed sql driver query interface
21872:
21873: * src/: classes/hash.C, classes/string.C, classes/table.C,
21874: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
21875: changed sql driver query interface
21876:
21877: 2001-07-20 parser
21878:
21879: * src/types/pa_vrequest.C: X!$browser:type
21880:
21881: * src/: classes/file.C, classes/string.C, include/pa_string.h,
21882: main/execute.C, main/pa_string.C, types/pa_valiased.C,
21883: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
21884: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
21885: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
21886: types/pa_vobject.h, types/pa_vrequest.C,
21887: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
21888: ^class:method dynamic calls allowed. ^BASE.method call disabled.
21889: BASE element globally removed
21890:
21891: 2001-07-18 parser
21892:
21893: * src/classes/file.C: file:exec/cgi msg
21894:
21895: * src/classes/file.C: $file:exit-code renamed to 'status'
21896:
21897: * src/: classes/file.C, main/pa_exec.C: file:exec
21898:
1.116 moko 21899: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21900: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
21901: removed $id from *.in *.am
1.95 moko 21902:
21903: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
21904: abbrevations
21905:
21906: * src/: classes/date.C, classes/mail.C, classes/math.C,
21907: classes/string.C, classes/table.C, include/pa_globals.h,
21908: include/pa_string.h, main/execute.C, main/pa_globals.C,
21909: main/pa_request.C, main/pa_string.C, main/untaint.C,
21910: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
21911: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
21912: $ORIGINS(1) output tracing mode
21913:
21914: 2001-07-13 parser
21915:
21916: * src/: classes/double.C, classes/int.C, classes/string.C,
21917: include/pa_request.h, main/execute.C, main/pa_request.C:
21918: auto.p[@auto], /news/auto.p[no @auto], so that initializing
21919: second would not call first @auto
21920:
21921: * src/main/: execute.C, pa_request.C: order of MAIN parents was
21922: wrong, fixed
21923:
21924: 2001-07-12 parser
21925:
21926: * src/types/pa_value.h: pa_value.putelement modification of system
21927: classes prevented
21928:
21929: 2001-07-11 parser
21930:
21931: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
21932: table $piece
21933:
21934: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
21935: types/pa_vstateless_class.h: $file created by file:state +=
21936: .atime .mtime .ctime +found&fixed bug with exceptions on
21937: get_junction-created objects [they were on wrong pool]
21938:
21939: 2001-07-09 parser
21940:
21941: * src/main/untaint.C: qp wrong name
21942:
21943: * src/: classes/date.C, classes/string.C, classes/table.C,
21944: main/compile.y: date format 0
21945:
21946: 2001-07-07 parser
21947:
21948: * src/: classes/date.C, classes/table.C, include/pa_common.h,
21949: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
21950: roll table calendar
21951:
21952: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
21953: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
21954: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
21955: include/pa_request.h, main/main.dsp, types/pa_value.h,
21956: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
21957: string. todo: sql, calendar
21958:
21959: 2001-07-06 parser
21960:
21961: * src/: classes/math.C, include/pa_request.h, main/execute.C,
21962: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
21963:
21964: 2001-07-03 parser
21965:
21966: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
21967: classes/random.C, main/main.dsp: class random renamed to math,
21968: operators became methods
21969:
21970: * src/classes/op.C: pow sqrt
21971:
21972: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
21973:
21974: 2001-07-02 parser
21975:
21976: * src/classes/table.C: ^table.columns column renamed from 'name' to
21977: 'column'
21978:
21979: * src/classes/hash.C: ^hash.keys[]
21980:
21981: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
21982:
21983: * src/main/: compile.y, compile_tools.h: in expressions now allowed
21984: 'strings'
21985:
21986: 2001-06-29 parser
21987:
21988: * src/main/: execute.C: /0 %0 checkes ver 2
21989:
21990: * src/main/execute.C: /0 %0 checke
21991:
21992: * src/classes/Makefile.am: nothing - void
21993:
21994: * src/classes/table.C: empty strings @ sql
21995:
21996: 2001-06-28 parser
21997:
21998: * src/: classes/double.C, classes/file.C, classes/form.C,
21999: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22000: classes/op.C, classes/random.C, classes/response.C,
22001: classes/string.C, classes/table.C, classes/void.C,
22002: main/compile.C, main/compile_tools.C, main/execute.C,
22003: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22004: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22005: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22006: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22007: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
22008: targets/isapi/parser3isapi.C, main/compile.y: */ static const
22009: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
22010: $";
22011:
22012: * src/: classes/double.C, classes/file.C, classes/form.C,
22013: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
22014: classes/op.C, classes/random.C, classes/response.C,
22015: classes/string.C, classes/table.C, classes/void.C,
22016: main/compile.C, main/compile.y, main/compile_tools.C,
22017: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
22018: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
22019: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
22020: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
22021: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 22022: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 22023:
22024: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
22025: $class:name: == ${class:name}:
22026:
22027: * src/classes/string.C: exactly one
22028:
22029: 2001-06-27 parser
22030:
22031: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
22032: types/pa_vvoid.h: nothing renamed to void
22033:
22034: * src/classes/op.C: ^switch ^case
22035:
22036: * src/main/compile.y: nothing renamed to void
22037:
22038: * src/: classes/hash.C, classes/table.C, main/compile.y,
22039: main/execute.C, main/main.dsp, main/pa_request.C,
22040: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
22041: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
22042: void
22043:
22044: * src/main/compile.y: lexer: $zzzz^zzzz were name part
22045:
22046: 2001-05-28 parser
22047:
22048: * src/doc/html2chm.cmd: removed >a
22049:
22050: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
22051: project options [some bugs]
22052:
22053: * src/doc/sources2html.cmd: z
22054:
22055: * src/: classes/classes.C, main/compile.C, main/compile.y,
22056: main/execute.C: operators are not in root class again
22057:
22058: 2001-05-24 parser
22059:
22060: * src/targets/cgi/parser3.dsp: project file
22061:
22062: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
22063: ^log ^exp
22064:
22065: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
22066: conversions in @exception[params]
22067:
22068: * src/main/pa_request.C: // no _ conversions in @exception[params]
22069:
22070: 2001-05-23 parser
22071:
22072: * src/main/pa_string.C: string cmp bug
22073:
22074: * src/classes/: mail.C, op.C: rem max 1000
22075:
22076: * src/: classes/op.C, main/compile.y: allow one empty line before
22077: LS_DEF_NAME
22078:
22079: 2001-05-22 parser
22080:
22081: * src/classes/op.C: if params code-required
22082:
22083: 2001-05-21 parser
22084:
22085: * src/types/pa_vstring.C: eoleof
22086:
22087: * src/classes/Makefile.am: .AM
22088:
22089: * src/classes/nothing.C: resultless ^sql moved to nothing:
22090:
22091: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
22092:
22093: * src/: classes/double.C, classes/nothing.C, classes/string.C,
22094: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
22095: types/pa_vunknown.h, classes/hash.C, main/compile.y,
22096: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
22097: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
22098: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
22099: 'nothing'
22100:
22101: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
22102: vstring::set_string
22103:
22104: * src/classes/: double.C, int.C, string.C: int,double;sql
22105:
22106: * src/: classes/hash.C, classes/int.C, classes/string.C,
22107: classes/table.C, include/pa_string.h, main/pa_string.C,
22108: types/pa_vstring.C, types/pa_vstring.h: started int:sql
22109:
22110: * src/: classes/classes.C, classes/hash.C, classes/op.C,
22111: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
22112: hash:sql moved to main trunc. operators.txt updated
22113:
22114: * src/classes/: hash.C, op.C, table.C: hash:sql
22115:
22116: * src/classes/op.C: z
22117:
22118: * src/: main/compile.C, classes/classes.C: 1
22119:
22120: * src/: classes/classes.C, main/compile.C, main/compile.y,
22121: main/execute.C: 0
22122:
22123: * src/main/execute.C: z
22124:
22125: * src/targets/cgi/parser3.C: z
22126:
22127: * src/targets/cgi/parser3.C: argv can be just "parser3". made
22128: site_auto_path "." in that case
22129:
22130: * src/targets/cgi/: parser3.C: z
22131:
22132: * src/main/pa_request.C: .am
22133:
22134: * src/: main/pa_request.C, targets/cgi/parser3.C:
22135: pcre_tables=pcre_default_tables;
22136:
22137: 2001-05-19 parser
22138:
22139: * src/main/pa_string.C: z
22140:
22141: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
22142: introducing String::cstr_bufsize, returns just size+1 for as_is
22143: target.
22144:
22145: * src/: main/untaint.C, targets/cgi/pa_pool.C,
22146: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
22147: used, 4* mem wasted
22148:
22149: * src/classes/string.C: root context in match replace body now
22150: unchanged
22151:
22152: * src/types/pa_value.h: parameter # 1 based
22153:
22154: * src/main/pa_common.C: common: actual filename '%s'
22155:
22156: * src/classes/string.C: z
22157:
22158: * src/classes/Makefile.am: classes/.am
22159:
22160: * src/classes/: Makefile.am: classes/.am
22161:
22162: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
22163: targets/cgi/pa_pool.C: classes/.am
22164:
22165: 2001-05-18 parser
22166:
1.116 moko 22167: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
22168: pa_threads.C ins
1.95 moko 22169:
22170: * src/targets/cgi/Makefile.am: .am pa_threads.C added
22171:
22172: 2001-05-17 parser
22173:
22174: * src/: classes/string.C, include/pa_config_fixed.h,
22175: include/pa_config_includes.h, main/compile.y,
22176: main/compile_tools.h, main/execute.C, main/pa_array.C,
22177: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
22178: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
22179: types/pa_vform.C: #include "pa_config_includes.h" removed from
22180: most .C
22181:
22182: * src/doc/html2chm.cmd: z
22183:
22184: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
22185: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
22186:
22187: * src/main/pa_sql_driver_manager.C: moved expiration to
22188: get_connection_from_cache
22189:
22190: * src/main/pa_sql_driver_manager.C: cache expiration bf
22191:
22192: * src/: classes/classes.h, include/pa_sql_connection.h,
22193: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
22194: cache expiration[use SQL_Driver::disconnect]
22195:
22196: * src/main/pa_table.C: table.locate current restored on "not found"
22197:
22198: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
22199: line no
22200:
22201: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
22202: ANTI_ENDLESS_EXECUTE_RECOURSION
22203:
22204: * src/: classes/op.C, include/pa_sql_connection.h,
22205: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
22206: sql/pa_sql_driver.h: fixed problem at last: 2connections own
22207: 1driver and set_services fight for driver::fservices. before fix
22208:
22209: * src/: classes/op.C, include/pa_config_fixed.h,
22210: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
22211: main/pa_sql_driver_manager.C: found problem at last: 2connections
22212: own 1driver and set_services fight for driver::fservices. before
22213: fix
22214:
22215: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22216: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
22217: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
22218: pa_threads.C
22219:
22220: * src/include/pa_threads.h: removed targets/parser
22221:
22222: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
22223: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
22224: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
22225: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
22226: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
22227: headers
22228:
22229: * src/: classes/image.C, include/pa_sql_driver_manager.h,
22230: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
22231: order prevented sqlmanager to see MULTYTHREAD define
22232:
22233: * src/: include/pa_config_fixed.h, include/pa_threads.h,
22234: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
22235: put/gets
22236:
22237: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
22238: from hash.h
22239:
22240: * src/: classes/op.C, include/pa_sql_connection.h,
22241: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
22242: from cache ->set_services(&services);
22243:
22244: 2001-05-16 parser
22245:
22246: * src/targets/cgi/parser3.C: z
22247:
22248: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
22249: debug, #ifdefed some. would debug later, on more precise sample
22250: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
22251: $name.$tail[$tail!] $name.$tail } ok3
22252:
22253: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
22254: removed array debug. before vstring rebasing
22255:
22256: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
22257: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
22258: array debugged; adjusted
22259:
22260: * src/main/: pa_sql_driver_manager.C, pa_string.C:
22261: SQL_Driver_manager line no for connect/charset errors
22262:
22263: 2001-05-15 parser
22264:
22265: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
22266: main/pa_string.C: string+array made linear grows
22267:
22268: * src/: include/pa_string.h, main/pa_string.C,
22269: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
22270: grow lineary, not exponentialy
22271:
22272: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
22273: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
22274: with fullchunk cmps
22275:
22276: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
22277: 70041= 81
22278:
22279: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
22280: targets/cgi/parser3.C: detected huge mem allocation: size/times
22281: malloc 27809390/368771, calloc 3232/83. would test now
22282:
22283: * src/: classes/random.C, main/compile.y, main/execute.C,
22284: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
22285: numbered params had wrong name - for instance: bad error message
22286: in ^for[] bad body type. fixed
22287:
22288: 2001-05-14 parser
22289:
22290: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
22291: main/untaint.C: ^string.upper|lower[]
22292:
22293: 2001-05-11 parser
22294:
22295: * src/: classes/double.C, classes/image.C, classes/op.C,
22296: classes/string.C, classes/table.C, classes/unknown.C,
22297: main/execute.C, types/pa_value.h, types/pa_vbool.h,
22298: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
22299: types/pa_vunknown.h: op: MAX_LOOPS as_int
22300:
22301: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
22302: .dsp for win32tools
22303:
22304: 2001-05-11 paf
22305:
22306: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
22307: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
22308: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
22309: targets/isapi/kill.pl: moved win32 helpers to /win32tools
22310:
22311: 2001-05-10 paf
22312:
22313: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
22314: for C++, that's all
22315:
1.116 moko 22316: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
22317: pa_config_includes.h: inline wonders
1.95 moko 22318:
22319: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
22320: doc/doxygen.cmd: hash.C added
22321:
22322: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
22323:
22324: * src/main/compile.y: @end grammar: allowed zero strings in control
22325: menthod
22326:
22327: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
22328: pa_vstateless_object.h: changed priority: field before method
22329: lookup in vclass & vobject
22330:
22331: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
22332: grammar: priorities changes [lowerd && prior] vobject: now first
22333: fields, next methods
22334:
22335: 2001-05-08 paf
22336:
22337: * src/main/pa_table.C: table columnname2item on nameless ignored
22338: bark=false. fixed
22339:
22340: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
22341: types/pa_vmethod_frame.h: hash:default works at last!
22342:
22343: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
22344: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
22345: hash:default
22346:
22347: * src/classes/table.C: z
22348:
22349: * src/classes/table.C: table:hash always hash of hash now
22350:
22351: * src/classes/table.C: table:empty return bool now
22352:
22353: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
22354: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22355: types/pa_vtable.h: table:hash
22356:
22357: * src/classes/table.C: table:record have name
22358:
22359: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
22360: returns vunknown
22361:
22362: * src/classes/: double.C, int.C, op.C, string.C:
22363: int,double,string:int[] double[] string:length[] results now have
22364: hames
22365:
22366: * src/: classes/op.C, classes/table.C, main/main.dsp,
22367: types/pa_vtable.h: removed table:find. table:locate and op:eval
22368: now return bool
22369:
22370: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
22371: in method checkparams again. fixed
22372:
22373: 2001-05-07 paf
22374:
22375: * src/doc/chm.cmd: cmd
22376:
22377: * src/: classes/image.C, classes/mail.C, classes/string.C,
22378: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22379: types/pa_value.h: method reported errors on wrong pool
22380:
22381: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22382: now
22383:
22384: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22385: include/code.h, include/pa_opcode.h, main/compile.C,
22386: main/compile_tools.h, main/execute.C, types/pa_value.h,
22387: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22388: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22389: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22390: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22391: types/pa_vmethod_frame.h, types/pa_vobject.h,
22392: types/pa_vrequest.h, types/pa_vresponse.h,
22393: types/pa_vstateless_class.h, types/pa_vstring.h,
22394: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22395: types/pa_wwrapper.h: pa_code.h
22396:
22397: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22398:
22399: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22400: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22401: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22402: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22403: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22404: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22405: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22406: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22407: types/pa_vtable.h: dox, split by not clean parts also
22408:
22409: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22410: types/pa_vtable.h: table: fields, then methods. so to enable
22411: 'dir' fields & co. more
22412:
22413: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22414: so to enable 'dir' fields & co.
22415:
22416: * src/main/compile.y: grammar: @end
22417:
22418: 2001-05-04 paf
22419:
22420: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22421: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22422:
22423: * src/: classes/classes.h, classes/double.C, classes/file.C,
22424: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22425: classes/op.C, classes/random.C, classes/response.C,
22426: classes/string.C, classes/table.C, classes/unknown.C,
22427: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22428: method dox
22429:
22430: 2001-05-03 paf
22431:
22432: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22433: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22434: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
22435: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22436: doc/string.dox, doc/targets.dox, doc/value.dox,
22437: main/pa_request.C: dox splitted .dox files and added some
22438:
22439: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
22440:
22441: 2001-05-02 paf
22442:
22443: * src/classes/: image.C, table.C: table:dir result are not tainted
22444: by file_name language now
22445:
22446: 2001-04-28 paf
22447:
22448: * src/classes/classes.inc: removed classes.inc
22449:
22450: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
22451: from .am
22452:
22453: * src/classes/classes.awk: skipped classes in .awk
22454:
22455: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
22456: classes/classes.inc, classes/double.C, classes/file.C,
22457: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
22458: classes/string.C, classes/table.C, classes/unknown.C,
22459: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
22460: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
22461: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
22462: pa_methoded back to classes/classes.h
22463:
22464: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
22465:
22466: * src/: classes/Makefile.am, classes/classes.awk,
22467: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
22468: classes/ls.exe, main/bison.exe: classes.inc autogenerator
22469:
22470: * src/: classes/classes.C, classes/classes.h, classes/double.C,
22471: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
22472: classes/response.C, classes/string.C, classes/table.C,
22473: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
22474: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
22475: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
22476: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
22477: include|main/pa_methoded
22478:
22479: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
22480: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
22481:
22482: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
22483: moved some configured data to request::classes_conf moved some
22484: string crations from globals to M... [works]
22485:
22486: * src/: classes/form.C, classes/mail.C, classes/op.C,
22487: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
22488: main/pa_request.C: moved some configured data to
22489: request::classes_conf moved some string crations from globals to
22490: M...
22491:
22492: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
22493: about to move configured data to special request hash
22494:
22495: * src/: classes/classes.C, classes/classes.h, classes/file.C,
22496: classes/form.C, classes/mail.C, include/pa_request.h,
22497: main/pa_request.C: configure started
22498:
22499: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
22500: 2. todo: methoded-configure
22501:
22502: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22503: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22504: classes/_random.h, classes/_response.h, classes/_string.h,
22505: classes/_table.h, classes/_unknown.h, classes/classes.inc,
22506: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22507: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22508: classes/random.C, classes/response.C, classes/string.C,
22509: classes/table.C, classes/unknown.C, include/pa_globals.h,
22510: include/pa_request.h, main/compile.y, main/execute.C,
22511: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22512: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22513: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
22514: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
22515: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22516: types/pa_vrequest.h, types/pa_vresponse.h,
22517: types/pa_vstateless_class.h, types/pa_vstring.h,
22518: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22519: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
22520: methoded-configure
22521:
22522: * src/: classes/file.C, classes/table.C, main/compile.y,
22523: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
22524: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
22525: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
22526:
22527: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
22528: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22529: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22530: classes/random.C, classes/response.C, classes/string.C,
22531: classes/table.C, classes/unknown.C, include/pa_request.h,
22532: main/compile.y, main/execute.C, main/pa_globals.C,
22533: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
22534: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
22535: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
22536: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
22537: beautifying just compiled. todo: debug, configure
22538:
22539: 2001-04-27 paf
22540:
22541: * src/: classes/file.C, classes/image.C, classes/table.C,
22542: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
22543: beautifying -99
22544:
22545: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
22546: classes/_response.h, classes/_unknown.h, classes/classes.C,
22547: classes/classes.h, classes/double.C, classes/file.C,
22548: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22549: classes/op.C, classes/random.C, classes/response.C,
22550: classes/string.C, include/pa_globals.h, main/main.dsp,
22551: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
22552: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22553: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
22554: types/pa_vunknown.h: beautifying -100
22555:
22556: * src/main/compile.y: serge@ found @CLASS bug. fixed
22557:
22558: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
22559: classes/_op.h, classes/_random.h, classes/_table.h,
22560: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
22561: classes/op.C, classes/random.C, classes/response.C,
22562: classes/string.C, classes/table.C, classes/unknown.C,
22563: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22564: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22565: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
22566: beautifying
22567:
22568: 2001-04-26 paf
22569:
22570: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
22571:
22572: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
22573: documentation ++
22574:
22575: * src/: classes/_exec.h, doc/doxygen.cfg,
22576: include/pa_config_fixed.h, include/pa_config_includes.h,
22577: targets/cgi/pa_pool.C: code documentation ++
22578:
22579: * src/: classes/_image.h, classes/op.C, classes/random.C,
22580: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22581: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22582: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
22583: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22584: types/pa_vmethod_frame.h, types/pa_vobject.h,
22585: types/pa_vrequest.C, types/pa_vrequest.h,
22586: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
22587: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
22588: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
22589: code documentation ++
22590:
22591: * src/: classes/image.C, classes/mail.C, classes/string.C,
22592: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
22593: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
22594: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
22595: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22596: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
22597: types/pa_vobject.h, types/pa_vstateless_class.h,
22598: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
22599:
22600: * src/main/: pa_request.C, pa_string.C: z
22601:
22602: * src/: include/pa_common.h, include/pa_types.h,
22603: main/pa_sql_driver_manager.C: module [and, guess, isapi]
22604: connection caching fixed. request-pooled-url were stored into
22605: global connectioncache
22606:
22607: 2001-04-25 paf
22608:
22609: * src/: doc/doxygen.cfg, doc/doxygen.txt,
22610: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
22611:
22612: * src/: include/code.h, include/pa_common.h, main/compile.y,
22613: main/execute.C, main/pa_common.C: -d
22614:
22615: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
22616: illegal call check a bit improved, but still under iis no mapping
22617: of dir with parser allowed!
22618:
22619: 2001-04-24 paf
22620:
22621: * src/targets/Makefile.am: apache module lib .am
22622:
22623: * src/main/pa_exec.C: windows32 buildCommand
22624:
22625: 2001-04-23 paf
22626:
22627: * src/targets/cgi/Makefile.am: win32 conditional
22628:
22629: * src/targets/cgi/Makefile.am: win32 conditional
22630:
22631: * src/targets/cgi/Makefile.am: liblink
22632:
22633: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
22634: vfile fields return type
22635:
22636: * src/types/pa_vfile.h: vfile fields return type
22637:
22638: * src/include/pa_config_auto.h.in: .h.in
22639:
22640: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
22641: types/Makefile: makefiles removed
22642:
22643: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
22644: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
22645:
22646: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
22647: [tested: i & g ]
22648:
22649: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
22650: @test noticed series in isapi, check how initialize_random_class
22651: is called! [must be called only once]
22652:
22653: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
22654: would not be 'unknown column'
22655:
22656: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
22657: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
22658:
22659: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
22660: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
22661: [now doesnt]
22662:
22663: * src/targets/cgi/parser3.C: cgi cmdline ver
22664:
22665: * src/targets/cgi/parser3.C: cgi /// @test disable
22666: /cgi-bin/parser3/auto.p
22667:
22668: * src/main/untaint.C: untaint without charset
22669:
22670: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22671: main/pa_common.C: common: file_write /// @test mkdirs
22672: file_delete rmdirs
22673:
22674: * src/main/untaint.C: mail header only once to =?
22675:
22676: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
22677: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
22678: main/untaint.C: untaint - @test optimize whitespaces for
22679: all but 'html'
22680:
22681: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
22682: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22683: main/untaint.C: untaint - @test mail-header
22684:
22685: 2001-04-20 paf
22686:
22687: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
22688: include/pa_request.h, include/pa_string.h, main/compile.y,
22689: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22690: targets/cgi/parser3.C: $MAIN:LOCALE
22691:
22692: * src/main/untaint.C: z
22693:
22694: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
22695:
22696: 2001-04-19 paf
22697:
22698: * src/main/compile_tools.h: $a$b bugfix
22699:
22700: * src/targets/cgi/parser3.C: z
22701:
22702: * src/classes/file.C: z
22703:
22704: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
22705: done: header to $fields. waits for header '\' tricks
22706:
22707: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22708: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
22709: changed urlencode here and in untaint.C to HTTP standard's " and
22710: \" mech
22711:
22712: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
22713: http://alx/~paf/ doesnt load /auto.p
22714:
22715: 2001-04-18 paf
22716:
22717: * src/main/pa_request.C: 1
22718:
22719: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
22720: linux @alx
22721:
22722: 2001-04-17 paf
22723:
22724: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
22725: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
22726: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
22727: enabled
22728:
22729: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22730: classes/_exec.h, classes/_file.h, classes/_form.h,
22731: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22732: classes/_random.h, classes/_response.h, classes/_string.h,
22733: classes/_table.h, classes/_unknown.h, classes/file.C,
22734: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
22735: include/pa_config_fixed.h, include/pa_config_includes.h,
22736: include/pa_hash.h, include/pa_sql_driver_manager.h,
22737: include/pa_version.h, main/Makefile.am, main/compile.y,
22738: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
22739: main/pa_sql_driver_manager.C, sql/Makefile.am,
22740: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
22741: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
22742: types/pa_vform.C, types/pa_vimage.h: exec @jav
22743:
22744: * src/: include/pa_sql_driver_manager.h,
22745: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22746: types/pa_vimage.h: sql driver interface now has initialize(client
22747: .so)
22748:
22749: 2001-04-16 paf
22750:
22751: * src/Makefile.am: compile2 cygwin
22752:
22753: * src/: include/pa_config_includes.h, main/pa_exec.C,
22754: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
22755:
22756: * src/targets/cgi/Makefile.am: compile0 jav
22757:
22758: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22759: classes/_exec.h, classes/_file.h, classes/_form.h,
22760: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22761: classes/_random.h, classes/_response.h, classes/_string.h,
22762: classes/_table.h, classes/_unknown.h, classes/image.C,
22763: classes/mail.C, classes/op.C, classes/random.C,
22764: include/pa_config_fixed.h, include/pa_config_includes.h,
22765: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
22766: main/compile.y, main/pa_common.C, main/pa_exec.C,
22767: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
22768: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
22769: compile-1
22770:
22771: 2001-04-15 paf
22772:
22773: * src/classes/op.C: z
22774:
22775: * src/classes/table.C: table:empty +=process
22776:
22777: * src/types/pa_value.h: MethodParams !junction
22778:
22779: * src/: classes/_string.h, classes/double.C, classes/file.C,
22780: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22781: classes/random.C, classes/response.C, classes/string.C,
22782: classes/table.C, classes/unknown.C, main/pa_request.C:
22783: MethodParams everywhere
22784:
22785: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
22786: types/pa_vmethod_frame.h: MethodParams in op.C
22787:
22788: 2001-04-12 paf
22789:
22790: * src/: classes/image.C, types/pa_vimage.h: image:font :text
22791:
22792: * src/: classes/_unknown.h, classes/unknown.C,
22793: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22794: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
22795:
22796: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
22797:
22798: * src/classes/image.C: image:gif now does not have params
22799:
22800: * src/classes/image.C:
22801: image:line/fill/rectangle/bar/replace/polygon/polybar
22802:
22803: * src/: classes/image.C, classes/op.C, main/execute.C,
22804: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
22805: for var now written not to r.wcontext, but to r.root cleared
22806: "entered_object" state
22807:
22808: 2001-04-11 paf
22809:
22810: * src/classes/image.C: image:create image:load
22811:
22812: * src/: classes/image.C, main/main.dsp: gd with mem write + image
22813: just compiled
22814:
22815: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
22816: todo: gif without file
22817:
22818: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
22819: started porting to Pooled descendant
22820:
22821: * src/: classes/image.C, main/execute.C, main/main.dsp,
22822: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
22823: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
22824: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
22825:
22826: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
22827: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
22828: end. switching to python imaging lib
22829:
22830: * src/main/main.dsp: gd+smtp made separate libs
22831:
22832: * src/: include/pa_globals.h, include/pa_string.h,
22833: main/pa_common.C, main/pa_request.C, main/untaint.C,
22834: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
22835: length
22836:
22837: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
22838: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
22839: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
22840: UL_FILE_NAME of posted file name
22841:
22842: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
22843: post [broke when moved post read to core]
22844:
22845: 2001-04-10 paf
22846:
22847: * src/classes/image.C: image:html done
22848:
22849: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
22850:
22851: * src/classes/image.C: z
22852:
22853: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
22854: forgotten!
22855:
22856: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
22857: main/pa_request.C, main/pa_string.C, main/untaint.C,
22858: types/pa_vimage.h: image:measure -90
22859:
22860: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22861: classes/_int.h, classes/_mail.h, classes/_op.h,
22862: classes/_random.h, classes/_response.h, classes/_string.h,
22863: classes/_table.h, classes/file.C, classes/mail.C,
22864: include/pa_common.h, include/pa_globals.h, main/execute.C,
22865: main/main.dsp, main/pa_common.C, main/pa_globals.C,
22866: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
22867: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
22868: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
22869: compiled
22870:
22871: * src/classes/mail.C: minor bug with unclear from/to
22872:
22873: * src/classes/mail.C: sendmail unix skipping defaults
22874:
22875: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
22876: sendmail unix added defaults
22877:
22878: * src/classes/mail.C: unix sendmail compiled. todo:testing
22879:
22880: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
22881:
22882: 2001-04-09 paf
22883:
22884: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
22885: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
22886: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
22887: targets/isapi/parser3isapi.dsp: all targets exec
22888:
22889: * src/: include/pa_sapi.h, include/pa_string.h,
22890: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22891: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
22892: args in apache:util.script
22893:
22894: * src/include/pa_string.h: written but not tested exec with env for
22895: unix
22896:
22897: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
22898: targets/cgi/parser3.C: exec win32 env
22899:
22900: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
22901: 0
22902:
22903: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
22904: main/execute.C, main/main.dsp, main/pa_globals.C,
22905: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
22906: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
22907:
22908: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
22909: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
22910:
22911: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
22912: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
22913:
22914: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
22915: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
22916: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22917: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22918: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
22919: exec class just compiled. moved post read to request core
22920:
22921: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
22922: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
22923: main/pa_globals.C, targets/cgi/parser3.C,
22924: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
22925: are already read by vform
22926:
22927: 2001-04-08 paf
22928:
22929: * src/: classes/file.C, classes/mail.C, classes/string.C,
22930: include/pa_request.h, include/pa_string.h, main/pa_request.C:
22931: uuencode. string<<
22932:
22933: 2001-04-07 paf
22934:
22935: * src/classes/mail.C: z
22936:
22937: * src/classes/mail.C: z
22938:
22939: * src/classes/mail.C: ^mail[$attach
22940:
22941: * src/classes/mail.C: ^attach dead end
22942:
22943: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
22944: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22945: targets/isapi/parser3isapi.C: mail:send 1
22946:
22947: * src/: classes/mail.C, main/pa_request.C: z
22948:
22949: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
22950: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
22951: compiled
22952:
22953: * src/classes/mail.C: +=
22954:
22955: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
22956: prepared
22957:
22958: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
22959: include/pa_globals.h, include/pa_string.h, main/main.dsp,
22960: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22961: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
22962:
22963: 2001-04-06 paf
22964:
22965: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
22966: main/pa_string.C: table:dir 1
22967:
22968: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
22969: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
22970:
22971: * src/: classes/_op.h, classes/_root.h, classes/op.C,
22972: classes/root.C, include/pa_globals.h, include/pa_request.h,
22973: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
22974: main/pa_request.C: renamed 'root' to 'op'
22975:
22976: * src/classes/: _op.h, op.C: renamed from 'root'
22977:
22978: * src/types/pa_valiased.C: another root inherititance skipped
22979:
22980: * src/main/: compile.C, compile.y, execute.C: operators are now not
22981: root methods of parent class. just 'ROOT' class
22982:
22983: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
22984: @office
22985:
22986: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
22987:
22988: 2001-04-05 paf
22989:
22990: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
22991: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
22992: constructor flag dropped at get_method_frame and remembered into
22993: method_frame
22994:
22995: * src/: classes/file.C, classes/root.C, classes/string.C,
22996: classes/table.C, main/pa_request.C: junction to code&expression
22997: in errors
22998:
22999: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23000: main/pa_string.C, targets/isapi/parser3isapi.dsp:
23001: $LOCALE:ctype[Russian_Russia.1251]
23002:
23003: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
23004: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
23005: main/pa_table.C: hash now not thread-safe.
23006:
23007: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23008: main/untaint.C: z
23009:
23010: * src/: classes/random.C, classes/root.C, classes/table.C,
23011: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
23012: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
23013: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
23014: types/pa_wcontext.h: sql quote. string untaint UL_SQL
23015:
23016: * src/: classes/table.C, include/pa_sql_connection.h,
23017: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
23018:
23019: * src/classes/table.C: select * from hren error contains statement
23020:
23021: * src/: classes/table.C, include/pa_sql_connection.h,
23022: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
23023: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
23024:
23025: * src/: classes/root.C, include/pa_sql_connection.h,
23026: include/pa_sql_driver.h, main/main.dsp,
23027: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
23028: services for conv memory & error reporting
23029:
23030: 2001-04-04 paf
23031:
23032: * src/doc/doxygen.cfg: z
23033:
23034: * src/include/pa_sql_driver.h: mysql connect
23035:
23036: * src/include/pa_sql_driver.h: mysql info
23037:
23038: * src/: classes/root.C, include/pa_sql_driver.h,
23039: include/pa_sql_driver_manager.h, main/main.dsp,
23040: main/pa_sql_driver_manager.C: more manager&connection&driver
23041:
23042: * src/sql/Makefile.am: forgot to add mysql client
23043:
23044: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
23045: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
23046: [forgot to add libltdl, added]
23047:
23048: * src/: Makefile.am, classes/root.C, classes/string.C,
23049: classes/table.C, include/pa_globals.h, include/pa_hash.h,
23050: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
23051: include/pa_string.h, include/pa_table.h, main/main.dsp,
23052: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23053: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
23054: -1000 just compiled
23055:
23056: * src/: classes/random.C, classes/root.C, classes/table.C,
23057: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
23058: main/pa_request.C, types/pa_vclass.h: sql frame -10
23059:
23060: 2001-04-03 paf
23061:
23062: * src/types/pa_vform.C: z
23063:
23064: * src/: classes/string.C, types/pa_vform.C: string:match replace
23065: assigned lang
23066:
23067: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
23068: {}[]< empty []
23069:
23070: * src/: classes/file.C, classes/string.C, classes/table.C,
23071: include/pa_string.h, main/pa_common.C, main/pa_string.C,
23072: main/untaint.C: string:match replace 2. string.cstr(forced lang)
23073:
23074: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23075: string:match replace strange matches
23076:
23077: * src/classes/string.C: string:match replace 0
23078:
23079: * src/: classes/string.C, main/pa_string.C: string:match replace
23080: prepared 2
23081:
23082: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23083: string:match replace prepared
23084:
23085: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23086: string:match replace -11
23087:
23088: * src/: classes/string.C, include/pa_globals.h,
23089: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
23090: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
23091:
23092: * src/: classes/string.C, include/pa_globals.h,
23093: include/pa_string.h, main/main.dsp, main/pa_globals.C,
23094: main/pa_string.C: string:match [search] -1 just compiled
23095:
23096: * src/types/pa_vstring.C: z
23097:
23098: * src/: classes/double.C, classes/file.C, classes/form.C,
23099: classes/int.C, classes/response.C, classes/root.C,
23100: classes/string.C, classes/table.C, include/pa_string.h,
23101: main/pa_string.C: string:match -10 [frame]
23102:
23103: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
23104: main/pa_request.C: z
23105:
23106: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
23107: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
23108: todo/tests
23109:
23110: * src/include/pa_common.h: z
23111:
23112: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
23113: main/pa_request.C, targets/cgi/parser3.C,
23114: targets/isapi/parser3isapi.C, types/pa_vfile.C:
23115: content-disposition
23116:
23117: * src/: include/pa_common.h, include/pa_globals.h,
23118: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23119: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
23120:
23121: * src/: include/pa_common.h, include/pa_request.h,
23122: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
23123: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23124: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
23125: response:body
23126:
23127: * src/classes/table.C: table:append now uses string::split
23128:
23129: * src/classes/table.C: z
23130:
23131: * src/: classes/file.C, classes/root.C, classes/string.C,
23132: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
23133: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
23134: include/pa_string.h, main/execute.C, main/pa_string.C,
23135: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
23136: string::pos & cmp & piece bugs fixed. string::split new
23137: table:load separated from set table:set implemented with clean \n
23138: \t searches
23139:
23140: 2001-04-02 paf
23141:
23142: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
23143: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
23144: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23145: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
23146: it in table:set/load
23147:
23148: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
23149: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
23150:
23151: * src/classes/random.C: random:generate 1
23152:
23153: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
23154: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23155: types/pa_value.h: random:generate
23156:
23157: 2001-03-30 paf
23158:
23159: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
23160: todo: table flip and append. string::pos
23161:
23162: * src/: classes/double.C, classes/file.C, classes/int.C,
23163: classes/response.C, classes/root.C, classes/string.C,
23164: classes/table.C, main/compile.y, main/execute.C,
23165: types/pa_value.h, types/pa_vstateless_class.C,
23166: types/pa_vstateless_class.h: static|dynamic|any method
23167: registration
23168:
23169: * src/: classes/file.C, classes/table.C, include/pa_table.h,
23170: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
23171: table:flip
23172:
23173: 2001-03-29 paf
23174:
23175: * src/classes/string.C: string:xsplit forgot that they must result
23176: in 1 row N column [not vice versa]
23177:
23178: * src/classes/string.C: z
23179:
23180: * src/classes/string.C: string: rsplit
23181:
23182: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23183: string: lsplit
23184:
23185: * src/: classes/string.C, include/pa_string.h, main/execute.C,
23186: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
23187: lsplit -1
23188:
23189: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
23190: string: pos
23191:
23192: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
23193: string: pos -1
23194:
23195: * src/: classes/string.C, classes/table.C, include/pa_string.h,
23196: main/compile.y, main/pa_request.C, main/pa_string.C,
23197: main/untaint.C: string: left right mid
23198:
23199: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
23200: main/compile_tools.h, main/main.dsp, types/pa_value.h,
23201: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
23202: and [;] are different now.
23203:
23204: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23205: main/untaint.C: pool.request undone
23206:
23207: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
23208: main/untaint.C: pool.request
23209:
23210: 2001-03-28 paf
23211:
23212: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23213: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23214: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
23215: $request:browser [.type .version]; unknown.get_double now = 0.
23216:
23217: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
23218: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
23219: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
23220: types/pa_vform.C: file:load autodetection of mime-type by
23221: user-file-name
23222:
23223: * src/: classes/file.C, main/execute.C, main/pa_common.C,
23224: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
23225: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
23226:
23227: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
23228: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
23229: write. must be self.set
23230:
23231: * src/: classes/file.C, classes/root.C, classes/table.C,
23232: include/pa_table.h, main/pa_table.C: table:locate1, file:test
23233:
23234: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
23235: include/pa_table.h, main/pa_array.C, main/pa_table.C,
23236: types/pa_vtable.h: table:locate just compiled
23237:
23238: 2001-03-27 paf
23239:
23240: * src/main/: execute.C, pa_common.C: fixed r/w context of
23241: code-params2, fixed ntfs hardlink slow dir update
23242:
23243: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
23244: types/pa_wcontext.h: fixed r/w context of code-params
23245:
23246: * src/: classes/table.C, main/execute.C: about to change junction
23247: rcontext!!
23248:
23249: * src/: classes/double.C, classes/int.C, classes/root.C,
23250: classes/string.C, classes/table.C, main/compile_tools.C,
23251: main/execute.C, main/pa_request.C, main/untaint.C,
23252: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
23253: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23254: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
23255: types/pa_vunknown.h: sort 0
23256:
23257: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
23258: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
23259: renamed to are_static_calls_disabled
23260:
23261: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
23262: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
23263: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
23264: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
23265:
23266: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
23267:
23268: * src/: classes/table.C, include/pa_common.h, main/compile.y:
23269: started table:sort fixed minor bug in #...^{
23270:
23271: * src/: classes/table.C, include/pa_common.h, main/compile.y,
23272: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
23273: decided to have as it were. stepped back. grammar: added 'in'
23274: 'is' 'lt'&co follow-space check
23275:
23276: 2001-03-26 paf
23277:
23278: * src/: classes/file.C, classes/root.C, classes/table.C,
23279: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
23280: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23281: main/pa_table.C: moved ::save to pa_table. disabled @auto
23282: invocation in ^process
23283:
23284: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
23285:
23286: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
23287: main/pa_array.C: table:record
23288:
23289: * src/: main/untaint.C, targets/cgi/parser3.C,
23290: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23291: targets/isapi/pool_storage.h, types/pa_valiased.h,
23292: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
23293: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
23294: types/pa_vtable.h: z
23295:
23296: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
23297: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
23298: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
23299: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
23300: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
23301: method realisations on 'self' validity - they now can simply
23302: assume that 'self' is V{Proper} .
23303:
23304: 2001-03-25 paf
23305:
23306: * src/main/untaint.C: z
23307:
23308: * src/main/: pa_request.C, untaint.C: moved default typo-table to
23309: lowlevel - it initialization could be skipped if failed in @auto.
23310: so that exception report would use some table
23311:
23312: * src/main/pa_request.C: table empty lines ignored. system-default
23313: content type assigned in output:result [can fail in main:auto and
23314: skipped normal defaults extraction]
23315:
23316: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
23317: bug
23318:
23319: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
23320: processing to table [except preliminary \r\n \r \n replacements
23321: to "\n"]
23322:
23323: * src/: classes/table.C, main/untaint.C: html-typo - decided to
23324: move all the processing to table
23325:
23326: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
23327: main/pa_table.C, main/untaint.C: returned table originating.
23328: useful for reporting typo table problems origin. think would be
23329: useful somewhere else
23330:
23331: * src/main/untaint.C: typo \r \r\n \n properly handled
23332:
23333: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
23334: include/pa_table.h, main/compile.y, main/compile_tools.C,
23335: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
23336: main/pa_string.C, main/pa_table.C, main/untaint.C,
23337: types/pa_vcookie.h: typo & typo-default
23338:
23339: 2001-03-24 paf
23340:
23341: * src/main/pa_common.C: z
23342:
23343: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
23344: targets/cgi/parser3.C: html-typo 2
23345:
23346: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
23347: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
23348: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
23349: main/execute.C, main/pa_array.C, main/pa_globals.C,
23350: main/pa_request.C, main/pa_string.C, main/untaint.C,
23351: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
23352: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
23353: noticed double default content-type prob. run cgi.cmd tomorrow
23354: first html-typo sample. detected << problem: they become ltlt too
23355: fast
23356:
23357: * src/main/compile.y: z
23358:
23359: * src/main/: compile.y, compile_tools.h: #comment
23360:
23361: * src/: classes/file.C, classes/root.C, classes/table.C,
23362: include/pa_common.h, include/pa_request.h, main/compile.y,
23363: main/pa_common.C, main/pa_request.C, main/pa_string.C,
23364: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
23365: stringified
23366:
23367: * src/types/pa_valiased.C: decided to String-ify file_read
23368:
23369: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
23370: isapi/parser3isapi.dsp: cgi: sapi::log
23371:
23372: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
23373: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
23374: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
23375: error log experiments failed - cgi under iis got no access to
23376: log. registereventsource simply failed with 5(illegal call) code,
23377: while worked OK as standalone executable. isapi: used
23378: HSE_APPEND_LOG_PARAMETER feature
23379:
23380: * src/: include/pa_common.h, include/pa_globals.h,
23381: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23382: targets/isapi/parser3isapi.C: fixed default content-type
23383: allocation storage
23384:
23385: * src/: include/pa_globals.h, include/pa_request.h,
23386: main/pa_globals.C, main/pa_request.C: z
23387:
23388: * src/: include/pa_array.h, include/pa_hash.h,
23389: include/pa_request.h, main/compile.y, main/pa_array.C,
23390: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23391: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23392: content-type
23393:
23394: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23395: sanity
23396:
23397: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23398: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23399: away freeze mech. no danger now for you can't do
23400: ^request:process[@new-method[] body] trick anymore. still
23401: remains $some_instance.process[@new-method[] possibility] but
23402: would leave it as a feature. see index for sample
23403:
23404: * src/: include/pa_common.h, main/pa_common.C,
23405: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23406: monkey every target
23407:
23408: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23409: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23410: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23411:
23412: 2001-03-23 paf
23413:
23414: * src/: include/pa_pool.h, main/pa_request.C,
23415: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23416: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23417: targets/isapi/pool_storage.h: isapi: dumb pool storage
23418:
23419: * src/targets/isapi/pa_pool.C: decided to continue with extension
23420:
23421: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23422: it would be better to rewrite as filter then to deal with pool
23423:
23424: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23425: now like in cgi, not from APPL_PHYSICAL_PATH
23426:
23427: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23428: include/pa_config_fixed.h, include/pa_config_includes.h,
23429: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23430: include/pa_version.h, main/compile.y, main/execute.C,
23431: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23432: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23433: main/untaint.C, targets/cgi/parser3.C,
23434: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
23435: cgi: reinvent document_root and request_uri under iis. autoconf
23436: updated. introducing ap_config_includes
23437:
23438: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
23439:
23440: * src/targets/cgi/parser3.C: cgi: only one pool now
23441:
23442: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
23443: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23444: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23445: types/pa_venv.h, types/pa_vform.C: sapi made object
23446:
23447: * src/: include/pa_globals.h, main/pa_request.C,
23448: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23449: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23450: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
23451:
23452: * src/: main/pa_request.C, targets/cgi/parser3.C,
23453: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23454: isapi minor env beauty
23455:
23456: * src/: main/pa_request.C, targets/cgi/parser3.C,
23457: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23458: isapi document_root 0
23459:
23460: 2001-03-22 paf
23461:
23462: * src/targets/isapi/parser3isapi.C: isapi keep-alive
23463:
23464: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
23465: isapi/parser3isapi.C: z
23466:
23467: * src/: include/pa_pool.h, main/pa_request.C,
23468: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
23469:
23470: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
23471: kill.pl: isapi added utils
23472:
23473: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
23474: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23475: types/pa_vform.C: isapi 0
23476:
23477: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
23478: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23479: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
23480: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
23481: started isapi
23482:
23483: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
23484: some comments
23485:
23486: * src/: include/pa_globals.h, include/pa_request.h,
23487: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
23488: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
23489: parser_root_auto_path parser_site_auto_path
23490:
23491: * src/types/pa_vcookie.C: cookie attr decoded
23492:
23493: 2001-03-21 paf
23494:
23495: * src/targets/cgi/parser3.C: z
23496:
23497: * src/include/pa_globals.h: post. todo: config of auto.p path
23498:
23499: * src/: include/pa_globals.h, targets/cgi/parser3.C,
23500: types/pa_venv.h: in cookie & env. todo:post
23501:
23502: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
23503: classes/root.C, classes/table.C, include/pa_array.h,
23504: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
23505: include/pa_request.h, include/pa_string.h, main/Makefile.am,
23506: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
23507: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23508: main/pa_table.C, main/untaint.C, targets/Makefile.am,
23509: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23510: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
23511: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
23512: shifted apache branch on main trunc
23513:
23514: * src/: include/pa_common.h, include/pa_globals.h,
23515: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23516: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
23517: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
23518: starting mod_parser3
23519:
23520: * src/targets/cgi/parser3.C: starting mod_parser3
23521:
23522: 2001-03-20 paf
23523:
23524: * src/: main/pa_common.C, targets/cgi/Makefile.am,
23525: targets/cgi/parser3.C: automake compiled and works. todo:make
23526: win32 ifdefs work and add ifdef unistd
23527:
23528: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
23529: main/Makefile.am, main/pa_common.C, main/pa_request.C,
23530: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
23531: z
23532:
23533: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
23534: main/execute.C, main/pa_common.C, types/Makefile.am: removing
23535: locking
23536:
23537: * src/: classes/Makefile.am, types/Makefile.am: z
23538:
23539: * src/: Makefile.am, classes/file.C, classes/root.C,
23540: classes/table.C, include/pa_array.h, include/pa_request.h,
23541: include/pa_string.h, main/Makefile.am, main/execute.C,
23542: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23543: main/pa_string.C, main/untaint.C, targets/Makefile.am,
23544: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23545: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
23546:
23547: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23548: main/pa_request.C, types/pa_vfile.h: ^table:save
23549:
23550: * src/: classes/file.C, classes/table.C, include/pa_array.h,
23551: include/pa_common.h, include/pa_request.h, include/pa_string.h,
23552: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
23553: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
23554: types/pa_vform.h: z
23555:
23556: * src/include/pa_string.h: z
23557:
23558: * src/: classes/_request.h, classes/request.C, main/main.dsp,
23559: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
23560: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23561: :Value
23562:
23563: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
23564: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23565: :VStateless_object
23566:
23567: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
23568: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
23569: :VStateless_object
23570:
23571: * src/: main/main.dsp, targets/cgi/parser3.dsp,
23572: types/pa_valiased.C, types/pa_vform.h: commented VForm
23573:
23574: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
23575: types/pa_valiased.h, types/pa_value.h,
23576: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
23577: types/pa_vstateless_object.h: moved common get_element part from
23578: stateless object&class into VAliased
23579:
23580: * src/: classes/_env.h, classes/_table.h, classes/env.C,
23581: classes/table.C, main/execute.C, main/main.dsp,
23582: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
23583: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
23584: now :Value
23585:
23586: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
23587: main/execute.C, main/main.dsp, main/pa_globals.C,
23588: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
23589:
23590: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
23591: doxx
23592:
23593: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
23594: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23595: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
23596: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
23597: and ^file:save
23598:
23599: 2001-03-19 paf
23600:
23601: * src/types/pa_vfile.C: z
23602:
23603: * src/: classes/file.C, classes/request.C, classes/table.C,
23604: include/pa_string.h, main/main.dsp, main/pa_pool.C,
23605: main/pa_request.C, main/untaint.C, types/pa_value.h,
23606: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
23607:
23608: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
23609: include/pa_string.h, include/pa_table.h, main/main.dsp,
23610: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
23611: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
23612: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
23613: classes/_file.h, classes/file.C, types/pa_vfile.C,
23614: types/pa_vfile.h: file class just compiled
23615:
23616: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
23617: include/pa_table.h, include/pa_types.h, main/execute.C,
23618: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23619: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
23620: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
23621:
23622: * src/include/pa_pool.h: z
23623:
23624: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
23625: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
23626: Hash::Value to Val so to doxygen would finlly stop confusing
23627: those Value-s
23628:
23629: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
23630: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
23631: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23632: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23633: include/pa_types.h, main/compile.C, main/compile.y,
23634: main/compile_tools.C, main/compile_tools.h, main/execute.C,
23635: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
23636: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
23637: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23638: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
23639:
23640: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
23641: derivates somehow unlinked. don't know why yet
23642:
23643: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
23644: include/pa_string.h, include/pa_threads.h, main/compile.C,
23645: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23646: main/execute.C, main/pa_array.C, main/pa_common.C,
23647: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
23648: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23649: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
23650:
23651: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
23652: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
23653: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
23654: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
23655: types/pa_vrequest.h: doc: detected Value derivates prob
23656:
23657: * src/include/pa_globals.h: z
23658:
23659: * src/: classes/_request.h, classes/request.C, include/code.h,
23660: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
23661: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
23662: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
23663: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
23664: main/execute.C, main/pa_pool.C, main/pa_request.C,
23665: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23666: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
23667:
23668: 2001-03-18 paf
23669:
23670: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
23671: cookie: allowed access to hash-assigned
23672:
23673: * src/targets/cgi/parser3.C: z
23674:
23675: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
23676: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
23677: include/pa_types.h, main/main.dsp, main/pa_common.C,
23678: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23679: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23680: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
23681: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
23682: types/pa_vunknown.h: cookie class
23683:
23684: * src/main/pa_request.C: zero length output allowed
23685:
23686: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
23687: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
23688:
23689: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
23690: lang switch
23691:
23692: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
23693: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23694: types/pa_value.h, types/pa_vhash.h:
23695: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
23696:
23697: * src/main/execute.C: z
23698:
23699: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
23700: targets/cgi/parser3.C: taint[uri
23701:
23702: * src/: classes/request.C, classes/response.C, classes/root.C,
23703: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
23704: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
23705: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
23706:
23707: * src/: classes/root.C, classes/string.C, include/pa_string.h,
23708: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23709: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
23710: types/pa_vstateless_class.C: convinient string(pool, char *src,
23711: bool tainted) ctor
23712:
23713: * src/: include/pa_hash.h, include/pa_request.h,
23714: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
23715: main/pa_request.C, main/pa_string.C, main/untaint.C,
23716: targets/cgi/parser3.C: proper @exceptions params tainting
23717:
23718: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
23719: response fields to header
23720:
23721: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
23722: z
23723:
23724: * src/: classes/_response.h, classes/response.C,
23725: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
23726: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
23727: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23728: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
23729: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
23730: $response: 0 request::core exception rethrow
23731:
23732: 2001-03-16 paf
23733:
23734: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
23735: types/pa_vrequest.h: native method' class call with less params
23736: then needed error reporting
23737:
23738: * src/: classes/_request.h, classes/request.C,
23739: include/pa_globals.h, include/pa_request.h, main/execute.C,
23740: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23741: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
23742: types/pa_vrequest.h: $request : query :uri
23743:
23744: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
23745: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
23746: types/pa_wcontext.h: $result
23747:
23748: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
23749:
23750: * src/: classes/double.C, include/code.h, main/compile.y,
23751: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
23752: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
23753:
23754: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
23755: main/compile.y, main/execute.C, types/pa_value.h,
23756: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
23757: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
23758: wcontext conflict
23759:
23760: * src/: main/execute.C, types/pa_value.h,
23761: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
23762: $string.field
23763:
23764: 2001-03-15 paf
23765:
23766: * src/main/pa_request.C: news sample
23767:
23768: * src/: main/compile.y, main/execute.C, main/pa_request.C,
23769: targets/cgi/parser3.C, types/pa_vstring.h: @exception
23770:
23771: * src/main/: compile.y, execute.C: z
23772:
23773: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
23774: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
23775: pre pre works
23776:
23777: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23778: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
23779: fillfields just compiled
23780:
23781: 2001-03-14 paf
23782:
23783: * src/: include/pa_request.h, main/pa_request.C,
23784: targets/cgi/parser3.C: z
23785:
23786: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23787: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
23788: types/pa_vstring.h: limits -1
23789:
23790: * src/: include/pa_globals.h, include/pa_request.h,
23791: include/pa_types.h, main/main.dsp, main/pa_globals.C,
23792: main/pa_request.C, targets/cgi/parser3.C,
23793: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
23794: request_info -1
23795:
23796: * src/: include/pa_globals.h, main/pa_globals.C,
23797: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23798: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
23799: vform_fields_fill
23800:
23801: * src/targets/cgi/parser3.C: # if MSVC
23802:
23803: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
23804: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
23805:
23806: * src/targets/cgi/parser3.C: z
23807:
23808: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
23809: include/pa_string.h, include/pa_types.h, main/compile.y,
23810: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
23811: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
23812: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
23813: types/pa_vunknown.h: global handler, exceptions in parser3
23814:
23815: 2001-03-13 paf
23816:
23817: * src/: classes/form.C, main/compile.y, main/core.C,
23818: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
23819: types/pa_vform.h, types/pa_vstateless_class.C,
23820: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
23821: instead
23822:
23823: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
23824: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
23825: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
23826: started cgi target
23827:
23828: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
23829: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
23830: before error show with parser
23831:
23832: * src/: classes/_form.h, classes/form.C, include/core.h,
23833: include/pa_request.h, main/core.C, main/pa_request.C,
23834: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
23835:
23836: * src/targets/cgi/: parser.dsp, parser3.dsp: z
23837:
23838: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
23839: parser3.C: renamed targets/ parser to cgi
23840:
23841: * src/: classes/double.C, classes/env.C, classes/int.C,
23842: classes/root.C, classes/string.C, classes/table.C,
23843: include/pa_request.h, types/pa_vhash.h: z
23844:
23845: * src/: classes/_env.h, classes/env.C, classes/root.C,
23846: include/core.h, include/pa_pool.h, include/pa_request.h,
23847: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
23848: main/pa_common.C, main/pa_request.C, types/pa_value.h,
23849: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
23850: [historical moment :)]
23851:
23852: * src/: include/code.h, include/pa_string.h, main/compile.y,
23853: main/execute.C, main/pa_string.C: 'value is type' expr operator
23854:
23855: * src/types/pa_venv.h: $ENV 1
23856:
23857: * src/main/execute.C: z
23858:
23859: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
23860: future methods of ENV constructor if
23861:
23862: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
23863: class
23864:
23865: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23866: classes/_root.h, classes/_string.h, classes/_table.h,
23867: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
23868: classes/string.C, classes/table.C, include/pa_request.h,
23869: main/compile.C, main/compile_tools.h, main/core.C,
23870: main/execute.C, main/main.dsp, main/pa_request.C,
23871: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
23872: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
23873: types/pa_vobject.h, types/pa_vstateless_class.C,
23874: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
23875: types/pa_wcontext.h: $ENV: re 0, stateless classes
23876:
23877: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23878: classes/_root.h, classes/_string.h, classes/_table.h,
23879: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
23880: classes/string.C, classes/table.C, include/pa_request.h,
23881: main/compile.C, main/compile_tools.h, main/core.C,
23882: main/execute.C, main/main.dsp, main/pa_request.C,
23883: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
23884: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
23885: types/pa_vobject.h, types/pa_vstateless_class.C,
23886: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
23887: types/pa_wcontext.h: $ENV: re 0, stateless classes
23888:
23889: * src/: include/pa_request.h, main/compile.C, main/execute.C,
23890: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
23891: yesterdays bad decision on execute_static_method
23892:
23893: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
23894:
23895: * src/: classes/double.C, classes/int.C, classes/root.C,
23896: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
23897:
23898: * src/main/pa_request.C: z
23899:
23900: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
23901: include/pa_pool.h: skipped_restructure_exceptions_dead_end
23902:
23903: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
23904: include/pa_pool.h, main/pa_request.C:
23905: restructure_exceptions_dead_end
23906:
23907: * src/: classes/root.C, main/compile.y: ^if required junctions.
23908: allowed ; inside {} to break params
23909:
23910: * src/classes/root.C: ^eval
23911:
23912: * src/: classes/_string.h, classes/double.C, classes/int.C,
23913: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
23914: string ^format
23915:
23916: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
23917: 'bad' but not 'enough'
23918:
23919: * src/: classes/double.C, classes/root.C, classes/table.C,
23920: include/pa_common.h, include/pa_types.h, main/compile.y,
23921: main/pa_common.C, main/pa_request.C, main/untaint.C,
23922: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
23923: types/pa_wwrapper.h: think constructing flag as is is bad
23924:
23925: * src/: classes/double.C, classes/int.C, classes/root.C,
23926: classes/string.C, classes/table.C, main/core.C, main/execute.C,
23927: types/pa_vint.h: ^for
23928:
23929: 2001-03-12 paf
23930:
23931: * src/classes/table.C: table ^empty
23932:
23933: * src/: classes/table.C, include/pa_table.h: table ^menu
23934:
23935: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
23936: ^offset ^line ^count
23937:
23938: * src/classes/root.C: ^round() ^floor() ^ceiling()
23939: ^abs() ^sign()
23940:
23941: * src/classes/: root.C, table.C: ^use
23942:
23943: * src/: classes/root.C, classes/table.C, include/pa_request.h,
23944: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
23945: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
23946: ^while. switched off wcontext.constructing after write(value) or
23947: auto-vhash-constructing
23948:
23949: * src/: classes/root.C, classes/table.C, include/pa_request.h,
23950: main/pa_request.C: fail_if_junction_ helper func
23951:
23952: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23953: include/pa_request.h, main/execute.C, main/main.dsp,
23954: main/pa_common.C, main/pa_request.C: ^process error point by
23955: actual method_name, not source. ^load
23956:
23957: * src/types/pa_vtable.h: table: no, better with string in cells...
23958:
23959: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
23960: classes/_table.h, classes/table.C, main/untaint.C: z
23961:
23962: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
23963: include/pa_table.h, main/core.C, main/execute.C,
23964: main/pa_common.C, main/pa_request.C, main/pa_table.C,
23965: types/pa_value.h: table:set 0
23966:
23967: * src/: classes/root.C, include/core.h, include/pa_array.h,
23968: include/pa_request.h, include/pa_table.h, main/core.C,
23969: main/main.dsp, main/pa_request.C, main/pa_table.C,
23970: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
23971: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
23972: types/pa_vstring.h: freeze, ^table:create[] -1
23973:
23974: * src/: classes/root.C, types/pa_value.h: z
23975:
23976: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
23977: get_method in couple places optimizing them
23978:
23979: * src/classes/root.C: z
23980:
23981: * src/: classes/root.C, types/pa_vclass.h: process temp main
23982: zeroing
23983:
23984: * src/: classes/double.C, classes/int.C, classes/root.C,
23985: classes/string.C, include/pa_common.h, include/pa_request.h,
23986: include/pa_string.h, include/pa_types.h, main/compile.C,
23987: main/compile.y, main/compile_tools.h, main/execute.C,
23988: main/pa_common.C, main/pa_request.C, types/pa_value.h,
23989: types/pa_vmframe.h: ^process. actual names to store param and
23990: check_actual_numbered_params for better place diagnostics
23991:
23992: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
23993: method-junctions bug fixed
23994:
23995: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
23996: pa_vstateless_object.h, pa_vstring.h: stateless_object
23997:
23998: 2001-03-11 paf
23999:
24000: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
24001: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
24002: VDouble VInt base now VObject_base - without fields
24003:
24004: * src/: classes/root.C, include/core.h, main/core.C: z
24005:
24006: * src/: classes/double.C, classes/int.C, classes/root.C,
24007: classes/string.C, include/core.h, include/pa_hash.h,
24008: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
24009: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
24010:
24011: * src/: classes/double.C, classes/int.C, classes/root.C,
24012: include/pa_request.h, main/execute.C: intercept_string
24013:
24014: * src/: classes/double.C, classes/int.C, classes/root.C,
24015: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
24016:
24017: * src/: classes/double.C, classes/int.C, include/pa_request.h:
24018: ^inc-s(expr)
24019:
24020: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24021: classes/_root.h, classes/_string.h, classes/double.C,
24022: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24023: include/code.h, include/core.h, include/pa_array.h,
24024: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24025: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24026: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24027: include/pa_types.h, main/compile.C, main/compile.y,
24028: main/compile_tools.C, main/compile_tools.h, main/core.C,
24029: main/execute.C, main/pa_array.C, main/pa_common.C,
24030: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
24031: main/pa_request.C, main/pa_string.C, main/pa_table.C,
24032: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24033: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24034: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24035: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24036: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24037: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
24038:
24039: * src/: main/pa_request.C, types/pa_vhash.h: z
24040:
24041: * src/: include/core.h, include/pa_request.h, main/core.C,
24042: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
24043:
24044: * src/: include/pa_valiased.h, include/pa_value.h,
24045: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24046: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24047: include/pa_vjunction.h, include/pa_vmframe.h,
24048: include/pa_vobject.h, include/pa_vstring.h,
24049: include/pa_vunknown.h, include/pa_wcontext.h,
24050: include/pa_wwrapper.h, main/compile.y, main/core.C,
24051: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
24052: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
24053: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
24054: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
24055: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
24056: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
24057: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
24058: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
24059: include/
24060:
24061: 2001-03-10 paf
24062:
24063: * src/: include/core.h, include/pa_request.h, main/core.C,
24064: main/pa_request.C: run+auto=run
24065:
24066: * src/: classes/root.C, include/pa_request.h: minor if junction bug
24067:
24068: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
24069: classes/_root.h, classes/_string.h, classes/double.C,
24070: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
24071: include/code.h, include/core.h, include/pa_array.h,
24072: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
24073: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
24074: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
24075: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
24076: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
24077: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
24078: include/pa_vjunction.h, include/pa_vmframe.h,
24079: include/pa_vobject.h, include/pa_vstring.h,
24080: include/pa_vunknown.h, include/pa_wcontext.h,
24081: include/pa_wwrapper.h, main/compile.C, main/compile.y,
24082: main/compile_tools.C, main/compile_tools.h, main/core.C,
24083: main/execute.C, main/pa_array.C, main/pa_cframe.C,
24084: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
24085: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
24086: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
24087: main/pa_wcontext.C: sources header
24088:
24089: * src/main/pa_request.C: auto..
24090:
24091: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24092: main/pa_request.C: auto tree0
24093:
24094: * src/: include/core.h, include/pa_request.h, main/compile.y,
24095: main/core.C, main/pa_request.C: names to core.C
24096:
24097: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
24098: include/pa_request.h, main/core.C, main/execute.C,
24099: main/pa_common.C, main/pa_request.C: root auto.p loaded
24100:
24101: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
24102: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
24103: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24104: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
24105:
24106: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
24107: @auto[] realised. auto.p scan togo
24108:
24109: * src/: include/pa_request.h, main/execute.C: autocalc
24110: code-junctions result now have names
24111:
24112: * src/: classes/double.C, classes/int.C, classes/root.C,
24113: classes/string.C, include/pa_request.h, include/pa_string.h,
24114: include/pa_wcontext.h, main/compile.y, main/execute.C,
24115: main/pa_string.C, main/pa_wcontext.C: tainting 0
24116:
24117: * src/classes/env.C: env:file/line
24118:
24119: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
24120: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
24121: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
24122: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
24123: main/compile_tools.C, main/compile_tools.h, main/core.C,
24124: main/execute.C, main/main.dsp, main/pa_cframe.C,
24125: main/pa_request.C, main/pa_wcontext.C: const fight finished
24126:
24127: * src/include/pa_vclass.h: const fight to go
24128:
24129: * src/: classes/_env.h, classes/env.C, classes/root.C,
24130: include/pa_request.h, include/pa_vclass.h, main/core.C,
24131: main/main.dsp: env0
24132:
24133: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
24134: classes/_string.h, classes/double.C, classes/int.C,
24135: classes/root.C, classes/string.C, include/pa_request.h,
24136: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
24137: include/pa_wcontext.h, main/core.C, main/main.dsp,
24138: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
24139: main/pa_wcontext.C: ^lang prepare0
24140:
24141: 2001-03-09 paf
24142:
24143: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
24144: construct proper naming
24145:
24146: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
24147: classes/double.C, classes/int.C, classes/root.C,
24148: classes/string.C, include/code.h, include/pa_value.h,
24149: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
24150: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24151: main/compile.y, main/compile_tools.C, main/core.C,
24152: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
24153: and ^double[]. fixed expr type
24154:
24155: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24156: ^string.length[]
24157:
24158: 2001-03-08 paf
24159:
24160: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
24161:
24162: * src/: include/pa_vclass.h, include/pa_vstring.h,
24163: include/pa_wcontext.h, main/compile.y, main/core.C,
24164: main/execute.C, main/main.dsp: dead end: vstring can't be
24165: derivated from vobject
24166:
24167: * src/: include/pa_vclass.h, include/pa_vhash.h,
24168: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
24169:
24170: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
24171: remained clone conseqs
24172:
24173: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
24174:
24175: * src/main/pa_vclass.C: wow! vclass were out of vcs
24176:
24177: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
24178: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
24179: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
24180: include/pa_vobject.h, include/pa_vstring.h,
24181: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24182: main/execute.C: withoud cloning. didn't need it actually, params
24183: got passed from out unnamed ewpool
24184:
24185: * src/: include/pa_vdouble.h, include/pa_vhash.h,
24186: include/pa_vjunction.h, include/pa_vobject.h,
24187: include/pa_vunknown.h, main/compile.y: cloning dead end
24188:
24189: * src/: include/pa_bool.h, include/pa_double.h,
24190: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
24191: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
24192: include/pa_vjunction.h, include/pa_vmframe.h,
24193: include/pa_vobject.h, include/pa_vstring.h,
24194: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
24195: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
24196: to give params proper names
24197:
24198: * src/main/pa_wcontext.C: z
24199:
24200: * src/: include/pa_vmframe.h, main/execute.C: added names to
24201: unknown values in get_element and unfilled params. removed wrong
24202: name change in get_element
24203:
24204: * src/main/execute.C: z
24205:
24206: * src/main/execute.C: fixed problems calling operators in
24207: constructors
24208:
24209: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
24210: detected problems calling operators in constructors
24211:
24212: * src/: classes/root.C, include/pa_request.h, main/execute.C:
24213: autocalc def to string
24214:
24215: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
24216: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
24217:
24218: * src/classes/root.C: added root.c
24219:
24220: * src/: include/pa_request.h, include/pa_value.h,
24221: include/pa_vcframe.h, include/pa_vmframe.h,
24222: include/pa_wcontext.h, main/compile.C, main/compile.y,
24223: main/core.C, main/execute.C, main/pa_cframe.C,
24224: main/pa_wcontext.C: 'if' just compiled
24225:
24226: * src/: include/pa_vbool.h, include/pa_vdouble.h,
24227: include/pa_vjunction.h, include/pa_vmframe.h,
24228: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
24229: main/pa_wcontext.C: z
24230:
24231: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
24232: main/core.C, main/execute.C, main/main.dsp: z. detected probs
24233: with parameter names in operator methods
24234:
24235: * src/main/compile.y: minor renamings in .y
24236:
24237: * src/: include/pa_request.h, main/compile.C, main/compile.y,
24238: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
24239: @BASE. changed 'RUN' assignment mech
24240:
24241: * src/main/execute.C: z
24242:
24243: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24244: main/compile_tools.h, main/execute.C: made class: dynamic, not
24245: static. so to enable runtime ^use
24246:
24247: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
24248:
24249: * src/: include/code.h, main/compile.y, main/compile_tools.C,
24250: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
24251:
24252: * src/main/execute.C: root root in code-junction
24253:
24254: 2001-03-07 paf
24255:
24256: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
24257: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
24258:
24259: * src/: include/pa_stack.h, include/pa_value.h,
24260: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
24261: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
24262: fixed rwcontext of {} params up
24263:
24264: * src/main/: compile.y, compile_tools.h: ^func(params)
24265:
24266: * src/main/compile.y: .y priorities syntax shaped up a bit
24267:
24268: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
24269: include/pa_vunknown.h, main/compile.y, main/execute.C,
24270: main/pa_hash.C: expr def in -f
24271:
24272: * src/main/: compile.y, execute.C: expr calls
24273:
24274: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
24275: fixed
24276:
24277: * src/main/compile.y: expr quoted code
24278:
24279: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
24280: support0
24281:
24282: * src/main/compile.y: expr string comparisons 0
24283:
24284: * src/: include/pa_string.h, main/compile.y, main/execute.C,
24285: main/pa_string.C: just compiled lt&co
24286:
24287: * src/main/execute.C: ^var.menu{$field} problem detected. that
24288: $field not a $var.field
24289:
24290: 2001-03-06 paf
24291:
24292: * src/main/compile.y: .y expr visible-shorter
24293:
24294: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
24295: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
24296: logical
24297:
24298: * src/: include/pa_vstring.h, main/compile.y: problems with
24299: skipping whitespace in yylex
24300:
24301: * src/include/pa_vbool.h: forgot this
24302:
24303: * src/: include/code.h, main/compile.y, main/execute.C: without
24304: string ops in expressions 0
24305:
24306: * src/: include/pa_value.h, include/pa_vdouble.h,
24307: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
24308: main/execute.C, main/main.dsp: !~
24309:
24310: * src/: include/pa_vcframe.h, include/pa_vclass.h,
24311: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
24312: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24313: include/pa_vunknown.h, include/pa_wcontext.h,
24314: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24315: main/compile_tools.h, main/execute.C: +-*/
24316:
24317: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
24318: main/compile_tools.h: grammar-1.1 $a(z) $a=0
24319:
24320: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
24321: main/execute.C: expr grammar-1 2*2=4.000000 :)
24322:
24323: * src/main/compile.y: expr grammar-1
24324:
24325: * src/main/compile.y: expr lexx1
24326:
24327: * src/main/: compile.y, execute.C, main.dsp: z
24328:
24329: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
24330: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
24331: main/execute.C: expr lex0 exec-1
24332:
24333: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
24334:
24335: 2001-02-26 paf
24336:
24337: * src/main/compile.y: max_string in yyerror bug fix
24338:
24339: 2001-02-25 paf
24340:
24341: * src/: include/pa_value.h, include/pa_vmframe.h,
24342: include/pa_wcontext.h, main/execute.C: VAliased3
24343:
24344: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
24345:
24346: * src/main/execute.C: VAliased1
24347:
24348: * src/: include/pa_request.h, include/pa_value.h,
24349: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
24350: VAliased0
24351:
24352: * src/: include/pa_pool.h, include/pa_request.h,
24353: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
24354: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
24355: VAliased just compiled
24356:
24357: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
24358: include/pa_vobject.h, main/execute.C: alias dead end
24359:
24360: * src/: include/pa_value.h, include/pa_vclass.h,
24361: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24362: main/main.dsp: no not get fields into interm VFielded class.
24363: fields & staticfields 1
24364:
24365: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
24366: include/pa_vobject.h, include/pa_wcontext.h,
24367: include/pa_wwrapper.h, main/core.C, main/execute.C,
24368: main/main.dsp: would now get fields into interm VFielded class
24369:
24370: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24371: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
24372: include/pa_wcontext.h, main/compile.y, main/core.C,
24373: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
24374: main/pa_wcontext.C: virtuals2
24375:
24376: * src/main/compile.y: : 1
24377:
24378: * src/main/compile.y: rethought to $class:static.field.subfield
24379:
24380: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24381: $class:element
24382:
24383: * src/: include/pa_value.h, include/pa_vmframe.h,
24384: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24385: main/pa_wcontext.C: before execute class calls rewrite
24386:
24387: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24388: name RUN, also alias
24389:
24390: * src/main/compile.y: escaping bug
24391:
24392: * src/: include/pa_request.h, include/pa_value.h,
24393: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24394: main/core.C, main/execute.C, main/pa_common.C: vobject1
24395:
24396: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24397: include/pa_vmframe.h, include/pa_vobject.h,
24398: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24399: main/compile_tools.h, main/execute.C: ^class:method() just
24400: compiled
24401:
24402: 2001-02-24 paf
24403:
24404: * src/main/main.dsp: no bison -d
24405:
24406: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24407: class' err msg wrong
24408:
24409: * src/main/compile.y: z
24410:
24411: * src/main/: compile.y, core.C: yylex need some @special lines adj
24412:
24413: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24414: main/compile.y, main/compile_tools.h, main/core.C: modules0
24415:
24416: * src/: include/pa_vclass.h, main/core.C: z
24417:
24418: * src/: include/pa_value.h, include/pa_vclass.h,
24419: include/pa_vobject.h, main/main.dsp: vobject00
24420:
24421: * src/main/pa_array.C: minor bug in expanding very small arrays.
24422: 60% from 1 were 0
24423:
24424: * src/: include/pa_value.h, include/pa_wcontext.h,
24425: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24426: as bad as you've named it: wcontext.value() was not a perfect
24427: idea
24428:
24429: * src/main/execute.C: codeframe1
24430:
24431: * src/: include/pa_value.h, include/pa_vcframe.h,
24432: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24433: include/pa_vjunction.h, include/pa_vmframe.h,
24434: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24435: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
24436: just compiled
24437:
24438: * src/: include/pa_vframe.h, main/compile.y: found junction
24439: ideology @: ^x{$a()) must construct current wcontext element, so
24440: smart wcontext handling needed
24441:
24442: * src/main/compile.y: fixed grammar bugs in constructor/params
24443: klinch
24444:
24445: * src/main/: compile.y, execute.C: fixed empty constructor
24446: optimized empty case. failed on calls - produced empty string
24447: param
24448:
24449: * src/main/compile.y: fixed last \n macrotemplate strip bug
24450:
24451: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
24452: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
24453: main/compile_tools.C, main/compile_tools.h, main/core.C,
24454: main/execute.C: code junctions0. something wrong with last \n
24455: macrotemplate strip
24456:
24457: * src/: include/pa_value.h, main/compile.C, main/core.C,
24458: main/pa_value.C: minor error reporting format beautifyings
24459:
24460: * src/: include/pa_value.h, include/pa_vclass.h,
24461: include/pa_vframe.h, main/core.C, main/execute.C,
24462: main/pa_value.C: get_method RIP. junctions everywhere. call with
24463: junctions0
24464:
24465: 2001-02-23 paf
24466:
24467: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
24468: pa_wwrapper.h: lara came, can't work, sorry :(
24469:
24470: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
24471: junction
24472:
24473: * src/: include/pa_vframe.h, include/pa_vunknown.h,
24474: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
24475: main/execute.C, main/main.dsp, main/pa_value.C: call0
24476:
24477: * src/: include/pa_hash.h, include/pa_value.h,
24478: include/pa_wcontext.h, main/core.C, main/execute.C,
24479: main/main.dsp, main/pa_hash.C: started call. store param, vframe
24480: done
24481:
24482: * src/include/pa_wcontext.h: z
24483:
24484: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
24485: wrong grammar in complex constructor case
24486:
24487: * src/main/: compile.y, execute.C: empty constructor bug fixed
24488:
24489: * src/main/execute.C: with result rwpool
24490:
24491: * src/: include/pa_value.h, main/core.C, main/execute.C,
24492: main/main.dsp: value named
24493:
24494: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
24495: strign 2 value in 2 places in execute
24496:
24497: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
24498: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
24499: wcontext.put_element when wcontext fvalue==0
24500:
24501: 2001-02-22 paf
24502:
24503: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24504: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
24505: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
24506:
24507: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
24508: erroreos checkout
24509:
24510: * src/: include/pa_request.h, main/compile.y: $self.put(val)
24511:
24512: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
24513: main/compile_tools.h, main/pa_array.C: $self.get
24514:
24515: * src/main/: compile.C, compile.y, compile_tools.C: z
24516:
24517: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
24518: bit. finished now.
24519:
24520: * src/main/compile.y: $: finished
24521:
24522: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
24523:
24524: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
24525: main/execute.C: OP_STRING better then some xxx _VALUE
24526:
24527: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
24528: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24529: string to vstring it .y all
24530:
24531: * src/: include/pa_request.h, include/pa_stack.h,
24532: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
24533: all
24534:
24535: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
24536: precise parse error line:col
24537:
24538: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
24539: main/pa_hash.C, main/pa_pool.C: TRY...
24540:
24541: * src/: include/pa_exception.h, include/pa_pool.h,
24542: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
24543: main/compile.C, main/compile.y, main/compile_tools.C,
24544: main/core.C, main/pa_array.C, main/pa_exception.C,
24545: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
24546: main/pa_table.C: removed exception from request
24547:
24548: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
24549: some forgotten
24550:
24551: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24552: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
24553: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
24554: get/put simple vars to VClass works0
24555:
24556: * src/: include/pa_array.h, include/pa_wcontext.h,
24557: main/pa_string.C: in process, but found that exceptions are too
24558: global
24559:
24560: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
24561: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
24562: main/execute.C, main/pa_string.C: write_value write_string 0 it
24563: seems wcontext must write strings regardles of fvalue!=0
24564:
24565: 2001-02-21 paf
24566:
24567: * src/main/execute.C: tired :)
24568:
24569: * src/main/: compile.C, compile.y, execute.C: store0
24570:
24571: * src/: include/compile.h, include/execute.h, include/pa_array.h,
24572: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
24573: include/pa_wcontext.h, main/compile.C, main/compile.y,
24574: main/execute.C, main/main.dsp, main/pa_array.C,
24575: main/pa_request.C: get put -1 [just compiled]
24576:
24577: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
24578: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
24579: main/main.dsp, main/pa_request.C: request core methods0
24580:
24581: * src/: include/compile.h, include/pa_array.h, main/compile.C,
24582: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
24583: execute
24584:
24585: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
24586: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
24587: methods and one_big_piece. now compile returns array<method*>
24588:
24589: * src/main/compile.y: more straightforward yylex[end]
24590:
24591: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
24592: string.operator==(char*)
24593:
24594: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
24595: main/execute.C, main/pa_array.C: after array.const get wonders
24596:
24597: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
24598: pa_string.h, pa_value.h: struck with const array.gets
24599:
24600: * src/main/: execute.C: z
24601:
24602: * src/main/: compile.y, execute.C: z
24603:
24604: * src/main/: compile.C, compile.y, compile_tools.h: error
24605: processing in eval & yyerror so it wouldn't cause memleaks.
24606:
24607: * src/main/: compile.C, compile.y: failed to add absolute precies
24608: parse error positions. leaving RIGHTMOST position as
24609: @file[line:col]
24610:
24611: * src/: include/compile.h, main/compile.C, main/compile.y,
24612: main/compile_tools.h: line numbers needed. would add them to .y
24613: now internally. externally it's not as precise as needed
24614:
24615: * src/: include/code.h, include/pa_types.h, main/compile.C,
24616: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24617: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
24618: compiler works ok
24619:
24620: 2001-02-20 paf
24621:
24622: * src/main/: compile.C, compile.y, compile_tools.C,
24623: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
24624: not perfect
24625:
24626: * src/: include/code.h, include/compile.h, include/execute.h,
24627: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
24628: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24629: main/compile.C, main/compile.y, main/compile_tools.C,
24630: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
24631: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24632: main/pa_string.C, main/pa_table.C: bison[yacc] first time
24633: compiled. execute=dump for now
24634:
24635: * src/main/core.C: core rewrite using yacc investigations now will
24636: be compile[yacc]/execute[opcodes]
24637:
24638: 2001-02-15 paf
24639:
24640: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
24641: rewrite as turing machine? for it seems it would be it's too many
24642: ifs with this syntax now
24643:
24644: 2001-02-14 paf
24645:
24646: * src/main/core.C: get_params 1
24647:
24648: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
24649: :( ]
24650:
24651: * src/main/core.C: varios breaks
24652:
24653: * src/main/core.C: get names 3
24654:
24655: * src/main/core.C: get names 2
24656:
24657: * src/main/core.C: get names 1
24658:
24659: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
24660: names 0
24661:
24662: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
24663: text repassing2 operator static vars
24664:
24665: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
24666: main/pa_string.C: process text repassing
24667:
24668: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24669: module:calls changes
24670:
24671: 2001-02-13 paf
24672:
24673: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24674: ^class:calls[] started
24675:
24676: * src/: include/pa_value.h, main/core.C: z
24677:
24678: * src/main/core.C: operators : and self. prefixes
24679:
24680: * src/main/core.C: z
24681:
24682: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24683: tested
24684:
24685: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24686: optimized
24687:
24688: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
24689: would change privates to better support optimization
24690:
24691: * src/: include/pa_string.h, main/pa_string.C:
24692: String_iterator::skip_to todo:optimize
24693:
24694: 2001-02-12 paf
24695:
24696: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
24697: String_iterator
24698:
24699: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
24700: comments
24701:
24702: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
24703: self/methodref joined
24704:
24705: 2001-02-11 paf
24706:
24707: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
24708: main/main.dsp: core started. core.C, context&value .h
24709:
24710: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24711: include/pa_string.h, main/main.dsp, main/pa_array.C,
24712: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
24713:
24714: 2001-01-30 paf
24715:
24716: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
24717: comments
24718:
24719: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
24720: main/pa_pool.C: moved pa_pool.C to be target specific
24721:
24722: * src/: include/pa_exception.h, include/pa_pool.h,
24723: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
24724: to & changes
24725:
24726: * src/: include/pa_exception.h, include/pa_pool.h,
24727: include/pa_request.h, include/pa_table.h, main/pa_array.C,
24728: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
24729: re-associated. that's much better even removed 'die' necessety
24730:
24731: * src/: include/pa_error.h, include/pa_exception.h,
24732: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24733: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
24734: targets/Makefile.am: lowered targets/parser into subdir, added
24735: parser_Pool(Pool) failed to add. would think..
24736:
24737: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
24738: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
24739: main/pa_string.C, main/pa_table.C: Table more like C++ style
24740: hence lots of 'const'
24741:
24742: * src/: include/pa_error.h, include/pa_request.h,
24743: include/pa_string.h, include/pa_table.h, main/pa_error.C,
24744: main/pa_table.C: Error fixed
24745:
24746: 2001-01-29 paf
24747:
24748: * src/: include/pa_array.h, include/pa_common.h,
24749: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
24750: include/pa_request.h, include/pa_string.h, include/pa_table.h,
24751: main/Makefile.am, main/pa_array.C, main/pa_common.C,
24752: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
24753:
24754: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24755: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24756: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
24757: main/pa_string.C, main/pa_table.C: Request Error Table
24758:
24759: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
24760: templates"
24761:
24762: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
24763: main/main.dsp, main/pa_array.C: templates failed no template
24764: specializations [VC6], no library auto instantation [VC6, GNU c++
24765: 2.95.2-6 from latest cygwin]
24766:
24767: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24768: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24769: main/main.dsp, main/pa_array.C, main/pa_string.C,
24770: main/pa_table.C: Table started would test template Array now
24771:
24772: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
24773: String originating
24774:
24775: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
24776: main/pa_hash.C: made local Hash-es not thread safe=quicker by
24777: SYNCHRONIZED(thread_safe)
24778:
24779: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
24780: parts to top
24781:
24782: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
24783: main/pa_threads.C: decided on one global_mutex, like PHP as I can
24784: see: needed only in global Hash now, made Hash:: put/get
24785: SYNCHRONIZED
24786:
24787: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
24788: main/pa_threads.C: added pa_threads
24789:
24790: Mutex
24791:
24792: * src/include/pa_hash.h: some comments
24793:
24794: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
24795: Array& operator += (Array& src)
24796:
24797: * src/main/pa_array.C: expand not convinient, would rewrite
24798:
24799: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
24800: (Array& src)
24801:
24802: rethought, would change now
24803:
24804: 2001-01-27 paf
24805:
24806: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
24807: caching
24808:
24809: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24810: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
24811: cache rethought to chunk caching
24812:
24813: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24814: include/pa_string.h, main/main.dsp, main/pa_array.C,
24815: main/pa_hash.C, main/pa_string.C: Array 0
24816:
24817: * src/main/pa_string.C: String::operator ==
24818:
24819: * src/main/pa_hash.C: String(&String)
24820:
24821: * src/main/pa_hash.C: added pa_hash.C [forgotten]
24822:
24823: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
24824: main/main.dsp, main/pa_string.C: uint, and added pa_types &
24825: pa_hash[forgotten]
24826:
24827: 2001-01-26 paf
24828:
24829: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
24830: removed templates [vc++ suxx]
24831:
24832: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
24833: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
24834:
24835: * src/include/: pa_pool.h, pa_string.h: pa_pool split
24836:
1.119 moko 24837: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 24838:
1.119 moko 24839: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 24840: check
24841:
24842: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
24843: dynamic row_count
24844:
24845: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
24846: main/main.dsp, main/pa_pool.C, main/pa_string.C,
24847: targets/Makefile.am: Initial revision
24848:
24849: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
24850: main/main.dsp, main/pa_pool.C, main/pa_string.C,
24851: targets/Makefile.am: creating parser3 module
24852:
E-mail: