Annotation of parser3/ChangeLog, revision 1.153
1.153 ! moko 1: 2020-12-27 moko
! 2:
! 3: * tests/: 406.html, results/406.processed: test results updated
! 4:
! 5: * src/: classes/table.C, main/pa_request.C, types/pa_vmail.C,
! 6: types/pa_vmemcached.C: fine tuning in ^table.rename[], minor
! 7: spelling
! 8:
! 9: 2020-12-26 moko
! 10:
! 11: * tests/: 406.html, results/406.processed: tests for
! 12: ^table.rename[] added (related to feature #1148)
! 13:
! 14: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
! 15: ^table.rename[column name from;column name to], ^table.rename[
! 16: $.[column name from][column name to] ... ] added (implements
! 17: feature #1148)
! 18:
! 19: 2020-12-25 moko
! 20:
! 21: * src/: include/pa_request_info.h, targets/cgi/parser3.C:
! 22: request_info now on stack to avoid yet another THREAD_LOCAL
! 23: memory deallocation issue (now with cookies), explained in #1203
! 24:
! 25: * src/types/pa_vcookie.C: fields should be inited
! 26:
! 27: 2020-12-24 moko
! 28:
! 29: * src/include/pa_stylesheet_connection.h: looks like
! 30: xsltFreeStylesheet leads to memory double-free. If so, it's for
! 31: sure libxml bug, but we have GC anyway, so we just remove this
! 32: call and see...
! 33:
! 34: * thread #1, name = 'parser.parser3.cgi', stop reason = signal
! 35: SIGABRT * frame #0: 0x0000000801ab50fa libc.so.7`__sys_thr_kill
! 36: + 10 frame #2: 0x0000000801ab5039 libc.so.7`abort at
! 37: abort.c:65:8 frame #3: 0x00000000004da663
! 38: parser.parser3.cgi`GC_freehblk(hbp=<unavailable>) at
! 39: allchblk.c:878:9 frame #4: 0x00000000004cb8c4
! 40: parser.parser3.cgi`GC_free(p=0x0000000808b34000) at
! 41: malloc.c:617:9 frame #5: 0x0000000000577f0c
! 42: parser.parser3.cgi`xmlHashFree(table=0x0000000806991a80,
! 43: f=<unavailable>) at hash.c:356:2 frame #6: 0x000000000051a7c2
! 44: parser.parser3.cgi`xsltFreeTemplateHashes + 50 frame #7:
! 45: 0x000000000050cfac parser.parser3.cgi`xsltFreeStylesheet + 124
! 46: frame #8: 0x000000000050d35c
! 47: parser.parser3.cgi`xsltFreeStylesheetList + 44 frame #9:
! 48: 0x000000000050d1fa parser.parser3.cgi`xsltFreeStylesheet + 714
! 49: frame #10: 0x00000000004436e5
! 50: parser.parser3.cgi`Stylesheet_manager::maybe_expire_cache()
! 51: [inlined]
! 52: Stylesheet_connection::disconnect(this=0x0000000804676c80) at
! 53: pa_stylesheet_connection.h:62:3
! 54:
! 55: 2020-12-23 moko
! 56:
! 57: * src/classes/image.C: ^image::measure[; $.video() ] option added
! 58:
! 59: * tests/: 395.html, 395_dir/4.mp4, results/395.processed: test
! 60: ^image::measure[; $.video(true) ] added
! 61:
! 62: * src/main/pa_exec.C: not cleared automatically in multithreaded
! 63: httpd mode for unknown reasons
! 64:
! 65: 2020-12-22 moko
! 66:
! 67: * src/targets/cgi/parser3.C: added by PAF in rev 201 to "write to
! 68: error_log uri of currently processed document", but never used
! 69: and conflicts with how libgc stops threads on FreeBSD (#define
! 70: SIG_SUSPEND SIGUSR1), thus removed.
! 71:
! 72: 2020-12-21 moko
! 73:
! 74: * src/main/pa_request.C: +comment
! 75:
1.151 moko 76: 2020-12-20 moko
77:
1.152 moko 78: * src/: include/pa_common.h, include/pa_memory.h, main/pa_common.C:
79: it is more safe to have versions of pa_strdup with one and two
80: arguments, as helper_length=0 not always mean that strlen()
81: should be called, but means zero.
82:
83: * src/targets/isapi/parser3isapi.C: minor
84:
85: * src/main/pa_http.C: +valid_http_method
86:
1.151 moko 87: * src/: include/pa_http.h, main/pa_http.C,
88: targets/cgi/pa_sapi_info.h: SERVER_PORT now available
89:
90: 2020-12-17 moko
91:
92: * tests/: 405.html, results/405.processed: test for split by regex
93: added (related to feature #1160)
94:
95: * src/classes/string.C: split by regex implemented (feature #1160)
96:
97: * src/classes/string.C: minor
98:
99: * tests/: 404.html, results/404.processed: test for whitespace
100: string is now OK for table argument (related to feature #1169)
101:
102: * src/: classes/image.C, classes/string.C, classes/table.C,
103: types/pa_vmethod_frame.C: whitespace string is now OK for table
104: argument (as with hash) (implements feature #1169)
105:
106: * src/classes/op.C: Exception.add_comment used to avoid MAX_LENGTH
107: limit for comment (fixes bug #1102)
108:
109: * src/targets/cgi/parser3.C: +HAVE_TLS check
110:
111: * src/main/pa_http.C: no HAVE_TLS -> no multithreads mode
112:
113: * src/include/pa_config_includes.h: HAVE_TLS used
114:
115: * configure.ac: +TLS check
116:
117: * src/main/pa_http.C: content logging added
118:
119: * src/targets/cgi/: pa_sapi_info.h, parser3.C:
120: clear_response_headers added
121:
122: 2020-12-16 moko
123:
124: * buildall: as we now use threads, libatomic_ops still required for
125: some OS.
126:
127: * src/main/pa_request.C: whitespace
128:
129: * src/: include/pa_request.h, main/pa_request.C:
130: Request::Exception_trace::table extracted and used
131:
132: * src/main/pa_request.C: moving output_result call outside of try
133: as network exceptions should not be handled by parser code
134:
135: * src/: include/pa_http.h, main/pa_http.C: HTTPD_DEBUG added for
136: logging network exchange
137:
138: * src/targets/cgi/: pa_sapi_info.h, parser3.C: do not send error
139: via network if it was network write error.
140:
141: * src/targets/cgi/parser3.C: log -> pa_log
142:
143: * src/targets/cgi/parser3.C: pa_get_thread_id() used for logging
144:
145: * src/main/pa_threads.C: getpid() if no gettid() found
146:
147: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
148: we need to ignore "void" connections from browsers (browsers open
149: connections in advance and they will be empty if user does not
150: request more pages)
151:
152: 2020-12-15 moko
153:
154: * src/targets/cgi/parser3.C: avoid previous uri in logs
155:
156: * src/targets/cgi/: pa_sapi_info.h, parser3.C: global ::request and
157: RequestController not needed in httpd mode
158:
159: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
160: classes/classes.h, classes/curl.C, classes/date.C,
161: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
162: classes/hashfile.C, classes/image.C, classes/inet.C,
163: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
164: classes/memcached.C, classes/memory.C, classes/op.C,
165: classes/reflection.C, classes/regex.C, classes/response.C,
166: classes/string.C, classes/table.C, classes/void.C,
167: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
168: include/pa_array.h, include/pa_base64.h,
169: include/pa_cache_managers.h, include/pa_charset.h,
170: include/pa_charsets.h, include/pa_common.h,
171: include/pa_config_fixed.h, include/pa_config_includes.h,
172: include/pa_dictionary.h, include/pa_dir.h,
173: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
174: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
175: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
176: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
177: include/pa_request_charsets.h, include/pa_request_info.h,
178: include/pa_sapi.h, include/pa_socks.h,
179: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
180: include/pa_stack.h, include/pa_string.h,
181: include/pa_stylesheet_connection.h,
182: include/pa_stylesheet_manager.h, include/pa_symbols.h,
183: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
184: include/pa_uue.h, include/pa_xml_exception.h,
185: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
186: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
187: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
188: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
189: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
190: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
191: main/compile.tab.C, main/compile.y, main/compile_tools.C,
192: main/compile_tools.h, main/execute.C, main/pa_base64.C,
193: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
194: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
195: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
196: main/pa_http.C, main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
197: main/pa_random.C, main/pa_request.C, main/pa_socks.C,
198: main/pa_sql_driver_manager.C, main/pa_string.C,
199: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
200: main/pa_symbols.C, main/pa_table.C, main/pa_threads.C,
201: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
202: main/untaint.C, sql/pa_sql_driver.h,
203: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
204: targets/apache/pa_httpd.h, targets/cgi/parser3.C,
205: targets/isapi/parser3isapi.C, types/pa_junction.h,
206: types/pa_method.h, types/pa_property.h, types/pa_value.C,
207: types/pa_value.h, types/pa_vbool.h, types/pa_vcaller_wrapper.h,
208: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
209: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
210: types/pa_vdate.C, types/pa_vdate.h, types/pa_vdouble.h,
211: types/pa_venv.C, types/pa_venv.h, types/pa_vfile.C,
212: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
213: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.C,
214: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
215: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
216: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
217: types/pa_vmath.h, types/pa_vmemcached.C, types/pa_vmemcached.h,
218: types/pa_vmemory.h, types/pa_vmethod_frame.C,
219: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
220: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
221: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
222: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
223: types/pa_vstateless_object.h, types/pa_vstatus.C,
224: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
225: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
226: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
227: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
228: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
229:
230: * src/main/pa_request.C: old compilers support
231:
232: * tests/: 362.html, results/362.processed: test updated after
233: changes after upgrade to libxml2-2.9.9 were made (related to bug
234: #1108)
235:
236: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltStylesheet_auto_ptr
237: removed, as xsltFreeStylesheet has side effects on original doc.
238: compiled stylesheet no longer cached as with libxml2-2.9.9 it was
239: not updated after xdoc modification (part 3 of test 362).
240: (related to bug #1108)
241:
242: * src/targets/isapi/parser3isapi.C: +pa_strcat
243:
244: * src/: classes/memory.C, include/pa_memory.h,
245: targets/apache/mod_parser3_core.C, targets/isapi/parser3isapi.C:
246: PA_GC_GCOLLECT used
247:
248: * src/include/pa_memory.h: +PA_GC_COLLECT
249:
250: * src/targets/cgi/parser3.C: msvs support fixes
251:
252: * src/lib/gc/include/gc.h: more cleanup
253:
254: * src/: include/pa_threads.h, main/pa_threads.C: win32 fixes
255:
256: * src/: include/pa_http.h, main/pa_http.C, main/pa_request.C,
257: targets/cgi/parser3.C: $main:HTTPD.mode implemented
258:
259: * src/include/pa_config_includes.h: +HAVE_PTHREAD_H
260:
261: * configure.ac: pthread.h added to checked headers
262:
263: * src/classes/table.C: string stream is back :)
264:
265: * src/classes/memory.C: GC_generate_random_backtrace no longer
266: exists
267:
268: * src/main/pa_globals.C: GC_dont_gc replaced
269:
270: * src/lib/gc/include/gc.h: major cleanup, only used functions are
271: left to simplify adding new functions. depricated GC_dont_gc
272: replaced with GC_disable and GC_enable calls.
273:
274: * src/lib/cord/: cordxtra.c, include/cord.h: cleanup:
275: CORD_from_file* not used and thus removed
276:
277: * src/lib/gc/include/gc_allocator.h: minor cleanup
278:
279: 2020-12-14 moko
280:
281: * src/classes/: curl.C, memory.C, table.C: every TLS should be
282: referenced elsewhere, or GC will collect it.
283:
284: * src/: include/pa_xml_io.h, main/pa_stylesheet_connection.C,
285: main/pa_xml_io.C: bugfix: TLS variables should be referenced
286: elsewhere, or GC will collect them (and we'll get GPF in
287: multithreaded enviroment). May be it can be also fixed by some
288: GC call, not sure. But this fix costs nothing (but hours of
289: debugging to find the issue :).
290:
1.150 moko 291: 2020-12-11 moko
292:
293: * configure.ac: gettid() check added
294:
295: * src/main/pa_threads.C: HAVE_GETTID used
296:
297: * src/include/pa_config_auto.h.in: +HAVE_GETTID
298:
299: * src/: include/pa_threads.h, main/pa_threads.C: now unified
300: version for isapi/cgi/apache
301:
302: * buildall: threads are now required.
303:
304: * src/: targets/apache/ApacheModuleParser3Core.vcproj,
305: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
306: main/main.vcproj: pa_threads.C moved to main
307:
308: * src/targets/: apache/pa_threads.C, cgi/pa_threads.C,
309: isapi/pa_threads.C: pa_threads.C moved to main
310:
311: * src/: main/Makefile.am, targets/cgi/Makefile.am,
312: targets/apache/Makefile.am: pa_threads.C moved to main
313:
314: * src/classes/xdoc.C: Stylesheet_connection_ptr changed a bit
315:
316: * src/: include/pa_stylesheet_connection.h,
317: main/pa_stylesheet_manager.C: Stylesheet_connection_ptr simplfied
318: and weird GPF in multithreaded httpd is gone
319:
320: * src/include/: pa_stylesheet_connection.h,
321: pa_sql_driver_manager.h: whitespace
322:
323: * src/main/pa_sql_driver_manager.C: timeout 60 sec -> 10 sec
324:
325: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
326: main/pa_stylesheet_manager.C: whitespace, warning war
327:
328: * src/: include/pa_threads.h, targets/apache/pa_threads.C,
329: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C:
330: parser_multithreaded never used
331:
332: * src/main/pa_http.C: no ALARM in MULTITHREADED httpd server mode
333:
334: 2020-12-10 moko
335:
336: * src/: include/pa_config_includes.h, include/pa_http.h,
337: main/pa_http.C, targets/cgi/parser3.C: initial support for
338: MULTITHREADED and PARALLEL httpd server modes
339:
340: * src/main/pa_globals.C: GC_java_finalization is depricated
341:
342: 2020-12-09 moko
343:
344: * etc/auto.p.in: + @httpd-main
345:
346: * src/: include/pa_common.h, main/pa_request.C,
347: targets/cgi/pa_sapi_info.h: Range Requests (rfc7233) now really
348: work
349:
350: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
351: slow file_read_binary no longer used, send_range added
352:
353: 2020-12-08 moko
354:
355: * src/main/pa_request.C: >4Gb support
356:
357: * src/targets/cgi/parser3.C: msvc warning war
358:
359: * src/: include/pa_config_includes.h, main/pa_http.C,
360: main/pa_request.C: msvc warnings war
361:
362: * src/classes/image.C: warning war
363:
364: * src/classes/table.C: MSVC warning war
365:
366: * src/targets/cgi/parser3.C: msvc warnings war
367:
368: * src/targets/apache/mod_parser3_core.C: SYSTEM_CONFIG_FILE support
369: added
370:
1.149 moko 371: 2020-12-07 moko
372:
1.150 moko 373: * configure.ac: SYSTEM_LOG_FILE no longer required as cheat used to
374: avoid logging beside system-wide auto.p
375:
376: * src/targets/cgi/parser3.C: SYSTEM_CONFIG_FILE used
377:
378: * configure, configure.ac, src/include/pa_config_auto.h.in:
379: configure options added:
380:
381: --with-system-cfg=FILE to specify system-wide auto.p
382: --with-system-log=FILE to specify system-wide parser3.log
383:
384: * Makefile.am: bin no longer exists
385:
386: * configure, configure.ac: auto.p moved to etc to simplify debian
387: package
388:
389: * buildall: auto.p and parser3.charsets moved to their default
390: location after install
391:
392: * etc/: Makefile.am, auto.p.in: auto.p moved to etc directory
393:
394: * aclocal.m4, configure: automake 1.15 -> 1.16.1
395:
1.149 moko 396: * src/targets/cgi/parser3.C: locate_config call returned to
397: original place as it requires pa_thread_request() under Windows
398:
399: * src/targets/cgi/parser3.C: renaming
400:
401: 2020-12-06 moko
402:
403: * src/: main/pa_globals.C, targets/cgi/parser3.C: thread request
404: check added
405:
406: 2020-12-04 moko
407:
408: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
409: main/pa_request.C: unified uint64_t lseek implemented to support
410: >4Gb files under x86, including Windows
411:
412: 2020-12-02 moko
413:
414: * src/main/pa_common.C: minor bugfix: $.limit() should be checked
415: with max_file_size
416:
417: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
418: support for processing files sized >4Gb on 32 bit planforms
419:
420: * tests/399.html: file moved
421:
422: * src/: include/pa_string.h, main/pa_string.C: long long -> int64_t
423:
424: * src/targets/cgi/pa_sapi_info.h: warning war
425:
426: * src/: main/pa_http.C, targets/isapi/parser3isapi.C: windows
427: warning war
428:
429: 2020-12-01 moko
430:
431: * src/classes/image.C: mp4 extended size (>4Gb) support added
432:
433: * src/classes/image.C: for "size not found" exception to be shown
434: if size not found until eof
435:
436: * src/classes/image.C: long -> off_t (which is 64 bits even on 32
437: bit linux)
438:
439: * src/classes/image.C: ^image::measure[] now supports mp4 (feature
440: #1188)
441:
442: 2020-11-30 moko
443:
444: * src/classes/image.C: definitions moved closer to code
445:
446: * tests/: 395.bmp, 395.html, 396.html, 396.tiff, 395_dir/1.bmp,
447: 395_dir/2.tiff, 395_dir/3_VP8.webp, 395_dir/3_VP8L.webp,
448: 395_dir/3_VP8X.webp, results/395.processed,
449: results/396.processed: tests for ^image::measure[] .webp support
450: added, all image files moved into one directory (related to
451: feature #1188)
452:
453: * src/classes/image.C: ^image::measure[] now supports webp (feature
454: #1188)
455:
1.148 moko 456: 2020-11-29 moko
457:
458: * src/main/pa_request.C: CONF_OPTION added to unify @conf options
459: processing, unnessesary defines removed
460:
461: 2020-11-24 moko
462:
463: * tests/results/: 099.processed, 100.processed, 205.processed,
464: 309.processed, 310.processed: Content-Disposition: inline
465: returned
466:
467: * tests/: 099.html, 237.html, 403.html, outputs/403.processed,
468: results/auto.p: test for $response:body[ $.file[<file>] $.name[]
469: ] added (related to bug #1204)
470:
471: * src/main/pa_request.C: $response:body[ $file[<file>.ext] $.name[]
472: ] supported to avoid Content-Disposition: inline;
473: filename="<file>.ext" but still set Content-Type for ext (related
474: to bug #1204)
475:
1.147 moko 476: 2020-11-22 moko
477:
478: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
479: types/pa_vfile.C: pa_filename added to avoid useless rsplit
480:
481: * src/main/pa_request.C: content_disposition_inline returned.
482:
483: 2020-11-17 moko
484:
485: * src/main/pa_request.C: empty main method name support
486:
487: * src/: main/pa_common.C, targets/cgi/parser3.C: httpd
488: config_handler added, stdout flush added.
489:
490: 2020-11-16 moko
491:
492: * src/targets/cgi/parser3.C: filespec_4log added, pa_strcat used.
493:
494: * tests/results/: 099.processed, 205.processed, 237.processed,
495: 309.processed, 310.processed: Content-Disposition: inline is not
496: required and should not contain filename="<name>"
497:
498: * src/: include/pa_common.h, main/pa_common.C, main/pa_exception.C,
499: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
500: targets/isapi/parser3isapi.C: pa_strcat implemented and used
501:
1.146 moko 502: 2020-11-14 moko
503:
504: * src/targets/cgi/parser3.C: spelling
505:
506: * src/targets/cgi/parser3.C: renaming
507:
508: * src/targets/cgi/parser3.C: args_skip removed, locate_config
509: relocated
510:
511: * src/targets/cgi/parser3.C: execution_canceled was for sigpipe
512: before request processing, which is weired
513:
514: 2020-11-13 moko
515:
516: * src/main/pa_http.C: pa_recv added with timeout support, thus read
517: copied in httpd.
518:
519: 2020-11-12 moko
520:
521: * src/main/pa_http.C: ALARM code unified to be used in httpd
522:
523: * src/: include/pa_request.h, main/pa_request.C,
524: targets/cgi/pa_sapi_info.h: pa_httpd_timeout added
525:
526: * src/main/pa_http.C: URI validation added
527:
528: * src/targets/cgi/parser3.C: filespec_to_process now variable,
529: can't be empty but can be null. httpd-main is now main method
530: name for httpd mode
531:
532: 2020-11-11 moko
533:
534: * src/main/pa_request.C: path_translated can be null in httpd mode
535:
536: * src/: classes/curl.C, classes/file.C, classes/hashfile.C,
537: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
538: classes/xdoc.C, include/pa_request.h, main/execute.C,
539: main/pa_request.C: r.absolute -> r.full_disk_path
540:
541: * src/targets/cgi/parser3.C: if filename to process is not
542: specified, auto.p should be present.
543:
1.145 moko 544: 2020-11-03 moko
545:
546: * src/: classes/op.C, include/pa_request.h: unused argument removed
547:
548: * src/main/pa_request.C: content_disposition_inline is the default,
549: not required.
550:
1.144 moko 551: 2020-10-29 moko
552:
553: * src/: classes/op.C, include/pa_request.h, main/pa_request.C:
554: ^use[file; $.main(true) ] implemented for auto.p processing and
555: path_translated changing to correct relative files path
556: calculation in httpd mode
557:
558: * src/: include/pa_request.h, main/pa_request.C:
559: fail_on_read_problem removed, as it allways true, as if should
560: be.
561:
562: * src/: include/pa_request.h, main/pa_request.C,
563: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
564: targets/isapi/parser3isapi.C: clearing config_filespec when
565: config was not found, thus flag not required and removed.
566:
567: 2020-10-28 moko
568:
569: * tests/: 402.html, results/402.processed: error reporting test
570:
571: * src/main/execute.C: better error reporting when
572: $result[^hash::create[]] in @main.
573:
574: * src/main/: execute.C, pa_request.C: frame.result() should be used
575: + minor optimization
576:
577: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
578: main/pa_xml_io.C: execute_*_method simplified and unified
579:
580: 2020-10-27 moko
581:
582: * tests/: 306.html, results/306.processed: a bit more testing. :)
583:
584: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
585: types/pa_vclass.h, types/pa_vconsole.h, types/pa_vcookie.C,
586: types/pa_vdate.C, types/pa_venv.C, types/pa_vform.C,
587: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmemcached.C,
588: types/pa_vmethod_frame.h, types/pa_vobject.C,
589: types/pa_vrequest.C, types/pa_vresponse.C, types/pa_vtable.C,
590: types/pa_vxnode.C: optimization: PUT_ELEMENT_REPLACED_ELEMENT no
591: longer used in object-prototype mode
592:
593: * src/: include/pa_sapi.h, targets/apache/mod_parser3_core.C,
594: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C,
595: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_venv.h,
596: types/pa_vform.C, types/pa_vform.h: + $env:name[value] and
597: $form:name[value] features
598:
1.143 moko 599: 2020-10-18 moko
600:
601: * src/targets/cgi/Makefile.am: + pa_sapi_info.h
602:
603: 2020-10-15 moko
604:
605: * src/main/pa_http.C: url no longer needed as
606: ALTER_EXCEPTION_SOURCE is used
607:
608: * src/: classes/curl.C, include/pa_common.h, main/pa_common.C,
609: main/pa_http.C: check_file_size filespec is now optional
610:
611: * src/: classes/curl.C, include/pa_exception.h,
612: main/pa_exception.C, main/pa_http.C: ALTER_EXCEPTION_SOURCE and
613: ALTER_EXCEPTION_COMMENT added for better error reporting
614:
615: * tests/: 379-curl.html, 379.html, results/223-curl.processed,
616: results/346-curl.processed, results/379-curl.processed,
617: results/379.processed: test results updated as load now provides
618: better error reporting + curl responses updated
619:
620: 2020-10-14 moko
621:
622: * src/: classes/date.C, include/pa_string.h, main/pa_http.C,
623: main/pa_string.C, targets/apache/mod_parser3_core.C,
624: targets/cgi/parser3.C: pa_atoi / pa_atoui / pa_atoul usage
625: checked. 10 is now default base, no hex autodetect by default
626:
627: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
628: connection socket closing in destructor + accept exception
629: handling
630:
631: * src/targets/cgi/parser3.C: warning war
632:
633: * src/: include/pa_http.h, include/pa_sapi.h, main/pa_http.C,
634: main/pa_request.C, targets/apache/mod_parser3_core.C,
635: targets/cgi/pa_sapi_info.h, targets/cgi/parser3.C: global try
636: exception handling unified
637:
638: 2020-10-13 moko
639:
640: * src/targets/isapi/parser3isapi.C: reverted to atoi to avoid hex
641: autodetection
642:
643: * src/targets/apache/mod_parser3_core.C: reverted to atoi
644:
645: * src/: main/pa_http.C, targets/cgi/pa_sapi_info.h: warning war
646:
647: * src/main/pa_http.C: warning war
648:
1.142 moko 649: 2020-10-12 moko
650:
1.143 moko 651: * src/: main/pa_request.C, targets/apache/mod_parser3_core.C,
652: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: excaption in
653: unhandled exception code optimization
654:
655: * src/targets/cgi/parser3.C: request_info now global variable
656:
657: * src/main/pa_http.C: http_read_response moved to HTTP_response
658: class
659:
660: * src/: include/pa_http.h, main/pa_http.C,
661: targets/cgi/pa_sapi_info.h: read_post implemented
662:
1.142 moko 663: * src/: include/pa_http.h, main/pa_http.C, targets/cgi/parser3.C:
664: [host:]port syntax support in httpd mode
665:
666: * src/: include/pa_http.h, targets/cgi/pa_sapi_info.h,
667: targets/cgi/parser3.C: populate_env added
668:
669: * src/include/pa_hash.h: to make get(char *) compiling in
670: HashStringString
671:
672: 2020-10-10 moko
673:
674: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
675: targets/cgi/pa_sapi_info.h: ResponseHeaders -> HTTP_Headers
676:
677: * src/: include/pa_http.h, include/pa_request_info.h,
678: main/pa_http.C, main/pa_string.C,
679: targets/apache/mod_parser3_core.C, targets/cgi/pa_sapi_info.h,
680: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
681: types/pa_vrequest.C: initial httpd mode implementation
682:
1.141 moko 683: 2020-10-04 moko
684:
685: * src/targets/cgi/parser3.C: options together
686:
687: 2020-09-30 moko
688:
689: * src/main/pa_http.C: renamed
690:
1.140 moko 691: 2020-08-14 moko
692:
693: * configure, configure.ac, parser3.sln, src/lib/Makefile.am,
694: src/targets/cgi/Makefile.am: no httpd as separate library
695:
696: 2020-08-13 moko
697:
698: * src/targets/cgi/parser3.C: SAPI::die used in exception in
699: unhandled exception handler to report 500 instead of 200 it was
700: before.
701:
702: * src/targets/apache/mod_parser3_core.C: minor cleanup
703:
704: * src/: include/pa_sapi.h, main/untaint.C,
705: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
706: targets/isapi/parser3isapi.C: SAPI::abort was used only once,
707: thus replaced with SAPI::die and removed
708:
709: * src/targets/: apache/mod_parser3_core.C, isapi/parser3isapi.C,
710: cgi/parser3.C: whitespace
711:
712: * src/targets/cgi/parser3.C: locate_config() extracted, whitespace.
713:
714: 2020-08-12 moko
715:
716: * src/targets/cgi/parser3.C: duplicate info in signal logging
717: removed, whitespace was: SIGPIPE received while executing code.
718: uri=/_tmp.html, method=GET, cl=0 [uri=/_tmp.html, method=GET,
719: cl=0]
720:
721: * parser3.sln: + httpd.vcproj
722:
723: 2020-08-11 moko
724:
725: * src/targets/cgi/Makefile.am: +libhttpd
726:
727: * configure.ac, src/lib/Makefile.am: +libhttpd
728:
1.139 moko 729: 2020-07-13 moko
730:
731: * tests/: 401.html, results/401.processed: test for hash key does
732: not keep language, but tainted in foreach.
733:
1.138 moko 734: 2020-07-01 moko
735:
736: * tests/: 235.html, results/235.processed: test result updated as
737: messages before attachments implemented (feature #1176)
738:
1.137 moko 739: 2020-06-27 moko
740:
741: * tests/: 400.html, results/400.processed: test updated to check
742: ^return{code}
743:
744: * src/classes/op.C: bugfix: ^return{code} or ^return(expre+ssion)
745: fixed
746:
747: 2020-06-26 moko
748:
749: * tests/: 400.html, results/400.processed: test for OPTIMIZE_RESULT
750: added (related to https://www.parser.ru/forum/?id=85319)
751:
752: * src/types/pa_vmethod_frame.h: bugfix: OPTIMIZE_RESULT failed,
753: when $result assignment was last statement in the method
754: (https://www.parser.ru/forum/?id=85319)
755:
1.136 moko 756: 2020-05-23 moko
757:
758: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h:
759: whitespace, unused level removed
760:
761: 2020-05-19 moko
762:
763: * src/types/pa_vmail.C: whitespace
764:
765: * src/types/pa_vmail.C: files should be processed last (related to
766: feature #1176)
767:
1.135 moko 768: 2020-05-12 moko
769:
770: * src/include/pa_memory.h: no new/delete checks for for FreeBSD1X.X
771: due to https://bugs.llvm.org/show_bug.cgi?id=40161 bug
772:
773: * configure.ac: FreeBSD1X.X check added to avoid
774: https://bugs.llvm.org/show_bug.cgi?id=40161 bug.
775:
1.134 moko 776: 2020-02-26 moko
777:
778: * src/main/pa_common.C: entry_exists -> entry_ifdir to fix Windows
779: compilation issue (related to bug #1201)
780:
781: * src/main/pa_common.C: entry_readable -> entry_exists,
782: undocumented access(fname, R_OK) call removed (fixes bug #1201)
783: -f and -d now works under Windows in UTF-8 with Russian
784: filenames.
785:
786: * src/types/pa_vmail.C: g_mime_stream_pipe_new used by gmime author
787: advice (related to feature #1199)
788:
789: 2020-02-25 moko
790:
791: * buildall: --silent removed
792:
793: * configure.ac: gmime-3.0 support
794:
795: * buildall: --with-system-mailreceive option added to build with
796: system libgmime
797:
798: * src/types/pa_vmail.C: avoiding
799: https://github.com/jstedfast/gmime/issues/83 "feature" (related
800: to feature #1199)
801:
1.133 moko 802: 2020-02-18 moko
803:
804: * src/classes/op.C: windows x64 debug mode compile fix
805:
806: * src/main/pa_globals.C: no longer required due to -MD -> -MT
807: change (releated to feature #1200)
808:
809: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
810: lib/gd/gd.vcproj, lib/json/json.vcproj, lib/ltdl/ltdl.vcproj,
811: lib/md5/md5.vcproj, lib/memcached/memcached.vcproj,
812: lib/pcre/pcre_internal.vcproj, lib/punycode/punycode.vcproj,
813: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
814: targets/apache/ApacheModuleParser3.vcproj,
815: targets/apache/ApacheModuleParser3Core.vcproj,
816: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
817: types/types.vcproj: -MD -> -MT to remove msvcp71.dll/etc
818: dependency (related to feature #1200)
819:
1.132 moko 820: 2020-02-12 moko
821:
822: * src/types/pa_vmail.C: minimize diff
823:
824: * src/types/pa_vmail.C: libgmime 3.X support (implements feature
825: #1199)
826:
1.131 moko 827: 2020-01-18 moko
828:
829: * tests/: 388-sql.html, results/388-sql.processed: +postprocess
830:
1.130 moko 831: 2019-12-28 moko
832:
833: * src/targets/cgi/parser3.C: avoid empty ?
834:
835: 2019-12-27 moko
836:
837: * src/targets/cgi/parser3.C: PATH_INFO check in reinventing
838: DOCUMENT_ROOT (related to feature #1164)
839:
840: * src/targets/cgi/parser3.C: IIS5 support removed to simplify
841: fcgiwrap setup (implements feature #1164)
842:
843: * src/targets/cgi/parser3.C: real_parser_handler logic simplified,
844: but no issues found (related to feature #1164)
845:
846: * src/targets/cgi/parser3.C: actualized
847:
848: 2019-12-26 moko
849:
850: * src/targets/apache/ApacheModuleParser3.vcproj: apache stop/start
851: removed
852:
853: * src/targets/isapi/parser3isapi.vcproj: inetinfo stop/start
854: removed
855:
856: * src/: lib/gc/include/gc.h, main/pa_globals.C: As we log
857: allocation errors, we don't want default gc warnings (without
858: timestamp and URI).
859:
860: * src/: classes/memory.C, main/pa_globals.C,
861: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
862: targets/isapi/parser3isapi.C: GC_dont_gc=1 moved to
863: pa_globals_init
864:
865: * src/main/pa_globals.C: setup_hex_value() removed, static array
866: initialization used (optimization)
867:
868: * src/: main/pa_globals.C, targets/apache/mod_parser3_core.C,
869: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
870: pa_socks_init/pa_socks_done moved inside pa_globals_init
871: (optimization)
872:
1.129 moko 873: 2019-12-09 moko
874:
875: * src/include/pa_config_fixed.h: warning war
876:
1.128 moko 877: 2019-12-08 moko
878:
879: * src/main/main.vcproj: compile.y - ExcludedFromBuild, as we
880: process grammar under Unix.
881:
882: 2019-12-07 moko
883:
884: * tests/389.html: For Windows XP. :)
885:
886: * tests/388-sql.html: Windows compatibility added
887:
888: 2019-12-06 moko
889:
890: * src/targets/cgi/parser3.C: warning war
891:
892: * src/main/pa_string.C: + COMPILE_ASSERT(sizeof(String::Languages)
893: == sizeof(CORD)) to avoid aligning bugs in future
894:
895: * src/: include/pa_config_fixed.h, main/pa_globals.C: simplified to
896: XML_STATIC
897:
898: * src/include/pa_request.h: StackItem() not required
899:
900: * src/include/pa_stack.h: warning war
901:
902: * src/include/pa_config_includes.h: GCC warning silenced
903:
904: * src/include/pa_memory.h: warning war: the program should also
905: define 'void operator delete [](void*, std::size_t)'
906: [-Wsized-deallocation]
907:
908: * src/types/: pa_vregex.h, pa_vtable.h: warning war
909:
910: * src/classes/string.C: not reqired cast removed
911:
912: * src/classes/string.C: not reqired cast removed
913:
914: 2019-12-05 moko
915:
916: * src/lib/sdbm/pa_file_io.C: warning war
917:
918: * src/include/pa_string.h: bugfix for Windows x64: enum Language ->
919: enum Language : size_t - required for VS2015+ to make
920: sizeof(Languages::opt) == sizeof(CORD), will be 16 byte under x64
921: without it (related to feature #1198)
922:
923: 2019-12-04 moko
924:
925: * src/main/pa_base64.C: unsigned char -> uchar
926:
927: * src/main/: main.vcproj, pa_globals.C: libpcre now linked same way
928: as other libs
929:
930: * src/include/pa_version.h: +amd64
931:
932: 2019-12-03 moko
933:
934: * src/: classes/classes.vcproj, types/types.vcproj: sync debug with
935: release
936:
937: * src/include/pa_config_includes.h: warning war
938:
939: * src/classes/image.C: warning war
940:
941: * src/main/pa_globals.C: x64 libs support
942:
943: * src/include/pa_config_includes.h: warning war
944:
945: * src/types/pa_method.h: warning war
946:
1.127 moko 947: 2019-11-28 moko
948:
949: * src/classes/math.C: vs2003 compatibility + warning war
950:
951: * buildall: libxslt-1.1.29 -> libxslt-1.1.34, libxml2-2.9.4 ->
952: libxml2-2.9.9 (related to feature #1136)
953:
954: * src/classes/xdoc.C: xmlHashScanner declaration changed, using
955: typecast for more compatibility (related to feature #1136)
956:
957: * buildall: --direct-download option added, gc-7.6.2 -> gc-8.0.4 +
958: libatomic no longer required, pcre-8.40 -> pcre-8.43 (related to
959: feature #1136)
960:
961: 2019-11-26 moko
962:
963: * src/main/: compile_tools.C, compile_tools.h: invalid assert
964: removed (it was failing in $$var case), condition added
965:
1.126 moko 966: 2019-11-25 moko
967:
968: * tests/: 397.html, 399.html, results/141.processed,
969: results/399.processed: base64 options tested
970:
971: * src/: classes/math.C, main/pa_http.C: base64 options used
972:
973: * src/main/pa_base64.C: base64 encode rewritten, base64 options
974: implemented (feature #986)
975:
976: * src/main/pa_cache_managers.C: whitespace
977:
978: * tests/: 397.html, 399.html, results/399.processed: tests for
979: ^base64 encode options added (related to feature #986)
980:
981: * src/: classes/file.C, include/pa_base64.h, main/pa_base64.C:
982: pa_base64_encode(file) removed - more memory, but faster and less
983: code (related fo feature #986)
984:
985: 2019-11-24 moko
986:
987: * tests/: 155.html, results/155.processed: limit and offset in
988: ^table::load[] now supported, thus test added
989:
990: * src/: classes/file.C, classes/table.C, include/pa_common.h,
991: main/pa_common.C: optimization: offset and limit options parsing
992: moved inside file_load.
993:
994: 2019-11-23 moko
995:
996: * src/: classes/file.C, classes/op.C, include/pa_common.h,
997: main/pa_common.C, main/pa_request.C, types/pa_vform.C:
998: optimization: file_read replaced with simplified file_read_binary
999:
1000: * src/: classes/op.C, main/pa_common.C, main/pa_request.C,
1001: types/pa_vform.C: whitespace
1002:
1003: * src/: include/pa_common.h, main/pa_common.C: never used params
1004: removed
1005:
1006: 2019-11-21 moko
1007:
1008: * tests/: 193.html, results/193.processed, results/389.processed:
1009: test results updated as now base64 does not discard tail without
1010: padding (related to feature #986)
1011:
1012: 2019-11-20 moko
1013:
1014: * src/: classes/file.C, classes/string.C, include/pa_base64.h,
1015: main/pa_base64.C: optimization: void pa_base64_decode -> size_t
1016: pa_base64_decode (related to feature #986)
1017:
1018: * tests/398.html: tests for base64 decode added (related to feature
1019: #986)
1020:
1021: * src/main/pa_base64.C: base64_decode rewritten - padding option
1022: support, padding inside base 64 supported (related to feature
1023: #096)
1024:
1025: 2019-11-19 moko
1026:
1027: * src/include/pa_memory.h: CHECK_DELETE_USAGE tested to work under
1028: FreeBSD 12
1029:
1.125 moko 1030: 2019-11-16 moko
1031:
1032: * src/main/pa_base64.C: base64_decode converted to C++, url-safe
1033: support added, step support removed (related to #986)
1034:
1035: 2019-11-15 moko
1036:
1037: * src/classes/math.C: using log since log2 is not present on
1038: FreeBSD < 8.4 (related to feature #1177)
1039:
1040: * src/: include/pa_base64.h, main/pa_base64.C: whitespace,
1041: pa_base64_size extracted and used for files as well (related to
1042: feature 986)
1043:
1044: 2019-11-14 moko
1045:
1046: * tests/: 397.html, results/397.processed: + content check
1047:
1048: * tests/: 141.html, results/141.processed: make test resuls more
1049: readable
1050:
1051: * tests/: 397.html, results/193.processed, results/397.processed:
1052: test results updated after \x00 character was disabled in
1053: math:convert string mode (related to feature #1177)
1054:
1055: * src/classes/: math.C, string.C: \\x00 character disabled while
1056: converting to string (as in base64, related to feature #1177)
1057:
1058: * src/classes/file.C: more correct arguments separation
1059:
1060: * src/: classes/file.C, classes/math.C, classes/string.C,
1061: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1062: main/pa_http.C, types/pa_vfile.C, types/pa_vmail.C: base64
1063: options added, but not yet implemented (related to feature #986)
1064:
1065: * src/classes/math.C: whitespace
1066:
1067: 2019-11-13 moko
1068:
1069: * tests/: 397.html, results/397.processed: +tainting test (related
1070: to feature #1177)
1071:
1072: * src/classes/math.C: as we now produce not only digits, result
1073: should be tainted (related to feature #1177)
1074:
1075: * src/main/pa_base64.C: whitespace
1076:
1077: * src/: include/Makefile.am, main/Makefile.am, main/main.vcproj,
1078: include/pa_base64.h, include/pa_common.h, main/pa_base64.C,
1079: main/pa_common.C: pa_base64.h and pa_base64.C added, base64
1080: implementation moved from pa_common.h and pa_common.C
1081:
1082: 2019-11-12 moko
1083:
1084: * tests/: 275.html, results/275.processed: out of range test fixed,
1085: as ^math:convert now supports arbitrary precision
1086:
1087: 2019-11-11 moko
1088:
1089: * tests/results/389.processed: uctualized error message
1090:
1091: * tests/: 389.html, 397.html, results/397.processed: tests for
1092: ^math:convert added (related to feature #1177)
1093:
1094: * src/classes/math.C: ^math:convert now supports arbitrary
1095: precision, alphabet support added (implements feature #1177)
1096:
1.124 moko 1097: 2019-11-06 moko
1098:
1099: * tests/: 181.html, results/181.processed: entities usage added,
1100: more entites load tests (related to bug #842 discussion)
1101:
1102: 2019-11-05 moko
1103:
1104: * src/main/pa_xml_io.C: bugfix: no more extra http://localhost/
1105: call from xmlFileOpen if http://localhost/<file> was not found
1106: (related to bug #842)
1107:
1108: * src/main/pa_xml_io.C: rename
1109:
1110: * src/main/pa_xml_io.C: +MemoryStream constructor
1111:
1112: * src/main/pa_xml_io.C: whitespace
1113:
1.123 moko 1114: 2019-10-31 moko
1115:
1116: * src/classes/xdoc.C: XML_PARSE_OPTIONS (XML_PARSE_DTDLOAD |
1117: XML_PARSE_NOENT) added to fix entities load, (related to feature
1118: #1181)
1119:
1.122 moko 1120: 2019-10-25 moko
1121:
1122: * tests/: 388-sql.html, results/388-sql.processed: more multiple
1123: queries tests
1124:
1125: 2019-10-24 moko
1126:
1127: * tests/: 388-sql.html, results/388-sql.processed: support for
1128: pgsql driver test
1129:
1130: * tests/: 388-sql.html, results/388-sql.processed:
1131: multi_statements=1 now tested, mysql test now supported
1132: (connection must be specified in [parser3] section in .my.cnf)
1133: related to issues #1195 and #1194
1134:
1.121 moko 1135: 2019-09-11 moko
1136:
1137: * src/classes/int.C: whitespace
1138:
1139: * tests/: 388-sql.html, results/388-sql.processed: +duplicate key
1140: exception test
1141:
1142: * tests/results/388-sql.processed: sql queries now shown (related
1143: to feature #1196)
1144:
1145: * src/sql/pa_sql_driver.h: to keep new SQL drivers more compatible
1146: with old parser versions.
1147:
1148: * src/: classes/file.C, classes/hash.C, classes/string.C,
1149: classes/table.C, classes/void.C, include/pa_sql_connection.h,
1150: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: Show query
1151: instead of connect string in query_event_handlers exceptions
1152: (implements feature #1196)
1153:
1.120 moko 1154: 2019-09-06 moko
1155:
1156: * tests/388-sql.html: mysql compat
1157:
1158: * src/: classes/hash.C, classes/string.C, classes/table.C,
1159: classes/void.C, include/pa_common.h, main/pa_common.C: cleanup:
1160: sql_ variables declaration moved to pa_common.h
1161:
1.116 moko 1162: 2019-01-15 moko
1163:
1164: * src/classes/curl.C: ^curl:info[] - OrderedHashString used, items
1165: logically sorted
1166:
1167: 2018-12-27 moko
1168:
1169: * src/include/pa_config_includes.h: warning war:
1170: -Wdeprecated-register added for C++ 17
1171:
1172: 2018-10-15 moko
1173:
1174: * configure.ac: FreeBSD 11.2 can be build with ./configure
1175: --with-gc=/usr/local/lib/ --with-pcre=/usr/local/
1176: --with-xml=/usr/local/
1177:
1178: 2018-09-24 moko
1179:
1180: * tests/: 396.html, 396.tiff, results/396.processed: test for
1181: ^image::measure[] now supports tiff added (related to feature
1182: #1188)
1183:
1184: * src/classes/image.C: ^image::measure[] now supports tiff
1185: (implements feature #1188)
1186:
1187: 2018-09-20 moko
1188:
1189: * tests/: 395.bmp, 395.html, results/395.processed: test for bmp
1190: files measure added (related to ticket #1188)
1191:
1192: * src/classes/image.C: measure of bmp files implemented (related to
1193: ticket #1188)
1194:
1195: 2018-09-18 moko
1196:
1197: * tests/: 394-curl.html, results/394-curl.processed,
1198: results/auto.p: test for bug #1187 (max_file_size check for head
1199: requests) added
1200:
1201: 2018-08-24 moko
1202:
1203: * src/classes/curl.C: CURLOPT_NOBODY value used to check if
1204: response content-length check is required (fixes bug #1187)
1205:
1206: 2018-05-11 moko
1207:
1208: * tests/: 157.html, results/157.processed: test for ^file:copy[..;
1209: $.append(bool) ] option added (related to feature #919)
1210:
1211: * src/classes/file.C: ^file:copy[..; $.append(bool) ] option added
1212: from misha@ patch (implements feature #919)
1213:
1214: 2018-03-22 moko
1215:
1216: * src/main/pa_request.C: $response:download[ $.file[file.namef] ]
1217: worked rather slow (about 1mb/sec) with 10kb buffer, replaced it
1218: with 128kb buffer. Now works at least 12 times faster. :) May be
1219: Windows-only problem.
1220:
1221: * src/lib/cord/cord.vcproj: Profile * complete cleanup (VS 2003
1222: build fix)
1223:
1224: 2018-02-03 moko
1225:
1226: * src/main/execute.C: removes irrelevant lines from exception stack
1227: trace when exceptions occurs in assigment (fixes bug #1165)
1228:
1229: * tests/: 393.html, results/393.processed: test for behavour after
1230: "Property can not be created, already exists field with that
1231: name" exception removed (related to feature #1183)
1232:
1233: * src/types/pa_vclass.C: "Property can not be created, already
1234: exists field with that name" exception removed (implements
1235: feature #1183)
1236:
1237: 2018-01-19 moko
1238:
1239: * src/classes/string.C: whitespace
1240:
1241: * src/classes/string.C: whitespace
1242:
1243: * tests/: 392.html, results/392.processed: test for
1244: ^regex::create[$regex] added (related to feature #1135)
1245:
1246: * src/: classes/regex.C, types/pa_vregex.C, types/pa_vregex.h:
1247: ^regex::create[$regex] added (implements feature #1135)
1248:
1249: * src/types/: pa_vclass.C, pa_vclass.h: CLASS_GETTER_UNPROTECTED
1250: commented define added (related to feature #1157)
1251:
1252: 2018-01-17 moko
1253:
1254: * buildall: gc 7.6.0 -> 7.6.2 (related to feature #1136)
1255:
1256: 2018-01-15 moko
1257:
1258: * tests/: 390.html, results/390.processed: real path replaced by
1259: stub
1260:
1261: * tests/: 391.html, results/391.processed: test for feature #1181
1262: (XML_PARSE_HUGE exception) added
1263:
1264: 2018-01-11 moko
1265:
1266: * src/classes/xdoc.C: xmlReadMemory/xmlReadFile now used with
1267: XML_PARSE_HUGE option passed by default (implements feature
1268: #1181)
1269:
1270: * src/classes/string.C: whitespace
1271:
1272: 2017-12-10 moko
1273:
1274: * tests/: 389.html, 390.html, results/389.processed,
1275: results/390.processed: image code coverage tests added (related
1276: to feature #1125)
1277:
1278: 2017-12-08 moko
1279:
1280: * tests/: 346-curl.html, 388-sql.html, 389.html,
1281: results/346-curl.processed, results/388-sql.processed,
1282: results/389.processed: more code coverage tests
1283:
1284: * tests/: 264.html, results/264.processed: code coverage for
1285: ^file::exec[]
1286:
1287: 2017-12-07 moko
1288:
1289: * tests/: 174.html, 388-sql.html, 389.html,
1290: results/388-sql.processed, results/389.processed,
1291: results/174.processed: more coverage tests
1292:
1293: * src/classes/math.C: exception text actualized
1294:
1295: 2017-12-06 moko
1296:
1297: * tests/388-sql.html: $SQL can be here
1298:
1299: * tests/results/auto.p: $SQL not required here
1300:
1301: * tests/: 388-sql.html, 389.html, Makefile,
1302: results/388-sql.processed, results/389.processed, results/auto.p:
1303: code coverage tests for sql (using sqlite) and int/double/bool
1304: added (related to feature #1125)
1305:
1306: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
1307: lib/json/json.vcproj, lib/md5/md5.vcproj,
1308: lib/memcached/memcached.vcproj, lib/punycode/punycode.vcproj,
1309: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/main.vcproj,
1310: targets/apache/ApacheModuleParser3Core.vcproj,
1311: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
1312: types/types.vcproj: gc\include no longer required
1313:
1314: * src/lib/: cord/cord.vcproj, gd/gd.vcproj: gc\include no longer
1315: required
1316:
1317: * src/: classes/Makefile.am, classes/table.C,
1318: include/pa_config_includes.h, include/pa_string.h,
1319: lib/cord/Makefile.am, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1320: lib/gd/Makefile.am, lib/json/Makefile.am, lib/sdbm/Makefile.am,
1321: lib/smtp/Makefile.am, main/Makefile.am, main/untaint.C,
1322: targets/apache/Makefile.am, targets/cgi/Makefile.am,
1323: types/Makefile.am: to be sure that our version of gc.h/cord.h is
1324: used, we now include it directly
1325:
1326: 2017-12-04 moko
1327:
1328: * src/lib/: gd/gd.vcproj, md5/md5.vcproj,
1329: memcached/memcached.vcproj, punycode/punycode.vcproj,
1330: sdbm/sdbm.vcproj, smtp/smtp.vcproj: includes unified, gc added
1331: where required
1332:
1333: * src/: classes/memory.C, include/pa_config_includes.h: GC_DEBUG
1334: now can be used to trace memory allocations
1335:
1336: * src/: classes/table.C, include/pa_config_includes.h,
1337: include/pa_memory.h, lib/cord/cordbscs.c, lib/cord/cordxtra.c,
1338: main/pa_globals.C: PA_DEBUG_DISABLE_GC works again, pa_gc_*
1339: method removes, libcord also can work without libgc
1340:
1341: * src/classes/json.C: pa_gc_malloc_atomic should not be used
1342:
1343: 2017-11-29 moko
1344:
1345: * src/classes/curl.C: no exception if some of ^curl:info[] elements
1346: are not present (related to feature #1173)
1347:
1348: * tests/346-curl.html: test updated to test curl content-length bug
1349: (related to feature #1173)
1350:
1351: * tests/results/346-curl.processed: more test for content-length
1352: curl bug (related to feature #1173)
1353:
1354: * tests/results/346-curl.processed: test results updated after
1355: #1173 implemented
1356:
1357: 2017-11-28 moko
1358:
1359: * src/classes/curl.C: another libcurl Content-length bug walkaround
1360: (related to feature #1173)
1361:
1362: 2017-11-27 moko
1363:
1364: * src/: classes/curl.C, lib/curl/curl.h: ^curl:options
1365: $.http_version[version string] added (implements feature #1173),
1366: CURLOPT_POSTFIELDSIZE is set to 0 now only for old versions,
1367: where $post(true) bug existed.
1368:
1369: 2017-11-18 moko
1370:
1371: * src/include/pa_memory.h: warning war (related to feature #1170)
1372:
1373: * src/include/pa_pool.h: RedHat 7.3 compatibility fixed (related to
1374: feature #1170)
1375:
1376: 2017-11-17 moko
1377:
1378: * src/include/pa_memory.h: CHECK_DELETE_USAGE define added as
1379: std::basic_stringstream used in ^table.csv-string[] is compatible
1380: with delete usage check only under Debian 9 (related to feature
1381: #1170)
1382:
1383: 2017-11-16 moko
1384:
1385: * src/: classes/curl.C, classes/hash.C, classes/json.C,
1386: classes/table.C, classes/xdoc.C, include/pa_config_includes.h,
1387: include/pa_hash.h, include/pa_memory.h, include/pa_pool.h,
1388: main/pa_charset.C, main/pa_memory.C, main/pa_xml_io.C,
1389: sql/pa_sql_driver.h, types/pa_value.h, types/pa_vmemcached.C,
1390: types/pa_vxdoc.h: regular new/delete no longer used in our code,
1391: stubs defend from accidental use (implements feature #1170)
1392:
1393: 2017-06-24 moko
1394:
1395: * configure.ac: minor fix: thanks to alx@
1396:
1.115 moko 1397: 2017-05-29 moko
1398:
1399: * src/types/pa_vmail.C: mail headers are now correctly truncated -
1400: MAX_CHARS_IN_HEADER_LINE value fixed, mail_header_utf8_substring
1401: added to avoid cutting of UTF-8 chars (fixed bug #123)
1402:
1403: * src/main/untaint.C: as in case of <space>=?UTF-8?Q?= space is
1404: ignored, =?UTF-8?Q?= should start in case of leading space
1405: (related to bug #123)
1406:
1407: * buildall: echo -n -> printf for OS X. :)
1408:
1409: 2017-05-25 moko
1410:
1411: * tests/: 288.html, results/288.processed: test updated afted
1412: setting $o.prop without setter exception removed (related to
1413: feature #1157)
1414:
1415: * src/types/pa_vclass.C: no more "this property has no setter
1416: method" when setting $o.prop without setter (implements feature
1417: #1157)
1418:
1419: * buildall: echo \c -> echo -n for FreeBSD
1420:
1421: * configure, configure.ac, src/include/pa_config_auto.h.in,
1422: src/types/pa_vdouble.h: isfinite now checked in configure
1423:
1424: * compile, config.guess, config.sub, depcomp, install-sh, missing:
1425: upgraded to automake 1.15
1426:
1427: 2017-05-23 moko
1428:
1429: * src/types/pa_vdouble.h: finite returned where isfinite not
1430: defined
1431:
1432: 2017-05-22 moko
1433:
1434: * buildall: gc-7.6.0 USE_LIBC_PRIVATES allready defined warning war
1435:
1436: * buildall: extern CFLAGS setting support
1437:
1438: * src/types/pa_vdouble.h: warning war: finine() -> isfinite() 4OSX
1439:
1440: * buildall: http -> https
1441:
1442: * buildall: gc-7.2f -> gc-7.6.0
1443:
1444: 2017-05-20 moko
1445:
1446: * buildall: https, pcre, xml, xslt updated to current versions
1447: (related to feature #1136)
1448:
1449: 2017-05-19 moko
1450:
1451: * tests/097.html: after parser.ru moved to https
1452:
1453: 2017-05-17 moko
1454:
1455: * tests/results/: 175.processed, 372.processed: tests resuls
1456: updated after lintian spelling typos fixed (related to bug #1156)
1457:
1458: * src/: classes/file.C, classes/hash.C, classes/reflection.C,
1459: classes/string.C, classes/table.C, main/pa_charset.C,
1460: main/pa_common.C, main/pa_http.C, types/pa_vimage.h,
1461: types/pa_vmail.C, types/pa_vxdoc.h: fixed spelling typos from
1462: lintian reported by Sergey B Kirpichev (fixes bug #1156)
1463:
1464: * tests/results/096.processed: +XMP
1465:
1466: * tests/: 096.html, 096_dir/188.jpg: ^image::measure[] $.exif(true)
1467: $.xmp(true) options tested (test for feature #1154)
1468:
1469: * src/classes/image.C: ^image:measure[] options $.exif(false)
1470: $.xmp(false) $.xmp-charset[UTF-8] implemened. exif no longer
1471: fetched by default! (implements feature #1154)
1472:
1473: 2017-05-16 moko
1474:
1475: * tests/: 256.html, results/256.processed: ^json:string[$image] now
1476: allowed (related to feature #1154)
1477:
1478: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
1479: initial XMP implementation - without options and transcode
1480: (related to feature #1154)
1481:
1482: 2017-05-12 moko
1483:
1484: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
1485: image: exif moved to ffields, skipped in ^image.html[] where
1486: iterators now used (preparation for feature #1154)
1487:
1488: 2017-05-05 moko
1489:
1490: * tests/: 387.html, 387_dir/A.p, 387_dir/B.p,
1491: results/387.processed: test for circular class inheritance check
1492: added (related to bug #1150)
1493:
1494: * src/types/pa_vstateless_class.C: circular class inheritance check
1495: added (fixes endless add_derived bug #1150)
1496:
1497: 2017-05-04 moko
1498:
1499: * tests/: 386.html, results/386.processed: test for
1500: $table.value(number) added (related to feature #1152)
1501:
1502: * src/types/pa_vtable.C: table put_element: column value must be
1503: string - > column value must be string compatible to allow
1504: $t.value(1) (implements feature #1152)
1505:
1506: 2017-05-03 moko
1507:
1508: * src/main/pa_request.C: $use[$method] is not possible, reverting
1509: (related to feature #1151)
1510:
1511: * tests/: 386.html, 386.p, results/386.processed: $use[$method] is
1512: not possible, removing test (related to feature #1151)
1513:
1514: * src/: main/pa_request.C, types/pa_vstateless_class.h:
1515: get_element_method added and used to allow $use[$method] and
1516: $autouse[$method] (implements feature 1151)
1517:
1518: * tests/: 386.html, 386.p, results/386.processed: test for @use in
1519: variable added (related to feature #1151)
1520:
1521: * tests/results/226.processed: actualized after ^try-catch used
1522:
1523: * tests/: 226.html, 385.html, results/385.processed: test for
1524: @autouse in variable added
1525:
1526: * configure.ac, src/include/pa_version.h: 3.4.5 -> 3.4.6b
1527:
1.114 moko 1528: 2017-02-27 moko
1529:
1530: * configure.ac, src/include/pa_version.h: 3.4.5rc -> 3.4.5
1531:
1.113 moko 1532: 2017-02-20 moko
1533:
1534: * operators.txt: actualization + beauty
1535:
1536: 2017-02-16 moko
1537:
1538: * tests/: 384.html, results/384.processed: test for
1539: ^reflection:mixin[; $.name[] ] option added (related to feature
1540: #1089)
1541:
1542: * tests/: 384.html, results/384.processed: test for
1543: ^reflection:mixin[] added (related to feature #1089)
1544:
1545: * src/types/pa_value.h: warning war: virtual ~Value() added
1546:
1.112 moko 1547: 2017-02-15 moko
1548:
1549: * src/include/pa_hash.h: compilation without HASH_CODE_CACHING
1550: fixed
1551:
1552: * tests/: 320.html, results/320.processed: $.reverse(true/false)
1553: test added (related to feature #1069)
1554:
1555: * src/: classes/reflection.C, types/pa_vstateless_class.h:
1556: compilation without HASH_ORDER fixed
1557:
1558: * src/: classes/reflection.C, include/pa_hash.h:
1559: $.reverse(true/false) added to ^reflection:methods[] (related to
1560: feature #1069)
1561:
1562: 2017-02-14 moko
1563:
1564: * tests/: 152.html, results/152.processed: test for $._default hash
1565: added (related to bug #1131)
1566:
1567: * tests/: 277.html, results/277.processed: test for hash with only
1568: $._default is now defined (related to bug #1131)
1569:
1570: * src/types/pa_vhash.h: hash with only $._default is now defined
1571: (fixed bug #1131)
1572:
1573: 2017-02-13 moko
1574:
1575: * tests/cat-windows.sh: cat-windows added (cygwin required)
1576:
1577: * tests/: 171.html, 264.html, 286.html, 370.html,
1578: results/320.processed, results/375.processed, results/auto.p:
1579: cat-windows.sh support added
1580:
1581: * tests/375.html: Windows support
1582:
1583: * tests/270.html: documented
1584:
1585: * tests/: 270.html, run_parser.cmd: bugfix: PATH_INFO has slashes
1586: (not backslashes) even under Windows (broke test 270)
1587:
1588: 2017-02-12 moko
1589:
1590: * tests/: descript.ion, todo.txt: cleanup
1591:
1592: 2017-02-09 moko
1593:
1594: * tests/: 253.html, 255.html, 275.html, 347-curl.html,
1595: run_tests.cmd: Windows compatibility
1596:
1597: * tests/make_tests.cmd: removed as test can't be passed - TZ is set
1598: incorrectly (GMT) if parser is called from cygwin
1599:
1.111 moko 1600: 2017-02-08 moko
1601:
1.112 moko 1602: * operators.txt: actualization 15% completed
1603:
1604: * operators.txt: cp1251 -> utf-8
1605:
1606: * NEWS, README: minor update
1607:
1608: * src/include/pa_config_includes.h: warning war continues
1609:
1610: * src/: include/pa_config_includes.h, include/pa_memory.h,
1611: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
1612: targets/isapi/parser3isapi.C, types/pa_vdouble.h: warning war:
1613: gcc 6.x issues fixed
1614:
1.111 moko 1615: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
1616: classes/classes.h, classes/curl.C, classes/date.C,
1617: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
1618: classes/hashfile.C, classes/image.C, classes/inet.C,
1619: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
1620: classes/memcached.C, classes/memory.C, classes/op.C,
1621: classes/reflection.C, classes/regex.C, classes/response.C,
1622: classes/string.C, classes/table.C, classes/void.C,
1623: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
1624: include/pa_array.h, include/pa_cache_managers.h,
1625: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
1626: include/pa_config_fixed.h, include/pa_config_includes.h,
1627: include/pa_dictionary.h, include/pa_dir.h,
1628: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
1629: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
1630: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
1631: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
1632: include/pa_request_charsets.h, include/pa_request_info.h,
1633: include/pa_sapi.h, include/pa_socks.h,
1634: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
1635: include/pa_stack.h, include/pa_string.h,
1636: include/pa_stylesheet_connection.h,
1637: include/pa_stylesheet_manager.h, include/pa_symbols.h,
1638: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
1639: include/pa_uue.h, include/pa_xml_exception.h,
1640: include/pa_xml_io.h, lib/gd/gif.C, lib/gd/gif.h, lib/gd/gifio.C,
1641: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
1642: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
1643: lib/punycode/pa_idna.c, lib/punycode/pa_idna.h,
1644: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
1645: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
1646: main/compile.tab.C, main/compile.y, main/compile_tools.C,
1647: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
1648: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
1649: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
1650: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
1651: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
1652: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
1653: main/pa_string.C, main/pa_stylesheet_connection.C,
1654: main/pa_stylesheet_manager.C, main/pa_symbols.C, main/pa_table.C,
1655: main/pa_uue.C, main/pa_xml_exception.C, main/pa_xml_io.C,
1656: main/untaint.C, sql/pa_sql_driver.h,
1657: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
1658: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
1659: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
1660: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
1661: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
1662: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
1663: types/pa_vcaller_wrapper.h, types/pa_vclass.C, types/pa_vclass.h,
1664: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
1665: types/pa_vcookie.h, types/pa_vdate.C, types/pa_vdate.h,
1666: types/pa_vdouble.h, types/pa_venv.C, types/pa_venv.h,
1667: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
1668: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
1669: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
1670: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
1671: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
1672: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemcached.C,
1673: types/pa_vmemcached.h, types/pa_vmemory.h,
1674: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
1675: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
1676: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
1677: types/pa_vresponse.C, types/pa_vresponse.h,
1678: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
1679: types/pa_vstateless_object.h, types/pa_vstatus.C,
1680: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
1681: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
1682: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
1683: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1684: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year:
1685: 2015->2017
1686:
1.110 moko 1687: 2017-02-07 moko
1688:
1689: * configure.ac, src/include/pa_version.h: 3.4.5b -> 3.4.5rc
1690:
1691: 2017-02-06 moko
1692:
1693: * src/main/pa_common.C: minor fixes, whitespace
1694:
1695: * src/: classes/curl.C, classes/file.C, classes/image.C,
1696: include/pa_common.h, include/pa_dir.h, main/pa_common.C,
1697: main/pa_dir.C, main/pa_exec.C: wchar filenames API under Windows
1698: now used (implements feature #1081)
1699:
1700: * src/: types/pa_vcookie.C, main/pa_charset.C: cleanup
1701:
1702: 2017-02-01 moko
1703:
1704: * src/include/pa_request.h: cleanup
1705:
1706: 2017-01-30 moko
1707:
1708: * src/main/pa_request.C: file_lock_wait_limit -> lock_wait_timeout
1709:
1710: 2017-01-29 moko
1711:
1712: * tests/: 383.html, results/383.processed: test for
1713: ^reflection:stack[] added (related to feature #1052)
1714:
1715: * src/classes/reflection.C: else added
1716:
1717: * src/: include/pa_os.h, main/pa_os.C, main/pa_request.C:
1718: $.max_file_lock_wait added (implements feature #1128)
1719:
1720: 2017-01-28 moko
1721:
1722: * tests/: 379-curl.html, results/379-curl.processed: curl empty
1723: body and other cases tests added (related to featue #1014)
1724:
1725: * src/classes/curl.C: bug if response is empty fixed (related to
1726: feature #1014)
1727:
1728: 2017-01-27 moko
1729:
1730: * src/: classes/json.C, classes/reflection.C, include/pa_request.h,
1731: main/execute.C, types/pa_vmethod_frame.h: ^reflection:stack[]
1732: added (implements feature #1052)
1733:
1734: 2017-01-25 moko
1735:
1736: * tests/: 382.html, results/382.processed: @GET_DEFAULT returning
1737: method test added
1738:
1739: 2017-01-23 moko
1740:
1741: * src/classes/reflection.C: optimization: options->get replaced by
1742: hash iterator
1743:
1744: * tests/: 381.html, results/381.processed: now -> fixed date
1745:
1746: * src/main/pa_request.C: warning war
1747:
1748: * src/targets/cgi/parser3.vcproj: Stack size increased from 2Mb to
1749: 5Mb (fixes bug #1058)
1750:
1751: * src/classes/curl.C: warning war
1752:
1753: * tests/: 381.html, results/381.processed: tests for ^json:string
1754: $.one-line(true) option added (related to feature #1124)
1755:
1756: * src/: classes/json.C, types/pa_value.h: $json-string
1757: $.one-line(true|false) options is now supported (implements
1758: feature #1124)
1759:
1760: * tests/: 380.html, results/380.processed: test for modified
1761: $.max_file_size added (related to bug #1014)
1762:
1763: * tests/: 379.html, results/auto.p: tests for rewritten http file
1764: load added (related to bug #1014)
1765:
1766: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
1767: main/pa_common.C, main/pa_http.C: check_file_size added and used
1768: in curl / file load from disk and http, http file load rewritten
1769: (related to bug #1014)
1770:
1771: 2017-01-18 moko
1772:
1773: * tests/: 378.html, results/378.processed: tests for ^result[]
1774: added (related to feature #66)
1775:
1776: * src/: classes/op.C, include/pa_request.h: ^return[] can't be
1777: Method::CO_WITHOUT_FRAME as frame still added in expression
1778: (related to feature #66)
1779:
1780: 2017-01-17 moko
1781:
1782: * tests/: 377.html, results/377.processed: test for different
1783: combinations of breaks in body and delimiter (related to bug
1784: #1077)
1785:
1786: * tests/: 376.html, results/376.processed: many ^break[] tests
1787: added (related to bug #1077)
1788:
1789: * src/types/pa_vmethod_frame.C: "break is not allowed in expression
1790: passed to native method" exception added to avoid bugs due to
1791: WRITE_EXPR_RESULT skipped and native methods execution continues
1792: after ^break[] (related to bug #1077)
1793:
1794: 2017-01-14 moko
1795:
1796: * tests/: 330.html, results/330.processed: test results updated
1797: after ^break[] bugs where fixed (related to bug #1077)
1798:
1799: * tests/: 329.html, results/329.processed: test results updated
1800: after ^break[] bugs where fixed (related to bug #1077)
1801:
1802: * tests/results/320.processed: ^return[] added
1803:
1804: 2017-01-13 moko
1805:
1806: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
1807: classes/table.C, include/pa_request.h, main/execute.C,
1808: main/pa_request.C, targets/cgi/parser3.C,
1809: types/pa_vmethod_frame.C: Request::SKIP_INTERRUPTED,
1810: Request::SKIP_RETURN added and implemented, Request::SKIP_* now
1811: checked after each possible process/execute call (fixes bug
1812: #1077)
1813:
1814: 2016-12-29 moko
1815:
1816: * src/main/pa_common.C: warning war
1817:
1818: * src/: classes/math.C, include/pa_random.h, include/pa_request.h,
1819: include/pa_types.h, main/pa_request.C, main/pa_string.C:
1820: pa_file_size_limit added, ^math:random fixed for upper limit and
1821: limits more then 0x7FFFFFFF, limits now declared in pa_types.h
1822: (related to feature #1014)
1823:
1824: * src/: classes/curl.C, classes/file.C, include/pa_common.h,
1825: main/pa_common.C, main/pa_dir.C, main/pa_exec.C: stat -> pa_stat
1826: (related to feature #1014)
1827:
1828: 2016-12-28 moko
1829:
1830: * src/: classes/file.C, main/pa_request.C, main/pa_string.C: VS2003
1831: warning war
1832:
1833: 2016-12-26 moko
1834:
1835: * tests/: 341.html, results/341.processed: test for
1836: ^table.hash[id;;$.type[string]] added (related to feature #1057)
1837:
1838: * src/classes/table.C: ^table.hash[id;;$.type[string]] support fix
1839: (related to feature #1057)
1840:
1841: * src/types/pa_vdate.C: warning war continues...
1842:
1843: * src/: classes/date.C, classes/image.C, classes/table.C,
1844: include/pa_config_includes.h, types/pa_vfile.C: warning war
1845:
1846: * src/lib/gd/gifio.C: warning war / cleanup
1847:
1848: * src/lib/json/pa_json.C: warning war
1849:
1850: * src/classes/hash.C: warning war
1851:
1852: * src/types/pa_vfile.C: warning war
1853:
1854: * src/: classes/hash.C, include/pa_common.h, types/pa_vcookie.C:
1855: -Wall warning war continues
1856:
1857: * configure.ac: --with-build-warnings actualized
1858:
1859: 2016-12-25 moko
1860:
1861: * src/main/pa_exec.C: -wAll warning war
1862:
1863: * src/: types/pa_vform.C, types/pa_vrequest.C, main/pa_common.C:
1864: -wAll warning war
1865:
1866: * src/: include/pa_common.h, include/pa_sapi.h,
1867: types/pa_junction.h, types/pa_method.h, types/pa_value.h,
1868: types/pa_vdate.C, types/pa_vstateless_class.h, types/pa_vxdoc.h:
1869: -wAll warning war
1870:
1871: 2016-12-23 moko
1872:
1873: * src/lib/ltdl/Makefile.am: extra dist added
1874:
1875: * tests/results/344.processed: test result updated after $file.text
1876: prefetched in ^hash::create[$file] (related to feature #1075)
1877:
1878: * src/types/: pa_vfile.C, pa_vfile.h: $file.text prefetched in
1879: ^hash::create[$file] (related to feature #1075)
1880:
1881: 2016-12-22 moko
1882:
1883: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
1884: main/pa_request.C, main/pa_stylesheet_connection.C,
1885: types/pa_vfile.C: file_stat now return 64-bit size (implements
1886: #1014 under 32-bit unix versions)
1887:
1888: 2016-12-21 moko
1889:
1890: * tests/: 375.html, results/375.processed: test for exec returning
1891: stated file added (related to feature #1119)
1892:
1893: * src/classes/file.C: load should not return file with null body
1894: (fixes bug #1119)
1895:
1896: 2016-12-14 moko
1897:
1898: * tests/: 374.html, results/374.processed: test for $method.name
1899: added (related to feature #1117) plus method returning junction
1900: test
1901:
1902: 2016-12-13 moko
1903:
1904: * src/: include/pa_symbols.h, main/pa_symbols.C,
1905: types/pa_vjunction.C, types/pa_vjunction.h: $method.name added
1906: (implements feature #1117)
1907:
1908: * src/: types/pa_vform.C, include/pa_request_info.h: now only GET,
1909: HEAD and TRACE can't have body (implements feature #1116)
1910:
1911: 2016-12-09 moko
1912:
1913: * tests/: 373.html, results/373.processed: tests for
1914: ^reflection:tainting added (related to feature #1098)
1915:
1916: * src/classes/reflection.C: ^reflection:tainting arguments order
1917: change (related to feature #1098)
1918:
1919: 2016-12-06 moko
1920:
1921: * src/: classes/reflection.C, include/pa_string.h,
1922: main/pa_string.C: ^reflection:tainting[$string] added (implements
1923: feature #1098)
1924:
1925: 2016-12-05 moko
1926:
1927: * src/types/pa_vdouble.h: negative zero (-0) now converted to 0
1928: (fixes bug #1114)
1929:
1930: 2016-12-04 moko
1931:
1932: * tests/: 206.html, results/206.processed: negative zero (0/-1)
1933: check added
1934:
1935: 2016-12-03 moko
1936:
1937: * tests/: 346-curl.html, results/346-curl.processed: test modified
1938: to test value.as_hash() usage
1939:
1940: * src/classes/curl.C: value.as_hash() used for correct hash
1941: processing
1942:
1943: * src/classes/reflection.C: exceptions texts fixes
1944:
1945: 2016-12-02 moko
1946:
1947: * tests/: 372.html, results/372.processed: tests for
1948: ^reflection:create[ $.class[name] $.constructor[name]
1949: $.arguments[ $.1[param1] $.2[param2] ... ] ] added (related to
1950: feature #1094)
1951:
1952: * src/types/pa_vmethod_frame.h: comment added: params should be
1953: declared outside of *_FRAME_ACTION as MethodParams destructor
1954: will be called in ~VNativeMethodFrame
1955:
1956: * src/classes/reflection.C: ^reflection:create[ $.arguments[ ... ]
1957: ] minor fix
1958:
1959: * src/: classes/reflection.C, types/pa_value.C, types/pa_value.h,
1960: types/pa_vmethod_frame.C: ^reflection:create[ $.class[name]
1961: $.constructor[name] $.arguments[ $.1[param1] $.2[param2] ... ] ]
1962: now supported (implements feature #1094) value::as_hash added
1963: (and should be used everywhere)
1964:
1965: * src/classes/reflection.C: cleanup
1966:
1967: 2016-12-01 moko
1968:
1969: * tests/: 356.html, results/356.processed: test for method
1970: junctions class name added to the resulting hash added (related
1971: to feature #1068)
1972:
1973: * src/classes/reflection.C: for method junctions class name added
1974: to the resulting hash (related to feature #1068)
1975:
1976: 2016-11-30 moko
1977:
1978: * src/types/: pa_vhashfile.C, pa_vhashfile.h: file_name included in
1979: exception (related to bug #1113)
1980:
1981: * src/types/pa_vhashfile.C: whitespace
1982:
1983: * src/main/pa_os.C: errno now returned as it should (fixes bug
1984: #1113)
1985:
1986: * tests/results/: 175.processed, 192.processed, 224.processed,
1987: 229.processed, 239.processed, 244.processed, 246.processed,
1988: 314.processed, 352.processed: tests results updated after method
1989: call exceptions improved as method now keeps its name
1990:
1991: * src/: classes/reflection.C, main/execute.C, types/pa_value.C,
1992: types/pa_vmethod_frame.h: method call exceptions improved as
1993: method now keeps its name
1994:
1995: * tests/: 224.html, 239.html, results/224.processed,
1996: results/239.processed: tests and tests results updated after
1997: Request::construct exception changed
1998:
1999: * src/: classes/reflection.C, main/execute.C: Request::construct
2000: exception optimized
2001:
2002: * tests/: 371.html, results/371.processed: test for
2003: WWrapper.get_element call in $.name.key[value] code added
2004: (related to feature #1091)
2005:
2006: * src/types/pa_wwrapper.h: WWrapper.get_element returned, as used
2007: in $.name.key[value] code (related to feature #1091)
2008:
2009: 2016-11-29 moko
2010:
2011: * src/classes/op.C: VS warning war
2012:
2013: * src/types/: pa_vmethod_frame.h, pa_wcontext.h: VS warning war:
2014: C4239: nonstandard extension used : 'return' : conversion from
2015: 'Value' to 'Value &' (related to feature #1020)
2016:
2017: * src/: main/execute.C, types/pa_vmethod_frame.h,
2018: types/pa_wcontext.h: VS warning war: C4239: nonstandard extension
2019: used : 'return' : conversion from 'Value' to 'Value &' (related
2020: to feature #1020)
2021:
2022: * src/main/execute.C: VS warning war
2023:
2024: * src/targets/cgi/parser3.C: VS compatibility fix
2025:
2026: * src/include/pa_request.h: VS warning war
2027:
2028: * tests/: 370.html, results/370.processed: test for ^file::exec[
2029: ... $.stdin[$binary_file] ] added (related to bug #1044)
2030:
2031: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
2032: include/pa_string.h, main/pa_exec.C: pa_exec now supports
2033: $.stdin[$binary_file] (fixes bug #1044)
2034:
2035: 2016-11-28 moko
2036:
2037: * src/main/pa_exec.C: whitespace
2038:
2039: * src/main/pa_request.C: whitespace
2040:
2041: * tests/: 369.html, results/369.processed: test for
2042: $response:status usage added (related to feature #1099)
2043:
2044: * src/targets/cgi/parser3.C: HTTP response code used as exit status
2045: if < 100 (implements feature #1099)
2046:
2047: * src/targets/cgi/parser3.C: whitespace
2048:
2049: * src/targets/cgi/parser3.C: whitespace
2050:
2051: * tests/: 368.html, results/368.processed: test updated after
2052: ^reflection:filename[$method] added (related to feature #1053)
2053:
2054: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
2055: main/compile.y, main/execute.C, main/pa_request.C,
2056: types/pa_vclass.h: filename -> filespec,
2057: ^reflection:filename[$method] added (related to feature #1053)
2058:
2059: 2016-11-27 moko
2060:
2061: * tests/: 368.html, results/368.processed: test for
2062: reflection:filename[$class or object] added (related to feature
2063: #1053)
2064:
2065: * src/: classes/reflection.C, main/compile.y, types/pa_vclass.h,
2066: types/pa_vstateless_class.h: ^reflection:filename[$class or
2067: object] added (implements feature #1053)
2068:
2069: 2016-11-26 moko
2070:
2071: * src/: include/pa_request_info.h,
2072: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2073: remove_absolute_uri -> strip_absolute_uri
2074:
2075: 2016-11-25 moko
2076:
2077: * src/: include/pa_request_info.h,
2078: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C:
2079: request_info.remove_absolute_uri added to remove possible
2080: http://site.name/ from $request:uri (implements feature #1112)
2081:
2082: 2016-11-24 moko
2083:
2084: * tests/: 367-curl.html, results/367-curl.processed: test for
2085: previous request headers clearing after redirect added (related
2086: to bug #1109)
2087:
2088: * src/: classes/curl.C, include/pa_array.h, include/pa_http.h:
2089: response headers from previous requests are now cleared, only
2090: last request headers are collected (fixes bug #1109)
2091:
2092: * tests/results/: 266.processed, 321.processed, 356.processed:
2093: tests results updated as method name now added to the resulting
2094: hash for new syntax only (Imp1 compatimility fixed, related to
2095: feature #1068)
2096:
2097: * src/classes/reflection.C: method name now added to the resulting
2098: hash for new syntax only (Imp1 compatimility fixed, related to
2099: feature #1068)
2100:
2101: * tests/results/366.processed: test for native and parser
2102: implementation of ^use[] logic (related to feature #1074)
2103:
2104: * tests/: 366.html, 366_dir/test-duplicate.p, 366_dir/test.p: test
2105: for native and parser implementation of ^use[] logic (related to
2106: feature #1074)
2107:
2108: 2016-11-23 moko
2109:
2110: * src/: classes/op.C, include/pa_request.h, main/compile.y,
2111: main/pa_request.C: @USE file now implemented as ^use[file;
2112: $.origin[origin_file] ] (implements feature #1074)
2113:
1.109 moko 2114: 2016-11-21 moko
2115:
1.110 moko 2116: * tests/: 365.html, results/365.processed: test for $caller bugs in
2117: 3.4.4 and $caller.method now tested (related to feature #1110)
2118:
2119: * tests/: 364.html, results/364.processed: $caller usage in
2120: different contexts now tested (related to feature #1110)
2121:
2122: * src/types/types.vcproj: +pa_vcaller_wrapper.h
2123:
2124: * src/types/Makefile.am: pa_vcaller_wrapper.h added
2125:
1.109 moko 2126: * src/: include/pa_symbols.h, main/pa_symbols.C, types/pa_method.h,
2127: types/pa_vcaller_wrapper.h, types/pa_vmethod_frame.C,
2128: types/pa_vmethod_frame.h: redesign: VCallerWrapper added and
2129: used (implements feature #1110)
2130:
2131: 2016-11-20 moko
2132:
2133: * src/types/pa_vdouble.h: whitespace
2134:
2135: 2016-11-11 moko
2136:
2137: * tests/: 363.html, results/363.processed: more tests for feature
2138: #1091 (how parser methods work in expression context)
2139:
2140: * src/: include/pa_request.h, types/pa_vmethod_frame.h: in
2141: expressions strings are now written as strings, not values by
2142: write_as_string (related to feature #1091)
2143:
2144: * src/classes/op.C: to make more correct behavour in expression
2145: context
2146:
2147: 2016-11-07 moko
2148:
2149: * tests/: 362.html, results/362.processed: test for
2150: xsltParseStylesheetDoc caching as xsl modification after it added
2151: (related to bug #1108)
2152:
2153: * src/: classes/xdoc.C, types/pa_vxdoc.h: xsltParseStylesheetDoc
2154: result now cached as xdoc is modified after it (fixes bug #1108)
2155:
2156: 2016-11-06 moko
2157:
2158: * src/types/pa_vxdoc.h: whitespace
2159:
2160: 2016-11-05 moko
2161:
2162: * src/types/pa_vmethod_frame.h: cleanup
2163:
2164: 2016-11-03 moko
2165:
2166: * tests/results/244.processed: more correct exception after method
2167: frames separation
2168:
2169: * src/types/pa_vmethod_frame.h: minor optimizaion
2170:
2171: * src/types/pa_method.h: optimization: params_count added
2172:
2173: * src/: classes/json.C, classes/op.C, classes/reflection.C,
2174: include/pa_request.h, main/execute.C, main/pa_request.C,
2175: types/pa_value.C, types/pa_vmethod_frame.C,
2176: types/pa_vmethod_frame.h, types/pa_vobject.C: Optimization:
2177: VMethodFrame now divided into VNativeMethodFrame,
2178: VParserMethodFrame, VLocalParserMethodFrame; METHOD_FRAME_ACTION,
2179: EXPRESSION_FRAME_ACTION, CONSTRUCTOR_FRAME_ACTION defines added
2180: and used (related to feature #1104)
2181:
2182: 2016-11-02 moko
2183:
2184: * src/: classes/bool.C, classes/curl.C, classes/date.C,
2185: classes/double.C, classes/file.C, classes/hash.C,
2186: classes/hashfile.C, classes/image.C, classes/inet.C,
2187: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
2188: classes/memcached.C, classes/op.C, classes/reflection.C,
2189: classes/regex.C, classes/string.C, classes/table.C,
2190: classes/xdoc.C, classes/xnode.C, include/pa_request.h,
2191: main/execute.C: cleanup: r.write_pass_lang, r.write_no_lang ->
2192: r.write (implements feature #1091)
2193:
2194: * src/main/execute.C: cleanup (related to feature #1104)
2195:
2196: * src/: include/pa_request.h, main/execute.C,
2197: types/pa_vmethod_frame.h, types/pa_wcontext.h: VExpressionFrame
2198: added, in_expression removed (implements feature #1104)
2199:
2200: 2016-10-31 moko
2201:
2202: * src/types/pa_value.C: whitespace
2203:
2204: 2016-10-28 moko
2205:
2206: * tests/results/244.processed: updated after error reporting fixed
2207: in pa_wcontext.C
2208:
2209: * src/types/pa_wcontext.C: error reporting fixed
2210:
2211: * src/types/pa_wcontext.h: whitespace
2212:
2213: * src/classes/image.C: not fully readed entries are no longer
2214: processed (fixes bug #1106)
2215:
2216: 2016-10-26 moko
2217:
2218: * src/classes/image.C: whitespace
2219:
2220: * src/: include/pa_request.h, include/pa_string.h, main/untaint.C,
2221: types/pa_vmail.C, types/pa_vmethod_frame.h, types/pa_wcontext.h,
2222: types/pa_wwrapper.h: optimization: L_PASS_APPENDED removed as no
2223: longer required (related to feature #1091)
2224:
2225: * tests/results/: 264.processed, 350.processed: test results update
2226: reverted (whitespace optimization) after write_no_lang removed :)
2227: (related to feature #1091)
2228:
2229: * src/: classes/file.C, classes/hash.C, classes/op.C,
2230: classes/string.C, classes/table.C, classes/void.C,
2231: classes/xdoc.C, include/pa_request.h, main/pa_xml_io.C,
2232: types/pa_vmail.C: Temp_lang removed, write_no_lang now almost
2233: equal write_pass_lang (related to feature #1091)
2234:
2235: * tests/results/: 264.processed, 350.processed: test results
2236: updated (whitespace optimization) after write_assign_lang removed
2237: (related to feature #1091)
2238:
2239: * tests/: 361.html, results/361.processed: test for non-string
2240: ^untaint added (related to feature #1091)
2241:
2242: * src/: classes/curl.C, classes/date.C, classes/file.C,
2243: classes/hash.C, classes/op.C, classes/string.C,
2244: include/pa_request.h, main/execute.C: optimization:
2245: write_assign_lang removed as not required (first part of feature
2246: #1091 implementation)
2247:
1.108 moko 2248: 2016-10-12 moko
2249:
2250: * tests/: 360.html, results/360.processed: more test code (related
2251: to feature #1104)
2252:
2253: * src/: classes/op.C, classes/reflection.C, include/pa_opcode.h,
2254: include/pa_request.h, main/compile.y, main/execute.C: opcode
2255: OP_PREPARE_TO_EXPRESSION removed as not required, optimized
2256: WContext is next task (implements feature #1104)
2257:
2258: * src/types/pa_method.h: more detailed comment for CO_WITHOUT_FRAME
2259: / CO_WITHOUT_WCONTEXT
2260:
2261: * tests/: 360.html, results/360.processed: test for in expression
2262: state (related to feature #1104)
2263:
2264: 2016-10-11 moko
2265:
2266: * src/main/execute.C: compilation without OPTIMIZE_CALL fixed
2267:
2268: * src/classes/op.C: default value removed from initializer
2269:
2270: * src/types/pa_vmemcached.C: FreeBSD 11 warning war
2271:
2272: * src/types/pa_vmethod_frame.h: FreeBSD 11 warning war
2273:
2274: 2016-10-10 moko
2275:
2276: * tests/results/auto.p: test updated adter $RECOURSION_LIMIT,
2277: $LOOP_LIMIT -> $LIMITS[ $.max_recoursion, $.max_loop ] (related
2278: to feature #42)
2279:
2280: * src/main/pa_request.C: $RECOURSION_LIMIT, $LOOP_LIMIT ->
2281: $LIMITS[ $.max_recoursion, $.max_loop ] (related to feature #42)
2282:
2283: 2016-10-08 moko
2284:
2285: * src/classes/double.C: whitespace
2286:
2287: 2016-10-07 moko
2288:
2289: * src/types/pa_vmethod_frame.h: reorder
2290:
2291: 2016-10-06 moko
2292:
2293: * src/classes/date.C: typo
2294:
2295: * src/types/pa_vmethod_frame.h: whitespace + cleanup
2296:
2297: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2298: classes/op.C, classes/reflection.C, types/pa_vmethod_frame.C,
2299: types/pa_vmethod_frame.h: params.get now returns Value&, not
2300: Value*
2301:
2302: * src/types/pa_vmethod_frame.C: params.get should return Value&.
2303:
2304: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: get_as
2305: removed; first as_* code rewrite
2306:
2307: 2016-10-05 moko
2308:
2309: * src/include/pa_request.h: whitespace
2310:
2311: * tests/: 359.html, results/359.processed: test for VCodeFrame and
2312: intercept_string added (related to feature #1097)
2313:
2314: * src/: classes/image.C, classes/op.C, classes/table.C,
2315: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2316: optimization: intercept_string removed (implements feature #1097)
2317:
2318: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: whitespace
2319:
2320: * src/types/: pa_vcode_frame.h, pa_wwrapper.h: get_element removed
2321: from VCodeFrame and WWrapper as not required
2322:
2323: 2016-10-04 moko
2324:
2325: * src/: classes/curl.C, classes/date.C, classes/double.C,
2326: classes/file.C, classes/hash.C, classes/image.C, classes/inet.C,
2327: classes/int.C, classes/json.C, classes/op.C,
2328: classes/reflection.C, classes/string.C, classes/table.C,
2329: include/pa_request.h, main/execute.C, types/pa_vmethod_frame.C:
2330: proces_to_value -> process after StringOrValue removed (related
2331: to feature #1020)
2332:
2333: * src/classes/form.C: whitespace
2334:
2335: * src/main/execute.C: VALUE__GET_BASE_CLASS added to opcode_names
2336:
2337: * tests/: 357.html, 358.html, results/357.processed,
2338: results/358.processed, results/auto.p: test for @conf
2339: $RECOURSION_LIMIT and $LOOP_LIMIT added (related to feature #42)
2340:
2341: 2016-10-03 moko
2342:
2343: * src/: classes/op.C, include/pa_request.h, main/pa_request.C,
2344: types/pa_vtable.C: @conf $RECOURSION_LIMIT and $LOOP_LIMIT now
2345: supported (implements feature #42)
2346:
2347: * src/types/pa_vregex.h: no reason for VRegex to be
2348: is_evaluated_expr
2349:
2350: * src/classes/curl.C: CURL_OPT(CURL_INT, SSLVERSION) added
2351: (implements feature #1095)
2352:
2353: 2016-10-01 moko
2354:
2355: * src/classes/reflection.C: $.overwrite in ^reflection:mixin is now
2356: false by default (related to feature #1089)
2357:
2358: 2016-09-30 moko
2359:
2360: * src/types/pa_wcontext.h: cleanup
2361:
2362: 2016-09-29 moko
2363:
2364: * src/main/execute.C: whitespace
2365:
2366: * src/include/pa_request.h: whitespace
2367:
2368: * src/: classes/hash.C, classes/hashfile.C, classes/json.C,
2369: classes/op.C, classes/table.C, include/pa_request.h,
2370: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.h,
2371: types/pa_vobject.C, types/pa_wcontext.h: optimization:
2372: StringOrValue removed as it just slows down and adds complexity
2373: (implements feature #1020)
2374:
2375: 2016-09-28 moko
2376:
2377: * tests/: 356.html, results/266.processed, results/321.processed,
2378: results/356.processed: tests updated after name was added to
2379: method_info hash, test for ^reflection:method_info[junction]
2380: added (related to feature #1068)
2381:
2382: * src/classes/reflection.C: ^reflection:method_info[junction] now
2383: supported, method name added to the resulting hash (implements
2384: feature #1068)
2385:
2386: * tests/: 276.html, results/276.processed: more tests for
2387: ^reflection:delete[]
2388:
2389: * src/classes/reflection.C: fixed bug then ^reflection:delete
2390: didn't work on class and could damage native objects (like file)
2391:
2392: 2016-09-26 moko
2393:
2394: * tests/: 345.html, 346-curl.html, 347-curl.html, 348.html,
2395: results/345.processed, results/346-curl.processed,
2396: results/347-curl.processed, results/348.processed: numbers added
2397: to simplify diff analysis
2398:
2399: * tests/: 352.html, results/352.processed: test result updated as
2400: method name used
2401:
2402: * src/classes/reflection.C: method name used
2403:
2404: * src/types/: pa_method.h, pa_vstateless_class.C: method now keeps
2405: its name
2406:
2407: * src/types/pa_method.h: whitespace
2408:
2409: * src/classes/reflection.C: both method and field with one name can
2410: exist.
2411:
2412: * src/classes/reflection.C: ^reflection:mixin added (implements
2413: feature #1089)
2414:
2415: * tests/: 355.html, results/355.processed: property appears in
2416: derived class if added in base test added
2417:
2418: * src/types/pa_vstateless_class.h: get_method declaration +
2419: whitespace
2420:
2421: * tests/: 354.html, results/354.processed: nice test from method
2422: and property with one name in class added
2423:
2424: 2016-09-23 moko
2425:
2426: * src/classes/reflection.C: ^reflection:method usage documented
2427:
2428: 2016-09-22 moko
2429:
2430: * src/: classes/classes.vcproj, types/types.vcproj: we need RTTI as
2431: we use 'dynamic_cast' on polymorphic type 'Value'. Without it
2432: compile warning and GPF occures on VS2003 (related to feature
2433: #1087)
2434:
2435: * tests/: 350.html, results/350.processed: test added for
2436: $.encloser[] support in ^table::create (related to feature #11)
2437:
2438: * src/classes/table.C: another minor fix (related to feature #11)
2439:
1.107 moko 2440: 2016-09-21 moko
2441:
2442: * src/include/pa_config_fixed.h: vs2015 compilation fixes
2443:
2444: * src/: classes/curl.C, classes/file.C, classes/hash.C,
2445: classes/json.C, classes/string.C, classes/table.C,
2446: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
2447: main/pa_common.C, main/pa_http.C, main/pa_request.C,
2448: main/pa_sql_driver_manager.C, types/pa_vfile.C, types/pa_vmail.C,
2449: types/pa_vrequest.C, types/pa_vresponse.C: charsets ->
2450: pa_charsets, vs2015 warning war
2451:
2452: * src/classes/table.C: vs2015 warning war
2453:
2454: * src/types/pa_vdate.C: vs2015 warning war
2455:
2456: * src/main/: pa_common.C, pa_globals.C: vs2015 compilation fixes
2457:
2458: * src/targets/cgi/parser3.vcproj: wsock32 -> ws2_32.lib (winsock 1
2459: -> winsock 2) for vs2015 compatibility (getaddrinfo functions)
2460:
2461: * src/main/pa_common.C: vs2015 compilation fixes
2462:
2463: * src/: include/pa_common.h, lib/smtp/smtp.C, main/pa_common.C:
2464: vs2015 compilation fixes
2465:
2466: * src/main/pa_charset.C: vs2015 warning war
2467:
2468: * src/: classes/file.C, types/pa_wwrapper.h: vs2015 warning war
2469:
2470: * src/main/pa_charset.C: vs2015 warning war
2471:
2472: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: vs2015 warning war
2473:
2474: * src/types/pa_vdate.C: vs2015 compilation fix
2475:
2476: * src/: include/pa_memory.h, main/pa_memory.C: VS2015 warning war
2477:
2478: * src/: lib/json/pa_json.C, classes/mail.C, classes/string.C:
2479: VS2015 compilation fixes
2480:
2481: * src/classes/table.C: minor fix (related to feature #11)
2482:
2483: * tests/results/282.processed: no longer skipping extra enclosers
2484: (related to feature #11)
2485:
2486: * src/classes/table.C: minor fix + no longer skipping extra
2487: enclosers (related to feature #11)
2488:
2489: * src/classes/table.C: minor optimization (related to feature #11)
2490:
2491: * src/classes/table.C: minor fix and optimization (related to
2492: feature #11)
2493:
2494: 2016-09-20 moko
2495:
2496: * tests/: 353.html, results/353.processed: test for
2497: PC.cclass->is_vars_local() check in one_big_piece in ^process[]
2498: added (related to bug #1090)
2499:
2500: * src/main/compile.y: PC.cclass->is_vars_local() check added for
2501: one_big_piece (fixes bug #1090)
2502:
2503: * tests/: 229.html, results/229.processed: code coverage tests
2504:
2505: * src/classes/op.C: bugfix: no more GPF if ^process[$context] (no
2506: body) was called
2507:
2508: * src/classes/op.C: whitespace
2509:
2510: * tests/: 323.html, results/323.processed: test for code junction
2511: should not be returned by ^reflection:class, ^reflection:base
2512:
2513: * src/classes/reflection.C: bugfix: code junction should not be
2514: returned by ^reflection:class, ^reflection:base
2515:
2516: * tests/: 323.html, 352.html, results/352.processed: no more
2517: exception for ^reflection:method[class;no-such-method] (related
2518: to feature #1087)
2519:
2520: * src/classes/reflection.C:
2521: ^reflection:method[class;no-such-method] : exception -> void
2522: (related to feature #1087)
2523:
2524: * src/include/pa_request.h: request::write_value added to allow
2525: write value without convertion (related to issue #1091)
2526:
2527: 2016-09-19 moko
2528:
2529: * src/main/pa_random.C: windows build fix
2530:
2531: * src/types/pa_vhash.h: warning war
2532:
2533: 2016-09-14 moko
2534:
2535: * tests/: 352.html, 552.html, results/352.processed,
2536: results/552.processed: test for ^reflection:method[] extension
2537: added (related to feature #1087)
2538:
2539: * tests/: 552.html, results/552.processed: test for
2540: ^reflection:method[] extension added (related to feature #1087)
2541:
2542: * src/classes/reflection.C: compatibility issue fixed, VClass
2543: dynamic_cast check added (related to feature #1087)
2544:
2545: * tests/: 351.html, results/351.processed: test for @auto[]
2546: inheritance bug diring ^process[] added (related to bug #1088)
2547:
2548: * src/: classes/op.C, main/pa_request.C,
2549: types/pa_vstateless_class.C: set_method now checks for @auto[] to
2550: disable it inheritance during ^process (fixes bug #1088)
2551:
2552: * src/classes/reflection.C: ^reflection:method[$class:method;$self]
2553: added (implements feature #1087)
2554:
2555: 2016-09-13 moko
2556:
2557: * tests/: 349.html, results/auto.p: test for objects prototyping
2558: added and $OBJECT-PROTOTYPE(false) is used for old tests (related
2559: to feature #1086)
2560:
2561: * src/: main/pa_request.C, types/pa_vclass.C, types/pa_vclass.h,
2562: types/pa_vobject.C: objects now are not class instances, but have
2563: class as prototype, can be overridden by $OBJECT-PROTOTYPE(false)
2564: in @conf (implements feature #1086)
2565:
2566: 2016-09-08 moko
2567:
2568: * src/: classes/file.C, classes/mail.C, classes/string.C,
2569: classes/table.C, main/pa_http.C, main/pa_string.C,
2570: include/pa_string.h: cleanup: string::split limit argument
2571: removed as no longer required, pos_after no longer reference
2572: (related to feature #11)
2573:
2574: * src/classes/table.C, tests/results/348.processed: now exception
2575: is rised when invalid option is passed to ^table::create[]
2576:
2577: * tests/: 282.cfg, 282.html, results/282.processed: more code
2578: coverage tests
2579:
2580: * tests/: 348.html, results/348.processed: code coverage tests
2581: added
2582:
2583: * tests/: 348.html, results/348.processed: generic ^table::create[]
2584: tests
2585:
2586: * tests/: 035.html, results/035.processed, results/272.processed:
2587: tests updated after $.encloser[] support for ^table::create
2588: implementation (related to feature #11)
2589:
2590: * src/classes/table.C: $.encloser[] support for ^table::create
2591: finally added (implements feature #11)
2592:
2593: 2016-09-07 moko
2594:
2595: * src/include/pa_string.h: added StringSplitHelper as friend
2596: (related to feature #11)
2597:
2598: * src/include/pa_string.h: body and langs now protected, not
2599: private to allow inheritance (related to feature #11)
2600:
2601: * src/classes/table.C: lsplit optimized before cloning for
2602: ^table::create with $.encloser[] (related to feature #11)
2603:
2604: * src/classes/table.C: optimizaion: TableControlChars.separators
2605: added and used (related to feature #11)
2606:
2607: * src/classes/table.C: spelling:
2608:
2609: TableSeparators -> TableControlChars column -> separator
2610: separators -> control_chars
2611:
2612: 2016-09-06 moko
2613:
2614: * src/main/pa_string.C: whitespace
2615:
2616: * src/main/pa_string.C: whitespace
2617:
2618: 2016-09-01 moko
2619:
2620: * tests/: 347-curl.html, results/347-curl.processed: to make tests
2621: results OS-independent
2622:
2623: * src/: include/pa_http.h, main/pa_http.C: typo bugfix for clang
2624: compiler (related to feature #1042)
2625:
2626: 2016-08-15 moko
2627:
2628: * src/include/pa_string.h: whitespace
2629:
2630: * src/classes/table.C: whitespace
2631:
1.106 moko 2632: 2016-08-05 moko
2633:
2634: * tests/: 344.html, results/344.processed: test for
2635: ^hash::create[$file] added (related to feature #1075)
2636:
2637: * src/types/: pa_vfile.h, pa_vmail.C: ^hash::create[$file] now
2638: supported (implements feature #1075)
2639:
2640: 2016-08-04 moko
2641:
2642: * tests/: 341.html, results/341.processed: more code coverage tests
2643:
2644: * tests/: 346-curl.html, results/346-curl.processed: more code
2645: coverage tests for curl
2646:
2647: * tests/: 346-curl.html, results/346-curl.processed: more code
2648: coverage tests for curl
2649:
2650: * tests/: 223-curl.html, 223.html, results/223-curl.processed,
2651: results/223.processed: code coverage tests: $.form[ $.table[] ]
2652: test added
2653:
2654: * tests/: 223-curl.html, results/223-curl.processed: more code
2655: coverage tests for curl
2656:
2657: 2016-08-03 moko
2658:
2659: * src/classes/curl.C: dlink(curl_library) now called not once, but
2660: until it will be loaded, allowing to find existing library.
2661:
2662: * tests/: 346-curl.html, 347-curl.html, results/346-curl.processed,
2663: results/347-curl.processed: more code coverage tests for curl
2664:
2665: * tests/: 339-curl.html, 339.html, 346-curl.html, Makefile,
2666: results/339-curl.processed, results/346-curl.processed: curl
2667: functionality tests
2668:
2669: 2016-08-02 moko
2670:
2671: * tests/: 339.html, results/339.processed: test for tables in
2672: ^file:load[] and ^curl:load[] (commented) added (related to
2673: feature #1042)
2674:
2675: * tests/: 345.html, results/345.processed: code coverage tests for
2676: file class
2677:
2678: * tests/: 344.html, results/344.processed: code coverage tests
2679:
2680: * tests/: 344.html, results/344.processed: mdate removed from
2681: output
2682:
2683: * src/classes/file.C: minor bugfix: is_text should be taked from
2684: fcontent.is_text_mode() if not set (related to feature #1061)
2685:
2686: * tests/: 344.html, results/344.processed: more tests
2687:
2688: * tests/: 343.html, 344.html, results/343.processed,
2689: results/344.processed: tests for ^file::create[ $.from-charset
2690: and $.to-charset ] (related to feature #1061)
2691:
2692: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2693: aset_text_mode argument optimized
2694:
2695: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2696: checkBOM now used in detect_binary_content (related to feature
2697: #1061)
2698:
2699: * src/main/pa_request.C: load_charset no longer required to_upper
2700:
2701: * src/types/pa_vfile.C: bugfix: ^file::create[$text_file;...] now
2702: preserves original file mode (if no $.mode specified)
2703:
2704: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h:
2705: ^file::create now supports $.from-charset[] and $.to-charset
2706: options (implements feature #1061), automatic transcode is done
2707: if text file is created from binary file and charset is detected.
2708:
2709: 2016-07-30 moko
2710:
2711: * src/classes/table.C: ^t.hash[..;] now supported (related to
2712: feature #1057)
2713:
2714: * tests/: 341.html, results/341.processed: test for ^t.hash[..;]
2715: added (related to feature #1057)
2716:
2717: * tests/: 286.html, results/286.processed: code tests coverage
2718:
2719: 2016-07-29 moko
2720:
2721: * src/classes/table.C: table size should be checked inside menu and
2722: foreach (related to feature #858)
2723:
2724: * src/: classes/curl.C, classes/file.C, classes/string.C,
2725: classes/xdoc.C, include/pa_charsets.h, main/pa_charsets.C,
2726: main/pa_common.C, main/pa_http.C, main/pa_sql_driver_manager.C,
2727: types/pa_vmail.C, types/pa_vrequest.C, types/pa_vresponse.C:
2728: charsets.get now does str_upper inside (related to feature #1061)
2729:
2730: * tests/: 342.html, results/342.processed: more code coverage tests
2731:
2732: * tests/: 342.html, outputs/342.processed: table menu code coverage
2733: + foreach test added (related to feature #858)
2734:
2735: * tests/: 341.html, results/341.processed: tests for
2736: ^table.hash[]{code} added + code coverage tests (related to
2737: feature #1057)
2738:
2739: * src/: include/pa_common.h, classes/table.C: ^table.hash[]{code as
2740: value} support (implements feature #1057)
2741:
2742: * src/classes/table.C: whitespace
2743:
2744: 2016-07-28 moko
2745:
2746: * src/: classes/curl.C, types/pa_vfile.C: curl now saves filename
2747: from URL, if not specified query string removed from url-based
2748: filenames in ^curl:load[] and ^file::load[] (related to feature
2749: #1042)
2750:
2751: 2016-07-27 moko
2752:
2753: * tests/: 340.html, results/340.processed: test for
2754: transcode_text_result=false added (related to issue #1042)
2755:
2756: 2016-07-26 moko
2757:
2758: * src/types/pa_vfile.C: file name should not be empty (if file path
2759: is folder and ends with /) (related to feature #1042)
2760:
2761: * src/main/pa_http.C: whitespace optimizaion
2762:
2763: * src/: classes/curl.C, include/pa_common.h, include/pa_http.h,
2764: main/pa_common.C, main/pa_http.C: ^curl:load[] now support
2765: multiple headers, ^file::load supports headers transcoding
2766: (implements feature #1042)
2767:
2768: 2016-07-25 moko
2769:
2770: * src/include/pa_common.h: PA_DEFAULT added
2771:
2772: 2016-07-22 moko
2773:
2774: * tests/: 338.html, results/338.processed: test for
2775: $date.field(value) added (related to feature #1066)
2776:
2777: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
2778: $date.field(value) now supported for y/m/d/h/m/s (implements
2779: feature #1066)
2780:
1.105 moko 2781: 2016-07-21 moko
2782:
2783: * src/: classes/file.C, classes/image.C, include/pa_common.h,
2784: main/pa_common.C: pa_common.h: File_read_action: fname, as_text
2785: arguments removed; image.C - absolute path shown in exception
2786: (implements feature #1071)
2787:
2788: * tests/: 235.html, results/235.processed: test and test result
2789: updated after static boundary in mail and Errors-To: mail header
2790: removed (related to feature #1047)
2791:
2792: * src/: classes/math.C, include/pa_random.h, main/pa_http.C,
2793: main/pa_random.C, types/pa_vmail.C: get_uuid_boundary() added and
2794: used, static boundary in mail removed, Errors-To: mail header
2795: removed (implements feature #1047)
2796:
2797: 2016-07-20 moko
2798:
2799: * src/: classes/reflection.C, types/pa_vstateless_class.h:
2800: equest.classes(): Value -> VStateless_class, part 3 (related to
2801: issue #1051)
2802:
2803: * src/: classes/reflection.C, include/pa_request.h, main/execute.C:
2804: request.classes(): Value -> VStateless_class, part 2 (related to
2805: issue #1051)
2806:
2807: * tests/results/: 224.processed, 323.processed: classes without
2808: methods should not be methoded (related to issue #1051)
2809:
2810: * src/: classes/reflection.C, include/pa_request.h, main/compile.y,
2811: main/compile_tools.h, main/pa_request.C: request.classes(): Value
2812: -> VStateless_class, part 1 (related to issue #1051)
2813:
2814: * tests/: 337.html, results/337.processed: test for
2815: ^reflection:fields_reference[] and VHashReference class added
2816: (related to feature #1072)
2817:
2818: * src/: classes/hash.C, classes/json.C, classes/reflection.C,
2819: types/pa_value.h, types/pa_vhash.h, types/pa_vobject.h: VHashBase
2820: and VHashReference added, allowing ^reflection:fields_reference[]
2821: implementation (closes feature #1072)
2822:
2823: 2016-07-19 moko
2824:
2825: * tests/: 323.html, results/323.processed: we want to see
2826: "methoded"
2827:
2828: * tests/: 336.html, results/336.processed: test for $BASE:property
2829: and ^BASE:method (OP_VALUE__GET_BASE_CLASS) added (related to bug
2830: #1059)
2831:
2832: * src/: include/pa_opcode.h, main/compile.y, main/execute.C,
2833: types/pa_vstateless_class.h, types/pa_wcontext.h: no more
2834: somebody_entered_some_class, $BASE:property works again,
2835: ^BASE:method[] bugs fixed (fixes bug #1059)
2836:
2837: 2016-07-14 moko
2838:
2839: * tests/: 335.html, results/335.processed: test for feature #1055
2840: added
2841:
2842: * src/classes/hash.C: bugfix: $._default was not copied if empty
2843: feature: ^hash.contains[_default] added (implements feature
2844: #1055)
2845:
2846: 2016-07-13 moko
2847:
2848: * src/classes/reflection.C: bugfix: ^reflection:def[class;name]
2849: should not call @autouse (http://www.parser.ru/forum/?id=83480)
2850:
2851: 2016-07-05 moko
2852:
2853: * src/classes/hash.C: Optimization: HashStringValue::Iterator used
2854: in ^hash.foreach (related to feature #1073)
2855:
2856: 2016-07-04 moko
2857:
2858: * tests/: 134.html, 281.html, results/134.processed,
2859: results/281.processed: tests updated after hash blocking removed
2860: (related to feature #1073)
2861:
2862: * src/: classes/hash.C, include/pa_hash.h, types/pa_vhash.h: hash
2863: no longer blocks on change during foreach (implements feature
2864: #1073)
2865:
2866: 2016-06-17 moko
2867:
2868: * tests/: 330.html, results/330.processed: try exception source
2869: test added (related to bug in #1062)
2870:
2871: * tests/: 334.html, results/334.processed: Exception stack trace
2872: test added (related to bug in $1062)
2873:
2874: * src/classes/op.C: Exception trace now correctly restored and
2875: errors reported (related to bug #1062)
2876:
1.104 moko 2877: 2016-05-25 moko
2878:
2879: * src/main/compile.y: minor cleanup + beauty
2880:
2881: 2016-05-24 moko
2882:
2883: * tests/: 333.html, results/333.processed: more exceptions testing
2884:
2885: * tests/: 332.html, results/332.processed: test for FIELDS_SYMBOL,
2886: _DEFAULT_SYMBOL, CALLER_SYMBOL, SELF_SYMBOL added (related to
2887: features #1056, #1026)
2888:
2889: * src/: classes/json.C, include/pa_symbols.h, main/pa_symbols.C,
2890: types/pa_vhash.C, types/pa_vhash.h, types/pa_vtable.C,
2891: types/pa_vtable.h: FIELDS_SYMBOL, _DEFAULT_SYMBOL added and used
2892: (implements feature #1056)
2893:
2894: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2895: main/execute.C, main/pa_symbols.C, types/pa_vjunction.C,
2896: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
2897: CLASS_SYMBOL, CLASS_NAME_SYMBOL added and used (related to
2898: feature #1026)
2899:
2900: * src/: classes/reflection.C, include/pa_symbols.h, main/compile.y,
2901: main/compile_tools.C, main/compile_tools.h, main/pa_symbols.C,
2902: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: Symbols now
2903: have *_SYMBOL naming convention. STATIC_SYMBOL, DYNAMIC_SYMBOL,
2904: LOCALS_SYMBOL, PARTIAL_SYMBOL, REM_SYMBOL where added (related to
2905: feature #1026)
2906:
2907: * src/: include/pa_symbols.h, main/compile.y, main/compile_tools.C,
2908: main/pa_globals.C, main/pa_symbols.C, types/pa_vmethod_frame.C,
2909: types/pa_vmethod_frame.h, types/pa_vstateless_class.C:
2910: SYMBOLS_CACHING define implemented (related to feature #1026)
2911:
2912: * src/main/main.vcproj: + ps_symbols
2913:
2914: * src/: include/Makefile.am, include/pa_string.h,
2915: include/pa_symbols.h, main/Makefile.am, main/compile.tab.C,
2916: main/compile.y, main/compile_tools.C, main/pa_symbols.C,
2917: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
2918: types/pa_vstateless_class.C: initial implementation for symbols
2919: cache (related to feature #1026)
2920:
2921: * src/: include/pa_common.h, main/pa_http.C: minor cleanup
2922:
2923: * src/main/pa_globals.C: minor cleanup
2924:
2925: 2016-05-19 moko
2926:
2927: * src/types/pa_vhash.h: minor optimization: ^hash.fields[] removed
2928: (related to feature #1046)
2929:
2930: * tests/: 331.html, results/331.processed: test for
2931: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE removal added
2932: (related to feature #1051)
2933:
2934: * src/main/compile.y:
2935: BAD_NONWHITESPACE_CHARACTER_IN_EXPLICIT_RESULT_MODE error removed
2936: (implements feature #1054)
2937:
2938: 2016-05-18 moko
2939:
2940: * src/types/pa_vtable.C, tests/results/324.processed: no more
2941: "column not found" exception for ^table.no-such-method[] (related
2942: to feature #1046)
2943:
2944: * tests/: 261.html, results/261.processed: test added and updated
2945: after feature #1046 implementation
2946:
2947: * src/: classes/string.C, types/pa_value.C, types/pa_vstring.h,
2948: types/pa_vvoid.h: $string.anything works for whitespace strings,
2949: ^string.contains added for hash compatibility, $string.method no
2950: longer returns stting method (implements feature #1046)
2951:
2952: 2016-05-12 moko
2953:
2954: * src/classes/curl.C: content-type response header no longer
2955: ignored (fixes issue #1045)
2956:
2957: * tests/: 330.html, results/330.processed: test for incomplete
2958: finally execution when break occures added (related to issue
2959: #1077)
2960:
2961: * src/classes/op.C: bugfix: Request::skip reset is called before
2962: executing catch and finally code (fixes issue #1062)
2963:
2964: 2016-05-11 moko
2965:
2966: * tests/: 329.html, results/329.processed: test for invalid
2967: ^break[] behavour added (bug #1077)
2968:
2969: * src/classes/op.C: try_catch code cleanup (related to bug #1062)
2970:
2971: 2016-04-24 moko
2972:
2973: * src/types/pa_vstateless_class.h: warning war
2974:
2975: 2016-04-17 moko
2976:
2977: * tests/: 328.html, results/328.processed: test for
2978: ^break(condition) and ^continue(condition) (related to feature
2979: #1063)
2980:
2981: * src/classes/op.C: ^break(condition) and ^continue(condition)
2982: implemented (feature #1063)
2983:
2984: 2016-04-12 moko
2985:
2986: * tests/results/280.processed: ordered hash now used for class
2987: methods and properties (test results updated for feature #1069)
2988:
2989: * src/classes/: xdoc.C, xnode.C: xnode_class initialization moved
2990: to xdoc.C as under FreeBSD it was inited after and inheritance
2991: failed (related to issue #1051)
2992:
2993: * tests/: 320.html, results/320.processed: xdoc and xnode methods
2994: are printed to check inheritance (related to feature #1051)
2995:
1.103 moko 2996: 2016-04-09 moko
2997:
2998: * tests/results/320.processed: ordered hash now used for class
2999: methods and properties (test results updated for feature #1069)
3000:
3001: * src/types/pa_vstateless_class.h: ordered hash now used for class
3002: methods and properties (implements feature #1069)
3003:
3004: * src/types/: pa_vconsole.h, pa_vcookie.C, pa_venv.C,
3005: pa_vrequest.C, pa_vstatus.C: minor optimization: #ifndef
3006: OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL returned (related to
3007: feature #1051)
3008:
3009: 2016-04-07 moko
3010:
3011: * src/main/execute.C: returned Value in .CLASS case for VJunction
3012: (related to feature #1051)
3013:
3014: * src/types/: pa_vjunction.C, pa_vmethod_frame.C,
3015: pa_vmethod_frame.h, pa_vstateless_class.C, pa_vstateless_class.h:
3016: string constants deduplication (related to feature #1051)
3017:
3018: * tests/results/224.processed: test result updated (related to
3019: feature #1051)
3020:
3021: * src/: main/execute.C, types/pa_vconsole.h, types/pa_vcookie.C,
3022: types/pa_vcookie.h, types/pa_venv.C, types/pa_venv.h,
3023: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vstatus.C,
3024: types/pa_vstatus.h: classes hash now contains only
3025: VStateless_class derived objects, .CLASS is also allways
3026: VStateless_class derived object (related to feature #1051).
3027:
3028: 2016-04-06 moko
3029:
3030: * tests/results/323.processed: test result updated after feature
3031: #1051 implementation
3032:
3033: * src/: classes/classes.h, classes/op.C, classes/response.C,
3034: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
3035: main/pa_request.C, types/pa_vclass.h, types/pa_vform.C,
3036: types/pa_vmail.C, types/pa_vmath.C, types/pa_vmemory.h,
3037: types/pa_vresponse.C, types/pa_vresponse.h,
3038: types/pa_vstateless_class.h: base -> methoded_donor for static
3039: classes, type() moved from VStateless_class to VClass and
3040: Methoded (implements feature #1051)
3041:
3042: 2016-04-04 moko
3043:
3044: * src/: classes/classes.C, include/pa_request.h, main/pa_request.C:
3045: beauty: put_class added (related to feature #1051)
3046:
3047: 2016-04-01 moko
3048:
3049: * tests/results/: 175.processed, 192.processed, 224.processed,
3050: 229.processed, 244.processed, 246.processed, 316.processed: test
3051: results updated as class.type() removed from error messages, only
3052: type() left (related to feature #1051)
3053:
3054: * src/: classes/classes.C, classes/classes.h, classes/mail.C,
3055: classes/op.C, classes/reflection.C, main/compile.y,
3056: main/compile_tools.h, main/execute.C, main/pa_request.C,
3057: types/pa_value.C, types/pa_vclass.C, types/pa_vclass.h,
3058: types/pa_vmethod_frame.h, types/pa_vobject.h,
3059: types/pa_vstateless_class.h, types/pa_wcontext.C: name() removed
3060: from VStateless_class, type() is used instead (related to feature
3061: #1051)
3062:
3063: * src/classes/mail.C: old logic restored.
3064:
3065: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
3066: classes/classes.h, classes/curl.C, classes/date.C,
3067: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
3068: classes/hashfile.C, classes/image.C, classes/inet.C,
3069: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
3070: classes/memcached.C, classes/memory.C, classes/reflection.C,
3071: classes/regex.C, classes/response.C, classes/string.C,
3072: classes/table.C, classes/xdoc.C, classes/xnode.C,
3073: types/pa_vform.C, types/pa_vmail.C, types/pa_vmath.C,
3074: types/pa_vmemory.h: optimizaion: *_base_class removed (related to
3075: feature #1051)
3076:
3077: 2016-03-30 moko
3078:
3079: * tests/: 327.html, results/224.processed, results/327.processed:
3080: test for TZ specification in ^date::create[], TZ is kept during
3081: ^date::create[$dt] (related to feature #1048)
3082:
3083: * src/: classes/date.C, types/pa_vdate.h: TZ can be specified in
3084: ^date::create[], TZ is kept during ^date::create[$dt] (implements
3085: feature #1048)
3086:
3087: 2016-03-29 moko
3088:
3089: * tests/: 315.html, results/315.processed: test for timezone format
3090: +HHmm added (related to feature #1065)
3091:
3092: * src/classes/date.C: timezone format +HHmm now supported
3093: (implements feature #1065)
3094:
3095: 2016-03-28 moko
3096:
3097: * tests/: 202.html, results/131.processed, results/202.processed,
3098: results/224.processed, results/256.processed,
3099: results/315.processed: test results updated after %.2d now
3100: default for hours offset in iso-string (was %2d), test for
3101: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3102: added (related to feature #1065)
3103:
3104: 2016-03-27 moko
3105:
3106: * src/types/pa_vdate.C: '+' sign for zero offset (related to
3107: feature #1065)
3108:
3109: * src/: classes/date.C, types/pa_vdate.C, types/pa_vdate.h:
3110: ^date.iso-string options $.colon(true) $.z(true) $.ms(false)
3111: added (implements feature #1065)
3112:
3113: 2016-03-24 moko
3114:
3115: * tests/: 202.html, results/202.processed: test $date.week added
3116: (related to bug #1067)
3117:
3118: * src/types/: pa_vdate.C, pa_vdate.h: fix for $date.week changed
3119: date (fix for bug #1067)
3120:
3121: 2016-03-10 moko
3122:
3123: * configure.ac, src/include/pa_version.h: 3.4.4 -> 3.4.5b
3124:
1.102 moko 3125: 2015-12-07 moko
3126:
3127: * tests/: 326.html, results/326.processed: test for .CLASS &
3128: .CLASS_NAME optimization added (related to feature #844)
3129:
3130: 2015-11-17 moko
3131:
3132: * tests/: 323.html, results/323.processed: order added
3133:
3134: * tests/: 325.html, results/325.processed: double range test added
3135: (related to bug #1049)
3136:
3137: 2015-11-16 moko
3138:
3139: * src/: classes/string.C, types/pa_vdouble.h: finite(double) check
3140: added to disallow NaN and Infinity (fixes bug #1049)
3141:
3142: 2015-11-11 moko
3143:
3144: * tests/324.html: parser 3.4.3 execution support added (related to
3145: feature #1017)
3146:
3147: * tests/: 324.html, results/324.processed: test for
3148: GET_ELEMENT4CALL feature added (feature #1017)
3149:
1.101 moko 3150: 2015-10-29 moko
3151:
3152: * operators.txt: updated for 3.4.4
3153:
3154: * configure.ac, src/include/pa_version.h: 3.4.4rc -> 3.4.4
3155:
3156: * src/main/pa_exec.C: get_exit_status implemented for Windows
3157: (related to bug #1043)
3158:
3159: 2015-10-28 moko
3160:
3161: * src/main/pa_exec.C: Windows bugfix: $.stdin[] no longer cause
3162: hangup during ^file::exec (fixes bug #1043)
3163:
1.100 moko 3164: 2015-10-27 moko
3165:
3166: * src/main/pa_memory.C: pa_fail_alloc added for GC_abort in Windows
3167:
1.99 moko 3168: 2015-10-26 moko
3169:
1.100 moko 3170: * tests/322.html, src/classes/reflection.C: arguments reorder
3171: (related to issue #1041)
3172:
3173: * src/: classes/classes.awk, main/helpers/simple_folding.pl:
3174: Copyright year updated
3175:
1.99 moko 3176: * src/: classes/bool.C, classes/classes.C, classes/classes.h,
3177: classes/curl.C, classes/date.C, classes/double.C, classes/file.C,
3178: classes/form.C, classes/hash.C, classes/hashfile.C,
3179: classes/image.C, classes/inet.C, classes/int.C, classes/json.C,
3180: classes/mail.C, classes/math.C, classes/memcached.C,
3181: classes/memory.C, classes/op.C, classes/reflection.C,
3182: classes/regex.C, classes/response.C, classes/string.C,
3183: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
3184: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
3185: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
3186: include/pa_config_fixed.h, include/pa_config_includes.h,
3187: include/pa_dictionary.h, include/pa_dir.h,
3188: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
3189: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
3190: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
3191: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
3192: include/pa_request_charsets.h, include/pa_request_info.h,
3193: include/pa_sapi.h, include/pa_socks.h,
3194: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
3195: include/pa_stack.h, include/pa_string.h,
3196: include/pa_stylesheet_connection.h,
3197: include/pa_stylesheet_manager.h, include/pa_table.h,
3198: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
3199: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
3200: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
3201: lib/md5/pa_md5c.c, lib/memcached/pa_memcached.C,
3202: lib/memcached/pa_memcached.h, lib/sdbm/pa_file_io.C,
3203: lib/sdbm/pa_strings.C, lib/smtp/comms.C, lib/smtp/smtp.C,
3204: lib/smtp/smtp.h, main/compile.C, main/compile.tab.C,
3205: main/compile.y, main/compile_tools.C, main/compile_tools.h,
3206: main/execute.C, main/pa_cache_managers.C, main/pa_charset.C,
3207: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
3208: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
3209: main/pa_globals.C, main/pa_http.C, main/pa_memory.C,
3210: main/pa_os.C, main/pa_pool.C, main/pa_random.C,
3211: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
3212: main/pa_string.C, main/pa_stylesheet_connection.C,
3213: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
3214: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
3215: sql/pa_sql_driver.h, targets/apache/mod_parser3.c,
3216: targets/apache/mod_parser3_core.C, targets/apache/pa_httpd.h,
3217: targets/apache/pa_threads.C, targets/cgi/pa_threads.C,
3218: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
3219: targets/isapi/parser3isapi.C, types/pa_junction.h,
3220: types/pa_method.h, types/pa_property.h, types/pa_value.C,
3221: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
3222: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
3223: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.C,
3224: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
3225: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
3226: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
3227: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
3228: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
3229: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
3230: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
3231: types/pa_vmemcached.C, types/pa_vmemcached.h, types/pa_vmemory.h,
3232: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
3233: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
3234: types/pa_vregex.h, types/pa_vrequest.C, types/pa_vrequest.h,
3235: types/pa_vresponse.C, types/pa_vresponse.h,
3236: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
3237: types/pa_vstateless_object.h, types/pa_vstatus.C,
3238: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
3239: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
3240: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3241: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
3242: types/pa_wcontext.h, types/pa_wwrapper.h: Copyright year updated
3243:
3244: * src/targets/cgi/parser3.C: year updated
3245:
3246: * src/classes/reflection.C: VS2003 compatibility fixed (related to
3247: issue #1041)
3248:
3249: * tests/: 323.html, results/323.processed: test for base classes
3250: added
3251:
3252: * tests/: 261.html, results/261.processed: updated after better
3253: error reporting done for $string.key exception
3254:
3255: * src/types/pa_vstring.h: better error report for $string.key
3256: exception
3257:
3258: * src/types/: pa_vobject.C, pa_vobject.h: VObject::get_element
3259: copied as VObject::get_element4call to remove extra virtual call
3260:
3261: * tests/: 322.html, results/322.processed: test for
3262: ^reflection:is[] added (related to feature #1041)
3263:
3264: * src/classes/reflection.C: ^reflection:is empty value is void
3265: (related to feature #1041)
3266:
3267: * src/classes/reflection.C:
3268: ^reflection:is[class_name|code|method;[context;]element_name]
3269: added (implements feature #1041)
3270:
3271: 2015-10-24 moko
3272:
3273: * configure.ac, src/include/pa_version.h: 3.4.4b -> 3.4.4rc
3274:
1.98 moko 3275: 2015-10-22 moko
3276:
3277: * tests/: 321.html, results/321.processed: test for
3278: ^reflection:method_info[] file detection added
3279:
3280: * tests/: 320.html, results/320.processed: test for
3281: ^reflection:class_by_name[class_name] added (related to feature
3282: #993)
3283:
3284: * src/classes/reflection.C: ^reflection:class_by_name[class_name]
3285: added (implements feature #993)
3286:
3287: * src/main/execute.C: GET_ELEMENT4CALL added to get_method_filename
3288: (related to feature #1017)
3289:
3290: * tests/: 319.html, results/319.processed: ^throw[] stacktrace test
3291: added (related to issue #1039)
3292:
3293: * src/main/pa_request.C: ^throw origin fixed (related to feature
3294: #1039)
3295:
3296: * src/types/pa_vcookie.C: bugfix: expires_sec should not be called
3297: for VDate
3298:
3299: * tests/results/182.processed: updated after feature #1038
3300: implemented
3301:
3302: * tests/: 318.html, 182_dir/a6.p, results/318.processed: test for
3303: compile-time exception origin added (test for feature #1039)
3304:
3305: * src/: include/pa_request.h, main/compile.C, main/compile.y,
3306: main/pa_request.C: exception unification: compile-time exceptions
3307: now have origin, @USE origins also tracked (implements feature
3308: #1039)
3309:
3310: 2015-10-20 moko
3311:
3312: * src/main/pa_request.C: cleanup
3313:
3314: 2015-10-15 moko
3315:
3316: * src/types/pa_vtable.C: defines fixed (related to feature #1017)
3317:
3318: * src/: classes/hash.C, include/pa_opcode.h, types/pa_vhash.h,
3319: types/pa_vtable.C: new feature: no more $table.method and
3320: $hash.method, aliases for _at, _count, _key (related to feature
3321: #1017)
3322:
1.97 moko 3323: 2015-10-14 moko
3324:
1.98 moko 3325: * tests/: 317.html, results/317.processed: test for
3326: ^string.unescape[] added (related to feature #120)
3327:
1.97 moko 3328: * buildall: reverted libxml 2.9.2 -> 2.9.1 due to "ID already
3329: defined" bug (described in issue #1036)
3330:
3331: * tests/: 247.html, results/247.processed: test for checkBOM added
3332: (test for bug #1037)
3333:
3334: * src/: include/pa_charsets.h, main/pa_charsets.C,
3335: main/pa_common.C, main/pa_http.C: checkBOM detects charset if
3336: it's not enforced, skips BOM signature if it complies charset
3337: (fixes bug #1037)
3338:
3339: 2015-10-13 moko
3340:
3341: * src/targets/cgi/parser3.vcproj: disabling buggy incremental
3342: linking
3343:
3344: * src/classes/inet.C: vs2003 compilation fix
3345:
3346: * src/classes/math.C: warning war
3347:
3348: * src/lib/punycode/pa_punycode.c: warning war
3349:
3350: 2015-10-12 moko
3351:
3352: * src/lib/punycode/pa_punycode.c: warning war
3353:
3354: * parser3.sln: moved parser3 first, to make it default startup
3355: project
3356:
3357: * buildall: parser "mirror" now used for external libs sources
3358: (implements feature #1036)
3359:
3360: * buildall: most external libs are updated to their current
3361: versions (related to feature #1036)
3362:
3363: * src/classes/image.C: more tags added
3364:
3365: * src/: include/pa_memory.h, types/pa_vdate.C: warning war
3366:
3367: 2015-10-11 moko
3368:
3369: * src/classes/curl.C: minor optimization (related to feature #1035)
3370:
3371: 2015-10-09 moko
3372:
3373: * src/classes/curl.C: pa_strdup added for strings from curl
3374: (related to feature #1035)
3375:
3376: * src/main/pa_string.C: mini fix: RedHat 7.2 does not have
3377: ULLONG_MAX definition
3378:
3379: * src/classes/curl.C: ^curl:info[name]/^curl:info[] added
3380: (implements feature #1035)
3381:
3382: * src/main/pa_charset.C: String::Body(String::C) used
3383:
3384: * src/main/pa_charset.C: exceptions unified
3385:
3386: * src/: include/pa_charset.h, main/pa_charset.C: declarations
3387: unified
3388:
3389: * src/: classes/file.C, classes/image.C, classes/mail.C,
3390: classes/op.C, classes/xdoc.C, classes/xnode.C,
3391: include/pa_string.h, main/pa_request.C, main/pa_string.C,
3392: types/pa_vimage.C, types/pa_vmath.C, types/pa_vstatus.C,
3393: types/pa_vxdoc.C: explicit String::Body(char) calls removed;
3394: String::Body(String::C) constructor added (related to bug #957)
3395:
3396: * src/classes/file.C: minor optimization
3397:
3398: * src/include/pa_hash.h: hash.get(char*) added, to minimize
3399: Cord(char*) autocreation (related to bug #957)
3400:
3401: * src/: classes/string.C, main/untaint.C: minor optimizations
3402:
3403: * src/: classes/json.C, classes/reflection.C, include/pa_string.h:
3404: String(char*, Lang, length) removed, String(C(), Lang) used
3405: instead (related to bug #957)
3406:
3407: 2015-10-08 moko
3408:
3409: * src/: classes/file.C, include/pa_string.h, lib/cord/cordbscs.c,
3410: lib/cord/include/cord.h, main/pa_http.C, main/pa_string.C,
3411: main/untaint.C: Now char * is converted to CORD only using
3412: AS_CORD() to check for empty cord bug (fixes bug #957)
3413:
3414: * src/include/pa_hash.h: fixed compilation without
3415: HASH_CODE_CACHING
3416:
3417: * src/classes/string.C:
3418: ^string:unescape[js|uri;escaped;$.charset[...]] added (implements
3419: feature #120)
3420:
3421: * src/main/pa_common.C: reduce js flags checks count (related to
3422: feature #120)
3423:
1.96 moko 3424: 2015-10-07 moko
3425:
3426: * tests/: 275.html, results/275.processed: test modified after
3427: unsigned long long int support implemented (feature #1034)
3428:
3429: * src/: classes/math.C, include/pa_string.h, main/pa_string.C:
3430: pa_atoul added for unsigned long long int support
3431:
3432: 2015-10-06 moko
3433:
3434: * src/types/pa_vdate.C: INT_MAX used
3435:
3436: 2015-10-03 moko
3437:
3438: * tests/: 302.html, results/302.processed: test for bug #1023
3439: (\u2028, \u2029 escaping) added
3440:
3441: * src/main/untaint.C: \u2028, \u2029 are now escaped in
3442: json:string[] (fixes bug #1023)
3443:
3444: 2015-09-29 moko
3445:
3446: * tests/305.html: try-catch added for OS without ipv6 support
3447:
3448: * src/lib/json/pa_json.C: more unique prefixes for Solaris
3449: compilation
3450:
3451: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.y,
3452: main/execute.C, types/pa_value.h, types/pa_vhash.h,
3453: types/pa_vtable.C, types/pa_vtable.h: get_element4call
3454: implemented to distinguish ^hash.method from $hash.field
3455: (implements feature #1017)
3456:
3457: * src/lib/punycode/pa_punycode.c: warning war
3458:
3459: * src/include/pa_config_includes.h: warning war
3460:
3461: * src/include/pa_config_includes.h: pragma warning actualized a bit
3462:
3463: * src/include/pa_config_includes.h: warning war
3464:
3465: * src/include/pa_hash.h: clang compilation fix
3466:
3467: 2015-09-27 moko
3468:
3469: * src/main/compile.tab.C: Bison 3 is now default
3470:
3471: * src/main/: compile.C, compile.y: Bison 3 compatibility fixed
3472:
3473: 2015-09-25 moko
3474:
3475: * src/: classes/hash.C, include/pa_hash.h: parser now compiles and
3476: works with undefined HASH_ORDER (related to feature #196)
3477:
3478: 2015-09-24 moko
3479:
3480: * tests/: 027.html, results/027.processed: test modified to test
3481: ^hash.sort (feature #196)
3482:
3483: * src/: classes/hash.C, include/pa_hash.h:
3484: ^hash.sort[key;value]{string-key-maker}|(numeric-key-maker)[[asc|desc]]
3485: added (implements feature #196)
3486:
3487: * tests/: 316.html, results/316.processed: Added test for bug #1025
3488: (exception handling in non-cached ^cache), plus for "it does not
3489: have logical value" and "$exception.handled value must be either
3490: boolean or string 'cache'" exceptions.
3491:
3492: * src/classes/op.C: ^cache: exceptions now handled in non-cached
3493: code (fixes bug #1025)
3494:
1.95 moko 3495: 2015-09-23 moko
3496:
3497: * src/classes/table.C: warning war
3498:
3499: * src/: classes/math.C, types/pa_vcookie.C: warning war
3500:
3501: * src/classes/file.C: warning war
3502:
3503: * src/: include/pa_table.h, main/pa_table.C: warning war
3504:
3505: * src/: main/pa_request.C, classes/date.C: warning war
3506:
3507: * src/: types/pa_vdate.C, classes/op.C: warning war
3508:
3509: * tests/: 122.html, results/122.processed: win sync: to remove
3510: differences with OS that doesn't keep timezone change history
3511:
3512: * src/types/pa_vdate.C: tzset() should be called in Windows after
3513: TZ change (related to feature #36)
3514:
3515: * tests/: 075.html, results/075.processed: win sync: to remove
3516: differences with OS that doesn't keep timezone change history
3517:
3518: * tests/: 315.html, results/315.processed: win sync: to remove
3519: differences with OS that doesn't keep timezone change history
3520:
3521: * tests/: 256.html, results/256.processed: win sync: to remove
3522: differences with OS that doesn't keep timezone change history
3523:
3524: * tests/: 124.html, results/124.processed: win results sync: to
3525: avoid hitting time change hole.
3526:
3527: * src/types/pa_vdate.C: static returned. :)
3528:
3529: 2015-09-22 moko
3530:
3531: * src/types/pa_vdate.C: FreeBSD 10 GPF fix (related to feature #36)
3532:
3533: * tests/results/131.processed: more tests for feature #1032
3534:
3535: * src/classes/date.C: minor fix related to feature #1032
3536:
3537: * operators.txt: ISO date creation documented (related to feature
3538: #1032)
3539:
3540: * operators.txt: iso-string documented (related to feature #1032)
3541:
3542: * tests/: 315.html, results/315.processed: more tests added
3543: (related to feature #1032)
3544:
3545: * tests/: 131.html, results/131.processed: date range checks
3546: updated (related to feature #36)
3547:
3548: * tests/: 315.html, results/057.processed, results/315.processed:
3549: test added for ISO date support (related to issue #315)
3550:
3551: * src/classes/date.C: more readable exceptions in date creation
3552: (related to ticket #1032)
3553:
3554: 2015-09-18 moko
3555:
3556: * tests/: 202.html, results/202.processed: ^date.iso-string[] check
3557: added (related to issue #1032)
3558:
3559: * tests/results/256.processed, src/classes/json.C: iso-string
3560: documented (related to issue #1032)
3561:
3562: * tests/: 256.html, results/256.processed: ISO date check added
3563: (related to issue #1032)
3564:
3565: * tests/: 057.html, results/057.processed, results/224.processed:
3566: tests results updated after ISO date support implemented (related
3567: to feature #1032)
3568:
3569: * src/: classes/date.C, classes/image.C, types/pa_value.h,
3570: types/pa_vdate.C, types/pa_vdate.h: ISO 8601 dates support added,
3571: ^date::create[string] constructor formalized, ^date.iso-string[]
3572: added (implements feature #1032)
3573:
3574: 2015-09-05 moko
3575:
3576: * operators.txt: actualized
3577:
3578: * operators.txt: date changes documented (related to ticket #36)
3579:
3580: 2015-09-04 moko
3581:
3582: * src/types/pa_vdate.C: warning war
3583:
3584: * src/: classes/op.C, types/pa_vhashfile.C: warning war
3585:
3586: 2015-09-03 moko
3587:
3588: * tests/results/096.processed: test result updated for 0..9999 year
3589: date range support (related to feature #36)
3590:
3591: * tests/: 314.html, results/314.processed: test for
3592: ^string:base64[], ^string:idna[], ^string:js-escape[] (related to
3593: bug #1031)
3594:
3595: * src/classes/string.C: Static calls fixed for ^string:base64[],
3596: ^string:idna[], ^string:js-escape[] (closes bug #1031)
3597:
1.116 moko 3598: * Makefile.am, acsite.m4, configure.ac, configure.in: Warning war:
3599: configure.in -> configure.ac
1.95 moko 3600:
1.116 moko 3601: * configure, configure.in, src/include/pa_config_auto.h.in: more
3602: correct timezone check for FreeBSD Warning war: configure.in ->
3603: configure.ac
1.95 moko 3604:
3605: * configure, configure.in, src/classes/Makefile.am,
1.116 moko 3606: src/include/pa_config_auto.h.in, src/lib/cord/Makefile.am,
3607: src/lib/gd/Makefile.am, src/lib/json/Makefile.am,
3608: src/lib/memcached/Makefile.am, src/lib/pcre/Makefile.am,
3609: src/lib/sdbm/Makefile.am, src/lib/smtp/Makefile.am,
3610: src/main/Makefile.am, src/targets/apache/Makefile.am,
3611: src/targets/cgi/Makefile.am, src/types/Makefile.am: INCLUDES ->
1.95 moko 3612: AM_CPPFLAGS (warning war) PA_DATE64 (0..9999 year date range)
3613: check added
3614:
3615: * src/types/pa_vdate.C: FreeBSD fixes + more robust code
3616:
3617: * tests/results/: 124.processed, 224.processed: test resuls updated
3618: for new date implementation (related to feature #36)
3619:
3620: * src/: classes/date.C, classes/image.C, include/pa_common.h,
3621: main/pa_common.C, types/pa_value.C, types/pa_vdate.C,
3622: types/pa_vdate.h: new double date implementation with internal
3623: support for extended 0..9999 year range, default timezone support
3624: (related to feature #36)
3625:
3626: 2015-08-28 moko
3627:
3628: * src/types/pa_vmail.C: fixed $mail:received.date calculations
3629: (fixes bug #1030)
3630:
3631: 2015-08-21 moko
3632:
3633: * src/classes/inet.C: snprintf size "bug" commented
3634:
3635: * src/main/pa_common.C: snprintf comments updated
3636:
3637: 2015-08-16 moko
3638:
3639: * src/types/: pa_vdate.C, pa_vdate.h: logic moved to pa_vdate.C
3640:
3641: 2015-08-11 moko
3642:
3643: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
3644: types/pa_vclass.C, types/pa_vobject.C: hash_json_string argument
3645: can be null (fixes bug #1029)
3646:
3647: 2015-08-06 moko
3648:
1.116 moko 3649: * src/types/: Makefile.am, pa_vdate.C, pa_vdate.h, types.vcproj:
3650: pa_vdate.C added
1.95 moko 3651:
3652: 2015-08-05 moko
3653:
3654: * tests/: 313.html, results/313.processed: test for
3655: ^table.count[columns] and ^table.flip[] with nameless tables
3656: (feature #1003)
3657:
3658: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
3659: max_cell added, now ^table.count[columns] and ^table.flip[] works
3660: correctly for nameless tables (implements feature #1003)
3661:
3662: 2015-08-03 moko
3663:
3664: * tests/312.html: test for ^table.append[$hash] and
3665: ^table.insert[$hash] added (related to feature #1028)
3666:
3667: * src/classes/table.C: ^table.append[$hash] and
3668: ^table.insert[$hash] now supported (implements feature #1028)
3669:
3670: * tests/: 312.html, results/312.processed: test row copy in
3671: ^table.hash[; $.type[table] ] added (related to feature #1016)
3672:
3673: * src/classes/table.C: row copy now created in ^table.hash[;
3674: $.type[table] ] (related to feature #1016)
3675:
3676: 2015-07-29 moko
3677:
3678: * tests/: 312.html, results/312.processed: test for ^table.delete[]
3679: added (related to feature #1016)
3680:
3681: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
3682: ^table.delete[] added to delete current row (related to feature
3683: 1016)
3684:
3685: 2015-07-28 moko
3686:
3687: * tests/: 312.html, results/312.processed: test for
3688: $table.column[value] and ^table.insert{row} (related to feature
3689: #1016)
3690:
3691: * src/: classes/table.C, include/pa_table.h, main/pa_table.C,
3692: types/pa_vtable.C, types/pa_vtable.h: $table.column[value] and
3693: ^table.insert{row} are now implemented (feature #1016)
3694:
3695: * src/include/pa_array.h: Optimization: bool reverse removed from
3696: append(), insert() added, memmove arguments order in remove()
3697: fixed (related to feature #1016)
3698:
3699: 2015-07-23 moko
3700:
3701: * src/classes/json.C: tainted json and empty json exception added
3702: (implements feature #1015)
3703:
3704: * tests/: 311.html, results/311.processed: empty json and tainted
3705: json exception test added (related to issue #1015)
3706:
3707: 2015-07-22 moko
3708:
3709: * tests/: 311.html, results/311.processed: test for UTF-8
3710: processing added
3711:
3712: * tests/: 311.html, results/311.processed: test for
3713: json_exception_with_source added (related to issue #394)
3714:
3715: * src/classes/json.C: json_exception_with_source added (implements
3716: feature #394)
3717:
3718: 2015-06-29 moko
3719:
3720: * src/: classes/file.C, include/pa_dir.h, main/pa_dir.C:
3721: directories are now correctly determined if _d_type == DT_UNKNOWN
3722: (closes bug #1027)
3723:
3724: 2015-06-10 moko
3725:
3726: * src/types/pa_vxnode.h: extern "C" not requred and causes build
3727: error if libxml has LIBXML_ICU_ENABLED.
3728:
3729: 2015-06-04 moko
3730:
3731: * tests/099.html: ups, reverting
3732:
3733: * tests/: 099.html, 309.html, 310.html, results/309.processed,
3734: results/310.processed: tests for $response:body[ $.file[] ] and
3735: $response:last-modified added
3736:
3737: * src/main/pa_request.C: last-modified check fixed
3738:
3739: 2015-06-03 moko
3740:
3741: * tests/: 204.html, 205.html, 293.html, results/204.processed,
3742: results/205.processed, results/293.processed: $response:headers
3743: logging added (tests for feature #1007)
3744:
3745: * src/: include/pa_common.h, include/pa_request.h,
3746: main/pa_request.C, types/pa_vmail.C, types/pa_vresponse.C:
3747: $response:headers are now in uppercase (closes feature #1007)
3748:
3749: 2015-06-02 moko
3750:
3751: * src/: include/pa_memory.h, classes/math.C: some of -pedantic
3752: build errors reverted for clang compatibility
3753:
3754: 2015-06-01 moko
3755:
3756: * src/include/pa_memory.h: -pedantic build errors fixed
3757:
3758: * src/classes/math.C: -pedantic build error fixed
3759:
3760: * src/classes/table.C: USE_STRINGSTREAM moved to the correct place
3761:
3762: 2015-05-31 moko
3763:
3764: * src/classes/table.C: USE_STRINGSTREAM optimized
3765:
3766: * src/: classes/file.C, classes/math.C, include/pa_opcode.h,
3767: include/pa_string.h, lib/json/pa_json.h, main/compile_tools.h,
3768: main/pa_charset.C, main/pa_globals.C, main/pa_string.C,
3769: types/pa_vmail.C, types/pa_vmethod_frame.C, types/pa_vregex.C,
3770: types/pa_vxnode.h: warning war (-pedantic flag)
3771:
3772: 2015-05-28 moko
3773:
3774: * tests/: 308.html, results/308.processed: test for
3775: ^table::create[$t;], etc work added (related to bug #975)
3776:
3777: * src/classes/table.C: check_option_param removed,
3778: ^table::create[$t;], etc now works (fixes bug #975)
3779:
3780: 2015-05-27 moko
3781:
3782: * src/main/pa_request.C: Invalid response filename in gcc 4.9.2
3783: (Debian jessie) fixed (closes issue #1024)
3784:
3785: * tests/Makefile: sort added as in Debian jessie list become
3786: unsorted
3787:
3788: 2015-05-18 moko
3789:
3790: * tests/: 201.html, results/201.processed: test for
3791: ^string.trim[what] feature #1022
3792:
3793: * src/classes/string.C: ^string.trim[what] now supported,
3794: implements feature #1022
3795:
3796: 2015-05-17 moko
3797:
3798: * tests/results/185.processed: test result updated as feature #1021
3799: implemented (left/right accept negative parameter)
3800:
3801: * src/classes/string.C: left/right now accept negative parameter
3802: (implements feature #1021)
3803:
3804: 2015-05-08 moko
3805:
3806: * src/classes/math.C: isalnum -> pa_isalnum
3807:
3808: * src/main/execute.C: optimization in getter-junction processing
3809: (related to issue #997)
3810:
3811: 2015-05-07 moko
3812:
3813: * tests/: 307.html, results/307.processed: test for issue #997
3814: added
3815:
3816: * src/main/execute.C: process_getter result now checked if junction
3817: returned (closes issue #997)
3818:
3819: * tests/: 305.html, results/305.processed: sort added to ignore
3820: different order
3821:
3822: * src/types/pa_vxnode.C: & now untainted in $node.nodeValue
3823: assignment (closes issue #994)
3824:
3825: * tests/: 306.html, results/306.processed: test for issue #994
3826: added
3827:
3828: * tests/: 303.html, results/303.processed: two more errors tested
3829:
3830: 2015-05-06 moko
3831:
3832: * tests/: 305.html, results/305.processed: test for name2ip &
3833: ip2name added (related to feature #992)
3834:
3835: * tests/: 303.html, 304.html, results/303.processed,
3836: results/304.processed: tests for idna conversion added (related
3837: to issue #849)
3838:
3839: 2015-05-02 moko
3840:
3841: * src/classes/inet.C: ^inet:ip2name[] and ^inet:name2ip[]
3842: implemented
3843:
3844: 2015-04-30 moko
3845:
3846: * src/main/pa_http.C: idna_host added, related to issue #849
3847:
3848: * src/main/pa_http.C: set_addr corrected, pa_idna_encode call added
3849: (related to issue #849)
3850:
3851: 2015-04-24 moko
3852:
3853: * src/types/pa_vjunction.C: warning war
3854:
3855: * src/lib/punycode/: pa_idna.h, pa_punycode.h: code style
3856: unification
3857:
3858: * src/lib/punycode/pa_idna.c: warning war
3859:
3860: 2015-04-22 moko
3861:
3862: * src/main/main.vcproj: punycode include path added
3863:
3864: * src/lib/punycode/pa_idna.c: windows compile error fixed
3865:
3866: * src/lib/punycode/pa_idna.c: warning war
3867:
3868: * parser3.sln, src/lib/punycode/punycode.vcproj: punycode windows
3869: project file added
3870:
3871: * src/lib/punycode/pa_convert_utf.c: debug compilation fix
3872:
3873: * src/include/pa_memory.h: warning war
3874:
3875: * src/: classes/string.C, include/pa_common.h, main/pa_common.C:
3876: ^string:idna[xn--...], ^string.idna[] - idna conversion support
3877: implemented (related to feature #849)
3878:
3879: * configure.in, src/main/Makefile.am,
3880: src/targets/apache/Makefile.am, src/targets/cgi/Makefile.am:
3881: libpunycode added in Unix
3882:
3883: 2015-04-21 moko
3884:
3885: * configure.in: large files support
3886:
3887: 2015-04-15 moko
3888:
3889: * src/lib/punycode/: Makefile.am, pa_convert_utf.c,
3890: pa_convert_utf.h, pa_idna.c, pa_idna.h, pa_punycode.c,
3891: pa_punycode.h: initial version for punycode/idna support library
3892: (ticket #849)
3893:
3894: 2015-04-08 moko
3895:
3896: * src/: classes/curl.C, classes/date.C, classes/file.C,
3897: classes/image.C, classes/mail.C, classes/reflection.C,
3898: classes/string.C, classes/xnode.C, include/pa_request.h,
3899: include/pa_string.h, include/pa_stylesheet_connection.h,
3900: main/compile.y, main/compile_tools.h, main/execute.C,
3901: main/pa_common.C, main/pa_request.C, main/pa_string.C,
3902: main/pa_xml_io.C, main/untaint.C, types/pa_vclass.C,
3903: types/pa_vcookie.C, types/pa_vfile.C, types/pa_vform.C,
3904: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
3905: types/pa_wwrapper.h, main/compile.tab.C: removed most of the
3906: clang compiler warnings (closes issue #1018)
3907:
3908: * src/include/pa_string.h: String::Body comparation operators with
3909: char * added (related to issue #958)
3910:
3911: 2015-04-07 moko
3912:
3913: * src/main/compile.tab.C: YYMALLOC/YYFREE defined to
3914: pa_malloc/pa_free to remove system malloc/free usage (related to
3915: issue #1018)
3916:
3917: * src/: classes/table.C, classes/xdoc.C, doc/memory.dox,
3918: include/pa_hash.h, include/pa_memory.h, lib/gd/gif.C,
3919: lib/gd/gif.h, lib/smtp/smtp.C, main/compile.y, main/pa_charset.C,
3920: main/pa_http.C, main/pa_request.C, main/pa_string.C,
3921: main/pa_xml_io.C, targets/apache/mod_parser3_core.C,
3922: types/pa_vconsole.h, types/pa_vdouble.h, types/pa_vfile.C,
3923: types/pa_vform.C, types/pa_vint.h: new(UseGC) replaced with new,
3924: malloc/strdup/free replaced with pa_ version and checks for
3925: accidental use of non-pa_ version added (related to issue #1018)
3926:
3927: 2015-04-03 moko
3928:
3929: * buildall: pcre-8.33 -> pcre-8.36
3930:
3931: * src/: main/compile.y, classes/form.C, classes/mail.C,
3932: classes/op.C, classes/string.C, main/compile.tab.C,
3933: main/compile_tools.C, main/pa_http.C, main/pa_request.C,
3934: main/pa_sql_driver_manager.C, types/pa_vfile.C,
3935: types/pa_vhashfile.C: C++11 compilation errors fixed (related to
3936: ticket #958)
3937:
3938: * src/: classes/file.C, include/pa_common.h, include/pa_sapi.h,
3939: main/pa_common.C, main/pa_http.C, main/pa_request.C,
3940: targets/apache/mod_parser3_core.C, targets/cgi/parser3.C,
3941: targets/isapi/parser3isapi.C, types/pa_venv.C, types/pa_vform.C,
3942: types/pa_vform.h, types/pa_vrequest.C, types/pa_vrequest.h:
3943: $request:headers, $request:method added (implements feature
3944: #1007)
3945:
3946: 2015-03-17 misha
3947:
3948: * tests/302.html: - test for
3949: ^json:string[...;$._default[method-name]]
3950:
3951: * src/: classes/json.C, types/pa_value.C, types/pa_value.h,
3952: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C: - if
3953: option $._default[method-name] is specified in ^json:string[], a
3954: method with specified name will be called for classes/objects
3955: serialization ( new feature: #982 )
3956:
3957: 2015-03-16 misha
3958:
3959: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
3960: main/compile_tools.h, main/execute.C, types/pa_vconsole.h,
3961: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.C,
3962: types/pa_venv.h, types/pa_vform.C, types/pa_vform.h,
3963: types/pa_vhashfile.h, types/pa_vjunction.C, types/pa_vjunction.h,
3964: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
3965: types/pa_vmemory.h, types/pa_vmethod_frame.C,
3966: types/pa_vmethod_frame.h, types/pa_vregex.C, types/pa_vrequest.C,
3967: types/pa_vrequest.h, types/pa_vstateless_class.C,
3968: types/pa_vstateless_class.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
3969: types/pa_vxnode.C, types/pa_vxnode.h: - $var.CLASS &
3970: $var.CLASS_NAME now have special opcodes. This can be switched
3971: off by commenting #define OPTIMIZE_BYTECODE_GET_ELEMENT__SPECIAL
3972: on pa_opcode.h ( new feature: #844 )
3973:
3974: 2015-03-15 misha
3975:
3976: * tests/075.html: - test for $response:header[]
3977:
3978: * src/types/pa_vresponse.C: - $response:header[] deletes header
3979: that was set earlie ( new feature: #1001 )
3980:
3981: 2015-03-12 misha
3982:
3983: * tests/246.html: - more tests for ^hash._at[]
3984:
3985: * src/: classes/hash.C, include/pa_hash.h: - ^õýø._at[...] now
3986: accepts second param [key|value|hash] ( new feature: #1012 )
3987:
3988: 2015-03-09 moko
3989:
3990: * src/types/pa_vmail.C: exception for everything but
3991: $mail:received, closes issue #1011
3992:
3993: 2015-02-20 moko
3994:
3995: * tests/: 275.html, results/275.processed: hex detection in
3996: pa_atoui fix test (closes issue #1010)
3997:
3998: * src/main/pa_string.C: hex detection in pa_atoui fixed (closes
3999: issue #1010)
4000:
4001: 2015-02-17 moko
4002:
4003: * src/types/pa_vmail.C: closes issue #1009 - mail content should be
4004: tainted.
4005:
4006: 2015-02-03 misha
4007:
4008: * tests/301.html: - test for ^json:string($double) causes
4009: exception. bugfix: #1008
4010:
4011: * src/classes/json.C: - ^json:string($double) causes exception.
4012: bugfix: #1008
4013:
4014: * tests/014.html: - updated for work with ^hash.delete[]
4015:
4016: 2015-01-12 misha
4017:
4018: * src/: classes/form.C, include/pa_common.h,
4019: include/pa_request_info.h, main/pa_common.C, types/pa_vform.C,
4020: types/pa_vform.h: - supports body with PUT method as well ( new
4021: feature: #1006 )
4022:
4023: * src/classes/file.C: - warnings war
4024:
4025: 2015-01-11 misha
4026:
4027: * tests/300.html: - test for ^hash.delete[] is added
4028:
4029: * src/classes/hash.C: - ^hash.delete[] clear all hash ( new
4030: feature: #989 ) - tiny optimization in intersects
4031:
4032: 2015-01-06 moko
4033:
4034: * src/types/pa_vmail.C: file names transcode added, to and cc added
4035: with transcode, attachments detection fixed
4036:
4037: * src/main/pa_request.C: filling mail received after cgi/auto.p
4038: load to allow charset switch (related to issue #996)
4039:
4040: 2014-12-31 moko
4041:
4042: * src/types/pa_vmail.C: from and subject now transcoded if not
4043: UTF-8 source charset (fixes issue 996)
4044:
4045: * src/main/pa_exception.C: fixed string from stack bug (closes
4046: issue #1000)
4047:
4048: 2014-12-11 misha
4049:
4050: * src/types/pa_vhashfile.C: - check if key is not empty before
4051: access ( bug fix: #1005 )
4052:
4053: 2014-11-13 misha
4054:
4055: * src/main/compile.y: - PC.append does not reset to false while
4056: creating a new class. bugfix: #990
4057:
4058: * tests/299.html: - test for creation class after working with
4059: partial class (create+append)
4060:
4061: * src/types/pa_vobject.C: - @GET[def] always returns true. bugfix:
4062: #995
4063:
4064: * tests/232.html: - test for @get[def] added
4065:
4066: 2014-10-12 moko
4067:
4068: * src/lib/pcre/pcre_internal.vcproj: correct path
4069:
4070: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
4071: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
4072: lib/pcre/pcre_internal.vcproj, main/main.vcproj,
4073: targets/apache/ApacheModuleParser3.vcproj,
4074: targets/apache/ApacheModuleParser3Core.vcproj,
4075: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4076: types/types.vcproj: project GUID inserted in *.vcproj for correct
4077: conversion in newer VS versions
4078:
4079: * parser3.sln, src/lib/pcre/pcre_internal.vcproj:
4080: pcre_internal.vcproj added
4081:
4082: 2014-08-28 moko
4083:
4084: * src/lib/pcre/: Makefile.am, pa_pcre_chartables.c,
4085: pa_pcre_internal.h, pa_pcre_valid_utf8.c: _pcre_default_tables
4086: and pcre_valid_utf are copied to parser3 code (fixes issue #991)
4087:
4088: 2014-06-30 misha
4089:
4090: * tests/298.html: - tests for ^reflection:def[class;className]
4091: added
4092:
4093: * src/classes/reflection.C: - ^reflection:def[class;className]
4094: added ( new feature: #918 )
4095:
4096: 2014-06-29 misha
4097:
4098: * src/classes/table.C: - ^table::create[unsupported data] -
4099: exception comment changed to "body must be table or code" ( bug
4100: fix: #951 )
4101:
4102: * tests/: 261.html, results/261.processed: - tests for
4103: ^json:string[...;$.void[null|string]] added
4104:
4105: * src/: classes/json.C, types/pa_value.h, types/pa_vvoid.h: - new
4106: option $.void[string|null] added to ^json:string[...] ( new
4107: feature: #952 )
4108:
4109: 2014-06-28 moko
4110:
4111: * src/classes/curl.C: $.charset now processed before other curl
4112: options (closes issue #980)
4113:
4114: 2014-05-23 misha
4115:
4116: * src/classes/json.C: - bug fix: #987
4117:
4118: 2014-05-04 misha
4119:
4120: * tests/: 253.html, 253_json.txt: - test for
4121: ^json:parse[$.int(false)] is added
4122:
4123: * src/classes/json.C: - To ^json:parse[] added option $.int(bool,
4124: default true). The option is similar to $.double(bool) but for
4125: integers.
4126:
4127: 2014-05-01 moko
4128:
4129: * src/classes/file.C: "PARSER_VERSION" -> PARSER_VERSION ( bugfix:
4130: #12 )
4131:
4132: 2014-04-16 moko
4133:
4134: * src/main/pa_http.C: response-charset option should finally work
4135: now (fix for issue #867)
4136:
4137: * src/main/pa_http.C: response-charset option should work now (fix
4138: for issue #867)
4139:
4140: 2014-03-07 moko
4141:
4142: * buildall: libgc moved
4143:
4144: * buildall: libgc moved
4145:
4146: 2013-12-29 moko
4147:
4148: * src/classes/string.C: ^string:js-unescape result now tainted,
4149: closes issue #966
4150:
4151: * tests/: 186.html, results/186.processed: ^string:js-unescape
4152: result now tainted, issue #966
4153:
4154: 2013-12-03 moko
4155:
4156: * src/: classes/memcached.C, types/pa_vmemcached.C,
4157: types/pa_vmemcached.h: memcached open $.skip-connect(true|false)
4158: option was added for http://www.parser.ru/forum/?id=79343
4159:
4160: * src/classes/file.C: bugfix for
4161: http://www.parser.ru/forum/?id=79337
4162:
4163: 2013-11-05 moko
4164:
4165: * configure.in, src/include/pa_version.h: 3.4.3 -> 3.4.4b
4166:
4167: * src/main/pa_globals.C: spelling fixed
4168:
4169: 2013-10-29 moko
4170:
4171: * src/lib/json/json.vcproj: json.c -> pa_json.C
4172:
4173: * src/lib/json/pa_json.C: C++ compatibility addes, related to issue
4174: #892
4175:
4176: * src/: classes/json.C, lib/json/Makefile.am, lib/json/json.c,
4177: lib/json/json.h, lib/json/pa_json.C: json.c -> pa_json.C (for
4178: exceptions to be thrown thougth json library), related to issue
4179: #892
4180:
4181: * src/main/pa_charset.C: avoid compilation bug in Debian 6.0.8 x32,
4182: related to issue #896
4183:
4184: 2013-10-24 moko
4185:
4186: * configure.in, src/include/pa_version.h: 3.4.3rc -> 3.4.3
4187:
4188: 2013-10-23 moko
4189:
4190: * README: actualization
4191:
4192: 2013-10-22 moko
4193:
4194: * src/targets/apache/mod_parser3.c: Adopted apache 2.4
4195: compatibility patch from Sergey Kirpichev
4196:
4197: * tests/: 297.html, results/297.processed: non-working getter fix
4198: test for issue #948
4199:
4200: * src/: include/pa_request.h, main/pa_request.C: Now getter is not
4201: called when saving value of $match variable in ^string.match[] to
4202: increase compatibility (related to issue #948).
4203:
4204: * src/: include/pa_request.h, targets/cgi/parser3.C: minor header
4205: usage optimization
4206:
4207: 2013-10-21 moko
4208:
4209: * tests/: 182.html, results/182.processed: local path removed for
4210: compatibility
4211:
4212: * tests/: 244.html, 253.html, 254.html, 275.html, 281.html,
4213: results/244.processed, results/253.processed,
4214: results/254.processed, results/275.processed,
4215: results/281.processed: try_catch -> try-catch
4216:
4217: * tests/: 288.html, 294.html, 296.html, results/288.processed,
4218: results/294.processed, results/296.processed: try_catch ->
4219: try-catch
4220:
4221: 2013-10-20 moko
4222:
4223: * tests/: 296.html, results/296.processed: test for xsl exception
4224: for issue #938 added.
4225:
4226: * src/: include/pa_xml_exception.h,
4227: main/pa_stylesheet_connection.C: forgotten to be replaced
4228: XmlException is now replaced (once again closes issue #938)
4229:
4230: 2013-10-18 moko
4231:
4232: * buildall: disable clock_gettime detection to avoid librt linking
4233: (which in turn depends on libpthread), related to issue #943
4234:
4235: 2013-10-18 misha
4236:
4237: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
4238: lib/smtp/smtp.vcproj, main/main.vcproj,
4239: targets/apache/ApacheModuleParser3Core.vcproj,
4240: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
4241: types/types.vcproj: - new locations for libxml2 includes where
4242: added to vcproj files
4243:
4244: 2013-10-18 moko
4245:
4246: * src/classes/: hashfile.C, op.C: hopefully last part of issue #948
4247: fix
4248:
4249: * tests/: 295.html, results/295.processed: test for issue #948
4250: updated
4251:
4252: * src/classes/table.C: hopefully last lost part for issue #948 fix.
4253: :)
4254:
4255: * tests/: 295.html, results/295.processed: test for issue #948
4256: added
4257:
4258: * src/: classes/hash.C, classes/string.C, classes/table.C,
4259: include/pa_request.h, types/pa_method.h: for getters and setters
4260: to be executed request.put_element should be called, not
4261: context.put_element (fixes issue #948)
4262:
4263: 2013-10-17 moko
4264:
4265: * src/classes/xdoc.C: libxml 2.9.1 compatibility with define
4266: LIBXML2_NEW_BUFFER check (closes issue #943)
4267:
4268: * buildall: libxml 2.9.1 build is broken --without-reader.
4269:
4270: 2013-10-16 moko
4271:
4272: * configure.in, src/include/pa_version.h: 3.4.3b -> 3.4.3rc
4273:
4274: * tests/: 294.html, results/294.processed: test for issue #938
4275:
4276: * src/: classes/xdoc.C, classes/xnode.C,
4277: include/pa_xml_exception.h, main/pa_xml_exception.C: XmlException
4278: now calls fixUTF8 if source charset is UTF-8 (closes issue #938)
4279:
4280: * buildall: pcre-8.30 -> pcre-8.33 libxml2-2.8.0 -> libxml2-2.9.1
4281: libxslt-1.1.26 -> libxslt-1.1.28
4282:
4283: * src/: include/pa_charset.h, lib/pcre/pa_pcre_internal.h,
4284: main/pa_charset.C: fixUTF8 method added to replace invalid UTF-8
4285: to '?', related to issue #938
4286:
4287: 2013-10-15 moko
4288:
4289: * src/: include/pa_common.h, main/pa_charset.C, main/pa_common.C,
4290: main/untaint.C: json chars 0x01-0x1F now are escaped as \u00XX,
4291: minor optimizations (closes issue #896)
4292:
4293: * tests/results/: 292.processed, 293.processed: results updated to
4294: comply with issue #896
4295:
4296: * tests/: 292.html, 293.html, results/292.processed,
4297: results/293.processed: tests for json escaping
4298:
4299: 2013-10-14 moko
4300:
4301: * src/: include/pa_common.h, main/pa_common.C: minor rearrangements
4302: and cleanup, code moved from .h to .C, no changes in code
4303:
4304: 2013-10-12 moko
4305:
4306: * tests/results/119.processed: updated test result commited
4307:
4308: * tests/: 291.html, results/291.processed: test for issue #894
4309: added
4310:
4311: * src/types/pa_wcontext.h: base methods call support function
4312: get_somebody_entered_some_class should not be true forever, as
4313: wcontext can have many get_elements calls (fixes issue #894)
4314:
4315: 2013-10-11 moko
4316:
4317: * tests/: 290.html, results/290.processed: test for junction GPF
4318: issue #942 added
4319:
4320: * src/types/pa_vmethod_frame.h: GPF if method junctions is passed
4321: to native method fixed (closes issue #942)
4322:
4323: * tests/: 158.html, results/158.processed: test for csv-string[]
4324: added
4325:
4326: * src/classes/table.C: minor fixes for table.csv-string[] (closes
4327: feature #907)
4328:
4329: * src/classes/table.C: ^table.csv-string[] from misha@ (implements
4330: feature #907)
4331:
4332: 2013-10-09 moko
4333:
4334: * src/: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
4335: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
4336: types/pa_vstateless_class.C: GET_default, SET_default now works
4337: properly not only in objects, but in classes as well (closes
4338: issue #903)
4339:
4340: * tests/: 289.html, results/289.processed: GET/SET_default now
4341: works in classes, not only objects, test case added, related to
4342: issue #903
4343:
4344: * tests/: 288.html, results/288.processed: test for endless
4345: recursion bug added (related to issue #903)
4346:
4347: 2013-10-05 moko
4348:
4349: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
4350: classes/table.C, main/execute.C, types/pa_method.h,
4351: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
4352: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
4353: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
4354: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmemcached.C,
4355: types/pa_vmemcached.h, types/pa_vmethod_frame.h,
4356: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
4357: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
4358: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
4359: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
4360: optimization: put_element no longer has "bool areplace" argument,
4361: related to issue #903
4362:
4363: 2013-10-03 moko
4364:
4365: * tests/results/182.processed: result for $.replace(false) test
4366: commited
4367:
4368: * src/classes/date.C: ^date::create(number) processed correctly
4369: (fixes issue #901)
4370:
4371: * src/classes/image.C: as_no_junction removed, as param can be
4372: expression (closes issue #931)
4373:
4374: * tests/233.html: test for issue #931 added
4375:
4376: 2013-10-02 moko
4377:
4378: * tests/: 182.html, 182_dir/a5.p: test for $.replace(true)
4379: modified, test for $.replace(false) added
4380:
4381: * src/main/compile_tools.h: forgotten class replace returned. :)
4382:
4383: 2013-09-30 moko
4384:
4385: * tests/: 141.html, results/141.processed: md5 tainting test added
4386:
4387: * src/: classes/op.C, include/pa_request.h, main/compile.y,
4388: main/compile_tools.h, main/pa_request.C: allow_class_replace
4389: implemented; $.replace option added to ^process and ^use
4390:
4391: 2013-08-27 moko
4392:
4393: * src/classes/: file.C, json.C, math.C, string.C, xdoc.C:
4394: cstr_to_string_body_untaint should be called with charsets for
4395: possible uri language and connection for possible sql language.
4396: related to issue #857
4397:
4398: * buildall: and -> or fixed
4399:
4400: 2013-08-26 moko
4401:
4402: * buildall: prepare_ functions logic changed to support
4403: gc-7.2d.tar.gz extracting to gc-7.2 directory
4404:
4405: 2013-08-23 moko
4406:
4407: * src/include/pa_config_fixed.h: gc and xml libs are now linked
4408: statically
4409:
4410: 2013-08-22 moko
4411:
4412: * src/classes/string.C: String::Empty used (related to issue #912)
4413: append_know_length removed (related to old GPF bug)
4414:
4415: 2013-08-21 moko
4416:
4417: * src/classes/math.C: untaint(L_AS_IS) added for md5 and sha1
4418:
4419: * src/classes/math.C: ^math:digest[...;$file] support added
4420: (related to ticket #857
4421:
4422: * tests/: 141.html, results/141.processed: ^math:digest[...;$file]
4423: implemented
4424:
4425: * src/types/pa_vhashfile.h: warning war
4426:
4427: * src/: classes/json.C, classes/op.C, include/pa_hash.h,
4428: include/pa_request.h, main/pa_request.C, types/pa_value.h:
4429: anti_endless_json_string_recoursion removed from request;
4430: json_string_recoursion added to json_options; $.indent[indent
4431: value] now supported and passed within recoursion closes feature
4432: #937
4433:
4434: * tests/: 287.html, results/287.processed: test for feature #937
4435:
4436: 2013-07-31 moko
4437:
4438: * src/lib/json/: json.c, pa_json.C: STATE__X -> STATE_XX for cygwin
4439: compilation having #define _S
4440:
4441: * src/main/pa_globals.C: cleanup
4442:
4443: 2013-07-30 moko
4444:
4445: * src/: classes/table.C, include/pa_common.h, main/pa_charset.C,
4446: main/pa_common.C: vs2003 warning war
4447:
4448: * src/lib/json/: json.c, pa_json.C: vs2003 warning war
4449:
4450: * src/lib/json/: json.c, pa_json.C: vs2003 compilation fix
4451:
4452: * src/lib/md5/pa_sha2.c: warning war
4453:
4454: 2013-07-29 moko
4455:
4456: * src/lib/json/: json.c, json.h, pa_json.C, pa_json.h: some libjson
4457: patches from github
4458:
4459: * src/: classes/bool.C, classes/double.C, classes/int.C,
4460: classes/memcached.C, include/pa_config_includes.h,
4461: types/pa_vfile.C, types/pa_vfile.h: warning war
4462:
4463: * src/lib/json/json.vcproj: C++ -> C
4464:
4465: * src/lib/json/: json.c, pa_json.C: C++ warning revert
4466:
4467: * src/lib/json/: json.c, pa_json.C: windows compatibility
4468:
4469: * src/lib/json/: json.c, pa_json.C: windows compatibility
4470:
4471: * src/lib/json/: json.c, pa_json.C: warning war
4472:
4473: * src/lib/json/: json.c, pa_json.C: win32 compilation issues fixes
4474:
4475: * src/include/pa_config_fixed.h: uint16_t added
4476:
4477: * configure.in: uint16_t check added
4478:
4479: * src/: classes/json.C, lib/json/JSON_parser.C,
1.116 moko 4480: lib/json/JSON_parser.h, lib/json/Makefile.am, lib/json/json.c,
4481: lib/json/json.h, lib/json/json.vcproj, lib/json/pa_json.C,
4482: lib/json/pa_json.h: JSON_parser with non-free licence is replaced
4483: with similar GPL licenced libjson (fixes issue #892)
1.95 moko 4484:
4485: 2013-07-25 moko
4486:
4487: * parser3.sln: dependencies added
4488:
4489: * parser3.sln, src/targets/apache/ApacheModuleParser3.vcproj,
4490: src/targets/apache/ApacheModuleParser3Core.vcproj: win32 apache
4491: module support
4492:
4493: * src/targets/apache/mod_parser3_core.C: win32 cleanup
4494:
4495: * src/targets/apache/mod_parser3.c: win32 apache 2.2 module
4496:
4497: 2013-07-23 moko
4498:
4499: * src/: include/pa_memory.h, main/pa_memory.C: non-working
4500: PA_DEBUG_GC_MEMORY removed
4501:
4502: * src/: main/pa_globals.C, targets/cgi/parser3.C:
4503: PA_DEBUG_DISABLE_GC compilation fix
4504:
4505: * src/: classes/op.C, classes/table.C, include/pa_request.h,
4506: main/pa_request.C: outdated RESOURCES_DEBUG removed
4507:
4508: * src/: main/pa_os.C, targets/cgi/parser3.C: headers cleanup,
4509: garbage cleanup
4510:
4511: * src/main/pa_common.C: warning war
4512:
4513: * src/: include/pa_http.h, main/pa_http.C: headers cleanup
4514:
4515: * src/: include/pa_common.h, main/pa_common.C: WIN32 -> _MSC_VER,
4516: minor cleanup
4517:
4518: * src/: include/pa_dir.h, main/pa_dir.C: loaddir under cygwin now
4519: uses cygwin, not WIN32 implementation
4520:
4521: * src/main/pa_exec.C: WIN32 -> _MSC_VER, under cygwin unix exec is
4522: able to exec shell scripts
4523:
4524: * src/classes/math.C: ifdef WIN32 cleanup
4525:
4526: * src/types/pa_vmemcached.C: LT_MODULE_EXT used
4527:
4528: * src/classes/curl.C: LT_MODULE_EXT used
4529:
4530: * src/include/pa_config_fixed.h: LT_MODULE_EXT defined
4531:
4532: 2013-07-22 moko
4533:
4534: * src/include/: pa_config_fixed.h, pa_config_includes.h: win32
4535: includes fix
4536:
4537: * src/: main/pa_common.C, targets/cgi/parser3.C: includes cleanup
4538:
4539: * configure.in, src/include/pa_config_includes.h,
4540: src/lib/smtp/comms.C, src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
4541: src/main/pa_exec.C: includes cleanup
4542:
4543: * src/targets/cgi/parser3.C: 2012->2013
4544:
4545: * src/include/pa_version.h: 3.4.2 -> 3.4.3b
4546:
4547: * configure.in, src/include/pa_config_includes.h,
4548: src/include/pa_http.h, src/lib/json/JSON_parser.h,
4549: src/main/pa_random.C, src/main/pa_socks.C,
4550: src/types/pa_vstatus.C: cygwin support cleanup
4551:
4552: * configure.in: dirent.h check added
4553:
4554: * src/: include/pa_config_includes.h, include/pa_dir.h,
4555: main/pa_dir.C: includes cleanup, dirent.h check added filePath
4556: not copied
4557:
4558: 2013-07-21 moko
4559:
4560: * src/lib/cord/cord.vcproj: unused cordprnt.c removed
4561:
4562: * src/targets/cgi/: Makefile.am, getopt.c, getopt.h,
4563: parser3.vcproj: unused getopt.h / getopt.c removed
4564:
4565: * operators.txt, src/classes/file.C, tests/022.html,
4566: tests/results/022.processed: ^file:list[path][$.filter[regexp]
4567: $.stat(true)] usage commented
4568:
4569: * configure.in, src/classes/file.C, src/include/pa_dir.h,
4570: src/main/pa_dir.C: ^file:list[] now has dir column and when
4571: $.stat(true) it has size/*date columns modified patch from misha@
4572: that closes issue #914.
4573:
4574: * src/: include/pa_config_includes.h, main/pa_globals.C:
4575: PA_RELEASE_ASSERTS removed
4576:
4577: * src/lib/md5/pa_md5c.c: minor cleanup
4578:
4579: * src/lib/json/: JSON_parser.C, JSON_parser.h: headers cleanup,
4580: localeconv()->decimal_point usage remoed (related to issue #934)
4581:
4582: * src/lib/cord/: Makefile.am, cordprnt.c, include/cord.h: unused
4583: cordprnt.c removed
4584:
4585: * src/lib/sdbm/: sdbm.c, sdbm_pair.c, pa-include/pa_apr.h,
4586: pa-include/pa_errno.h, pa-include/pa_file_io.h,
4587: pa-include/pa_strings.h: includes cleanup
4588:
4589: * src/lib/md5/pa_md5c.c: headers cleanup
4590:
4591: 2013-07-20 moko
4592:
4593: * src/lib/cord/: cordbscs.c, cordprnt.c, cordxtra.c: includes
4594: cleanup
4595:
4596: 2013-07-19 moko
4597:
4598: * src/classes/math.C: extern "C" added for crypt
4599:
4600: 2013-07-18 moko
4601:
4602: * src/classes/math.C: fix redhat7.2 build
4603:
4604: 2013-07-17 moko
4605:
4606: * configure.in, src/include/pa_config_includes.h,
4607: src/include/pa_config_fixed.h: headers actualized (inttypes.h
4608: added for uint8/32/64_t)
4609:
4610: * src/lib/md5/: pa_md5.h, pa_md5c.c, pa_sha2.c, pa_sha2.h:
4611: pa_config_includes.h used for uint32/64_t
4612:
4613: 2013-07-16 moko
4614:
4615: * src/: include/pa_string.h, main/pa_string.C, types/pa_vform.C,
4616: types/pa_vform.h, types/pa_vobject.C, types/pa_vobject.h: warning
4617: war
4618:
4619: * src/main/compile.tab.C: compile.y was updated
4620:
4621: * src/main/compile.y: warning war
4622:
4623: * src/: include/pa_exception.h, main/pa_exception.C,
4624: main/pa_xml_exception.C: warning war
4625:
4626: * src/: include/pa_common.h, main/pa_common.C: warning war
4627:
4628: * configure.in: beauty :)
4629:
4630: * tests/: 141.html, results/141.processed: sha256/512 added
4631:
4632: 2013-07-13 moko
4633:
4634: * src/lib/md5/md5.vcproj: sha2 added
4635:
4636: * src/: lib/md5/pa_sha2.c, lib/md5/pa_sha2.h, lib/md5/Makefile.am,
4637: classes/math.C: sha2 support (sha256/sha512 digest)
4638:
4639: 2013-07-08 moko
4640:
4641: * src/classes/image.C: directory read or other read problem message
4642: fixed (related to issue #933)
4643:
4644: 2013-07-07 moko
4645:
4646: * AUTHORS: + misha + moko. :)
4647:
4648: 2013-07-06 moko
4649:
4650: * src/: classes/curl.C, include/pa_globals.h,
4651: include/pa_sql_driver_manager.h, lib/memcached/pa_memcached.C,
4652: main/pa_globals.C, main/pa_sql_driver_manager.C: pa_dlinit added
4653: for lt_dlinit to be called once and lt_dlexit called at right
4654: place (related to issue #925)
4655:
4656: 2013-07-04 moko
4657:
4658: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstring.C:
4659: VString::as_vfile now uses vfile.set_binary_string to avoid
4660: content-type to be set, as it brokes badly designed logic in
4661: response output. This hopefully finishes issue #928.
4662:
4663: * tests/results/: 256.processed, 286.processed: file now displayed
4664: as name, size, mode, content-type
4665:
4666: * src/main/pa_common.C: read error now reported cottectly (fixes
4667: issue #933
4668:
4669: 2013-06-28 moko
4670:
4671: * tests/: 286.html, results/286.processed: test extended
4672:
4673: * tests/: 286.html, results/286.processed: Test for issue #928
4674: added. it tests default content-type change.
4675:
4676: * src/types/pa_vfile.C: closes issue #928 - default content-type
4677: now updated
4678:
4679: 2013-06-25 moko
4680:
4681: * src/: classes/file.C, types/pa_vfile.C, types/pa_vfile.h: default
4682: content-type for text/binary files without name added;
4683: ^file::create[$f;...] options now works properly and $f
4684: properties are default (fixes issue #928)
4685:
4686: 2013-05-16 misha
4687:
4688: * src/include/pa_opcode.h: - define for OBJECT_POOL optimisation is
4689: added
4690:
4691: * src/main/pa_table.C: - a tiny memory optimisation while creating
4692: table if specified limit is bigger than source rows count
4693:
4694: * src/classes/table.C: - ^table.foreach[k;v]{code}[separator] is
4695: added ( new feature: #858 )
4696:
4697: 2013-04-29 moko
4698:
4699: * src/classes/curl.C: CURL_IPRESOLVE_V4 now set by default,
4700: $.ipresolve(0|1|2) added (closes issue #891)
4701:
4702: * src/lib/curl/curl.h: CURL_IPRESOLVE added
4703:
4704: 2013-04-24 moko
4705:
4706: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4707: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
4708: types/pa_vmemcached.h: ^memcache.release[] added, calls
4709: memcached_quit (refs #893)
4710:
4711: 2013-04-22 moko
4712:
4713: * src/: include/pa_string.h, main/pa_common.C: no more double
4714: slashes in file path (fixes bug #872)
4715:
4716: * src/: classes/curl.C, lib/curl/curl.h: minor fixes related to
4717: CURLOPT_ENCODING renamed into CURLOPT_ACCEPT_ENCODING (issue
4718: #739)
4719:
4720: * tests/results/266.processed: $.max_params added (feature #915)
4721:
4722: * src/: include/pa_common.h, main/pa_http.C: response-charset
4723: option added to file::load (closes issue #867)
4724:
4725: 2013-04-20 misha
4726:
4727: * src/classes/curl.C: - forgotten CURL_ACCEPT_ENCODING option is
4728: commited
4729:
4730: 2013-03-15 misha
4731:
4732: * src/classes/: hash.C, table.C: - Optimisation: do not create
4733: multiple empty strings while ::sql. uae String::Empty instead
4734:
4735: 2013-03-14 misha
4736:
4737: * src/classes/reflection.C: - for user classes
4738: ^reflection:method_info[] returns $.max_params and $.extra_param
4739: with $.call_type if they available ( new feature: #915 )
4740:
4741: * src/classes/file.C: - ^file:delete[] now supports an option
4742: $.exception(false) that suppress any exception while deleting
4743: file ( new feature: #916 )
4744:
4745: * src/classes/curl.C: - parsing cookies after curl:load now should
4746: work :)
4747:
4748: 2013-03-12 misha
4749:
4750: * src/types/pa_vfile.C: - if specified file_name is empty string
4751: set default name for the file
4752:
4753: 2013-03-11 misha
4754:
4755: * src/classes/curl.C: - after $f[^curl:load[...]] the cookies are
4756: also available in $f.cookies
4757:
4758: * src/: include/pa_http.h, main/pa_http.C: - parsing cookies is
4759: moved to a separate method
4760:
4761: 2013-03-10 moko
4762:
4763: * src/include/pa_config_fixed.h: typedef unsigned int uint32_t
4764: added
4765:
4766: * src/lib/memcached/pa_memcached.h: typedef unsigned int uint32_t
4767: removed (declared by autoconf)
4768:
4769: * configure.in: AC_TYPE_SSIZE_T, AC_TYPE_UINT32_T added for
4770: uint32_t define
4771:
4772: 2013-03-10 misha
4773:
4774: * src/classes/file.C: ^file:delete and ^file:move now support
4775: option $.keep-empty-dirs(true) ( new feature: #884 )
4776:
4777: * src/: include/pa_common.h, main/pa_common.C: - option for keeping
4778: empty dirs is added
4779:
4780: 2013-03-10 moko
4781:
4782: * src/classes/: bool.C, double.C, int.C: default can be present,
4783: but default check removed from ^int/double/bool.int/double/bool
4784: for string.int/double/bool compatibility (related to issue #913)
4785:
4786: * src/classes/string.C: ^string.int/dobule/bool no longer
4787: internally throws exception if default is present (closes issue
4788: #913)
4789:
4790: 2013-03-09 misha
4791:
4792: * src/types/: pa_vhash.h, pa_vregex.h, pa_vtable.h: - tiny
4793: optimisations ( #845 )
4794:
4795: * src/types/pa_venv.C: - added $env:fields ( new feature: #906 )
4796:
4797: 2013-03-08 moko
4798:
4799: * src/main/pa_http.C: GPF on ^cookies:save fixed, $file.cookies now
4800: creates correct table (fixes issue #910)
4801:
4802: * src/classes/op.C: r.connection() -> r.connection(false) to allow
4803: use outside of 'connect' operator (fixes issue #911)
4804:
4805: * tests/results/: 096.processed, 122.processed: test results
4806: updated as doubles now printed with 15 significant digits, not 5
4807: (fixes issue #882)
4808:
4809: * src/types/pa_vdouble.h: %.15g now used to format doubles instead
4810: of broken has_frac() ? "%g": "%.0f" logic (fixes issue #882)
4811:
4812: 2013-02-21 moko
4813:
4814: * src/classes/table.C: _locate_name_value does not check arguments
4815: count, so we check it in advance (fixes issue #905)
4816:
4817: 2012-10-23 moko
4818:
4819: * buildall: old shell for and echo compatibility (for six)
4820:
4821: 2012-10-19 moko
4822:
4823: * buildall: --strip added --disable-safe-mode listed in usage
4824:
4825: 2012-10-17 misha
4826:
4827: * src/classes/op.C: - apply-taint should not throw "outside
4828: connect" exception with sql lang now
4829:
4830: 2012-10-17 moko
4831:
4832: * src/main/pa_request.C: bugfix: safe mode should be inited for
4833: each request (for apache module)
4834:
4835: 2012-09-26 moko
4836:
4837: * src/doc/doxygen.cfg: png -> svg
4838:
4839: 2012-09-25 moko
4840:
4841: * tests/: 141.html, results/141.processed: md5 hmac added, long key
4842: test added
4843:
4844: * src/classes/math.C: HMAC for MD5 added, bugfix for tempdigest
4845: double use when key is long
4846:
4847: 2012-09-16 moko
4848:
4849: * src/classes/math.C: Format -> Method Encode -> Format
4850:
4851: * tests/: 141.html, results/141.processed: math:digest hmac test
4852: added
4853:
4854: 2012-09-14 moko
4855:
4856: * src/classes/math.C: SHA1ReadDigest added and used in ^sha1.
4857: ^digest[sha1|md5;data; $.encode[base64|hex] $.hmac[key]] basic
4858: implementation added
4859:
4860: 2012-09-12 moko
4861:
4862: * src/doc/: doxygen.cfg, footer.htm, index.dox, string.dox,
4863: targets.dox: doxygen.cfg and footer.htm updated for doxygen 1.7.3
4864: targets.dox and string.dox slightly actualized
4865:
4866: 2012-08-31 moko
4867:
4868: * ChangeLog: now generated with patched cvs2cl.pl
4869:
4870: 2012-07-29 moko
4871:
4872: * tests/285.html, src/main/execute.C, tests/results/285.processed:
4873: result should be pushed after VMethodFrame destructor is called,
4874: as it deletes junctions from stack params (fixes issue #868)
4875:
4876: 2012-07-23 moko
4877:
4878: * INSTALL, README: buildall script usage documented, other outdated
4879: info updated.
4880:
4881: * buildall-with-xml, buildall-without-xml: replaced by buildall
4882:
4883: 2012-07-21 moko
4884:
4885: * buildall: glib does not compile when threads are disabled...
4886:
4887: * src/types/pa_vmail.C: g_assertion fixes for empty input
4888:
4889: * src/types/pa_vmail.C: yet another fix (strange GPF on object
4890: unref, can't unref nested objects)
4891:
4892: * src/types/pa_vmail.C: another check added
4893:
4894: 2012-07-19 moko
4895:
4896: * buildall: usage added
4897:
4898: * buildall: new buildall script that unites buildall-with-xml,
4899: buildall-without-xml, --with-apache and --with-mailreceive
4900:
4901: * configure.in: support for static gmime and dynamic glib linking.
4902: fixes for FreeBSD
4903:
4904: 2012-07-17 moko
4905:
4906: * configure.in: --with-mailreceive replaced
4907: --with-static-mailreceive and --with-shared-mailreceive pathlink
4908: removed
4909:
4910: 2012-07-16 moko
4911:
4912: * src/types/pa_vmail.C: updated to work gmime 2.6, headers now
4913: capitalized, content now decoded and text content converted to
4914: $request:charset. all properties are accessed by functions, this
4915: ready for dynamic load.
4916:
4917: 2012-06-28 moko
4918:
1.116 moko 4919: * src/targets/apache/Makefile.am: fix for apache cflags for Linux
4920: 32 bit
1.95 moko 4921:
4922: 2012-06-27 moko
4923:
4924: * buildall-with-xml, buildall-without-xml: fetch requires -p for
4925: passive ftp
4926:
4927: * src/lib/ltdl/ltdl.vcproj: release build fixed
4928:
4929: * configure.in: 3.4.2 RC -> 3.4.2
4930:
4931: 2012-06-22 moko
4932:
4933: * src/types/pa_vfile.C: returned empty mode to stated files (issue
4934: #815)
4935:
4936: * tests/: 284.html, results/284.processed: output options test
4937: (feature #265)
4938:
4939: 2012-06-22 misha
4940:
4941: * tests/215.html: - little changes
4942:
4943: 2012-06-21 moko
4944:
4945: * src/: classes/json.C, classes/xdoc.C, types/pa_vxdoc.C,
4946: types/pa_vxdoc.h: output_options returned and used (bugfix for
4947: feature #265)
4948:
4949: * buildall-with-xml, buildall-without-xml: --with-match-limit=10000
4950: breaks long .*, default 10M restored. (issue #216)
4951:
4952: * tests/: 283.html, results/283.processed: test for issue #815
4953: added
4954:
4955: * src/types/: pa_vfile.C, pa_vstring.C: bugfix: ^#0D not altered
4956: again, cstrm not required.
4957:
4958: * src/lib/ltdl/: argz.c, ltdl.c, libltdl/lt__glibc.h: fixes for
4959: Win32 and broken FreeBSD (issue #45)
4960:
4961: * src/lib/ltdl/ltdl.vcproj: preopen.c and config.h removed
4962:
4963: * src/main/pa_string.C: warnings war
4964:
4965: * src/: classes/mail.C, include/pa_dir.h, include/pa_http.h,
4966: lib/json/JSON_parser.h, lib/smtp/smtp.h, main/pa_random.C,
4967: main/pa_socks.C, targets/apache/pa_threads.C,
4968: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
4969: types/pa_vstatus.C: compilation under cygwin fixed
4970:
4971: 2012-06-19 moko
4972:
4973: * src/lib/ltdl/: config_fixed.h, ltdl.vcproj: compilation under
4974: Windows fixed
4975:
4976: * parser3.sln: removed antique pcre_ctype
4977:
4978: * src/include/pa_config_fixed.h: required for INT_MAX / UINT_MAX
4979:
4980: * src/include/pa_config_fixed.h: undefined reference to
4981: __imp__pcre_* fix for Windows
4982:
4983: * src/: include/pa_charset.h, lib/pcre/Makefile.am,
1.116 moko 4984: lib/pcre/pa_pcre_internal.h, lib/pcre/pcre_internal.h:
4985: pcre_internal.h -> pa_pcre_internal.h for Windows compatibility
4986: (win32/pcre has own copy of pcre_internal.h _pcre_default_tables
4987: define fixed
1.95 moko 4988:
4989: 2012-06-18 moko
4990:
4991: * src/classes/memcached.C: flush -> clear
4992:
4993: * src/classes/memcached.C: memcached does not support quotes even
4994: in server name
4995:
4996: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
4997: lib/memcached/pa_memcached.h, types/pa_vmemcached.C: version()
4998: called on open to check servers existance. $.key(true) syntax
4999: now supported
5000:
5001: 2012-06-17 moko
5002:
5003: * src/include/: pa_config_fixed.h, pa_config_includes.h: old stuff
5004: cleanup
5005:
5006: * src/classes/table.C, tests/282.cfg, tests/282.html,
5007: tests/results/282.processed: encloser at the EOF bug fixed,
5008: incorrectly enclosed data now processed more logicaly (fixes
5009: #339)
5010:
5011: 2012-06-15 moko
5012:
5013: * buildall-without-xml: sync with buildall-with-xml
5014:
5015: * buildall-with-xml: download auto-detected between fetch and curl
5016:
5017: * configure.in: --with-gc and --with-pcre now also processed
5018: correctly
5019:
1.116 moko 5020: * aclocal.m4, configure, src/include/pa_config_auto.h.in: now
5021: aclocal -I src/lib/ltdl/m4/ && autoheader && automake && autoconf
5022: should be run on rol1 using automake / aclocal (GNU automake)
5023: 1.11.1 autoconf (GNU Autoconf) 2.68
1.95 moko 5024:
5025: * configure.in: new PARSER_VERSION logic
5026:
5027: * src/include/pa_version.h: new pa_version.h logic
5028:
5029: * src/: classes/curl.C, classes/file.C, classes/image.C,
5030: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5031: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C:
5032: feols_normalized -> fis_text_content set_binary added
5033:
5034: * src/targets/cgi/parser3.C: gcc compilation warnings fixed
5035:
5036: 2012-06-15 misha
5037:
5038: * src/: classes/curl.C, classes/file.C, classes/image.C,
5039: classes/xdoc.C, types/pa_vfile.C, types/pa_vfile.h,
5040: types/pa_vform.C, types/pa_vrequest.C, types/pa_vstring.C: -
5041: ^file::create[text;content] EOLs in content now is normalized. (
5042: new feature: #815 )
5043:
5044: 2012-06-15 moko
5045:
5046: * configure.in: --disable-version-update added to disable version
5047: update with host information (for debian package) whitespace
5048: optimized
5049:
5050: * configure.in: version changed to 3.4.2 RC no-pic added for
5051: libtool
5052:
5053: * src/include/pa_version.h: Nice pa_version.h default. Please keep
5054: it.
5055:
5056: 2012-06-14 moko
5057:
5058: * src/classes/hash.C, src/types/pa_vhash.h, tests/281.html,
5059: tests/results/281.processed: "hash flocked" error removed for
5060: safe operations like ^h._count[] ( new feature: #335 )
5061:
1.116 moko 5062: * src/targets/apache/Makefile.am: libmod_parser3 -> mod_parser3
1.95 moko 5063:
5064: * buildall-with-xml, buildall-without-xml: --with-static -> --with
5065:
5066: * configure.in: --with-static/shared xml replaced with --with-xml,
5067: xml compilation check added
5068:
5069: * configure.in: --with-static/shared-gc, --with-static-pcre are
5070: replaced with --with-gc and --with-pcre test for pcre linking
5071: added
5072:
5073: 2012-06-13 moko
5074:
5075: * configure.in: apxs2 check optimized
5076:
5077: * src/targets/cgi/Makefile.am: preserve-dup-deps requires .a, not
5078: .la, includes optimized
5079:
5080: * buildall-with-xml: --with-pic looks better for -fPIC
5081:
5082: * configure.in: switched to convenience library in static linking
5083:
5084: * src/targets/apache/Makefile.am: switched to convenience library
5085: usage to avoid libtool warnings
5086:
5087: * src/lib/: cord/Makefile.am, gd/Makefile.am, json/Makefile.am,
5088: md5/Makefile.am, memcached/Makefile.am, sdbm/Makefile.am,
5089: smtp/Makefile.am: switched to convenience library usage
5090:
5091: * src/sql/Makefile.am: pa_sql_driver.h should be in includes
5092:
5093: * src/targets/apache/Makefile.am: updated for libtool usage
5094:
5095: * buildall-without-xml: --with-included-ltdl added
5096:
5097: * buildall-without-xml: sync with buildall-with-xml
5098:
5099: * buildall-with-xml: --with-included-ltdl added $cflags added for
5100: -fPIC for x64 $download added for wget success check added
5101:
5102: * buildall-without-xml: --with-dynamic-stdcpp removed
5103:
5104: * configure.in: disable-static returned
5105:
5106: * src/targets/cgi/Makefile.am: Automake 1.9 does not support
5107: LIBTOOLFLAGS
5108:
5109: 2012-06-12 moko
5110:
5111: * configure.in, src/targets/cgi/Makefile.am: disable-static not
5112: compatible with LIBTOOLFLAGS for unknown reasons
5113:
5114: * buildall-with-xml: --with-dynamic-stdcpp removed
5115:
5116: * configure.in: static/dynamic -lstdc++ linking option removed
5117: apxs2 check added
5118:
5119: * src/targets/cgi/Makefile.am: static/dynamic -lstdc++ linking
5120: option removed
5121:
5122: 2012-06-10 moko
5123:
5124: * src/targets/cgi/Makefile.am: --preserve-dup-deps libtool option
5125: added
5126:
5127: * src/targets/cgi/pp3.cmd: old PAF stuff
5128:
1.116 moko 5129: * Makefile.am: ACLOCAL_AMFLAGS = -I src/lib/ltdl/m4 added and some
5130: beauty
1.95 moko 5131:
5132: * depcomp: from libtool 2.4.2
5133:
5134: * configure.in: ltdl directory removed, it has correct Makefile.in
5135:
5136: 2012-06-09 moko
5137:
1.116 moko 5138: * Makefile.am, aclocal.m4, config.guess, config.sub, configure,
5139: install-sh, ltmain.sh, missing, src/include/pa_config_auto.h.in:
1.95 moko 5140: autogenerated files updated after libtool update
5141:
1.116 moko 5142: * src/lib/ltdl/: COPYING.LIB, Makefile.am, README, acinclude.m4,
5143: aclocal.m4, argz.c, argz_.h, config-h.in, config.h,
1.95 moko 5144: config_auto.h.in, config_fixed.h, configure, configure.ac,
5145: configure.in, lt__alloc.c, lt__dirent.c, lt__strl.c,
5146: lt_dlloader.c, lt_error.c, ltdl.c, ltdl.h, slist.c,
5147: config/compile, config/config.guess, config/config.sub,
5148: config/depcomp, config/install-sh, config/ltmain.sh,
5149: config/missing, libltdl/lt__alloc.h, libltdl/lt__dirent.h,
5150: libltdl/lt__glibc.h, libltdl/lt__private.h, libltdl/lt__strl.h,
5151: libltdl/lt_dlloader.h, libltdl/lt_error.h, libltdl/lt_system.h,
5152: libltdl/slist.h, loaders/dld_link.c, loaders/dlopen.c,
5153: loaders/dyld.c, loaders/load_add_on.c, loaders/loadlibrary.c,
5154: loaders/preopen.c, loaders/shl_load.c, m4/argz.m4, m4/libtool.m4,
5155: m4/ltdl.m4, m4/ltoptions.m4, m4/ltsugar.m4, m4/ltversion.m4,
5156: m4/lt~obsolete.m4: libtool updated to version 2.4.2
5157:
5158: * configure.in: preparation for new libtool
5159:
5160: * configure.in: Some beauty added :)
5161:
5162: * src/targets/apache/Makefile.am: := -> =
5163:
5164: * src/lib/pcre/: Makefile.am, config.h: config.h removed once
5165: again. :)
5166:
5167: * src/include/pa_config_includes.h, configure.in: limits.h added,
5168: previously was taken from pcre_internal.h. :)
5169:
5170: * src/lib/pcre/Makefile.am: config.h returned
5171:
5172: * src/lib/pcre/config.h: still need this. :)
5173:
5174: * src/lib/pcre/pcre_internal.h: extracts from real pcre_internal.h
5175:
5176: * configure.in: --with-charsets removed; --with-mysql-client & co
5177: removed
5178:
5179: * buildall-with-xml, buildall-without-xml: pcre_internal.h extracts
5180: now in parser tree, no need to copy
5181:
5182: * src/lib/pcre/: Makefile.am, config.h, ibm-1250.ucm, ibm-1251.ucm,
5183: ibm-1254.ucm, ibm-1257.ucm, pcre_parser_ctype.c,
5184: pcre_parser_ctype.vcproj, ruspart_win2koi.pl, win-koi.tab:
5185: debian/patches/101_pcre.patch - local copy of pcre_internal.h
5186: extracts now used old trash removed
5187:
5188: * etc/parser3.charsets/Makefile.am: charsets now in share
5189: (debian/patches/104_automake.patch) + all charsets are copied
5190:
5191: * buildall-with-xml, buildall-without-xml: curl option removed +
5192: extra arguments now supported
5193:
5194: 2012-06-08 misha
5195:
5196: * src/classes/table.C: - one params.as_hash usage was rolled back:
5197: the 2nd option in ^table.hash[] could be hash or table so
5198: .as_hash will throw an exception when table option is specified
5199:
5200: * src/: classes/curl.C, classes/file.C, classes/hash.C,
5201: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
5202: classes/table.C, classes/void.C, classes/xdoc.C,
5203: include/pa_exception.h, types/pa_vmethod_frame.C,
5204: types/pa_vmethod_frame.h: - MethodParams::as_hash is optimized
5205: and improved (whitespaces are allowed as empty options) -
5206: MethodParams::as_table is added - above methods are used for
5207: parsing methods' options ( new feature: #9 )
5208:
5209: * src/types/: pa_vclass.C, pa_vclass.h: - method get_hash is added
5210: to vclass. now class fields can be accessible as a hash:
5211: $h[^hash::create[$asd:CLASS]]
5212:
5213: * src/types/: pa_vhash.h, pa_vhashfile.h: - vhash and vhashfile now
5214: have get_fields method so their fields can be accessed with
5215: ^reflection:fields[...] & ^reflection:field[...]
5216:
5217: 2012-06-06 misha
5218:
5219: * tests/280.html: - tests for
5220: ^reflection:method[obj-or-class;method],
5221: ^reflection:field[obj-or-class;field] and
5222: ^reflection:fields[obj-or-class] are added
5223:
5224: 2012-06-05 misha
5225:
5226: * src/classes/reflection.C: - ^reflection:method[class or
5227: object;method name] and ^reflection:field[class or object;field
5228: name] are added
5229:
5230: * src/types/pa_vstateless_class.C: - Method::get_vjunction method
5231: is used
5232:
5233: * src/types/pa_method.h: - Method::as_vjunction method is added
5234:
5235: 2012-06-05 moko
5236:
1.116 moko 5237: * src/targets/Makefile.am: cgi now build with apache module
1.95 moko 5238:
5239: * src/classes/memcached.C: flish ttl fixed
5240:
5241: 2012-06-04 moko
5242:
5243: * src/classes/json.C, src/classes/op.C, tests/279.html,
5244: tests/results/279.processed: ^json:parse[] now supports $.taint
5245: option (new feature #833)
5246:
5247: 2012-06-04 misha
5248:
5249: * src/: include/pa_common.h, main/pa_common.C, types/pa_vcookie.C:
5250: - search_stop method was moved from pa_vcookie.C to pa_common.C
5251:
5252: 2012-06-03 misha
5253:
5254: * src/main/pa_http.C: - ^file:load[...;http://...] - all received
5255: cookies are parced and stored into $.cookies ( new feature: #31 )
5256:
5257: 2012-05-30 misha
5258:
5259: * tests/: 182_dir/a3.p, 182_dir/a4.p, 182.html: - test for adding
5260: incomplete class into a scope while @USE is found
5261:
5262: * src/main/compile.y: - add incomplete class into a scope while
5263: @USE and @CLASS instructions are found ( bugfix: #838 )
5264:
5265: 2012-05-30 moko
5266:
5267: * src/types/pa_vclass.C, tests/278.html,
5268: tests/results/278.processed: removed "property has no getter
5269: method" exception when GET_DEFAULT present (fixes #269)
5270:
5271: * src/classes/json.C, tests/277.html: ^json:string[], $.default ->
5272: $._default
5273:
5274: 2012-05-29 moko
5275:
5276: * src/types/pa_vvoid.h: $STRICT-VARS(true) implemented to check
5277: uninitialized values usage (new feature: #154)
5278:
5279: 2012-05-28 moko
5280:
5281: * tests/277.html, src/classes/json.C, src/classes/reflection.C,
5282: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
5283: src/types/pa_vdate.h, src/types/pa_vdouble.h,
5284: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vint.h,
5285: src/types/pa_vobject.C, src/types/pa_vobject.h,
5286: src/types/pa_vstring.h, src/types/pa_vtable.C,
5287: tests/results/277.processed, src/types/pa_vtable.h,
5288: src/types/pa_vvoid.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h:
5289: ^json:string[$o; $.default[$method]] implemented for VObject (new
5290: feature #803)
5291:
5292: * src/classes/json.C, src/lib/json/JSON_parser.h, tests/277.html,
5293: tests/results/277.processed: json numbers are now treated as
5294: double ( new feature: #834 )
5295:
5296: * src/: classes/math.C, include/pa_string.h, main/pa_charset.C,
5297: main/pa_string.C, types/pa_vdouble.h, types/pa_vint.h: pa_atoui
5298: added for out of range checks, zero division in vint/vdouble
5299: check added ( fixes #832 )
5300:
5301: * tests/: 275.html, results/275.processed: tests for pa_atoui added
5302: ( fixes #832 )
5303:
5304: 2012-05-28 misha
5305:
5306: * buildall-with-xml: - --without-lzma option is added to libxml2
5307: configure
5308:
5309: * tests/256.html: - test for ^json:string[-file-;$.file[stat]] is
5310: added - tests for unsupported values for options $.file, $.table
5311: and $.date are added
5312:
5313: * src/: classes/json.C, types/pa_value.h: - ^json:string[...] now
5314: accepts "stat" $.file[] option's value in addition to existed
5315: "text" and "base64" ( new feature: #835 )
5316:
5317: * tests/276.html: - test for
5318: ^reflection:delete[$object-or-class;field-name]
5319:
5320: * src/classes/reflection.C: -
5321: ^reflection:delete[$object-or-class;field-name] is added ( new
5322: feature: #268 )
5323:
5324: 2012-05-27 misha
5325:
5326: * buildall-with-xml: - libxml2 2.7.8 => 2.8.0
5327:
5328: 2012-05-24 misha
5329:
5330: * src/include/pa_common.h: - method lastposafter was removed
5331:
5332: * src/classes/file.C: - use strrpbrk & rskipchars instead of
5333: lastposafter - ^file:dirname[] & Co proper handle windows file
5334: paths ( bug fix: #783 ) - ^file:dirname[] & ^file:basename[] now
5335: work as *nix commands
5336:
5337: * src/main/pa_request.C: - use strrpbrk instead of lastposafter
5338:
5339: * src/: include/pa_string.h, main/pa_string.C: - strrpbrk &
5340: rskipchars were added
5341:
5342: * tests/270.html: - more tests for ^file:find[]
5343:
5344: * tests/065.html: - more tests for ^file:dirname[] & Co
5345:
5346: * src/include/pa_version.h: - must be "win32" here. it is
5347: auto-generated on *nix
5348:
5349: 2012-05-24 moko
5350:
5351: * src/classes/math.C: ^math:convert[] now supports uint32 and
5352: throws overflow exception ( new feature: #830 )
5353:
5354: * tests/: 275.html, results/275.processed: test for ^math:convert[]
5355: uint32 support and overflow added ( new feature: #830 )
5356:
5357: 2012-05-23 moko
5358:
5359: * src/: classes/table.C, types/pa_value.h, types/pa_vbool.h,
5360: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
5361: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
5362: types/pa_vint.h, types/pa_vjunction.C, types/pa_vjunction.h,
5363: types/pa_vobject.C, types/pa_vobject.h, types/pa_vregex.C,
5364: types/pa_vregex.h, types/pa_vstateless_class.C,
5365: types/pa_vstateless_class.h, types/pa_vstring.h,
5366: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
5367: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: bool
5368: "return string as-is" removed from as_expr_result. ( new feature:
5369: #831 )
5370:
5371: * tests/results/244.processed: test changed after bug #782 fix
5372: commited
5373:
5374: * tests/results/229.processed: test results for bug #782 commited
5375:
5376: * tests/: 254.html, results/254.processed: uid now just compared,
5377: not printed. :)
5378:
5379: 2012-05-20 moko
5380:
5381: * src/classes/reflection.C: ^reflection:uid[$object] added ( new
5382: feature: #341 )
5383:
5384: * tests/: 254.html, results/254.processed: test for
5385: ^reflection:uid[] added
5386:
5387: * tests/: 254.html, results/254.processed: test for
5388: ^reflection:uid[$obj] added
5389:
5390: 2012-05-17 misha
5391:
5392: * src/main/untaint.C: - do not replace ' char by _26 while
5393: exploding filespec-tainting ( new feature: #829 )
5394:
5395: 2012-05-12 moko
5396:
5397: * src/types/pa_vvoid.h: is_string now also checked, but get_* -
5398: not.
5399:
5400: 2012-05-08 moko
5401:
5402: * src/types/pa_vmethod_frame.h: bug #782 fixed
5403:
5404: * tests/229.html: test for bug #782
5405:
5406: * tests/results/259.processed, src/main/pa_request.C,
5407: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
5408: src/types/pa_vstring.h, src/types/pa_vvoid.C,
5409: src/types/pa_vvoid.h: feature #154 - first empty param now
5410: string; defined locals are empty strings; $STRICT-VARS(true)
5411: added
5412:
5413: 2012-04-27 moko
5414:
1.116 moko 5415: * src/targets/apache/Makefile.am:
1.95 moko 5416: ../../lib/memcached/libmemcached.a added
5417:
5418: 2012-04-27 misha
5419:
5420: * buildall-with-xml, buildall-without-xml: - prce 8.12 => pcre 8.30
5421: ( #827 )
5422:
5423: 2012-04-25 moko
5424:
5425: * src/: classes/json.C, classes/memcached.C,
5426: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
5427: types/pa_vmemcached.C, types/pa_vmemcached.h: memcached_add
5428: implemented.
5429:
5430: * src/classes/curl.C: stderr -> f_stderr for Windows compatibility
5431:
5432: 2012-04-23 moko
5433:
5434: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5435: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5436: types/pa_vmemcached.h: open allows options hash for new
5437: memcached(options) function
5438:
5439: * src/classes/curl.C: check_safe_mode added, stderr now rewritten,
5440: not appended
5441:
5442: 2012-04-21 moko
5443:
5444: * src/classes/curl.C: '' added. :)
5445:
5446: * src/classes/classes.vcproj: new curl.h location
5447:
5448: * src/classes/curl.C: verbose output redirection from stderr to
5449: file curl option added
5450:
5451: 2012-04-20 moko
5452:
5453: * src/: classes/curl.C, lib/curl/curl.h: lib/curl/curl.h now
5454: contains what we need from curl, #ifdef HAVE_CURL removed
5455:
1.116 moko 5456: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 5457: src/include/pa_config_auto.h.in, src/include/pa_version.h,
1.116 moko 5458: src/lib/Makefile.am, src/lib/curl/Makefile.am,
5459: src/lib/curl/curl.h: curl.h header now in src/lib/curl, not
1.95 moko 5460: configure option
5461:
5462: 2012-04-19 moko
5463:
5464: * src/: classes/double.C, classes/inet.C, classes/int.C,
5465: classes/string.C, lib/gc/include/gc_allocator.h,
5466: types/pa_vform.C: PVS-Studio detected errors fixes, unused
5467: options from sql_result_string removed. (closes issue #468)
5468:
5469: * src/types/pa_vmemcached.C: empty string fix
5470:
5471: * src/types/: pa_value.C, pa_value.h, pa_vmemcached.C,
5472: pa_vstring.C, pa_vstring.h: serialization helpers moved to
5473: pa_vmemcached.C
5474:
5475: 2012-04-18 moko
5476:
5477: * src/targets/apache/mod_parser3.c: "Parser3 module requires
5478: apache2-mpm-prefork" error displayed in threaded mpm.
5479:
5480: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
5481: pa_setup_module_cells delayed to avoid GPF on init with php5-xsl
5482: installed (issue #354)
5483:
5484: 2012-04-16 moko
5485:
5486: * src/types/pa_vmemcached.C: call to memcached_result_create and
5487: memcached_result_free removed
5488:
5489: 2012-04-14 moko
5490:
5491: * src/lib/memcached/pa_memcached.h: uint32_t for Windows defined
5492:
5493: * src/types/pa_vmemcached.C: check_key added and used
5494:
5495: 2012-04-13 moko
5496:
5497: * src/: include/pa_string.h, types/pa_value.C, types/pa_value.h,
5498: types/pa_vmemcached.C, types/pa_vstring.C, types/pa_vstring.h:
5499: Serialization_data now added and used, VString now serialized
5500: with languages into memcached.
5501:
5502: 2012-03-28 moko
5503:
5504: * src/: types/pa_vmemcached.C, lib/memcached/pa_memcached.C,
5505: lib/memcached/pa_memcached.h: result lengths added
5506:
5507: 2012-03-27 moko
5508:
5509: * src/types/pa_vmemcached.C: strdup added
5510:
5511: 2012-03-24 moko
5512:
5513: * src/: classes/memcached.C, lib/memcached/pa_memcached.C,
5514: lib/memcached/pa_memcached.h, types/pa_vmemcached.C,
5515: types/pa_vmemcached.h: memcached: mget, flush, fttl added
5516:
5517: 2012-03-20 moko
5518:
1.116 moko 5519: * configure, configure.in: Makefiles.in updated for memcached
1.95 moko 5520:
5521: * src/targets/cgi/Makefile.am: cleanup
5522:
5523: * src/: types/Makefile.am, types/pa_vmemcached.C,
5524: types/pa_vmemcached.h, targets/cgi/Makefile.am: memcached initial
5525:
5526: * src/: classes/Makefile.am, classes/memcached.C,
5527: lib/memcached/Makefile.am, lib/memcached/constants.h,
5528: lib/memcached/pa_memcached.C, lib/memcached/pa_memcached.h,
5529: lib/memcached/types.h, lib/Makefile.am: memcached initial
5530:
5531: 2012-03-16 moko
5532:
5533: * src/main/execute.C: ident now works under Linux + ident displays
5534: filenames (closes issue #818)
5535:
1.116 moko 5536: * src/types/: Makefile.am, pa_vmethod_frame_global.h,
1.95 moko 5537: pa_vmethod_frame_local.h: cleanup: pa_vmethod_frame_global.h
5538: pa_vmethod_frame_local.h removed
5539:
5540: * src/: classes/bool.C, classes/classes.C, classes/classes.awk,
5541: classes/classes.h, classes/curl.C, classes/date.C,
5542: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
5543: classes/hashfile.C, classes/image.C, classes/inet.C,
5544: classes/int.C, classes/json.C, classes/mail.C, classes/math.C,
5545: classes/memory.C, classes/op.C, classes/reflection.C,
5546: classes/regex.C, classes/response.C, classes/string.C,
5547: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
5548: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
5549: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
5550: include/pa_config_fixed.h, include/pa_config_includes.h,
5551: include/pa_dictionary.h, include/pa_dir.h,
5552: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
5553: include/pa_hash.h, include/pa_http.h, include/pa_memory.h,
5554: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
5555: include/pa_pool.h, include/pa_random.h, include/pa_request.h,
5556: include/pa_request_charsets.h, include/pa_request_info.h,
5557: include/pa_sapi.h, include/pa_socks.h,
5558: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
5559: include/pa_stack.h, include/pa_string.h,
5560: include/pa_stylesheet_connection.h,
5561: include/pa_stylesheet_manager.h, include/pa_table.h,
5562: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
5563: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
5564: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
5565: lib/md5/pa_md5c.c, lib/pcre/pcre_parser_ctype.c,
5566: lib/sdbm/pa_file_io.C, lib/sdbm/pa_strings.C, lib/smtp/comms.C,
5567: lib/smtp/smtp.C, lib/smtp/smtp.h, main/compile.C,
5568: main/compile.tab.C, main/compile.y, main/compile_tools.C,
5569: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
5570: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
5571: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
5572: main/pa_exec.C, main/pa_globals.C, main/pa_http.C,
5573: main/pa_memory.C, main/pa_os.C, main/pa_pool.C, main/pa_random.C,
5574: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
5575: main/pa_string.C, main/pa_stylesheet_connection.C,
5576: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
5577: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
5578: main/helpers/simple_folding.pl, sql/pa_sql_driver.h,
5579: targets/apache/mod_parser3.c, targets/apache/mod_parser3_core.C,
5580: targets/apache/pa_httpd.h, targets/apache/pa_threads.C,
5581: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
5582: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
5583: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
5584: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
5585: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
5586: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
5587: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.C,
5588: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
5589: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.C,
5590: types/pa_vhash.h, types/pa_vhashfile.C, types/pa_vhashfile.h,
5591: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
5592: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_vmail.C,
5593: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
5594: types/pa_vmemory.h, types/pa_vmethod_frame.C,
5595: types/pa_vmethod_frame.h, types/pa_vmethod_frame_global.h,
5596: types/pa_vmethod_frame_local.h, types/pa_vobject.C,
5597: types/pa_vobject.h, types/pa_vregex.C, types/pa_vregex.h,
5598: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
5599: types/pa_vresponse.h, types/pa_vstateless_class.C,
5600: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
5601: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
5602: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
5603: types/pa_vvoid.C, types/pa_vvoid.h, types/pa_vxdoc.C,
5604: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
5605: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
5606: ident now works under Linux + ident displays filenames (closes
5607: issue #818) Copyright updated
5608:
5609: 2012-03-13 moko
5610:
5611: * src/main/pa_string.C: compilation fix for feature #741
5612:
5613: 2012-03-09 misha
5614:
5615: * tests/193.html: - tests for ^string:base64[encoded] are updated
5616:
5617: * src/main/pa_common.C: - ^string:base64[encoded;$.strict(true)]
5618: now detects invalid base64 chars in the middle of encoded stricg
5619: ( new feature: #55 )
5620:
5621: * src/include/pa_exception.h: - new exception type for base64
5622: decoding is added
5623:
5624: 2012-03-06 misha
5625:
5626: * tests/274.html: - tests for ^date::today[] and
5627: ^date.sql-string[datetime|date|time] are added
5628:
5629: * src/classes/date.C: - constructor ^date::today[] is added ( new
5630: feature: #811 ) - ^date.sql-string[] now can accept one param --
5631: strings "datetime", "date" or "time" - comments tidying up
5632:
5633: * src/types/pa_vdate.h: - get_sql_string now can print datetime,
5634: date and time
5635:
5636: 2012-03-03 misha
5637:
5638: * tests/193.html: - tests for
5639: ^string:base64[encoded;$.strict(true)] are added
5640:
5641: * tests/results/auto.p: - try-catch operator is added
5642:
5643: * src/: classes/file.C, classes/string.C, include/pa_common.h,
5644: main/pa_common.C: - $.strict(true|false) option is added to
5645: base64 decode methods ( new feature: #55 )
5646:
5647: * src/main/pa_common.C: - base64 decode memory usage was decreased
5648: ( new feature: #819 )
5649:
5650: 2012-02-28 moko
5651:
5652: * src/classes/hash.C: ident test
5653:
5654: 2012-02-27 misha
5655:
5656: * src/classes/file.C: - PARSER_VaRSION => PARSER_VeRSION
5657:
5658: 2012-01-08 misha
5659:
5660: * tests/273.html: - tests for ^string.replace[from;to] are added
5661:
5662: * src/: classes/string.C, include/pa_dictionary.h,
5663: main/pa_dictionary.C, main/pa_string.C: -
5664: ^string.replace[from;to] is added ( new feature: #741 ) -
5665: ^string.replace[one subst here] is slightly optimized
5666:
5667: 2011-12-07 misha
5668:
5669: * src/classes/table.C: - $t[^table::create{$empty}] now creates
5670: named table with one empty column ( bugfix: #63 )
5671:
5672: 2011-11-30 misha
5673:
5674: * src/classes/json.C: - it's possible to set user's method for
5675: parsing arrays: ^json:parse[...;$.array[$hook]] ( new feature:
5676: #763 )
5677:
5678: * tests/272.html: - test for ^json:parse[...;$.array[$hook]]
5679:
5680: 2011-11-23 misha
5681:
5682: * src/: classes/curl.C, classes/file.C, classes/image.C,
5683: classes/table.C, classes/xdoc.C, types/pa_vfile.C,
5684: types/pa_vfile.h, types/pa_vform.C: - constructor
5685: ^file::create[mode;filename;content[;options]] now accepts binary
5686: mode and file-content - new constructor's format:
5687: ^file::create[string-or-file-content[;$.name[filename]
5688: $.mode[text|binary] $.content-type[...] $.charset[...]]] ( new
5689: feature: #65 )
5690:
5691: * src/: include/pa_request.h, main/pa_request.C: - new method
5692: mime_type_of(const String*) is added
5693:
5694: * src/include/pa_exception.h: - new exception constant
5695: FILE_NAME_MUST_BE_SPECIFIED is added
5696:
5697: * src/classes/table.C: - bug with negative offset transformed into
5698: a feature. it means pointing to a row from the end of the table (
5699: new feature: #810 )
5700:
5701: 2011-11-19 misha
5702:
5703: * src/classes/table.C: - íåñêîëüêî signed/unsigned warnings óáðàíû
5704: â ìåòîäå _select ( new feature: #810 )
5705:
5706: * src/types/pa_vxdoc.C: - checkout if $.encoding and $.charset
5707: options were specified together is simplified
5708:
5709: 2011-11-12 misha
5710:
5711: * src/main/pa_request.C: - forgotten fix for escaping filename in
5712: HTTP content-disposition header (a part of bug #361 )
5713:
5714: * src/classes/json.C: - ^json:string[$.class_name[jmethod]] now
5715: checks for ancestors' classes as well ( new feature: #456 )
5716:
5717: * src/classes/op.C: - exceptions for ^break[] and ^continue[]
5718: "without cycle" now have types "parser.break" and
5719: "parser.continue" instead of "parser.runtime" ( new feature: #799
5720: )
5721:
5722: 2011-11-11 misha
5723:
5724: * tests/results/: 099.processed, 100.processed, 205.processed,
5725: 237.processed: - since bug #361 was fixed the content of filename
5726: in HTTP headers is quoted
5727:
5728: * tests/results/270.processed: - result for test 270
5729:
5730: * tests/: 065.html, results/065.processed: - more tests for
5731: ^file:basename[] & Co were added
5732:
5733: * tests/270_dir/: 270.txt, subdir/270.txt: - stuff for 270.html
5734:
5735: * tests/270.html: - tests for ^file:find[] are added
5736:
5737: * src/types/pa_vxdoc.C: - now it's possible to specify encoding
5738: using option $.charset. option $.engoding is still supported but
5739: these options can not be specified together
5740:
5741: * src/classes/xdoc.C: - charset.isUTF8 is used instead of
5742: comparation charset name with string "UTF-8" ( bugfix: #759 )
5743:
5744: 2011-10-11 misha
5745:
5746: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h: - new
5747: option was added: ^xdoc.file[$.name[èìÿ ôàéëà]] (new feature:
5748: #622)
5749:
5750: 2011-09-30 misha
5751:
5752: * src/types/pa_vrequest.C: - saving empty $request:post-body causes
5753: exception "saving stat-ed file" ( bugfix: #395 )
5754:
5755: 2011-05-30 misha
5756:
5757: * src/classes/string.C: - fixed bug which was added with
5758: params.as_hash into string:sql
5759:
5760: 2011-05-29 misha
5761:
5762: * src/types/pa_value.C: - filename in content-disposition header
5763: must be quoted ( bugfix: #361 )
5764:
5765: 2011-05-27 misha
5766:
5767: * src/classes/: image.C, xdoc.C: - $.mode must be set for newly
5768: created file
5769:
5770: * src/classes/: hash.C, mail.C: - little tunning with get_hash
5771: usage
5772:
5773: * src/include/pa_exception.h: - one more string for exception was
5774: added
5775:
5776: 2011-05-25 misha
5777:
5778: * tests/269.html: - tests for checking input params in some dom
5779: methods
5780:
5781: * src/classes/: xdoc.C, xnode.C: - validation of some input params
5782: was added. it isn't possible not wo create xdoc with invalid
5783: tagName. ( bugfix: #160 )
5784:
5785: * src/include/: pa_exception.h, pa_xml_exception.h: - exception's
5786: string "data must be string" was mover from pa_exception.h to
5787: pa_xml_exception.h
5788:
5789: * src/classes/: xnode.C, xnode.h: - methods as_xmlqname,
5790: as_xmlncname, as_xmlname and as_xmlnsuri were added
5791:
5792: * src/main/pa_xml_exception.C: - XmlException accepts more options
5793:
5794: * src/include/pa_xml_exception.h: - XmlException accepts more
5795: options - XML-related exception's strings were added
5796:
5797: * src/: classes/xdoc.C, types/pa_vxdoc.h: - code cleanup (unused
5798: output_options were removed)
5799:
5800: 2011-05-19 misha
5801:
5802: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
5803: params.as_hash is used more while parsing methods hash-options
5804:
5805: 2011-05-18 misha
5806:
5807: * operators.txt: - info about json-serialization of xdoc was added
5808:
5809: * tests/256.html: - tests for json-serialization xdoc were added
5810:
5811: * src/types/pa_vxdoc.C: - ups. I've forgot about "method" :)
5812:
5813: * src/: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
5814: classes/json.C, classes/xdoc.C: - now json:string can serialize
5815: xdoc-objects. options (the same as ^xdoc.string[]) could be
5816: specified in $.xdoc[] ( new feature: #265 )
5817:
5818: 2011-05-15 misha
5819:
5820: * tests/268.html: - tests for ^table.count[with options] were added
5821:
5822: * src/classes/table.C: - method ^table.count[] now can accept
5823: options ( new feature: #93 ): ^table.count[column] returns number
5824: of columns for named table; ^table.count[cells] returns number of
5825: cells in the current row; ^table.count[] & ^table.count[rows]
5826: return number of rows in a table.
5827:
5828: * tests/267.html: - test for checking switch/case in boolean mode
5829: was added
5830:
5831: * src/classes/op.C: - if switch's or case's value is bool, they are
5832: compared as bool values, not as double values: new feature: #351
5833:
5834: 2011-05-06 misha
5835:
5836: * tests/242.html: - EOL before EOF was added
5837:
5838: * tests/169.html: - tests for splitting empty string and void were
5839: added
5840:
5841: * src/main/pa_string.C: - fix of fix (^empty_string.split[...]
5842: returned table with one empty cell)
5843:
5844: 2011-04-03 misha
5845:
5846: * src/include/pa_version.h, configure.in: - version in head was
5847: changed to 3.4.2b
5848:
5849: 2011-03-30 misha
5850:
5851: * src/types/pa_vregex.C: - \w & Co now contain unicode properties
5852: as well ( new feature #294 )
5853:
5854: 2011-03-29 misha
5855:
5856: * buildall-with-xml, buildall-without-xml: - PCRE stack usage is
5857: limited to approx. 6 MB. previous limits were too big for real
5858: life. bugfix: #216
5859:
5860: 2011-03-04 moko
5861:
5862: * etc/parser3.charsets/cp866.cfg: Conforms to
5863: http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/PC/CP866.TXT
5864:
5865: * etc/parser3.charsets/cp866.cfg: cp866 initial version from
5866: vlalek@
5867:
5868: 2011-02-22 misha
5869:
5870: * src/include/pa_charset.h, operators.txt: - some methods mustn't
5871: be under #ifdef XML or parser can't be compiled without xml
5872: support
5873:
5874: 2011-02-21 misha
5875:
1.116 moko 5876: * src/targets/apache/: Makefile.am: - mention
1.95 moko 5877: ApacheModuleParser3.vcproj was removed
5878:
5879: * src/types/pa_vjunction.C: - EOL before EOF was added (warning
5880: removed)
5881:
5882: 2011-02-20 misha
5883:
5884: * tests/: 266.html, 266.p: - tests for checking $.inherited and
5885: $.overridden in ^reflection:method_info[...] were added
5886:
5887: * src/classes/reflection.C: - beautifying result of
5888: ^reflection:method_info[] ($.overridden/inherited)
5889:
5890: 2011-02-18 misha
5891:
5892: * src/main/: pa_charset.C, pa_http.C, untaint.C: - use pa_isalpha
5893: and pa_isalnum instead of isalpha and isalnum - bug with
5894: redundand quoting lowercased latin chars while building email
5895: body was fixed
5896:
5897: * src/include/pa_common.h: - pa_isalpha and ps_isalnum methods were
5898: added (they check for latin chars only)
5899:
5900: 2011-02-16 misha
5901:
5902: * src/main/pa_charset.C: - bugfix: in some cases the calculating
5903: string size for transcoding gave too small value (should ever
5904: look for availability char in dest charset inspite of the char
5905: size)
5906:
5907: 2011-02-04 moko
5908:
5909: * tests/223.html: header values now not url-encoded (issue #195)
5910:
5911: 2011-02-01 misha
5912:
5913: * buildall-with-xml, buildall-without-xml: - 8.10 => 8.12
5914:
5915: 2011-01-31 misha
5916:
5917: * src/main/pa_request.C: - throw exception if param file_name in
5918: use_file is empty
5919:
5920: 2011-01-08 moko
5921:
5922: * src/classes/curl.C: compilations errors fixed
5923:
5924: 2010-12-29 moko
5925:
5926: * tests/: 265.html, results/265.processed: test for issue #200
5927: added
5928:
5929: * src/main/pa_string.C: empty regex result check added (fixes issue
5930: #200)
5931:
5932: * src/main/pa_http.C: pa_http_safe_header_name corrected a bit
5933:
5934: * tests/results/223.processed: header values now not url-encoded
5935: (issue #195)
5936:
5937: * src/: classes/curl.C, include/pa_http.h, main/pa_http.C,
5938: main/untaint.C: L_HTTP_HEADER now used in http headers values,
5939: pa_http_safe_header_name added for headers names (fixes bug #195)
5940:
5941: 2010-12-18 misha
5942:
5943: * src/: types/types.vcproj, classes/classes.vcproj: - arp-include
5944: => pa-include
5945:
5946: 2010-11-28 moko
5947:
5948: * src/lib/sdbm/sdbm.vcproj: apr -> pa (.vcproj)
5949:
5950: * src/lib/sdbm/: pa_strings.C, sdbm.c, pa-include/pa_strings.h: apr
5951: -> pa
5952:
5953: * configure.in: apr -> pa
5954:
5955: * src/types/: pa_vhashfile.C, pa_vhashfile.h: apr -> pa
5956:
5957: * src/: lib/sdbm/pa-include/Makefile.am, lib/sdbm/Makefile.am,
5958: classes/Makefile.am, types/Makefile.am: apr -> pa
5959:
5960: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C,
5961: pa_file_io.C, pa_strings.C, sdbm.c, sdbm_hash.c, sdbm_lock.c,
5962: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h,
5963: pa-include/pa_apr.h, pa-include/pa_errno.h,
5964: pa-include/pa_file_info.h, pa-include/pa_file_io.h,
5965: pa-include/pa_sdbm.h, pa-include/pa_strings.h: apr -> pa (apache2
5966: module apr name conflict resolved)
5967:
5968: 2010-11-27 misha
5969:
5970: * buildall-with-xml, buildall-without-xml: - typo fixed: libz2 ->
5971: libbz2
5972:
5973: 2010-11-26 misha
5974:
5975: * src/: types/pa_vregex.C, classes/hash.C, classes/table.C: -
5976: warnings removed
5977:
5978: 2010-11-25 moko
5979:
5980: * operators.txt: $.indent(true)
5981:
5982: * operators.txt: another bugfix. :)
5983:
5984: * operators.txt: bugfix. :)
5985:
5986: * buildall-with-xml: libxml2-2.7.8 + with-apache
5987:
5988: 2010-11-24 moko
5989:
1.116 moko 5990: * configure: apxs support
1.95 moko 5991:
5992: * configure.in: apxs support -Bstatic gc removed for OS X
5993:
5994: * src/targets/: Makefile.am, apache/Makefile.am: apxs support
5995:
5996: * src/main/: pa_globals.C, pa_xml_io.C: the rest converted to
5997: THREAD_LOCAL usage
5998:
5999: * src/: classes/curl.C, include/pa_config_includes.h,
6000: main/pa_globals.C: THREAD_LOCAL defined and used
6001:
6002: 2010-11-23 moko
6003:
6004: * src/: classes/op.C, main/pa_os.C: microseconds, not milliseconds
6005: should be passed to pa_sleep, and only fractional part (bugfix:
6006: #188)
6007:
6008: * src/targets/apache/mod_parser3.c: 1.3 compatibility
6009:
6010: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C:
6011: GC_dont_gc=1, as in cgi version
6012:
6013: * src/targets/apache/mod_parser3.c: warning war
6014:
6015: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6016: pa_httpd.h: version removed, some trash removed
6017:
6018: * src/targets/apache/mod_parser3.c: version removed (we don't want
6019: to show it), warning war
6020:
6021: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6022: pa_httpd.h: parser_status_allowed removed + merge config
6023: functions removed (override is the default) + beauty
6024:
6025: * src/: include/pa_request.h, main/pa_request.C,
6026: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: option to
6027: hide $status used in apache module removed
6028:
6029: 2010-11-18 moko
6030:
6031: * operators.txt: $.table[compact] added for ^json:string[]
6032:
6033: 2010-11-16 moko
6034:
6035: * src/targets/apache/mod_parser3.c: some cleanup done
6036:
6037: * src/main/untaint.C: bugfix: first, second String::Body argument
6038: is hashcode; second, info.fragment_begin is original, not
6039: resulting length
6040:
6041: * src/classes/file.C: new feature: $.stdin now untainted
6042:
6043: * tests/results/264.processed: new feature: $.stdin[] now untainted
6044:
6045: * tests/cat.sh: new feature: stdin arg to test $.stdin[value]
6046:
6047: * src/classes/op.C: ^apply-taint[] method added
6048:
6049: * tests/: 264.html, results/264.processed: ^apply-taint[] test
6050: added; $.stdin untaint test added
6051:
6052: 2010-11-15 moko
6053:
6054: * src/targets/apache/mod_parser3.c: outdated MODULE_MAGIC_NUMBER
6055: removed
6056:
6057: * src/targets/apache/: mod_parser3.c, mod_parser3_core.C,
6058: pa_httpd.h: 2x2 calculated under apache2. :)
6059:
6060: 2010-11-13 moko
6061:
6062: * src/targets/apache/mod_parser3.c: initial changes to build module
6063: with apache 2.x includes
6064:
6065: * src/targets/apache/: Makefile.am, mod_parser3.c,
6066: mod_parser3_core.C, pa_httpd.h, pa_threads.C: initial commit for
6067: united apache 1.3 / apache 2.x DSO module
6068:
6069: 2010-11-09 moko
6070:
6071: * src/types/pa_method.h: check added to dissallow @method[name;*]
6072: syntax
6073:
6074: * tests/: 263.html, results/263.processed: test from method[*args]
6075: added
6076:
6077: * src/types/: pa_method.h, pa_vmethod_frame.h: closes #26: variable
6078: number of params can now be passed to a method declared with *arg
6079:
6080: 2010-11-06 moko
6081:
6082: * src/classes/table.C: formating fixed. :)
6083:
6084: * src/classes/table.C: closes #4: ^table.select now supports
6085: $.limit(), $.offset, $.reverse() options
6086:
6087: * tests/: 262.html, results/262.processed: test for ^table:select
6088: with options added (feature #4)
6089:
6090: * src/include/pa_array.h: remove function added
6091:
6092: * src/types/: pa_vhash.C, pa_vhash.h: avoiding temporal String
6093: object in get_element/put_element, using static one.
6094:
6095: 2010-11-04 moko
6096:
6097: * src/types/pa_vregex.C: closes #6: exeption now thrown if invalid
6098: options is passed
6099:
6100: * tests/: 256.html, results/256.processed: $.table[compact] feature
6101: now tested; k and p in handler now tested.
6102:
6103: * src/types/: pa_value.h, pa_vtable.C, pa_vtable.h: fixes #153,
6104: $.table[compact] feature added
6105:
6106: * src/classes/json.C: key is now passed to handler in
6107: value_json_string; ^json:string result now process tainting
6108: inside and returns clean string, related to issue #153
6109:
6110: * src/main/untaint.C: bugfix: charset can be null (in
6111: ^string:save[] as example), thus check is added
6112:
6113: 2010-10-31 moko
6114:
6115: * src/classes/string.C: error message changed (fixes issue #149)
6116:
6117: 2010-10-29 moko
6118:
6119: * src/main/pa_http.C: ":port" is now added to "Host:" header if
6120: port is not default (fixes issue #155); exception on invalid port
6121: added.
6122:
6123: * src/main/untaint.C: '*' is now not urlencoded to allow header
6124: "Accept: */*" to be passed
6125:
6126: 2010-10-28 moko
6127:
6128: * src/classes/curl.C: bugfix: detect_charset() was throwing
6129: exception on unknown charset even if response_charset was
6130: specified
6131:
6132: 2010-10-27 moko
6133:
6134: * src/classes/string.C: ^string.append removed for void
6135: compatibility
6136:
6137: 2010-10-26 moko
6138:
6139: * src/classes/json.C: libjson supports array at top level, we too
6140: (GPF fixed)
6141:
6142: 2010-10-25 moko
6143:
6144: * tests/: 253.html, results/253.processed: libjson supports array
6145: at top level, parser now supports it as well.
6146:
6147: * tests/261.html, tests/results/261.processed,
6148: src/types/pa_vstring.h: empty string is now void compatible
6149: (allows $empty.key)
6150:
6151: 2010-10-22 misha
6152:
6153: * src/types/pa_vcookie.C: - fix for session cookie (was introduced
6154: while adding additional expires checkout)
6155:
6156: * tests/030.html: - test for session cookie was added
6157:
6158: 2010-10-21 moko
6159:
6160: * src/: classes/string.C, classes/void.C, main/execute.C,
6161: types/pa_vvoid.C, types/pa_vvoid.h: void now inherited from
6162: string (feature #111)
6163:
6164: * tests/: 261.html, results/261.processed: checks void from string
6165: inheritance (feature #111)
6166:
6167: * src/classes/: bool.C, classes.h, curl.C, date.C, double.C,
6168: file.C, hash.C, hashfile.C, image.C, inet.C, int.C, json.C,
6169: reflection.C, regex.C, string.C, table.C, void.C: used_directly()
6170: now true by default
6171:
6172: 2010-10-17 moko
6173:
6174: * src/: include/pa_string.h, main/pa_http.C, main/untaint.C: files
6175: upload now uses binary blocks instead of L_FILE_POST tainting.
6176: (bugfix: #128)
6177:
6178: * tests/: 223.html, results/223.processed: binary file upload test
6179: added, GPF (issue #128) also checked in this test
6180:
6181: 2010-10-13 misha
6182:
6183: * tests/260.html: - test for math:convert
6184:
6185: * src/classes/math.C: - error in math:convert was fixed
6186:
6187: * operators.txt: - info about
6188: ^math:convert[number](from-base;to-base) was added
6189:
6190: * src/classes/math.C: - method
6191: ^math:convert[number](from-base;to-base) for converting number
6192: represention from one base to another was added ( new feature:
6193: #23 )
6194:
6195: 2010-10-13 moko
6196:
6197: * src/main/compile.tab.C: [] now is empty string, not void
6198:
6199: * src/main/compile.y: [] now is empty string, not void
6200:
6201: * src/types/pa_vvoid.h: void now passed as parameter
6202:
6203: * tests/: 259.html, results/259.processed: to test difference
6204: between void and empty string (see ticket #111)
6205:
6206: * tests/results/152.processed: $sEmpty[] is now empty string, not
6207: void
6208:
6209: * tests/256.html: $s[$void] is no longer empty string
6210:
6211: * tests/254.html: empty string is no longer void
6212:
6213: 2010-10-12 misha
6214:
6215: * src/types/pa_vcookie.C: - check if $.expires value can be
6216: converted to date during cookies set up ( bugfix: #104 )
6217:
6218: * tests/041.html: - more tests for ^table.locate were added
6219:
6220: * src/classes/table.C: - ^table.locate[field;value;options] didn't
6221: work ( bugfix: #129 ) - exception comment for incorrect options
6222: ^table.locate[field;value;options] was fixed
6223:
6224: 2010-10-10 moko
6225:
6226: * src/: classes/reflection.C, main/execute.C: constructor returning
6227: another object feature returned
6228:
6229: * tests/results/258.processed: test result updated as constructor
6230: returning another object feature returned
6231:
6232: * tests/: 258.html, results/258.processed: test for constructor
6233: returning another object
6234:
6235: 2010-10-08 misha
6236:
6237: * tests/257.html: - whitespaces after @METACOMMANDS and their
6238: options shouldn't cause exceptions any longer
6239:
6240: 2010-10-06 moko
6241:
6242: * src/classes/: hash.C, table.C: length from sql server is now
6243: ignored, as sql string can contain 0x00 inside (bugfix: #119)
6244:
6245: 2010-10-02 misha
6246:
6247: * operators.txt: - the X mark was removed from ^cache[file]. it is
6248: usable to delete cache file.
6249:
6250: 2010-10-02 moko
6251:
6252: * tests/: 253.html, results/253.processed: hook_key added for key
6253: checking
6254:
6255: * src/classes/json.C: null key bug fixed
6256:
6257: 2010-09-29 misha
6258:
6259: * tests/: 256.html, 256.txt: - tests for ^json:string[] were added
6260:
6261: 2010-09-25 moko
6262:
6263: * src/classes/json.C: small fixed
6264:
6265: * tests/results/: 253.processed, 255.processed: just updated
6266:
6267: * tests/: 253.html, 253_json.txt, 255.html, results/253.processed,
6268: results/255.processed: charset transcode test added for
6269: json:parse
6270:
6271: 2010-09-24 moko
6272:
6273: * src/types/pa_value.h: warning war :)
6274:
6275: * src/: classes/json.C, include/pa_request.h, types/pa_value.h,
6276: types/pa_vfile.C, types/pa_vtable.C: $.indent implemented for
6277: ^json:string
6278:
6279: 2010-09-22 moko
6280:
6281: * src/main/pa_charset.C: parser charset tables declare only
6282: white-space before 0x20, thus adding the missing chars
6283:
6284: * etc/parser3.charsets/: koi8-r.cfg, koi8-u.cfg: updated to conform
6285: to http://unicode.org/Public/MAPPINGS/VENDORS/
6286:
6287: 2010-09-21 misha
6288:
6289: * src/main/compile.y: - some semicolons were added (VS2010 don't
6290: want to compile grammar if they are absent)
6291:
6292: * tests/: make_tests.cmd, run_tests.cmd: - path tools is changed
6293:
6294: * src/classes/classes.vcproj: - pathes to ls and gawk are changed
6295:
6296: * src/main/main.vcproj: - path to bison is changed
6297:
6298: 2010-09-21 moko
6299:
1.116 moko 6300: * etc/parser3.charsets/: windows-1250.cfg, windows-1251.cfg,
6301: windows-1254.cfg, windows-1257.cfg, x-mac-cyrillic.cfg: updated
6302: to conform to http://unicode.org/Public/MAPPINGS/VENDORS/
1.95 moko 6303:
6304: 2010-09-20 misha
6305:
6306: * src/types/pa_vtable.C: - add EOLs while json-serializing table
6307:
6308: * src/classes/json.C: - add EOL while json-serializing hash
6309:
6310: * src/lib/json/JSON_parser.C: - 'ES' replaced by 'ESC' because some
6311: compilers don't like 'ES'.
6312:
6313: 2010-09-17 misha
6314:
6315: * operators.txt: - info about json class was added
6316:
6317: * src/classes/json.C: - ^json:string[object]
6318:
6319: * src/: include/pa_request.h, main/pa_request.C: - stuff for
6320: preventing infinite recursion while executing json:string was
6321: added
6322:
6323: * src/include/pa_string.h: - method append_quoted was added
6324:
6325: * src/types/: pa_value.C, pa_value.h, pa_vbool.h, pa_vdate.h,
6326: pa_vdouble.h, pa_vfile.C, pa_vfile.h, pa_vint.h, pa_vstring.h,
6327: pa_vtable.C, pa_vtable.h, pa_vvoid.h: - method get_json_string
6328: was added to Value & Co
6329:
6330: * src/classes/date.C: - methods get_gmt_string and get_sql_string
6331: were used
6332:
6333: * src/types/pa_vdate.h: - methods get_gmt_string and get_sql_string
6334: were added
6335:
6336: 2010-09-10 moko
6337:
6338: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6339: die_or_abort (backport from 3.4.1)
6340:
6341: * src/targets/cgi/parser3.C: vsnprintf now not called twice in
6342: die_or_abort (bugfix: #106)
6343:
6344: 2010-09-09 moko
6345:
6346: * src/classes/json.C: warning war. :)
6347:
6348: 2010-09-08 misha
6349:
6350: * src/lib/json/Makefile.am: - additional include directories were
6351: added (for pa_memory.h and gc.h)
6352:
6353: * src/lib/json/json.vcproj: - JSON_parser.c => JSON_parser.C -
6354: compile as C++ instead default - additional include directory was
6355: added (for gc.h)
6356:
6357: * src/types/pa_vform.C: - little code reformating
6358:
6359: * src/classes/file.C: - $.content-type option now can be specified
6360: in ^file::create ( new feature: #102 )
6361:
6362: 2010-09-08 moko
6363:
6364: * src/lib/json/: JSON_parser.C, JSON_parser.h: json lib now uses
6365: pa_malloc/pa_free
6366:
6367: 2010-09-07 moko
6368:
6369: * tests/results/254.processed: VStateless_class:put_element
6370: exception was fixed
6371:
6372: * src/types/: pa_value.h, pa_vstateless_class.h: now
6373: VStateless_class:put_element barks self.type, not this.type
6374: (bugfix: #105)
6375:
6376: 2010-09-06 moko
6377:
6378: * src/classes/reflection.C: bugfix: new String() is required for
6379: exception handling
6380:
6381: * tests/: 254.html, results/254.processed: test modified
6382:
6383: 2010-09-05 moko
6384:
6385: * tests/: 254.html, results/254.processed: ^reflection:copy test
6386: added
6387:
6388: * src/: classes/reflection.C, include/pa_request.h:
6389: ^reflection:copy implemented (new feature: #100)
6390:
6391: 2010-09-03 moko
6392:
6393: * src/lib/json/JSON_parser.C: c++ compatiblity
6394:
6395: * tests/: 253.html, 253_json.txt, results/253.processed: $.distinct
6396: option testing added
6397:
6398: 2010-09-02 moko
6399:
6400: * src/classes/json.C: $.distinct[first|last|all] added
6401:
6402: 2010-09-01 moko
6403:
6404: * tests/results/253.processed: json test result
6405:
6406: * tests/: 253.html, 253_json.txt: json test added
6407:
6408: * src/classes/json.C: json.C update to actual version + hash key
6409: creation bugfix
6410:
6411: 2010-08-31 misha
6412:
6413: * src/lib/json/JSON_parser.C, src/lib/json/JSON_parser.h,
6414: src/lib/json/Makefile.am, src/lib/json/json.vcproj,
6415: src/lib/Makefile.am, src/classes/Makefile.am,
6416: src/classes/classes.vcproj, src/classes/json.C, parser3.sln: -
6417: json library was added
6418:
6419: 2010-08-30 moko
6420:
6421: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
6422: types/pa_vobject.C: cosmetic optimization in
6423: request:execute_method usage
6424:
6425: * src/: include/pa_charset.h, main/pa_charset.C: small
6426: optimization, just to decrease number of lines. :)
6427:
6428: 2010-08-27 misha
6429:
6430: * src/classes/op.C: - taint[json] was added
6431:
6432: * tests/: 250.html, 251.html, 252.html: - tests for taint[json]
6433: were added
6434:
6435: * src/main/pa_exec.C: - warning fix was rolled back.
6436:
6437: * src/: main/pa_charset.C, main/untaint.C, include/pa_charset.h,
6438: include/pa_string.h: - taint[json] was added - escaping was
6439: slightly modified
6440:
6441: 2010-08-25 misha
6442:
6443: * src/classes/file.C: - typo in file:sql exception was fixed
6444:
6445: * src/main/pa_exec.C: - warning about declared and not used
6446: variable forced_allow was removed
6447:
6448: 2010-08-14 misha
6449:
6450: * src/classes/hash.C: - two warnings about signed/unsigned mismatch
6451: were removed
6452:
6453: 2010-08-11 moko
6454:
6455: * tests/: 249.html, results/249.processed: default setter and
6456: anti-recursive default getter test added
6457:
6458: * src/: classes/reflection.C, include/pa_request.h, main/execute.C,
6459: types/pa_value.h, types/pa_vclass.C, types/pa_vobject.C,
6460: types/pa_vobject.h, types/pa_vstateless_class.C,
6461: types/pa_vstateless_class.h: default setter support +
6462: anti-recursive default getter support ( new feature: #13 )
6463:
6464: * src/include/pa_hash.h: optimization: threshold member removed
6465: from hash, reducing sizeof(hash)
6466:
6467: 2010-08-10 misha
6468:
6469: * tests/196.html: - junction-method was added to the test
6470:
6471: * tests/248.html: - ups. typo :)
6472:
6473: * tests/248.html: - test for checking .match with 4 params
6474:
6475: * tests/: 247.html, 247_utf8.txt, 247_utf8_bom.txt,
6476: 247_windows1251.txt: - test for "transcode file from utf-8 to
6477: $request:charset during loading if the BOM code is detected"
6478:
6479: * src/main/: pa_common.C, pa_http.C: - transcode file from utf-8 to
6480: $request:charset during loading if the BOM code is detected ( new
6481: feature: #98 )
6482:
6483: 2010-08-05 misha
6484:
6485: * src/classes/image.C: - ^image.replace now can accept only 2
6486: params. in this case the whole image is affected ( new feature:
6487: #95 )
6488:
6489: 2010-08-04 misha
6490:
6491: * tests/246.html: - test tor ^hash._at[] was added
6492:
6493: * src/classes/hash.C: - ^hash._at[first|last|[-]N] ( new feature:
6494: #53 )
6495:
6496: * src/include/pa_hash.h: - methods for accessing the first and the
6497: last values of ordered hash were added (first_value and
6498: last_value)
6499:
6500: * src/classes/file.C: - now ^file::base64 accepts up to 4 params
6501: (similar to others file's methods):
6502: ^file::base64[mode;user-file-name;encoded;options] ( new feature:
6503: #68 )
6504:
6505: * src/types/pa_vmethod_frame.h: - helper method as_hash was added
6506:
6507: 2010-08-01 moko
6508:
6509: * src/classes/op.C: to correctly process $result[] in code, called
6510: from ^process
6511:
6512: * tests/245.html: $result in ^process[] test added
6513:
6514: * src/: classes/op.C, classes/reflection.C, include/pa_request.h,
6515: main/execute.C, main/pa_request.C, types/pa_vmethod_frame.C,
6516: types/pa_vmethod_frame.h, types/pa_vobject.C: optimization:
6517: VMethodFrame(junction, caller) replaced with VMethodFrame(method,
6518: caller, self) op_call(VMethodFrame &frame, bool constructing)
6519: removed, construct(class,method) added
6520:
6521: * tests/results/: 192.processed, 244.processed: request::construct
6522: added
6523:
6524: * tests/: 244.html, 245.html, results/244.processed,
6525: results/245.processed: object creation exceptions and ^process
6526: tests added
6527:
6528: 2010-07-28 misha
6529:
6530: * tests/make_tests.cmd: - win32 EOLs
6531:
6532: * tests/: run_parser.cmd, run_tests.cmd: - cmd files for executing
6533: tests on Win32 were added (The system timezone should be GMT+3)
6534:
6535: 2010-07-26 misha
6536:
6537: * tests/: 212.html, results/212.processed: - sizes were removed
6538: mecause they could be different on different OSs
6539:
6540: * tests/065.html: - make it "win32 friendly"
6541:
6542: 2010-07-25 misha
6543:
6544: * src/main/compile.y: - all EOLs between methods are removed during
6545: compilation ( new feature: #47 )
6546:
6547: * tests/results/149.processed: - prepare tests to trim trailing
6548: methods' EOLs
6549:
6550: * tests/149.html: - prepare tests to trim trailing methods' EOLs
6551:
6552: * tests/: results/006.processed, results/014.processed, 006.html,
6553: 014.html, 022.html: - prepare tests to trim trailing methods'
6554: EOLs
6555:
6556: * tests/: 059.html, 071.html, 149.html, results/059.processed,
6557: results/071.processed, results/022.processed: - prepare tests to
6558: trim trailing methods' EOLs
6559:
6560: * tests/: results/073.processed, results/109.processed,
6561: results/142.processed, results/144.processed,
6562: results/149.processed, 073.html, 096.html, 109.html, 142.html,
6563: 144.html: - prepare tests to trim trailing methods' EOLs
6564:
6565: * tests/: 096.html, 107.html, 109.html, 142.html, 144.html,
6566: 149.html, 152.html, results/096.processed, results/107.processed,
6567: results/109.processed, results/142.processed,
6568: results/144.processed: - prepare tests to trim trailing methods'
6569: EOLs
6570:
6571: 2010-07-24 moko
6572:
6573: * tests/results/: 156.processed, 224.processed: fix for #54 changed
6574: the hash order in this test
6575:
6576: * tests/014.html: to check hash order, hash no is longer sorted
6577: before print
6578:
6579: * src/include/pa_hash.h: hash copy constructor now keeps order
6580: (bugfix: #54)
6581:
6582: 2010-07-23 moko
6583:
6584: * tests/results/224.processed: @auto[] is no longer inherited
6585:
6586: * src/types/pa_vstateless_class.C, tests/227.html,
6587: tests/results/227.processed: @auto[] is no longer inherited
6588: (bugfix: #57)
6589:
6590: 2010-07-22 misha
6591:
6592: * src/classes/table.C: - don't skip comment lines during
6593: table::load if encloser or separator is set as '#' ( new feature:
6594: #30 )
6595:
6596: * src/targets/cgi/parser3.C: - don't run as cgi if
6597: env:PARSER_VERSION was set for preventing infinite loot ( bugfix:
6598: #12 )
6599:
6600: * src/classes/file.C: - set PARSER_VARSION env before external
6601: script executing
6602:
6603: 2010-07-13 misha
6604:
6605: * tests/058.html: - test for suppressing @border was added - test
6606: for user attribute was added
6607:
6608: * tests/results/186.processed: unescaping from \uXXXX
6609:
6610: * tests/186.html: unescaping from \uXXXX
6611:
6612: * tests/: 239.html, results/239.processed: method call type
6613:
6614: * src/types/: pa_vjunction.C, pa_vjunction.h: - bugfix: #90 :
6615: $junction_method.CLASS_NAME (+CLASS)
6616:
6617: 2010-07-07 misha
6618:
6619: * buildall-with-xml, buildall-without-xml: - moving to pcre 8.10 on
6620: *nix
6621:
6622: 2010-07-05 misha
6623:
6624: * src/: classes/curl.C, classes/file.C, classes/hash.C,
6625: classes/image.C, classes/op.C, classes/string.C, classes/table.C,
6626: classes/void.C, main/pa_common.C, main/pa_http.C: - exception
6627: comment strings "options must be hash", "options must be hash,
6628: not code" and "called with invalid option" were replaced by
6629: constatns - exception comment string "invalid option passed" was
6630: replaced by "called with invalid option" (now in different
6631: methods are the same exception comment string)
6632:
6633: * src/include/pa_exception.h: - more exception strings were defined
6634:
6635: * src/: main/compile.y, main/compile_tools.C, main/compile_tools.h,
6636: types/pa_vstateless_class.h: - now we can define possible
6637: method's call type ( new feature: #5 ) 1.
6638: @OPTIONS\nstatic|dynamic (no option == any) -- for all classe's
6639: methods 2. @static:method[params] (only static keyword could be
6640: used here) -- for specified methods
6641:
6642: * src/main/pa_common.C: - junction points should not be deleted on
6643: win32 during dirs cleanup ( bugfix: #83 ) - optimisation in dirs
6644: cleanup
6645:
6646: 2010-07-03 misha
6647:
6648: * tests/: 158.html, 160.html, 161.html, 162.html, 163.html,
6649: results/158.processed, results/160.processed,
6650: results/161.processed, results/162.processed,
6651: results/163.processed: - prepare tests to trim trailing methods'
6652: EOLs
6653:
6654: * tests/results/169.processed: - prepare tests to trim trailing
6655: methods' EOLs
6656:
6657: * tests/results/: 168.processed, 169.processed: - prepare tests to
6658: trim trailing methods' EOLs
6659:
6660: * tests/: results/170.processed, results/167.processed,
6661: results/168.processed, results/169.processed, 167.html, 168.html,
6662: 169.html: - prepare tests to trim trailing methods' EOLs
6663:
6664: * tests/: results/170.processed, results/171.processed,
6665: results/172.processed, results/173.processed,
6666: results/174.processed, results/175.processed, 170.html, 171.html,
6667: 172.html, 173.html, 174.html, 175.html: - prepare tests to trim
6668: trailing methods' EOLs
6669:
6670: * tests/: results/176.processed, results/180.processed,
6671: results/184.processed, results/185.processed,
6672: results/191.processed, results/192.processed,
6673: results/196.processed, results/197.processed,
6674: results/198.processed, 176.html, 180.html, 184.html, 185.html,
6675: 191.html, 192.html, 196.html, 197.html, 198.html: - prepare tests
6676: to trim trailing methods' EOLs
6677:
6678: * tests/: 199.html, 208.html, 209.html, 213.html, 214.html,
6679: results/199.processed, results/208.processed,
6680: results/209.processed, results/213.processed,
6681: results/214.processed: - prepare tests to trim trailing methods'
6682: EOLs
6683:
6684: 2010-06-29 misha
6685:
6686: * tests/: 220.html, 218.html, results/218.processed,
6687: results/215.processed, results/217.processed, 215.html, 217.html:
6688: - prepare tests to trim trailing methods' EOLs
6689:
6690: * tests/: results/224.processed, 224.html, 223.html,
6691: results/223.processed, results/220.processed: - prepare tests to
6692: trim trailing methods' EOLs
6693:
6694: * tests/results/: 226.processed, 230.processed: - prepare tests to
6695: trim trailing methods' EOLs
6696:
6697: * tests/: 229.html, results/229.processed: - prepare tests to trim
6698: trailing methods' EOLs
6699:
6700: * tests/: 232.html, 235.html, results/232.processed,
6701: results/235.processed, 226.html, 227.html, 228.html, 230.html,
6702: results/226.processed, results/227.processed,
6703: results/228.processed, results/230.processed: - prepare tests to
6704: trim trailing methods' EOLs
6705:
6706: 2010-06-16 moko
6707:
6708: * tests/: 229.html, results/229.processed: elseif now supported in
6709: ^if
6710:
6711: * src/classes/op.C: new feature: #56 elseif now supported in ^if
6712:
6713: 2010-06-03 misha
6714:
6715: * src/main/pa_common.C: - bugfix #74 -- memmove should be used
6716: instead of memcopy for overlaped regions
6717:
6718: 2010-05-25 misha
6719:
6720: * src/main/pa_common.C: - wanring about unused vars was removed
6721:
6722: * src/: include/pa_request.h, main/execute.C, main/pa_request.C: -
6723: get_method_filename was moved to execute.C
6724:
6725: 2010-05-23 misha
6726:
6727: * src/main/pa_request.C: - more accurate detection of method's file
6728:
6729: 2010-05-22 misha
6730:
6731: * src/classes/reflection.C: - bugfix: core during detection of
6732: .file if filespec isn't detected successfully
6733:
6734: 2010-05-20 misha
6735:
6736: * src/main/pa_request.C: - fix in get_method_filename
6737:
6738: * src/include/pa_request.h: - new feature: #24 -- searching
6739: included file in @USE/^use is changed. if its filespec doesn't
6740: start from '/' it will be searched in caller file directory
6741:
6742: * src/classes/reflection.C: - ^reflection:method_info returns file
6743: where the method is defined
6744:
6745: * src/: include/pa_request.h, main/compile.y, main/pa_request.C,
6746: classes/op.C: - new feature: #24 -- searching included file in
6747: @USE/^use is changed. if its filespec doesn't start from '/' it
6748: will be searched in caller file directory
6749:
6750: * src/: classes/file.C, include/pa_common.h: - method lastposafter
6751: is moved to pa_common.h
6752:
6753: 2010-05-18 misha
6754:
6755: * src/: main/pa_common.C, include/pa_common.h, classes/string.C,
6756: types/pa_vcookie.C: new feature: #71 ^string:js-unescape and
6757: cookie parser decode \uXXXX as well as %uXXXX
6758:
6759: 2010-05-17 misha
6760:
6761: * src/classes/curl.C: beauty: - unused param is removed in method
6762: _curl_version_action - some spaces were removed or replaced by
6763: tabs
6764:
6765: * src/classes/table.C: - bugfix: #72 core with empty value during
6766: ^table.hash[...;name_of_the_last_column][$.type[string]]
6767:
6768: 2010-05-16 misha
6769:
6770: * src/classes/curl.C: new: #61 more curl options were added
6771: (contributed by Sumo)
6772:
6773: 2010-04-29 pretender
6774:
6775: * src/main/pa_string.C: fixes #63 Split result from empty string
6776: now empty string.
6777:
6778: * src/types/pa_vtable.C: bugfix: #35 All empty table cells are now
6779: string type.
6780:
6781: 2010-04-28 pretender
6782:
6783: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
6784: main/execute.C: bugfix: #59 OPTIMIZE_BYTECODE_GET_CLASS
6785: macrodefinition removed
6786:
6787: 2010-04-19 pretender
6788:
6789: * src/main/execute.C: fixes #60 Stacktrace now contains info for
6790: OP_CONSTRUCT_OBJECT and OP_GET_CLASS
6791:
6792: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
6793: fixes #64 Now file.missing exception generates in unsafe mode to.
6794:
6795: * src/classes/file.C: fixes #48 Now not throw "not save environment
6796: variable" exception in grpunlim version.
6797:
6798: 2010-04-05 misha
6799:
6800: * src/classes/string.C: - new feature: 4th param was added to
6801: match. if specified its value is returned in case of nothing was
6802: found
6803:
6804: 2010-04-01 misha
6805:
6806: * src/main/pa_request.C: - bugfix: on *nix URIs like /a/b/// caused
6807: multiple execution of /a/b/auto.p
6808:
6809: 2010-03-19 misha
6810:
6811: * src/main/execute.C: - core in $table1.$table2 was fixed
6812:
6813: * src/targets/cgi/parser3.C: - core in sigpipe was fixed
6814:
6815: 2010-01-27 misha
6816:
6817: * src/main/pa_common.C: - bugfix: there are no excaption.type if
6818: trying to open file by path /existing-file/non-exixting-file
6819:
6820: 2010-01-26 misha
6821:
6822: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:post-body
6823: was added (returns file)
6824:
6825: 2009-12-22 misha
6826:
6827: * src/classes/curl.C: - method 'option' was renamed to 'options' -
6828: now parser doesn't have class curl if it was built without it
6829:
6830: 2009-12-15 misha
6831:
6832: * configure.in: - little cheat with curl include dir was added
6833:
6834: 2009-12-05 misha
6835:
6836: * src/classes/curl.C: - some fixes
6837:
6838: 2009-12-04 misha
6839:
6840: * src/include/pa_config_fixed.h, src/classes/classes.vcproj,
6841: src/classes/curl.C, src/classes/file.C, src/classes/Makefile.am,
6842: buildall-with-xml, buildall-without-xml, configure.in: - curl
6843: class was added
6844:
6845: * src/include/pa_hash.h: - hash-iterator was added
6846:
6847: * buildall-with-xml, buildall-without-xml: - option --passive-ftp
6848: was added to pcre
6849:
6850: 2009-11-27 misha
6851:
6852: * src/classes/image.C: - don't add @border attribute to output of
6853: ^image.html[] if it was specified by user with empty value
6854:
6855: * src/types/pa_vxdoc.C: - bugfix: core if xdoc doesn't have the
6856: root element and we are trying to access .documentElement
6857:
6858: 2009-11-11 misha
6859:
6860: * src/classes/table.C: - in ^table.flip[] look at number of columns
6861: instead of number of items in first row for named tables
6862:
6863: 2009-11-10 misha
6864:
6865: * operators.txt: - info about hash-options in ^file::create was
6866: added
6867:
6868: * tests/237.html: - test for ^file::create[...;$.charset[...]] was
6869: added
6870:
6871: 2009-11-09 misha
6872:
6873: * buildall-with-xml: - moving to libxml 2.7.6
6874:
6875: * tests/236.html: - tests for comparations cords with functions
6876: were added
6877:
6878: * src/include/pa_string.h: - optimisation: cacheing of cstr was
6879: added
6880:
6881: * src/main/pa_http.C: - little optimisation
6882:
6883: * src/: classes/table.C, lib/gc/include/gc_allocator.h: - bugfix:
6884: GPF mallocs + stringstream (table.save)
6885:
6886: * src/classes/file.C: - file::create now accepts 4th param: options
6887: with $.charset
6888:
6889: * src/lib/cord/: cordxtra.c, include/private/cord_pos.h: - fixed
6890: bug in cord (comparation cords with functions was buggy)
6891:
6892: 2009-11-06 misha
6893:
6894: * src/main/pa_string.C: - bugfix: calculation string.length
6895: sometimes was buggy
6896:
6897: * src/classes/string.C: - bugfix: Temp_value_element wasn't
6898: destroyed if exception occured during match/replace
6899:
6900: * src/: main/pa_charset.C, include/pa_charset.h: - method
6901: lengthUTF8Char was added
6902:
6903: * src/classes/op.C: - clean tainting lang was added for user's
6904: usage
6905:
6906: * src/lib/cord/: cordbscs.c, cordxtra.c: - some rare GPF were
6907: fixed: checkouts are required after GC_MALLOC
6908:
6909: * src/types/pa_vregex.C: - check UTF8 only during 1st iteration
6910:
6911: * operators.txt: - actually, there is no ^untaint[xml] in
6912: file::create
6913:
6914: 2009-10-15 misha
6915:
6916: * tests/: 235.html, 235_attach.txt: - tests for preparing email
6917: were added
6918:
6919: * tests/234.html: - more tests for checking ^taint[uri] escaping
6920: were added
6921:
6922: * src/: include/pa_string.h, main/pa_charset.C, main/pa_http.C,
6923: main/pa_request.C, main/untaint.C, types/pa_vmail.C: - little
6924: hacking: for dealing with transcoding+^taint[uri]
6925: transcode_and_untaint was replaced by untaint_and_transcode
6926:
6927: 2009-10-13 misha
6928:
6929: * tests/: 121.html, results/121.processed: - test transcoding +
6930: url-escaping now
6931:
6932: * tests/results/auto.p: - more helpers' methods were added
6933:
6934: * src/main/pa_globals.C: - die instead of abort
6935:
6936: 2009-10-06 misha
6937:
6938: * src/main/pa_common.C: - don't allocate memory during
6939: capitalization if input string is already capitalized
6940:
6941: * src/targets/isapi/parser3isapi.C: - pass pre-capitalized headers
6942:
6943: * src/targets/cgi/parser3.C: - pass pre-capitalized headers - don't
6944: use format function because it calls malloc
6945:
6946: * src/include/pa_common.h: - more capitalized headers were added
6947:
6948: * src/main/pa_common.C: - in safe mode clear executable bits during
6949: file writing
6950:
6951: 2009-10-05 misha
6952:
6953: * src/main/pa_charset.C: - use iterators in pa_charset.C itself
6954:
6955: 2009-10-03 misha
6956:
6957: * src/: types/pa_vimage.h, classes/image.C: - ^img.font[],
6958: ^img.text[] & ^img.length[] can work in utf-8 now
6959:
6960: * src/: include/pa_charset.h, main/pa_charset.C: - class
6961: UTF8_string_iterator was added
6962:
6963: * src/classes/image.C: - respect utf-8 when calculate alphabet
6964: length
6965:
6966: * src/classes/mail.C: - check from before get message.cstr
6967:
6968: 2009-10-02 misha
6969:
6970: * tests/233.html: - test for image.font, image.length, image.text
6971: with text in utf-8 were added
6972:
6973: * src/main/pa_common.C: - use pa_malloc_atomic instead of new
6974:
6975: * buildall-with-xml, buildall-without-xml: - comment about gc
6976: version for freebsd 4 was added
6977:
6978: 2009-10-01 misha
6979:
6980: * src/main/pa_exec.C: - bugfix: allocate a bit more (for
6981: terminator) - read_pipe were slightly optimized
6982:
6983: 2009-09-28 misha
6984:
6985: * src/main/: pa_common.C, pa_uue.C: - some magic numbers were
6986: removed
6987:
6988: * src/types/pa_vmail.C: - forgot about space after ':'
6989:
6990: * src/types/pa_vmail.C: - escape filenames while preparing mail
6991: body - small simplifications
6992:
6993: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode now has
6994: inout params like pa_base64
6995:
6996: * src/: types/pa_vmail.C, types/pa_vmail.h, classes/mail.C: - new
6997: option $.debug-print(1) was added to mail:send - changes for
6998: using uue_encode which uses less memory
6999:
7000: * src/main/pa_common.C: - pa_base64_encode uses less memory now
7001:
7002: * src/: include/pa_uue.h, main/pa_uue.C: - pa_uuencode reduces less
7003: memory now
7004:
7005: 2009-09-26 misha
7006:
7007: * src/types/pa_vmail.C: - default encoding now is base64
7008:
7009: * buildall-with-xml: - moving to libxml 2.7.5 and libxslt 1.1.26
7010:
7011: 2009-09-25 misha
7012:
7013: * src/types/pa_vmail.C: - capitalization of headers was added to
7014: sending mail as well
7015:
7016: * buildall-with-xml: - catalog package was removed from libxml
7017:
7018: * src/main/pa_xml_io.C: - fix in removing file:// protocol for
7019: win32 absolute path
7020:
7021: * src/include/pa_common.h: - one more capitalized header was added
7022:
7023: 2009-09-22 misha
7024:
7025: * INSTALL: - comment about building just httpd binary while
7026: building apache module was added
7027:
7028: 2009-09-21 misha
7029:
7030: * buildall-with-xml: - moving to the latest versions of xml libs:
7031: libxml 2.7.4 and libxslt 1.1.25
7032:
7033: 2009-09-19 misha
7034:
7035: * tests/231.html: - test for encoding cookie in win-1251
7036:
7037: 2009-09-18 misha
7038:
7039: * tests/: 224.html, 224.p: - tests for ^reflection:fields[class or
7040: object] were added
7041:
7042: * operators.txt: - info about method ^reflection:fields[class or
7043: object] was added
7044:
7045: * src/classes/reflection.C: - method ^reflection:fields[class or
7046: object] was added
7047:
7048: * src/types/: pa_value.h, pa_vclass.C, pa_vclass.h, pa_vobject.h: -
7049: methods get_fields were added
7050:
7051: * tests/232.html: - tests for @GET[name]
7052:
7053: * src/classes/table.C: - some changes in handling hash-options for
7054: creare, join and locate
7055:
7056: * src/types/: pa_vobject.C, pa_vobject.h: - @GET[] now could be
7057: defined with option: the type of requested value
7058:
7059: 2009-09-17 misha
7060:
7061: * tests/212.html: - tests for .pattern and .options were added
7062:
7063: * src/types/: pa_vregex.C, pa_vregex.h: - $regex.pattern and
7064: $regex.options were added
7065:
7066: 2009-09-11 misha
7067:
7068: * tests/: 223.html, 223_utf8.txt, 223_win1251.txt: - test was
7069: rewrited. it checks not just one case of sending cookies during
7070: file::load[http], but also sending headers and fields (including
7071: files)
7072:
7073: 2009-09-10 misha
7074:
7075: * src/main/untaint.C: - workaround in file-spec lang for old Macs
7076: was removed => now parser can open files with Russian 'r' in
7077: filename
7078:
7079: * src/main/untaint.C: - bugfix: client charset whould be analized
7080: while escaping cookies but now source charset
7081:
7082: * src/main/pa_http.C: - bugfix: the values of http headers didn't
7083: ^tainted[uri] so it was possible to make request with incorrect
7084: http header
7085:
7086: * src/main/pa_http.C: - capitalization of http headers during
7087: file::load[http was slightly changes - bugfix: all headers which
7088: parser sends during file::load[http should be transcoded and only
7089: then escaped
7090:
7091: * src/main/untaint.C: - a bit more comments were added
7092:
7093: * src/classes/: file.C, string.C: - types where changes (minus 2
7094: warnings)
7095:
7096: * src/include/pa_common.h: - 2 capitalized strings for making http
7097: headers during file::load[http were added
7098:
7099: 2009-09-08 misha
7100:
7101: * operators.txt: - changes in file.save and string.save were added
7102:
7103: * tests/: 230.html, 230.txt: - tests for checking options in
7104: file.save and string.save were added
7105:
7106: * src/main/pa_request.C: - http headers names, which are passed to
7107: SAPI::add_header_attribute are lowercased now (it'll be
7108: capitalized in that method)
7109:
7110: * src/: types/pa_vfile.C, types/pa_vfile.h, classes/file.C,
7111: classes/string.C: - file_write accepts Request_charsets and asked
7112: charset and cound transcode content before writing - string.save
7113: and file.save have option $.charset now
7114:
7115: * src/: include/pa_common.h, main/pa_common.C, classes/table.C,
7116: classes/xdoc.C: - file_write accepts Request_charsets and asked
7117: charset and cound transcode content before writing
7118:
7119: * src/include/pa_exception.h: - new exception comment string was
7120: defined
7121:
7122: 2009-09-07 misha
7123:
7124: * src/main/compile.y: - grammar $name\ name stops now for regex
7125: sub-pattern\s
7126:
7127: 2009-09-04 misha
7128:
7129: * src/main/pa_http.C: - capitalization of http headers during
7130: file::load[http was implemented
7131:
7132: 2009-09-03 misha
7133:
7134: * src/: main/pa_common.C, main/pa_http.C, main/pa_request.C,
7135: include/pa_common.h, include/pa_sapi.h, types/pa_vcookie.C,
7136: types/pa_vmail.C, targets/cgi/parser3.C,
7137: targets/isapi/parser3isapi.C: - back to storing response http
7138: headers in lowercase - capitalize them during output
7139:
7140: 2009-08-31 misha
7141:
7142: * src/classes/table.C: - allow call with any brackets (it could be
7143: useful in methods with explict result declaration)
7144:
7145: * src/classes/table.C: - bugfix: ^table.sort{...} doesn't work
7146: correctly if $request:charset==koi8-r
7147:
7148: 2009-08-30 misha
7149:
7150: * src/: include/pa_common.h, main/pa_request.C: - http headers were
7151: changed: content-type => Content-type and so on
7152:
7153: * src/classes/file.C, src/include/pa_common.h,
7154: src/include/pa_request.h, src/main/pa_http.C,
7155: src/main/pa_request.C, src/types/pa_vcookie.C,
7156: src/types/pa_vmail.C, src/targets/cgi/parser3.C,
7157: src/targets/isapi/parser3isapi.C, tests/results/001.processed,
7158: tests/results/002.processed, tests/results/003.processed,
7159: tests/results/004.processed, tests/results/005.processed,
7160: tests/results/006.processed, tests/results/007.processed,
7161: tests/results/008.processed, tests/results/009.processed,
7162: tests/results/010.processed, tests/results/011.processed,
7163: tests/results/012.processed, tests/results/013.processed,
7164: tests/results/014.processed, tests/results/015.processed,
7165: tests/results/016.processed, tests/results/017.processed,
7166: tests/results/018.processed, tests/results/019.processed,
7167: tests/results/020.processed, tests/results/021.processed,
7168: tests/results/022.processed, tests/results/023.processed,
7169: tests/results/024.processed, tests/results/025.processed,
7170: tests/results/026.processed, tests/results/027.processed,
7171: tests/results/028.processed, tests/results/029.processed,
7172: tests/results/030.processed, tests/results/031.processed,
7173: tests/results/032.processed, tests/results/033.processed,
7174: tests/results/034.processed, tests/results/035.processed,
7175: tests/results/036.processed, tests/results/037.processed,
7176: tests/results/038.processed, tests/results/039.processed,
7177: tests/results/040.processed, tests/results/041.processed,
7178: tests/results/042.processed, tests/results/043.processed,
7179: tests/results/044.processed, tests/results/045.processed,
7180: tests/results/046.processed, tests/results/047.processed,
7181: tests/results/048.processed, tests/results/049.processed,
7182: tests/results/050.processed, tests/results/051.processed,
7183: tests/results/052.processed, tests/results/053.processed,
7184: tests/results/054.processed, tests/results/055.processed,
7185: tests/results/056.processed, tests/results/057.processed,
7186: tests/results/058.processed, tests/results/059.processed,
7187: tests/results/060.processed, tests/results/061.processed,
7188: tests/results/062.processed, tests/results/063.processed,
7189: tests/results/064.processed, tests/results/065.processed,
7190: tests/results/066.processed, tests/results/067.processed,
7191: tests/results/068.processed, tests/results/069.processed,
7192: tests/results/070.processed, tests/results/071.processed,
7193: tests/results/072.processed, tests/results/073.processed,
7194: tests/results/074.processed, tests/results/075.processed,
7195: tests/results/076.processed, tests/results/077.processed,
7196: tests/results/078.processed, tests/results/079.processed,
7197: tests/results/080.processed, tests/results/081.processed,
7198: tests/results/082.processed, tests/results/083.processed,
7199: tests/results/084.processed, tests/results/085.processed,
7200: tests/results/086.processed, tests/results/087.processed,
7201: tests/results/088.processed, tests/results/089.processed,
7202: tests/results/090.processed, tests/results/091.processed,
7203: tests/results/092.processed, tests/results/093.processed,
7204: tests/results/094.processed, tests/results/095.processed,
7205: tests/results/096.processed, tests/results/097.processed,
7206: tests/results/098.processed, tests/results/099.processed,
7207: tests/results/100.processed, tests/results/101.processed,
7208: tests/results/102.processed, tests/results/103.processed,
7209: tests/results/104.processed, tests/results/105.processed,
7210: tests/results/106.processed, tests/results/107.processed,
7211: tests/results/108.processed, tests/results/109.processed,
7212: tests/results/110.processed, tests/results/111.processed,
7213: tests/results/112.processed, tests/results/113.processed,
7214: tests/results/114.processed, tests/results/115.processed,
7215: tests/results/116.processed, tests/results/117.processed,
7216: tests/results/118.processed, tests/results/119.processed,
7217: tests/results/120.processed, tests/results/121.processed,
7218: tests/results/122.processed, tests/results/123.processed,
7219: tests/results/124.processed, tests/results/125.processed,
7220: tests/results/126.processed, tests/results/127.processed,
7221: tests/results/128.processed, tests/results/129.processed,
7222: tests/results/130.processed, tests/results/131.processed,
7223: tests/results/132.processed, tests/results/133.processed,
7224: tests/results/134.processed, tests/results/135.processed,
7225: tests/results/136.processed, tests/results/138.processed,
7226: tests/results/139.processed, tests/results/140.processed,
7227: tests/results/141.processed, tests/results/142.processed,
7228: tests/results/143.processed, tests/results/144.processed,
7229: tests/results/145.processed, tests/results/146.processed,
7230: tests/results/147.processed, tests/results/148.processed,
7231: tests/results/149.processed, tests/results/150.processed,
7232: tests/results/151.processed, tests/results/152.processed,
7233: tests/results/153.processed, tests/results/154.processed,
7234: tests/results/155.processed, tests/results/156.processed,
7235: tests/results/157.processed, tests/results/158.processed,
7236: tests/results/159.processed, tests/results/160.processed,
7237: tests/results/161.processed, tests/results/162.processed,
7238: tests/results/163.processed, tests/results/164.processed,
7239: tests/results/165.processed, tests/results/166.processed,
7240: tests/results/167.processed, tests/results/168.processed,
7241: tests/results/169.processed, tests/results/170.processed,
7242: tests/results/171.processed, tests/results/172.processed,
7243: tests/results/173.processed, tests/results/174.processed,
7244: tests/results/175.processed, tests/results/176.processed,
7245: tests/results/177.processed, tests/results/178.processed,
7246: tests/results/179.processed, tests/results/180.processed,
7247: tests/results/181.processed, tests/results/182.processed,
7248: tests/results/183.processed, tests/results/184.processed,
7249: tests/results/185.processed, tests/results/186.processed,
7250: tests/results/187.processed, tests/results/188.processed,
7251: tests/results/189.processed, tests/results/190.processed,
7252: tests/results/191.processed, tests/results/192.processed,
7253: tests/results/193.processed, tests/results/194.processed,
7254: tests/results/195.processed, tests/results/196.processed,
7255: tests/results/197.processed, tests/results/198.processed,
7256: tests/results/199.processed, tests/results/200.processed,
7257: tests/results/201.processed, tests/results/202.processed,
7258: tests/results/203.processed, tests/results/204.processed,
7259: tests/results/205.processed, tests/results/206.processed,
7260: tests/results/207.processed, tests/results/208.processed,
7261: tests/results/209.processed, tests/results/210.processed,
7262: tests/results/211.processed, tests/results/212.processed,
7263: tests/results/213.processed, tests/results/214.processed,
7264: tests/results/215.processed, tests/results/216.processed,
7265: tests/results/217.processed, tests/results/218.processed,
7266: tests/results/219.processed, tests/results/220.processed,
7267: tests/results/221.processed, tests/results/222.processed,
7268: tests/results/223.processed, tests/results/224.processed,
7269: tests/results/225.processed, tests/results/226.processed,
7270: tests/results/227.processed, tests/results/228.processed,
7271: tests/results/229.processed: - http headers were changed:
7272: content-type => Content-type and so on
7273:
7274: 2009-08-27 misha
7275:
7276: * src/: main/pa_random.C, include/pa_random.h,
7277: targets/cgi/parser3.C: - year was updated :)
7278:
7279: 2009-08-26 misha
7280:
7281: * tests/: 224.html, 224.p: - test for creating of parser object
7282: using constructor without params - little bugfix in test
7283:
7284: * src/main/compile_tools.h: - bugfix: should't call autouse while
7285: checking existed class while processing partial option
7286:
7287: * src/classes/reflection.C: - bugfix: core when creating object
7288: with reflection and constructor doesn't have params
7289:
7290: 2009-08-24 misha
7291:
7292: * tests/229.html: - tests for checking the number of parameters
7293: were added
7294:
7295: * src/types/: pa_value.C, pa_vmethod_frame.h: - bugfix: the actual
7296: number of method's parameters wasn't checked correctly (the bug
7297: was introduced in 3.4.0)
7298:
7299: 2009-08-22 misha
7300:
7301: * src/main/pa_http.C: - ^file::load[http://...;$.body[]] : $.body
7302: transcoded, but tainted pieces are escaped only when
7303: content-type==url-encoding
7304:
7305: * tests/228.html: - test for checking
7306: ^file::load[http://...;$.body[]]
7307:
7308: * src/types/: pa_vform.C, pa_vform.h: - bugfix: attempt to detect
7309: post charset was too early (charsets is empty at this moment)
7310:
7311: 2009-08-21 misha
7312:
7313: * src/: include/pa_string.h, main/pa_http.C, main/pa_request.C,
7314: main/untaint.C: - some fixes with transcode+untaint
7315:
7316: 2009-08-15 misha
7317:
7318: * src/main/pa_exec.C: - number of argv in file::exec/cgi on unix
7319: was increaced to 100 (was 50)
7320:
7321: * tests/227.html: - test for checking overriding properties in
7322: static classes was added
7323:
7324: * tests/: 226.html, 226.p: - test for @autoload[] was added
7325:
7326: * src/: include/pa_request.h, main/compile.y, main/compile_tools.h,
7327: main/execute.C, main/pa_request.C, classes/reflection.C: -
7328: autouse was implemented
7329:
7330: 2009-08-14 misha
7331:
7332: * src/classes/reflection.C: - outdated checkout was removed
7333:
7334: * src/classes/reflection.C: - optimization - method ^dynamical was
7335: added.
7336:
7337: * src/: types/pa_value.h, types/pa_vmethod_frame.h,
7338: types/pa_vstateless_class.h, main/execute.C: - optimization
7339:
7340: * src/types/pa_vclass.C: - exception if base on sytem class
7341:
7342: 2009-08-12 misha
7343:
7344: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
7345: pa_vstateless_class.h: - little optimisation
7346:
7347: 2009-08-11 misha
7348:
7349: * tests/224.html: - method_params => method_info - checking for
7350: $.inherited
7351:
7352: * src/classes/reflection.C, operators.txt: - method method_params
7353: was renamed to method_info and now it returns class name, if
7354: method was defined in ancestor
7355:
7356: * tests/225.html: - tests for cheching properties in hierarhical
7357: classes were added
7358:
7359: * src/: types/pa_property.h, types/pa_vclass.C, types/pa_vclass.h,
7360: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7361: main/compile.y, main/execute.C, classes/classes.C: - problems
7362: with properties in new classes implementation were fixed
7363:
7364: 2009-08-10 misha
7365:
7366: * src/main/execute.C: - now constructor shouldn't be defined in
7367: class. it could be defined in parent.
7368:
7369: 2009-08-09 misha
7370:
7371: * src/classes/reflection.C: - ^reflection:methods doesn't return
7372: base's methods
7373:
7374: 2009-08-08 misha
7375:
7376: * src/: classes/classes.h, classes/date.C, classes/file.C,
7377: classes/form.C, classes/hash.C, classes/hashfile.C,
7378: classes/image.C, classes/mail.C, classes/op.C,
7379: classes/reflection.C, classes/regex.C, classes/string.C,
7380: classes/table.C, classes/xdoc.C, classes/xnode.C,
7381: classes/xnode.h, include/pa_hash.h, main/execute.C,
7382: main/pa_http.C, main/pa_request.C, targets/cgi/parser3.C,
7383: types/pa_method.h, types/pa_property.h, types/pa_value.C,
7384: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
7385: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
7386: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.C,
7387: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
7388: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
7389: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
7390: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
7391: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.h,
7392: types/pa_vobject.C, types/pa_vobject.h, types/pa_vproperty.C,
7393: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
7394: types/pa_vresponse.C, types/pa_vresponse.h,
7395: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
7396: types/pa_vstateless_object.h, types/pa_vstatus.C,
7397: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
7398: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
7399: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
7400: types/pa_wwrapper.h, types/types.vcproj: - new classes
7401: implementation
7402:
7403: * buildall-with-xml, buildall-without-xml: - gc has a bug if
7404: USE_MUNMAP is used. so it is disabled as a workaround.
7405:
7406: 2009-08-05 misha
7407:
7408: * src/: main/pa_common.C, include/pa_common.h: - not needed
7409: parameter was removed
7410:
7411: * src/main/pa_http.C: - bugfix: error was during detecting
7412: content-type of file which was loaded by http
7413:
7414: 2009-08-01 misha
7415:
7416: * src/main/execute.C, src/main/compile.y, src/include/pa_opcode.h,
7417: src/types/pa_wcontext.h, src/types/pa_wwrapper.h, INSTALL: -
7418: OPTIMIZE_BYTECODE_CONSTRUCT_OBJECT and OPTIMIZE_CONSTRUCT_OBJECT
7419: can't be disabled with defines any longer
7420:
7421: 2009-07-29 misha
7422:
7423: * src/classes/reflection.C, tests/results/224.processed: - for
7424: native methods with any call type now returned empty call_type
7425: value
7426:
7427: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
7428: classes/table.C, include/pa_hash.h, include/pa_request.h,
7429: main/pa_request.C: - break in cycles was optimized
7430:
7431: * INSTALL: - more defines were described
7432:
7433: 2009-07-28 misha
7434:
7435: * operators.txt: - some changes in information about reflection
7436: class
7437:
7438: * tests/: 224.html, 224.p: - tests for reflection class
7439:
7440: * src/classes/reflection.C: - some bugs were fixed, method classes
7441: was added, refactoring
7442:
7443: 2009-07-26 misha
7444:
7445: * src/classes/classes.vcproj: - reflection class wass added to
7446: project
7447:
7448: * operators.txt: - information about reflection class was added
7449:
7450: * src/classes/reflection.C: - class was redesigned
7451:
7452: 2009-07-24 misha
7453:
7454: * src/classes/: Makefile.am, reflection.C: - class reflection was
7455: added
7456:
7457: * src/types/pa_vstateless_class.h: - method for reflection method's
7458: in classes was added
7459:
7460: 2009-07-22 misha
7461:
7462: * src/main/compile_tools.h: - bugfix: $object.$var was
7463: over-optimized. it failed if $object1.$object2.field
7464:
7465: 2009-07-16 misha
7466:
7467: * src/: lib/cord/cordbscs.c, lib/cord/cordprnt.c,
7468: lib/cord/cordxtra.c, lib/cord/include/cord.h,
7469: include/pa_string.h, main/pa_string.C: - optimization: CORD_str,
7470: CORD_to_const_char_star, CORD_to_char_star and CORD_substr have
7471: one more arg: length of cord
7472:
7473: 2009-07-15 misha
7474:
7475: * src/main/pa_http.C: - bugfix: $.cookies' values should be force
7476: tainted in ^file::load[http://...;$.cookies[]]
7477:
7478: * src/classes/: op.C, regex.C, string.C: - new string with
7479: exception was used
7480:
7481: * src/include/pa_exception.h: - new string with exception was added
7482:
7483: * tests/223.html: - test for checking cookie-encoding during
7484: ^file::load[http was added
7485:
7486: * tests/: 221.html, 222.html: - tests for checking type of
7487: $table.fields.field were added
7488:
7489: * src/types/pa_vtable.C: - not used var decl was removed
7490:
7491: * src/include/pa_string.h: - use cached string length in Body::mid.
7492: it improves speed of match with brackets in pattern
7493:
7494: * src/lib/cord/include/cord.h: - make CORD_substr_checked available
7495: outside
7496:
7497: 2009-07-14 misha
7498:
7499: * src/types/pa_vtable.C: - $table.fields.a return string even if
7500: column is empty (sometime returned void) - $table.fields was
7501: added for nameless tables
7502:
7503: * src/targets/cgi/getopt.c: - one warning resolved
7504:
7505: * src/main/pa_string.C: - potentian bug fixed
7506:
7507: * src/classes/op.C: - small optimization in taint/untaint
7508:
7509: 2009-07-13 misha
7510:
7511: * tests/156.html: - test for $cookie[...$.httponly(false)...] was
7512: added
7513:
7514: * src/types/pa_value.C: - bugfix: $cookie[...$.httponly(false)...]
7515: souldn't add the attribut to output
7516:
7517: 2009-07-11 misha
7518:
7519: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
7520: stack size was increaced to 2MB (default=1MB)
7521:
7522: 2009-07-08 misha
7523:
7524: * src/main/pa_string.C: - link to UTF-8 description was added
7525:
7526: * src/include/pa_hash.h: - hash keeps element's order in more
7527: places (ex: ._keys[])
7528:
7529: * tests/220.html: - test for checking order of elements in hash in
7530: foreach was added
7531:
7532: * tests/172.html: - small changes in printing hash
7533:
7534: * tests/129.html: - small changes in printing hash
7535:
7536: * src/: include/pa_common.h, include/pa_hash.h,
7537: include/pa_request.h, types/pa_value.h, types/pa_vmethod_frame.C,
7538: types/pa_vmethod_frame.h: - hash now keeps order of elements
7539:
7540: * tests/014.html: - small changes in printing hash
7541:
7542: 2009-07-07 misha
7543:
7544: * src/classes/op.C: - new taint language "parser-code" was added
7545:
7546: * tests/219.html: - test for auto untaint parser code in process
7547: was added
7548:
7549: * src/classes/op.C: - tainted pieces in body of process are
7550: auto-untainted now: ^ -> ^^, $ -> ^$ etc.
7551:
7552: * src/: include/pa_string.h, main/untaint.C: - new language
7553: L_PARSER_CODE for auto-untaint in process was added
7554:
7555: * src/: classes/file.C, classes/hash.C, classes/image.C,
7556: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
7557: classes/xdoc.C, include/pa_string.h, main/pa_charset.C,
7558: main/pa_http.C, main/pa_request.C, main/pa_xml_io.C,
7559: main/untaint.C, types/pa_value.h, types/pa_vhash.h,
7560: types/pa_vmail.C, types/pa_vobject.h, types/pa_vstring.h: - some
7561: code cleanup
7562:
7563: 2009-07-06 misha
7564:
7565: * src/classes/: file.C, hash.C, image.C, mail.C, op.C, string.C,
7566: table.C, void.C, xdoc.C: - cstr(params) and cstrm(params) were
7567: deleted. taint_cstr[m] and untaint_cstr[m] should be used
7568:
7569: * src/types/: pa_vcookie.C, pa_vhash.h, pa_vhashfile.C,
7570: pa_vimage.C, pa_vmail.C, pa_vobject.h, pa_vregex.C,
7571: pa_vrequest.C, pa_vstring.h, pa_vvoid.h: - cstr(params) and
7572: cstrm(params) were deleted. taint_cstr[m] and untaint_cstr[m]
7573: should be used
7574:
7575: * src/main/: pa_charset.C, pa_common.C, pa_exec.C, pa_http.C,
7576: pa_request.C, pa_sql_driver_manager.C, pa_xml_io.C: -
7577: cstr(params) and cstrm(params) were deleted. taint_cstr[m] and
7578: untaint_cstr[m] should be used
7579:
7580: * src/include/pa_string.h: - cstr(params) and cstrm(params) were
7581: deleted. taint_cstr[m] and untaint_cstr[m] should be used
7582:
7583: * tests/218.html: - test for checking automatic file-spec-taint was
7584: added
7585:
7586: * src/: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vmail.C,
7587: types/pa_vregex.C, types/pa_vrequest.C, types/pa_vstring.C,
7588: classes/file.C, classes/hash.C, classes/image.C,
7589: classes/string.C, classes/table.C, classes/void.C,
7590: classes/xdoc.C: - optimizations and simplification of
7591: string.cstr(...)
7592:
7593: * src/: include/pa_string.h, main/untaint.C, main/pa_common.C,
7594: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C:
7595: - optimizations and simplification of string.cstr(...)
7596:
7597: 2009-07-04 misha
7598:
7599: * tests/217.html: - test for recursion detection was added
7600:
7601: * src/: types/types.vcproj, main/main.vcproj,
7602: classes/classes.vcproj, targets/cgi/parser3.vcproj,
7603: targets/isapi/parser3isapi.vcproj: - RuntimeTypeInfo was removed
7604: from .vcproj
7605:
7606: * src/types/pa_wwrapper.h: - dynamic_cast was removed
7607:
7608: * tests/: 195.html, 195_utf8.txt, 195_windows1251.txt: - tests for
7609: uploading files and case-insensitive http-method were added
7610:
7611: * tests/: 216.html, 216_dir/1, 216_dir/2.txt: - test for checking
7612: tainted pattern in ^file:list[] was added
7613:
7614: 2009-07-03 misha
7615:
7616: * src/: classes/classes.vcproj, main/main.vcproj,
7617: types/types.vcproj, targets/cgi/parser3.vcproj,
7618: targets/isapi/parser3isapi.vcproj: - enable runtime info (needed
7619: for dynamic_cast) - little options changes
7620:
7621: * src/main/pa_http.C: - file::load[http works now with uploading
7622: files _and_ changing $.charset
7623:
7624: 2009-06-29 misha
7625:
7626: * src/types/pa_vregex.C: - ^untaint[regex][] for all tainted data
7627: while creating pattern
7628:
7629: 2009-06-25 misha
7630:
7631: * src/classes/image.C, operators.txt: - options' names for
7632: ^image.font were changed to $.space, $.width and $spacing -
7633: default space width now == gif's width
7634:
7635: 2009-06-24 misha
7636:
7637: * tests/215.html: - tests for $file.mode were added
7638:
7639: * operators.txt: - added info about $file.mode and changes in
7640: ^image.font[
7641:
7642: * src/: types/pa_vimage.h, classes/image.C: ^image.font - third
7643: param now could be omited - third param now could be hash (with
7644: all widths options: $.space-width, $.letter-width) - it's
7645: possible to specify tracking ($.letter-space)
7646:
7647: * src/classes/file.C: - file objects now could have mode field
7648: (text|binary)
7649:
7650: * src/types/: pa_vfile.C, pa_vfile.h: - method set_method was added
7651:
7652: 2009-06-23 misha
7653:
7654: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
7655: trim can work with utf-8 chars now
7656:
7657: 2009-06-20 misha
7658:
7659: * src/: classes/hash.C, main/pa_string.C: - string length cacheing
7660: was implemented
7661:
7662: * src/classes/table.C: - string length cacheing was implemented
7663:
7664: * src/include/pa_string.h: - string length cacheing was implemented
7665:
7666: 2009-06-17 misha
7667:
7668: * src/main/execute.C: - value param was removed from
7669: WContext::WContext
7670:
7671: * src/types/: pa_vcode_frame.h, pa_vmethod_frame.C, pa_wcontext.h,
7672: pa_wwrapper.h: - value param was removed from WContext::WContext
7673: - field wcontext was removed from VCodeFrame (using fparent
7674: instead)
7675:
7676: * tests/214.html: - test with hash copying
7677:
7678: 2009-06-16 misha
7679:
7680: * tests/: 062.html, results/062.processed: - evaluation hardcoded
7681: strings doesn't work in expression anymore
7682:
7683: * src/main/execute.C: - less calls for get_constructing() - little
7684: refactoring
7685:
7686: * src/: types/pa_wcontext.h, types/pa_wwrapper.h,
7687: include/pa_request.h: - less calls for get_constructing()
7688:
7689: * src/classes/: hash.C, hashfile.C: - fixed bug which was
7690: introduced with OPTIMIZE_SINGLE_STRING optimization
7691:
7692: 2009-06-14 misha
7693:
7694: * src/: classes/date.C, classes/file.C, classes/hash.C,
7695: classes/hashfile.C, classes/image.C, classes/regex.C,
7696: classes/table.C, classes/xdoc.C, classes/xnode.h,
7697: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
7698: types/pa_vstateless_class.h, main/execute.C: - create object for
7699: storing object's fields only for parser objects
7700:
7701: 2009-06-13 misha
7702:
7703: * buildall-with-xml, buildall-without-xml: - new option was added
7704: for building GC (it slightly reduces memory usage)
7705:
7706: * src/types/: pa_wcontext.h, pa_wwrapper.h: - optimization of
7707: single string write
7708:
7709: * src/main/execute.C: - bytecode optimization of ^class:constructor
7710: - optimization of single string write
7711:
7712: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.h:
7713: - bytecode optimization of ^class:constructor
7714:
7715: 2009-06-09 misha
7716:
7717: * src/targets/cgi/parser3.C: - type size_t was changed to int in
7718: main (better compatibility)
7719:
7720: 2009-06-08 misha
7721:
7722: * src/main/compile.y: - I've forgot to commit it :(
7723:
7724: 2009-06-07 misha
7725:
7726: * src/include/pa_opcode.h: - more optimizations for WITH_SELF,
7727: WITH_READ and WITH_ROOT
7728:
7729: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7730: execute.C: - more optimizations for WITH_SELF, WITH_READ and
7731: WITH_ROOT - little refactoring
7732:
7733: 2009-06-06 misha
7734:
7735: * tests/213.html: - tests for 3rd match string-param were added
7736:
7737: * src/classes/string.C: - 3rd match param could be string now
7738:
7739: * src/main/: compile.y, compile_tools.h: - much more bytecode's
7740: sequences optimized to WITH_SELF__VALUE__GET_ELEMENT and
7741: GET_OBJECT_ELEMENT
7742:
7743: 2009-06-05 misha
7744:
7745: * src/main/pa_http.C: - bugfix: content-length was not calculated
7746: if $.body was specified
7747:
7748: 2009-06-04 misha
7749:
7750: * src/classes/op.C: - optimizing write_assign_lang in connect
7751:
7752: * src/classes/op.C: - optimizing write_assign_lang in taint/untaint
7753:
7754: * src/main/execute.C: - little refactoring - optimizing
7755: write_assign_lang in taint/untaint
7756:
7757: * src/include/pa_opcode.h: - little refactoring
7758:
7759: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
7760: main/compile_tools.h, main/execute.C: - optimizations for
7761: $self.field, ^self.method, $self.field[...] and $self.field(...)
7762: were added
7763:
7764: 2009-06-03 misha
7765:
7766: * src/types/pa_venv.C: - pa_strdup was replaced by strdup
7767:
7768: 2009-06-02 misha
7769:
7770: * src/: main/compile.y, main/compile_tools.h, main/execute.C,
7771: include/pa_opcode.h: - refactoring in last optimizations
7772: ($a[...], $a(...), $.a[...], $.a(...)). a bit less optimizations
7773: now but code is much easy and it is ready for further
7774: improvements.
7775:
7776: 2009-05-27 misha
7777:
7778: * src/: types/pa_junction.h, types/pa_vjunction.C,
7779: types/pa_vjunction.h, types/pa_vmethod_frame.h, main/execute.C: -
7780: changed in destructing junctions
7781:
7782: * src/main/: pa_charset.C, pa_string.C: - more safe creation on
7783: String:Body
7784:
7785: 2009-05-26 misha
7786:
7787: * src/: main/pa_common.C, main/pa_http.C, include/pa_common.h: -
7788: one method detect_charset was deleted - bug was fixed in this
7789: method (error while detecting charset in content_type withot last
7790: ';')
7791:
7792: * src/types/: pa_vform.C, pa_vform.h: - detect post charset only
7793: once
7794:
7795: 2009-05-25 misha
7796:
7797: * src/classes/file.C: - bugfix: file::exec didn't work after
7798: optimizing of helper_length
7799:
7800: 2009-05-24 misha
7801:
7802: * src/main/compile_tools.h: - $a[$b.c] and $a[$b.$c] optimisations
7803: were added - little refactoring
7804:
7805: * src/main/execute.C: - core while printing in debug log
7806: non-printable values was fixed - $a[$b.c] and $a[$b.$c]
7807: optimisations were added
7808:
7809: * src/include/pa_opcode.h: - new opcodes for $a[$b.c] and $a[$b.$c]
7810: were added
7811:
7812: 2009-05-23 misha
7813:
7814: * src/: lib/cord/cordbscs.c, lib/cord/cordxtra.c,
7815: lib/cord/include/cord.h, include/pa_string.h, main/untaint.C: -
7816: CORD_cat optimization
7817:
7818: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C:
7819: - call constr optimisation under separate define now
7820:
7821: * src/main/: compile_tools.h, execute.C: - bugfix: $a[] $b[$a] --
7822: in $b should be string, not void
7823:
7824: * src/main/compile.y: - little fix for rem-cut optimisation
7825:
7826: * src/: include/pa_opcode.h, main/compile_tools.C,
7827: main/compile_tools.h, main/execute.C: - optimisations for
7828: $a[^b[...]], $.a[^b[...]], $a(^b[...]) and $.a(^b[...])
7829:
7830: * INSTALL: - description of some #defined were added
7831:
7832: * src/types/: pa_vfile.C, pa_vfile.h: - fill .'text' field only
7833: before 1st access (memory usage is reduced if don't access to
7834: .text field)
7835:
7836: * src/include/pa_array.h: - array grows step now not static (it
7837: reduces numbers of reallocs)
7838:
7839: 2009-05-20 misha
7840:
7841: * src/include/pa_opcode.h: - bytecode optimization for $a(1),
7842: $.b(2), $c[d] and $.e[f] was added
7843:
7844: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7845: execute.C: - bytecode optimization for $a(1), $.b(2), $c[d] and
7846: $.e[f] was added
7847:
7848: * src/main/execute.C: - debug printing moved in defines
7849:
7850: * src/main/: compile.y, compile_tools.C, compile_tools.h: - bugfix
7851: and little refactoring for OP_GET_OBJECT_ELEMENT +
7852: OP_GET_OBJECT_VAR_ELEMENT optimisation
7853:
7854: 2009-05-19 misha
7855:
7856: * src/main/: compile.y, compile_tools.C, compile_tools.h,
7857: execute.C: - $a.$b & ^a.$b bytecode optimisation
7858:
7859: * src/include/pa_opcode.h: - new opcodes were added (for $a.$b &
7860: ^a.$b optimisation)
7861:
7862: * src/main/compile.y: - compiler now generate new opcodes:
7863: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE for $a.b and
7864: ^a.b - compiler now cut off ^rem{ with all content ; any number
7865: of params }
7866:
7867: * src/main/execute.C: - code for handle new opcodes
7868: OP_GET_ELEMENT_FIELD and OP_GET_ELEMENT_FIELD__WRITE was added
7869:
7870: * src/main/: compile_tools.C, compile_tools.h: - new parameter was
7871: added for LA2V and LA2S
7872:
7873: * src/include/pa_opcode.h: - new defines which can be used for
7874: disable some bytecode optimisation and new opcodes were added
7875:
7876: 2009-05-17 misha
7877:
7878: * src/lib/cord/cordxtra.c: - bugfix.
7879:
7880: * tests/212.html: - .size[] and .study_size[] were added to tests
7881:
7882: * operators.txt: - info about regex class was added
7883:
7884: * tests/212.html: - tests for regex class were added
7885:
7886: 2009-05-16 misha
7887:
7888: * buildall-with-xml, buildall-without-xml: - moving from gc6.8 to
7889: gc7.1
7890:
7891: * tests/022.html: - test for ^file:list[path;] (empty second param)
7892: was added
7893:
7894: * src/classes/file.C: - bugfix: ^file:list[path;] [empty second
7895: param) should work
7896:
7897: 2009-05-15 misha
7898:
7899: * src/classes/table.C: - automatically disable stringstream usage
7900: on freebsd4
7901:
7902: * src/lib/cord/cordxtra.c: - var decl should be at the beginning of
7903: scope
7904:
7905: * tests/211.html: - test with different types of access to hash was
7906: added
7907:
7908: * tests/210.html: - test which checks for loosing tainting in
7909: hash's keys was added
7910:
7911: * tests/208.html: - some parser work added. or stime == 0 %-)
7912:
7913: * src/lib/cord/cordbscs.c: - little hack was added to cord
7914:
7915: * src/lib/cord/cordxtra.c: - cacheing of cord chars was added
7916:
7917: * src/include/pa_version.h, configure.in: - moko have made a lot of
7918: optimisations for increacing version number more dramatically :)
7919:
7920: * src/classes/date.C: - little refactoring: use constructor which
7921: accepts formated string
7922:
7923: * src/: include/pa_string.h, main/pa_string.C: - String constructor
7924: which can print formatted string was added
7925:
7926: 2009-05-14 misha
7927:
7928: * src/include/pa_string.h: - type was fixed
7929:
7930: * src/: classes/hashfile.C, classes/op.C,
7931: include/pa_cache_managers.h, include/pa_charset.h,
7932: include/pa_charsets.h, include/pa_common.h, include/pa_hash.h,
7933: include/pa_request.h, include/pa_sql_driver_manager.h,
7934: include/pa_string.h, include/pa_stylesheet_manager.h,
7935: include/pa_table.h, include/pa_xml_io.h, main/pa_charset.C,
7936: main/pa_charsets.C, main/pa_string.C,
7937: main/pa_stylesheet_connection.C, types/pa_value.h,
7938: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7939: types/pa_vobject.C, types/pa_vstateless_class.C,
7940: types/pa_vstateless_class.h: - hash_code caching was implemented
7941: (seaches should be faster now)
7942:
7943: * src/: classes/file.C, classes/hash.C, classes/image.C,
7944: classes/string.C, classes/table.C, include/pa_string.h,
7945: main/pa_charset.C, main/pa_http.C, main/pa_request.C,
7946: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_venv.C,
7947: types/pa_vform.C, types/pa_vhashfile.C, types/pa_vregex.C,
7948: types/pa_vrequest.C: - String constructors don't have that stupid
7949: true/false param which means 'tainted'. they accept lang instead.
7950:
7951: * src/types/pa_vmethod_frame.h: - bugfix: taint/untaint didn't work
7952: with OPTIMIZE_RESULT
7953:
7954: * src/types/: pa_method.h, pa_vstateless_class.C: - less warnings
7955: wher OPTIMIZE_RESULT and OPTIMIZE_CALL not defined
7956:
7957: 2009-05-13 misha
7958:
7959: * src/: types/pa_method.h, types/pa_vcookie.C, types/pa_vdouble.h,
7960: types/pa_venv.C, types/pa_vhashfile.C, types/pa_vint.h,
7961: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
7962: types/pa_vregex.C, types/pa_vregex.h, types/pa_vrequest.C,
7963: types/pa_vstateless_class.C, main/execute.C, main/pa_charset.C,
7964: main/pa_common.C, main/pa_request.C, main/pa_string.C,
7965: include/pa_string.h, classes/date.C, classes/file.C,
7966: classes/hash.C, classes/image.C, classes/string.C,
7967: classes/table.C, classes/xdoc.C: - result optimisation -
7968: helper_length parameter removed from string constructors
7969:
7970: 2009-05-11 misha
7971:
7972: * tests/209.html: - tests for ^hash::create[hash] were added
7973:
7974: * tests/208.html: - tests for $status:rusage, $status:memory,
7975: ^memory:compact[] were added
7976:
7977: * tests/207.html: -tests for abs, sign, trunc, frac, exp, log,
7978: log10 were added
7979:
7980: * tests/206.html: - test for try with finally was added
7981:
7982: 2009-05-10 misha
7983:
7984: * tests/205.html: - test for ^file::create[...] was added
7985:
7986: * tests/204.html: - test for ^response:clear[] was added
7987:
7988: * tests/038.html: - tests for trigonometric functions were added
7989:
7990: * tests/014.html: - tests for ^hash.containts and ^hash.delete were
7991: added - more tests for .add, .sub, .union, .intersects and
7992: .intersections
7993:
7994: * tests/065.html: - test for ^file:dirname was added
7995:
7996: * tests/030.html: - test for $cookie:fields was added
7997:
7998: * tests/203.html: - test for ^h._keys[column name] was added
7999:
8000: * tests/201.html: - tests for .trim were added
8001:
8002: * tests/202.html: - tests for last-day,
8003: date:calendar[type](YYYY;MM;DD) were added
8004:
8005: * tests/200.html: - tests for .sort(), .sort{}, .flip[] and
8006: .offset[type](N) were added
8007:
8008: * tests/185.html: - more tests for .left(N), .right(N), .min(N;M)
8009: and .pos[c](N) were added
8010:
8011: * tests/141.html: - test for math:sha1 was added
8012:
8013: * tests/063.html: - tests for .mod(N), .inc[] & .dec[] were added
8014:
8015: 2009-05-09 misha
8016:
8017: * src/main/compile.y: - rollback
8018:
8019: 2009-05-05 misha
8020:
8021: * src/main/pa_exec.C: - little optimisation: somewhere length() was
8022: replaced by is_empty()
8023:
8024: * src/: include/pa_string.h, main/pa_charset.C: - little
8025: optimisation: somewhere length() was replaced by is_empty()
8026:
8027: * src/classes/table.C: - little optimisation: somewhere length()
8028: was replaced by is_empty()
8029:
8030: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
8031: classes/op.C, classes/table.C, main/pa_exception.C: - little
8032: optimisation: somewhere length() was replaced by is_empty()
8033:
8034: 2009-05-04 misha
8035:
8036: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8037: types/pa_vstateless_class.h, main/execute.C,
8038: include/pa_request.h, classes/hash.C, classes/op.C,
8039: classes/table.C: - more optimisations were added: some operators
8040: don't switch write context anylonger
8041:
8042: 2009-05-01 misha
8043:
8044: * src/main/compile.y: - slightly more opcode optimisations for
8045: WITH_WRITE + VALUE + GET_ELEMENT -> OP_VALUE__GET_ELEMENT
8046:
8047: * src/main/execute.C: - simplifying process for getters
8048:
8049: 2009-04-30 misha
8050:
8051: * tests/: 198.html, 199.html: - new line fixes (should be 0x0A)
8052:
8053: * tests/results/199.processed: - test for checking $result into
8054: ^rem was added
8055:
8056: * tests/199.html: - test for checking $result into ^rem was added
8057:
8058: * tests/: 022.html, 096.html: - þsort after :list was asses (on
8059: some OS it returns list in different order)
8060:
8061: * src/: include/pa_array.h, include/pa_request.h,
8062: include/pa_stack.h, main/execute.C, types/pa_vmethod_frame.h: -
8063: changes in stack impl - get_element() optimisation: 3rd param
8064: removed - bugfix: problems with reading empty input param -
8065: defines SAVE_CONTEXT and RESTORE_CONTEXT were added and used
8066:
8067: * tests/results/198.processed: - test for reading empty local var
8068: was added
8069:
8070: * tests/198.html: - test for reading empty local var was added
8071:
8072: 2009-04-29 misha
8073:
8074: * src/main/compile.y: - bugfix: couldn't compile because
8075: OP_VALUE__GET_ELEMENT should be unde #ifdef
8076:
8077: * src/: include/pa_array.h, include/pa_opcode.h,
8078: include/pa_request.h, main/compile.y, main/execute.C,
8079: main/pa_request.C, types/pa_vmethod_frame.C,
8080: types/pa_vmethod_frame.h: - we can work without opcode
8081: OP_STORE_PARAM, so it was removed
8082:
8083: 2009-04-28 misha
8084:
8085: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: -
8086: op-codes optimisation: 1. VALUE+GET_CLASS=>VALUE_GET_CLASS 2.
8087: WITH_READ+VALUE+GET_ELEMENT=>VALUE__GET_ELEMENT (not all yet)
8088: 3. WITH_READ+VALUE+GET_ELEMENT__WRITE=>VALUE__GET_ELEMENT__WRITE
8089: 4.
8090: WITH_READ+VALUE+GET_ELEMENT_OR_OPERATOR=>VALUE__GET_ELEMENT_OR_OPERATOR
8091:
8092: * src/main/compile_tools.h: - new stuff for op-codes optimisation
8093:
8094: * src/: main/pa_string.C, classes/string.C: - !length() =>
8095: is_empty()
8096:
8097: 2009-04-27 misha
8098:
8099: * src/types/pa_vregex.h: - back explicit vars initialisation
8100:
8101: 2009-04-24 misha
8102:
8103: * src/classes/string.C: - ups. typo fixed
8104:
8105: * src/main/execute.C: - more replacements '*new VBool' to
8106: 'VBool::get' - checks for ^break[], ^continue[] and
8107: parser.interrupted were optimised
8108:
8109: * src/classes/string.C: - number of params.count() calls was
8110: slightly reduced
8111:
8112: 2009-04-23 misha
8113:
8114: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8115: make it x64 friendly
8116:
8117: * src/: classes/image.C, include/pa_string.h, main/pa_charset.C: -
8118: parser is x64 friendly now
8119:
8120: 2009-04-22 misha
8121:
8122: * src/types/pa_vhashfile.C: - coder friendly exception about
8123: exceeding record size was added
8124:
8125: * src/classes/file.C: - use vregex object instead of direct calls
8126: methods from pcre lib
8127:
8128: * src/: classes/file.C, include/pa_string.h, main/pa_string.C,
8129: classes/string.C: - use vregex object instead of direct calls
8130: methods from pcre lib
8131:
8132: * src/: include/pa_common.h, main/pa_common.C: - method
8133: print_pcre_exec_error_text was moved to class vregex
8134:
8135: * src/classes/: Makefile.am, classes.vcproj, regex.C: - class regex
8136: was added
8137:
8138: * src/types/: Makefile.am, pa_vregex.C, pa_vregex.h, types.vcproj:
8139: - class vregex was added
8140:
8141: 2009-04-21 misha
8142:
8143: * buildall-with-xml, buildall-without-xml: - pcre 7.8 -> pcre 7.9
8144:
8145: * src/: types/pa_junction.h, types/pa_value.C,
8146: types/pa_vjunction.C, types/pa_vjunction.h, types/pa_wcontext.C,
8147: types/pa_wcontext.h, main/execute.C, classes/op.C: -
8148: junction-optimisation (destructors)
8149:
8150: * src/include/pa_array.h: - free under if now
8151:
8152: 2009-04-19 misha
8153:
8154: * src/main/untaint.C: - ^taint[js] now escapes \x0D as well
8155:
8156: 2009-04-18 misha
8157:
8158: * src/include/pa_version.h:
8159: :q :
8160:
8161: CV:
8162: ----------------------------------------------------------------------
8163:
8164: * src/types/: pa_vjunction.h, pa_vstateless_class.C: - little
8165: refactoring
8166:
8167: * src/: include/pa_array.h, include/pa_hash.h,
8168: types/pa_vmethod_frame.h: - destructors under #ifdef now
8169:
8170: * src/include/pa_memory.h: - define for using destructors was added
8171:
8172: * src/: types/pa_method.h, types/pa_vstateless_class.C,
8173: main/execute.C: - some junctions will be cached now
8174:
8175: * src/include/pa_hash.h: - hash destructor frees pairs now
8176:
8177: * src/include/pa_array.h: - inline was added to destructor
8178:
8179: * src/types/pa_method.h: - comment was changed
8180:
8181: 2009-04-17 misha
8182:
8183: * src/: include/pa_array.h, include/pa_hash.h,
8184: types/pa_vmethod_frame.h: - destructors were added
8185:
8186: * src/types/: pa_method.h, pa_vmethod_frame.h: - write_to_result
8187: renamed to always_use_result
8188:
8189: * src/main/: compile.y, compile_tools.h: - rollback changes in
8190: compiler: full backward compatibility is better
8191:
8192: * src/types/pa_vmethod_frame.h: - set flag write_to_result if find
8193: result in var's hash
8194:
8195: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8196: optimisation in method_frame
8197:
8198: * src/include/pa_array.h: - optimisation in array (allocate
8199: elements only when needed)
8200:
8201: * src/types/pa_vresponse.C: - check for $response:headers field
8202: before looking at custom fields
8203:
8204: * src/types/pa_vmethod_frame.h: - if flag write_to_result was set,
8205: not needed to check existance var with name 'result' in var's
8206: hash
8207:
8208: * src/main/compile.y: - compiler was changed: now it detects
8209: writings to $result and set flag writo_to_result in method
8210:
8211: * src/classes/string.C: - little optimisation: no needed to write
8212: number with lang
8213:
8214: * src/main/pa_charset.C: - methods readChar and skipChar which is
8215: used for read utf8-strings were renamed - is_escaped was renamed
8216: to isEscaped (to the same name convention)
8217:
8218: * src/: types/pa_method.h, main/compile_tools.h: - flag
8219: write_to_result added. compiler get this info from code.
8220:
8221: 2009-04-16 misha
8222:
8223: * src/types/: pa_wcontext.h, pa_vmethod_frame.h: - create new
8224: String only before 1st write
8225:
8226: * src/include/pa_string.h: - not needed template removed
8227:
8228: * src/: types/pa_vbool.h, types/pa_vfile.h, types/pa_vimage.C,
8229: types/pa_vjunction.C, types/pa_vproperty.C,
8230: types/pa_vstateless_class.C, types/pa_vxdoc.C, types/pa_vxnode.C,
8231: main/pa_request.C, classes/bool.C, classes/double.C,
8232: classes/hash.C, classes/int.C, classes/string.C, classes/table.C,
8233: classes/void.C, classes/xnode.C: - bool optimisation (use only 2
8234: bool objects)
8235:
8236: 2009-04-15 misha
8237:
8238: * src/lib/cord/cordxtra.c: - more optimisation
8239:
8240: * src/: include/pa_string.h, main/untaint.C: - String::append
8241: optimisation
8242:
8243: * src/include/pa_hash.h: - get_by_hash_code added (it works faster
8244: then get and can sometime be used)
8245:
8246: * src/main/pa_string.C: - String::length optimisation
8247:
8248: * src/main/pa_charset.C: - rollback changeing readChar to skipChar.
8249: these methods read different strings
8250:
8251: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: -
8252: fresult_initial_void removed + some optimisation - if $result
8253: defined we don't write to context anymore
8254:
8255: * src/main/pa_charset.C: - readChar => skipChar (in this place we
8256: need just skip char)
8257:
8258: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8259: types/pa_vrequest.C, types/pa_vtable.C, main/execute.C,
8260: classes/table.C: - VVoid::get() => new VVoid (one void-instance)
8261:
8262: * src/types/pa_vvoid.h: - added get() method for retreave one
8263: instance
8264:
8265: 2009-04-11 misha
8266:
8267: * tests/196.html: - tests for $cookie:CLASS_NAME & Co were added
8268:
8269: * tests/197.html: - test for parser://test in xml was added
8270:
8271: * src/classes/string.C: - small optimisation
8272:
8273: * src/types/: pa_venv.C, pa_venv.h, pa_vconsole.h: - small
8274: optimisation
8275:
8276: 2009-04-10 misha
8277:
8278: * buildall-with-xml, buildall-without-xml: - moving from pcre-7.7
8279: to pcre-7.8
8280:
8281: * src/types/pa_vclass.C: - normalizing todo-comments: '@todo' now
8282:
8283: * src/types/: pa_vcookie.C, pa_vcookie.h: - $cookie:CLASS_NAME was
8284: added
8285:
8286: * src/types/: pa_vrequest.C, pa_vrequest.h: - $request:CLASS and
8287: $request:CLASS_NAME were added
8288:
8289: * src/types/pa_vconsole.h: - $console:CLASS and $console:CLASS_NAME
8290: were added
8291:
8292: * src/types/: pa_venv.C, pa_venv.h: - $env:CLASS and
8293: $env:CLASS_NAME were added
8294:
8295: * src/types/: pa_vmail.C, pa_vdate.h: - normalizing todo-comments:
8296: '@todo' now
8297:
8298: * src/targets/cgi/parser3.C: - size_t -> int for calming down
8299: compirer
8300:
8301: * src/main/pa_string.C: - little code cleanup
8302:
8303: * src/main/pa_common.C: - describe one more UTF-8 related error
8304: during PCRE compile/execute
8305:
8306: * src/classes/: image.C, inet.C, string.C, xdoc.C, xnode.C: -
8307: normalizing todo-comments: '@todo' now
8308:
8309: * src/types/: pa_vmath.C, pa_vmath.h: - $math:E was added
8310:
8311: * src/main/pa_charset.C: - type changed for making compiler happy
8312:
8313: 2009-03-10 misha
8314:
8315: * src/targets/cgi/parser3.C: make g++ happy with the type of argc
8316: in main()
8317:
8318: 2009-02-01 misha
8319:
8320: * src/main/pa_http.C: - bugfix: double CRLF before the end of
8321: boundary
8322:
8323: 2009-01-25 misha
8324:
8325: * tests/: 194.html, 194_dir/194.p: - test for @GET[] was added
8326:
8327: * src/classes/file.C: - more changes for parsing different number
8328: of params for file::load
8329:
8330: * tests/193.html: - tests for exception while base64-decode binary
8331: to string was added
8332:
8333: * tests/192.html: - tests for file::load with different number of
8334: options
8335:
8336: * src/classes/math.C: - ups. forgot '+1'
8337:
8338: * src/: classes/table.C, classes/file.C, include/pa_common.h,
8339: include/pa_http.h, main/pa_xml_io.C, main/pa_common.C,
8340: main/pa_http.C: - ^file::load[...;http://...;] now can post files
8341: (new option $.encode[multipart-form/data] should be specified) -
8342: $.method[] option for file::load now is not case-sensitive
8343:
8344: * src/: include/pa_string.h, main/untaint.C: - for file post the
8345: new taint language L_FILE_POST was added
8346:
8347: * src/: include/pa_random.h, main/Makefile.am, main/pa_random.C,
8348: main/main.vcproj, classes/math.C, include/Makefile.am: - some
8349: stuff was moved to separate files
8350:
8351: 2009-01-23 misha
8352:
8353: * src/classes/math.C: - little optimisation in ^math:sha1[] -
8354: spaces to tabs were converted
8355:
8356: 2009-01-12 misha
8357:
8358: * src/main/pa_http.C: - value of $.method[] option force uppercased
8359: now
8360:
8361: * src/: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
8362: types/pa_vform.C, types/pa_vmail.C: - some constants changed
8363: their names
8364:
8365: * src/main/pa_common.C: - changes in formating
8366:
8367: * src/: classes/file.C, main/pa_http.C: - some constants changed
8368: their names
8369:
8370: * src/include/pa_http.h: - some spaces were converted to tabs
8371:
8372: * src/include/pa_common.h: - some constants changed their names
8373:
8374: * src/classes/file.C: - fixed 4-th paramether for file::load -
8375: little code rewriting
8376:
8377: * src/types/pa_vfile.C: - little code rewriting
8378:
8379: * src/: main/pa_common.C, main/pa_http.C, main/untaint.C,
8380: types/pa_value.h: - some formating changes
8381:
8382: * src/include/pa_common.h: - some formating spaces transformed to
8383: tabs
8384:
8385: * src/classes/string.C: - exception while base64-decode binary to a
8386: string
8387:
8388: 2009-01-11 misha
8389:
8390: * configure.in: - version changed to 3.3.1b
8391:
8392: 2008-09-05 misha
8393:
8394: * src/lib/pcre/Makefile.am: file Makefile.am was added on branch
8395: release_3_3_0 on 2008-09-05 10:59:35 +0000
8396:
8397: 2008-09-04 misha
8398:
8399: * tests/: 130.html, 131.html: - these exceptions not typeless
8400: anymore
8401:
8402: * src/classes/op.C: - exception with 'invalid taint language' not
8403: typeless anylonger
8404:
8405: * src/classes/image.C: - some exceptions while operations with
8406: image not typeless anymore
8407:
8408: * src/: types/pa_vhashfile.C, main/pa_common.C, classes/file.C,
8409: main/pa_exec.C, main/pa_http.C: - some exceptions while
8410: operations with files not typeless anymore
8411:
8412: * src/: classes/date.C, types/pa_value.C, types/pa_vcookie.C,
8413: types/pa_vdate.h: - exceptions while checking date range not
8414: typeless anymore
8415:
8416: * src/include/pa_exception.h: - exception type string for invalid
8417: date range was added
8418:
8419: 2008-09-03 misha
8420:
8421: * src/: classes/file.C, main/pa_string.C: - exception while pce
8422: operations not typeless anymore
8423:
8424: * src/include/pa_exception.h: - exception type for pce operations
8425: was added
8426:
8427: * tests/: 191.html, 191_a.p, 191_b.p: - tests for calling .CLASS
8428: and .CLASS_NAME insite classes
8429:
8430: * src/classes/table.C: - don't save table header whiile
8431: ^table.save[append;filename] if file exists
8432:
8433: 2008-09-02 misha
8434:
8435: * src/main/compile.y, src/main/compile_tools.h,
8436: src/types/pa_vstateless_class.h, src/main/compile.tab.C,
8437: tests/182_dir/a1.p, tests/182_dir/a2.p: - append option was
8438: renamed to partial and it login changed: we must mark class as
8439: partial for allow their modifications in future.
8440:
8441: 2008-08-29 misha
8442:
8443: * tests/results/022.processed: - testing taint[regex] in mask for
8444: file:list
8445:
8446: * tests/022.html: - testing taint[regex] in mask for file:list
8447:
8448: * tests/022_dir/b[b].txt: - file for testing taint[regex] in mask
8449: for file:list was added
8450:
8451: * src/classes/file.C: - bugfix: ^taint[regex][] didn't works in
8452: file:list
8453:
8454: 2008-08-26 misha
8455:
8456: * src/types/pa_vobject.C: - we must get .CLASS and .CLASS_NAME from
8457: last derived object
8458:
8459: * src/classes/image.C: - many strings "image.format" replaced by
8460: IMAGE_FORMAT constant string - handle GPS info while parse exif -
8461: understand some more exif tags
8462:
8463: * src/include/pa_exception.h: - string "image.format" was added
8464:
8465: 2008-08-21 misha
8466:
8467: * src/: main/pa_string.C, classes/file.C: - use method for print
8468: pcre_exec text error
8469:
8470: * src/main/pa_common.C: - method for print pcre_exec text error was
8471: added
8472:
8473: * src/include/pa_common.h: - method declaration for print pcre_exec
8474: text error was added
8475:
8476: 2008-08-19 misha
8477:
8478: * src/main/execute.C: - bugfix: opcodes must be in separate
8479: namespace while debug execution as well
8480:
8481: * tests/: 015.html, results/015.processed: - test for escaping some
8482: parser chars was added
8483:
8484: 2008-08-18 misha
8485:
8486: * tests/: 190.html, 190.p, results/190.processed: - test for
8487: $caller.self.field + default getter in one class was added
8488:
8489: * tests/: 189.html, results/189.processed: - test for
8490: ^date::create[date object]
8491:
8492: * tests/: 188.html, results/188.processed: - tests for match with
8493: UTF-8 strings
8494:
8495: * src/main/pa_string.C: - option 'U' (ungreedy) was added to
8496: ^string.match[]
8497:
8498: * ChangeLog: - parser 3.3.0 beta13
8499:
8500: 2008-08-15 misha
8501:
1.116 moko 8502: * src/lib/pcre/: LICENCE, Makefile.am, README, Tech.Notes, get.c,
8503: internal.h, pcre.3, pcre.3.html, pcre.3.txt, pcre.c, pcre.h,
8504: pcre.vcproj, study.c, maketables.c, pcre_dftables.vcproj,
8505: dftables.c: - old PCRE files removed
1.95 moko 8506:
8507: * src/lib/pcre/config.h: - configuration for PCRE library
8508:
8509: * src/targets/: cgi/parser3.vcproj, isapi/parser3isapi.vcproj: -
8510: use PCRE library from win32\pcre instead of parser3\src\lib\pcre
8511:
8512: * src/: classes/file.C, main/pa_string.C: - moved to new PCRE
8513: library and set flag UTF8 if $request:charset is UTF-8
8514:
8515: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_globals.C,
8516: include/pa_config_fixed.h: - moved to new PCRE library
8517:
8518: * src/: main/main.vcproj, types/types.vcproj,
8519: classes/classes.vcproj, lib/Makefile.am: - use PCRE library from
8520: win32\pcre instead of parser3\src\lib\pcre
8521:
8522: * src/: include/pa_opcode.h, include/pa_operation.h,
8523: main/compile.C, main/compile.y, main/compile_tools.C,
8524: main/compile_tools.h, main/execute.C, main/compile.tab.C: -
8525: opcodes were moved to separate namespace
8526:
8527: 2008-08-14 misha
8528:
8529: * src/types/pa_vstateless_class.C: - newline at the end missed
8530:
8531: * src/main/untaint.C: - char '-' also prefixed by '\' while regex
8532: tainting
8533:
8534: 2008-08-11 misha
8535:
8536: * tests/: 187.html, 187.p, results/187.processed: - tests for
8537: $caller.self, $caller.self.field and $caller.self.field[value]
8538: were added
8539:
8540: * src/types/pa_vmethod_frame.h: - still need to check 'self'
8541: runtime as well (for $caller.self)
8542:
8543: 2008-07-25 misha
8544:
8545: * tests/: 021.html, 032.html, 033.html, 047.html, 055.html,
8546: 059.html, 061.html, 064.html, 067.html, 068.html, 085.html,
8547: 086.html, 098.html, 109.html, 121.html: - set correct charsets in
8548: tests with international characters
8549:
8550: 2008-07-23 misha
8551:
8552: * src/main/pa_http.C: - escape $cookies as %uXXXX while
8553: file::load[...;http://
8554:
8555: * src/: main/pa_string.C, main/pa_globals.C, classes/file.C: - pcre
8556: now everywhere in separate namespace
8557:
8558: * src/types/pa_vmethod_frame.h: - looking for caller before looking
8559: for vars
8560:
8561: * src/main/: compile.y, compile.tab.C: - characters '@' and '#' now
8562: can be escaped by '^'
8563:
8564: 2008-07-22 misha
8565:
8566: * src/classes/string.C, tests/186.html: - names changes:
8567: escape=>js-escape, unescape=>js-unescape
8568:
8569: 2008-07-21 misha
8570:
8571: * tests/results/186.processed: - test for string escape/unescape
8572:
8573: * tests/186.html: - test for string escape/unescape
8574:
8575: * src/classes/string.C: - string has escape and unescape methods
8576: now
8577:
8578: * src/: include/pa_string.h, main/pa_string.C: - escape method was
8579: added
8580:
8581: * src/: include/pa_charset.h, main/pa_charset.C: - more escape
8582: method-layers added (with different params)
8583:
8584: 2008-07-18 misha
8585:
8586: * tests/results/185.processed: - test for ^str.pos[substr](offset)
8587: was added
8588:
8589: * tests/185.html: - test for ^str.pos[sub](offset) added
8590:
8591: * src/classes/string.C, src/classes/void.C, operators.txt: -
8592: ^string.pos[substr](offset) -- 2nd param accepted now
8593:
8594: * src/main/pa_string.C: - .pos works fine with offset for utf-8
8595: strings
8596:
8597: 2008-07-17 misha
8598:
8599: * src/: include/pa_string.h, main/pa_string.C, classes/string.C: -
8600: helper length added for mid for small optimisation
8601:
8602: 2008-07-16 misha
8603:
8604: * tests/: 185.html, results/185.processed: - tests for
8605: length/left/right/mid/pos with utf-8 strings
8606:
8607: * src/classes/string.C: - left/right/mid/length/pos works fine for
8608: utf-8 strings
8609:
8610: * src/main/untaint.C: - comments removed
8611:
8612: * src/: include/pa_string.h, main/pa_string.C,
8613: include/pa_charset.h, main/pa_charset.C: - methods for working
8614: with pos/mid for strings in utf-8 were added
8615:
8616: 2008-07-15 misha
8617:
8618: * tests/: 184.html, results/184.processed: - test for case body as
8619: expression: $var(^switch(1){^case(1)(true)..})
8620:
8621: * src/classes/op.C: - case body can be expression now:
8622: $var(^switch(1){^case(1)(true)..})
8623:
8624: * tests/: results/183.processed, 183.html: - added test for testing
8625: new cookie encoding (%uXXXX)
8626:
8627: * src/main/untaint.C: - cookies outputs as %uXXXX now. while
8628: decoding for backward compatibility they decoded from %XX in
8629: request:charset too
8630:
8631: * src/: types/pa_vcookie.C, types/pa_vcookie.h, main/pa_request.C:
8632: - cookie class now decode cookies before first access after last
8633: request:charset changing (as form class).
8634:
8635: * src/main/pa_charset.C: - added method escape for escaping cookies
8636: as %uXXXX - before transcode calculate required space for dest
8637: string. it reduce mem usage for transcode
8638:
8639: * src/include/pa_charset.h: - added method escape for escaping
8640: cookies as %uXXXX
8641:
8642: * src/include/pa_string.h: - taint lang (internal) L_HTTP_COOKIE
8643: was added. will used for escaping cookies as %uXXXX
8644:
8645: * src/include/pa_common.h: - escape method has new option for skip
8646: converting '+' to a space char
8647:
8648: * src/main/: pa_common.C, pa_http.C: - skip BOM code before
8649: transcode - escape method has new option for skip converting '+'
8650: to a space char
8651:
8652: 2008-07-08 misha
8653:
8654: * src/classes/op.C: - bugfix in switch - case "stops" on 1st match
8655: (no UE if more then 1 case matches anylonger) - optimization:
8656: doing searching.as_string() || searching.as_double() only once
8657:
8658: 2008-07-04 misha
8659:
8660: * src/types/pa_vdate.h: - is_evaluated_expr returning true added so
8661: now ^date::create[date object] works
8662:
8663: * src/classes/string.C: - left and right added as aliases for start
8664: and end in ^string.trim[]
8665:
8666: 2008-07-03 misha
8667:
8668: * src/classes/file.C: - allow $.limit for file::sql as well
8669:
8670: * src/classes/file.C: - allow $.offset option for file::sql - force
8671: send limit=1 to query for use sql specifics authomatically
8672:
8673: * src/classes/: hash.C, string.C, table.C: - don't throw exception
8674: if $.limit value if empty. autoconvert it as everywere
8675:
8676: 2008-07-02 misha
8677:
8678: * configure.in: - time to change version number to 3.3.0 %-)
8679:
8680: * src/include/pa_version.h: - time to change version number to
8681: 3.3.0 %-)
8682:
8683: 2008-06-26 misha
8684:
8685: * src/classes/: file.C, hash.C, string.C, table.C, void.C: -
8686: $.limit(0) fixes
8687:
8688: * src/sql/pa_sql_driver.h: - new drivers API and new version (10.0)
8689: - $.limit(0) fixes
8690:
8691: * src/sql/pa_sql_driver.h: - SQL_NO_LIMIT added (preparations to
8692: new API)
8693:
8694: * src/: include/pa_sql_driver_manager.h,
8695: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
8696: classes/op.C: - document_root added
8697:
8698: * src/main/compile.tab.C: - error message was changed
8699:
8700: 2008-06-25 misha
8701:
8702: * src/main/compile.y: - error message was changed
8703:
8704: 2008-06-24 misha
8705:
8706: * tests/176_dir/: a.p, d.p: - @OPTION => @OPTIONS
8707:
8708: * tests/: 182.html, 182_dir/a1.p, 182_dir/a2.p, 182_dir/a3.p: -
8709: tests for @OPTIONS\nappend
8710:
8711: * tests/: 176.html, results/176.processed: - @OPTION => @OPTIONS
8712:
8713: * src/main/: compile.y, compile.tab.C: - stuff for @OPTIONS\nappend
8714:
8715: * src/main/compile_tools.h: - new methods for @OPTIONS\nappend
8716:
8717: * src/types/pa_vmethod_frame.h: - ALL_VARS_LOCAL_NAME moved fo
8718: compile.y
8719:
8720: 2008-06-17 misha
8721:
8722: * src/main/: compile.y, compile.tab.C: - bugfix in 'def'
8723: compilation: ^if(default){true. it's incorrect. must be
8724: exception}
8725:
8726: 2008-06-16 misha
8727:
8728: * tests/: 181.ent, 181.html, results/181.processed: - test for
8729: checking external reference loading with 'http://localhost'
8730: prefix while creating xdoc
8731:
8732: * tests/180.html: - use ^inet:ntoa[] and ^inet:aton[] instead of
8733: ^math:long2ip[] and ^math:ip2long[]
8734:
8735: * src/types/: pa_vobject.C, pa_vobject.h: - get_scalar_value method
8736: added which use scalar stateless class method when user object
8737: used in scalar context - use get_scalar_value when user object
8738: requested in scalar context
8739:
8740: * src/main/pa_common.C: - size must be int but not size_t or we
8741: can't compare with 0 sprintf result
8742:
8743: * src/: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
8744: main/execute.C, main/pa_request.C: - go back to one VMethodFrame
8745: with internal switch between local/global vars
8746:
8747: * src/types/pa_vclass.C: - register scalar if method @GET[] was
8748: specified
8749:
8750: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h,
8751: pa_vstateless_object.h: - stateless class and object now has
8752: private scalar field and getter/setter for working with it
8753:
8754: * src/classes/math.C: - methods math:long2ip & math:ip2long were
8755: moved to inet static class
8756:
8757: * src/classes/: classes.vcproj, inet.C, Makefile.am: - inet static
8758: class added (^inet:aton[IP], ^inet:ntoa(number))
8759:
8760: * tests/: 180.html, results/180.processed: - tests for
8761: ^math:long2ip(long) and ^math:ip2long[IP]
8762:
8763: * src/classes/math.C: - ^math:ip2long[IP] added
8764:
8765: 2008-06-11 misha
8766:
8767: * src/main/pa_xml_io.C: - use file_read_text again because of we
8768: need cut BOM code and remove DOS newline chars. but don't
8769: transcode it anyway.
8770:
8771: * src/: include/pa_common.h, include/pa_http.h, main/pa_common.C,
8772: main/pa_http.C: - option for disable transcoding while file_read
8773: and file_read_text added
8774:
8775: 2008-06-10 misha
8776:
8777: * tests/: 179.html, 179.p, results/179.processed: - test for many
8778: classes in 1 file
8779:
8780: * src/main/: compile.C, compile_tools.h: - compile return list of
8781: classes now.
8782:
8783: * src/main/: compile.y, compile.tab.C: - compile return list of
8784: classes now. internals.
8785:
8786: * src/main/pa_request.C: - compile return list of classes now. try
8787: call @conf and @auto for each returned class
8788:
8789: * src/include/pa_request.h: - compile return list of classes now
8790:
8791: * src/types/pa_vstateless_class.h: - typedef ArrayClass added (for
8792: return list of classes when compile buf)
8793:
8794: 2008-06-07 misha
8795:
8796: * src/main/pa_request.C: - constructing VRequest object with 3rd
8797: param -- form
8798:
8799: * src/types/: pa_vrequest.C, pa_vrequest.h: - constructor acceps
8800: 3rd param: form. needed for get post_charset
8801:
8802: * src/types/: pa_vform.C, pa_vform.h: - VForm::get_post_charset()
8803: added
8804:
8805: * src/: include/pa_common.h, main/pa_common.C, main/pa_http.C,
8806: types/pa_vform.C, types/pa_vform.h: - some polish
8807:
8808: 2008-06-06 misha
8809:
8810: * src/types/: pa_vform.C, pa_vform.h: - if POST -- try detec
8811: charset and decode chars from it but not from response:charset
8812:
8813: * src/main/pa_http.C: - detect_charset moved out of here
8814:
8815: * src/: include/pa_common.h, main/pa_common.C: - more helpers
8816: methods moved here - unescape_chars accepn one charset now
8817:
8818: * src/main/pa_http.C: - new constants used - don't allow
8819: $.content-type in ^file::load[;http://;$.method[POST]] - add
8820: charset info while ^file::load[;http://;$.method[POST]] - option
8821: $.omit-post-charset(true) added to ^file::load[;http://] for
8822: disabling charset during post
8823:
8824: * src/types/pa_vform.C: - new constants used
8825:
8826: * src/include/pa_common.h: - some constants were added
8827:
8828: * src/: classes/form.C, types/pa_vform.C: - use StrStartFromNC
8829: instead of StrEqNc
8830:
8831: * src/main/pa_common.C: - new method for caseless search
8832: c-substring in c-string - use isxdigit instead of is_hex_digit
8833:
8834: * src/include/pa_common.h: - new method for caseless search
8835: c-substring in c-string
8836:
8837: 2008-06-05 misha
8838:
8839: * tests/results/178.processed: - test for testing default getter
8840:
8841: * tests/178.html: - test for testing default getter
8842:
8843: * tests/178_dir/: 178a.p, 178b.p, 178c.p, 178d.p, 178e.p: - classes
8844: for test for testing default getter
8845:
8846: * src/main/execute.C: - default getter soul
8847:
8848: * src/types/: pa_vobject.C, pa_vobject.h: - get default getter if
8849: requested objects' field not found
8850:
8851: * src/types/pa_vclass.C: - register default getter if defined - get
8852: default getter if requested field not found
8853:
8854: * src/types/pa_vstateless_object.h: - method get_default_getter was
8855: added
8856:
8857: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
8858: pointer to default getter and methods for get/set it were added
8859:
8860: * src/types/: pa_junction.h, pa_vjunction.h: - junction has
8861: auto_name field (for default getter)
8862:
8863: 2008-06-04 misha
8864:
8865: * src/main/pa_xml_io.C: - load external xml in binary mode (no
8866: transcoding, no cutting BOM code, no fixing line breaks) and get
8867: it to libxml "as is"
8868:
8869: 2008-06-03 misha
8870:
8871: * src/main/pa_common.C: - use store_Char instead of
8872: transcodeCharFromUTF8
8873:
8874: * src/: include/pa_charset.h, main/pa_charset.C: - method
8875: store_Char added, transcodeCharFromUTF8 -- removed
8876:
8877: 2008-06-02 misha
8878:
8879: * tests/: results/177.processed, 177.html: - test for checking
8880: .[acm]date after local ^file::load[] was added
8881:
8882: * tests/: results/176.processed, 176.html: - test for checking
8883: @OPTION\locals + @method[vars][locals] added
8884:
8885: * tests/results/auto.p: - CLASS_PATH specified for checking use
8886:
8887: 2008-05-30 misha
8888:
8889: * src/main/: compile.y, compile.tab.C: - changes in compiler:
8890: @OPTION\nlocals + @method[vars][;locals;] were added
8891:
8892: * src/main/execute.C: - code of OP_CALL and OP_CALL__WRITE was
8893: moved to separate method op_code - switch from VMethodFrame to
8894: VMethodFrameGlobal + VMethodFrameLocal
8895:
8896: * src/include/pa_request.h: - code of OP_CALL and OP_CALL__WRITE
8897: was moved to separate method op_code
8898:
8899: * src/main/pa_request.C: - use VMethodFrameGlobal instead of
8900: VMethodFrame now
8901:
8902: * src/types/pa_vstateless_class.h: - stateless class have bool flag
8903: all_vars_local as well
8904:
8905: * src/types/: pa_vmethod_frame.h, pa_vmethod_frame_global.h,
8906: pa_vmethod_frame_local.h, Makefile.am: - who children for
8907: VMethodFrame were added: one (global) works as VMethodFrame
8908: before and second (local) write all vars in self vars scope
8909:
8910: * src/types/pa_method.h: - method has bool flag all_vars_local now
8911:
8912: 2008-05-29 misha
8913:
8914: * tests/: 129.html, results/129.processed: - more tests for
8915: ^table.hash[]
8916:
8917: * src/classes/hash.C: - ^hash::sql has a new option:
8918: $.type[hash|string|table] as ^table.hash[] one.
8919:
8920: * src/classes/op.C: - ^try has 3rd param now: finally code which
8921: executed anyway after try or catch section
8922:
8923: 2008-05-27 misha
8924:
8925: * src/classes/table.C: - bugfix: ^table.hash[key][$.type[table]]
8926: must not fail if $.distinct(1) wasn't specified
8927:
8928: 2008-05-26 misha
8929:
8930: * src/classes/op.C: - allow ^throw[my type]
8931:
8932: 2008-05-22 misha
8933:
8934: * configure.in, configure: - version number updated to 3.2.4b
8935:
8936: * src/classes/: op.C, string.C: - trim format string before
8937: eval/format
8938:
8939: * tests/: results/175.processed, 175.html: - more tests for
8940: different format strings in .format[]
8941:
8942: * src/types/pa_vform.C: - while decoding get values decode %uXXXX
8943: as well (not only %XX)
8944:
8945: * src/main/pa_common.C: - unescape_chars can decode %uXXXX if
8946: charset specified - checks for format before print number
8947: (^d.format[>...<], ^eval($d)[>...<]) - formating with spaces
8948: (instead of tabs) removed
8949:
8950: * src/include/pa_common.h: - unescape_chars can decode %uXXXX if
8951: charset specified
8952:
8953: * src/: include/pa_charset.h, main/pa_charset.C: - method for get
8954: char in requested charset from utf code was added
8955:
8956: 2008-05-19 misha
8957:
8958: * tests/: 174.html, results/174.processed: - test for
8959: ^hashfile.cleanup[] added
8960:
8961: * src/classes/hashfile.C: - optimization: don't create any key or
8962: value variable if it's name weren't specified
8963: (^hf.foreach[;v]{...})
8964:
8965: 2008-05-16 misha
8966:
8967: * src/classes/hash.C: - optimization: don't create any key variable
8968: if variable name wasn't specified (^h.foreach[;v]{...})
8969:
8970: 2008-05-15 misha
8971:
8972: * src/classes/op.C: - small changes
8973:
8974: * src/classes/hashfile.C: - code reformating (as hash.foreach)
8975:
8976: * src/classes/hash.C: - calculate var_context once before foreach
8977:
8978: 2008-05-14 misha
8979:
8980: * src/classes/hashfile.C: - incorrect vars context calculation for
8981: ^hashfile.foreach[;]{} fixed
8982:
8983: * src/classes/: hash.C, table.C: - little optimisation
8984:
8985: * src/classes/file.C: - bugfix: double absolute path while loading
8986: file
8987:
8988: * tests/: 174.html, results/174.processed: - tests for hashfile
8989: were added
8990:
8991: * buildall-with-xml: - moving to libxslt 1.1.24
8992:
8993: 2008-04-30 misha
8994:
8995: * src/classes/file.C: - stat file while loading (local only) so
8996: .adate, .mdate and .cdate available without additional ::stat
8997:
8998: 2008-04-28 misha
8999:
9000: * src/classes/file.C: - $.name and $.content-type available for
9001: stated file
9002:
9003: 2008-04-14 misha
9004:
9005: * src/targets/cgi/parser3.C: - new year in copyright %-)
9006:
9007: * src/include/pa_version.h: - new version number in head
9008:
9009: 2008-04-10 misha
9010:
9011: * tests/: 080.html, results/080.processed: - cut '0' from
9012: exponential part because of on diff OS it differ (20 or 020 for
9013: ex)
9014:
9015: * tests/: 119.html, results/119.processed: - check for encoding
9016: while creating xdoc
9017:
9018: 2008-04-09 misha
9019:
9020: * buildall-with-xml: - move to libxml 2.6.32 and libxslt 1.1.23
9021:
9022: * src/main/pa_common.C: - comment added
9023:
9024: * src/classes/date.C: - little refactoring
9025:
9026: 2008-04-07 misha
9027:
9028: * src/classes/table.C: - use NO_STRINGSTREAM for switch to old
9029: style of ^table.save[]: prepare one big string and sabe it at
9030: once. it's safe on freebsd 4.x but use much more memory.
9031:
9032: * buildall-with-xml, buildall-without-xml: - option
9033: --disable-stringstream added (under comment. use it on freebsd
9034: 4.x)
9035:
9036: 2008-02-22 misha
9037:
9038: * src/main/pa_http.C: - exception if $.body[] and $.forms[]
9039: specified together in file::load[;http] - get back transcoding
9040: $.body[] in file::load[;http]
9041:
9042: 2008-02-21 misha
9043:
9044: * src/classes/date.C: - ^date.gmt-string[] was added
9045:
9046: * src/types/pa_value.C: - method for output date in RFC 822 format
9047: moved to pa_common.h
9048:
9049: * src/include/pa_common.h: - method for output date in RFC 822
9050: format moved here from pa_value.C
9051:
9052: * src/types/pa_vmail.C: - fixed core in sending mail with
9053: attachment in simple mode ($.file[file here]) introduced in 3.2.2
9054:
9055: 2008-02-20 misha
9056:
9057: * src/main/pa_http.C: - transcode $.headers before escaping into
9058: specified charset while ^file::load[...;http://...] (L_URI
9059: instead of L_HTTP_HEADER) - $.cookies param available in
9060: ^file::load[;http://...] now (but we don't parse set-cookies from
9061: response yet) (cookies not transcoded as common $cookies)
9062:
9063: 2008-02-19 misha
9064:
9065: * src/main/pa_request.C: - rollback: we mustn't force taint
9066: $response:field values because in this case
9067: $response:locateion[http://...] don't works.
9068:
9069: 2008-02-15 misha
9070:
9071: * src/classes/op.C: - little refactoring
9072:
9073: * src/main/pa_http.C: - taint names of $.headers for load[;http
9074:
9075: * src/main/pa_request.C: - force taint values of $response:field
9076:
9077: 2008-02-14 misha
9078:
9079: * src/main/pa_request.C: - $response:field transcoded to
9080: $response:charset before escaping now
9081:
9082: * src/main/pa_http.C: - some outdated comments removed
9083:
9084: * src/classes/date.C: - lastdat -> last-day
9085:
9086: * src/classes/date.C: - ^date:lastday(year;month) and
9087: ^date.lastday[] were added - little code refactoring - comments
9088: changes
9089:
9090: * tests/: 159.html, results/159.processed: - test for number of
9091: days in February
9092:
9093: * src/types/pa_value.C: - fixes in code formatting
9094:
9095: * src/classes/: file.C, op.C, table.C: - fixes in code formatting
9096: and comments
9097:
9098: 2008-02-13 misha
9099:
9100: * src/main/pa_common.C: - bugfix for february at leap year
9101:
9102: 2008-01-28 misha
9103:
9104: * tests/: 160.html, results/160.processed: - more test for cache
9105: added
9106:
9107: * src/classes/op.C: - bugfix: cache body executed twice if contains
9108: unhandled exception
9109:
9110: 2008-01-25 misha
9111:
9112: * src/lib/sdbm/sdbm.c: - use arp_malloc instead of malloc (fixed
9113: bug when hashfile became inavailable after memory:compact)
9114:
9115: * src/lib/sdbm/apr_strings.C: - +arp_malloc
9116:
9117: 2008-01-22 misha
9118:
9119: * src/classes/table.C: - little refactiring and exception texts
9120: changes in method ^table.hash[]
9121:
9122: * src/types/pa_vcookie.C: - link to cookie specification changed
9123:
9124: 2008-01-21 misha
9125:
9126: * tests/: 171.html, cat.sh, results/171.processed: - more tests for
9127: file::exec/cgi
9128:
9129: * src/classes/file.C: - bugfix: core while processing headers if
9130: executed cgi script don't return content
9131:
9132: 2008-01-18 misha
9133:
9134: * buildall-with-xml: - move to libxml2 version 2.6.31
9135:
9136: * src/include/pa_version.h, configure.in: - version number updated
9137: to '3.2.3b'
9138:
9139: 2007-12-28 misha
9140:
9141: * src/: classes/hash.C, include/pa_hash.h: - hash.contain =>
9142: hash.contains
9143:
9144: 2007-12-27 misha
9145:
9146: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
9147: src/lib/cord/cord.vcproj, src/lib/gd/gd.vcproj,
9148: src/lib/ltdl/ltdl.vcproj, src/lib/md5/md5.vcproj,
9149: src/lib/pcre/pcre.vcproj, src/lib/pcre/pcre_dftables.vcproj,
9150: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
9151: src/lib/smtp/smtp.vcproj, src/main/main.vcproj,
9152: src/targets/cgi/parser3.vcproj,
9153: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj: -
9154: back to VS2003 because of Apache 1.3 module can't work if it was
9155: built in VS 2005. with cgi all file so VS2003 project files can
9156: be easy converted to the new format.
9157:
9158: 2007-12-04 misha
9159:
9160: * src/types/pa_vcode_frame.h: - changes in comment
9161:
9162: 2007-11-29 misha
9163:
9164: * src/: types/pa_vcode_frame.h, main/execute.C: - code frame don't
9165: intercept strings any longer
9166:
9167: * tests/: 173.html, results/173.processed: - tests for
9168: $d[^date::now[]] $j{$d} $r[$j] -- must create date object in $r
9169: but not in main code frame
9170:
9171: * tests/: 172.html, results/172.processed: - more tests for pass
9172: objects from code frames
9173:
9174: 2007-11-27 misha
9175:
9176: * tests/: 152.html, results/152.processed: - tests for converting
9177: strings 'true'/'false' to bool were added
9178:
9179: * tests/152.html: - added checks for converting strings
9180: 'true'/'false' to bool
9181:
9182: * src/classes/string.C: - ^srting.bool[] now can convert to bool
9183: not only strings with numbers but with values 'true'/'false' as
9184: well
9185:
9186: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: - buffer size
9187: for parser3.log increased
9188:
9189: * src/main/pa_common.C: - remove_crlf optimize whitespaces now
9190:
9191: * src/include/pa_common.h: - remove_crlf return cstring size now
9192:
9193: * src/include/pa_types.h: - constant with buffer size for
9194: parser3.log added
9195:
9196: 2007-11-16 misha
9197:
9198: * tests/cat.sh: - script for tests for file::exec/cgi
9199:
9200: * tests/171.html: - tests for file::exec/cgi
9201:
9202: * tests/results/171.processed: - tests results for file::exec/cgi
9203:
9204: 2007-11-15 misha
9205:
9206: * src/main/pa_exec.C: - fixed incorrect exec code for unix
9207:
9208: * src/classes/file.C: - .body must be set before analyzing cgi
9209: headers
9210:
9211: * src/classes/file.C: - bugfix: we must transcode output fix EOLs
9212: only if exec/cgi return anything.
9213:
9214: 2007-11-14 misha
9215:
9216: * operators.txt: - info about new text|binary option for
9217: file::exec/cgi was added
9218:
9219: * src/: include/pa_exec.h, main/pa_exec.C, classes/file.C: -
9220: ^file:exec[[text|binary];script;...]
9221:
9222: * src/: include/pa_exception.h, classes/file.C, classes/image.C,
9223: classes/string.C, classes/table.C: - more text strings moved to
9224: the one place
9225:
9226: 2007-11-09 misha
9227:
9228: * src/types/pa_vrequest.C: - $request:argv must be taint
9229:
9230: * ChangeLog: - $request:argv [patch from Sumo]
9231:
9232: * operators.txt: - $request:argv
9233:
9234: * src/: include/pa_request_info.h, types/pa_vrequest.C,
9235: types/pa_vrequest.h, targets/cgi/parser3.C: - $request:argv
9236:
9237: 2007-10-25 misha
9238:
9239: * buildall-with-xml, buildall-without-xml: - options preparations
9240: for ./configure rewrited
9241:
9242: * src/main/: compile.tab.C, compile.y: - bug if parser.compile
9243: error occure in unhandled_exception finally fixed
9244:
9245: 2007-10-23 misha
9246:
9247: * tests/: 170.html, results/170.processed: - test for
9248: @method[][result]
9249:
9250: * operators.txt: - added info about node.prefix and
9251: node.namespaceURI
9252:
9253: * src/classes/xnode.C: - xmlHasProp used instead of xmlGetProp
9254:
9255: * src/types/pa_vxnode.C: - DOM2 fields namespaceURI and prefix were
9256: added for node and attribute
9257:
9258: 2007-10-22 misha
9259:
9260: * src/types/pa_vmail.C: - content-transfer-encoding: 8bit added
9261:
9262: * src/main/pa_request.C: - added const content-transfer-encoding
9263:
9264: * src/include/pa_request.h: - added const content-transfer-encoding
9265: - ups. constants must be in lowercase (for search)
9266:
9267: * src/types/pa_vmail.C: - more constants used -
9268: content-transfer-encoding: 8bit added
9269:
9270: * src/main/pa_uue.C: - content-transfer-encoding moved out of here
9271:
9272: * src/include/pa_request.h: - more constants
9273:
9274: * src/types/pa_vmail.C: - constant renamed - $.content-id don't
9275: ommit anymore if $.content-disposition was specified - little
9276: refactoring
9277:
9278: * src/: include/pa_request.h, main/pa_request.C: - constant renamed
9279:
9280: 2007-10-17 misha
9281:
9282: * operators.txt: - info about
9283: table::create[nameless]{data}[>options<] was added
9284:
9285: * src/main/: compile.tab.C, compile.y: - if error occure while
9286: compile method don't put this method in methods table anymore.
9287: in other case the parser coredumped if @unhandled_exception
9288: method can't be compiled because of parser.compile error.
9289:
9290: * src/main/execute.C: - little code reformating
9291:
9292: * src/main/pa_request.C: - little code reformating - comment
9293: changed
9294:
9295: 2007-10-16 misha
9296:
9297: * tests/: 035.html, results/035.processed: - tests
9298: table::create[]{}[options] added
9299:
9300: * src/classes/table.C: - table::create[]{} now accept 3rd param:
9301: options (only $.seperator[] yet)
9302:
9303: 2007-10-10 misha
9304:
9305: * src/classes/table.C: - some contstants moved to pa_common.h -
9306: some code changes
9307:
9308: 2007-10-02 misha
9309:
9310: * src/main/pa_uue.C: - memory usage during uuencode reduced more
9311: then three time as much. but base64 encoding method still use
9312: less memory anyway.
9313:
9314: 2007-09-17 misha
9315:
9316: * operators.txt: - added info about $cookie:fields
9317:
9318: * src/types/pa_vcookie.C: - $cookie:fields available now
9319:
9320: * src/classes/hash.C: - some stuff for use with .for_each moved to
9321: common
9322:
9323: * src/include/pa_common.h: - some stuff for use with .for_each
9324: moved here
9325:
9326: * src/types/: pa_venv.C, pa_venv.h: - some strings moved to #define
9327:
9328: 2007-09-14 misha
9329:
9330: * buildall-with-xml: - new xml libs again =)
9331:
9332: 2007-08-28 misha
9333:
9334: * operators.txt: - texts about ^table.columns[[column name]] and
9335: ^string.split[...][v][column name] were added
9336:
9337: * tests/: 168.html, 169.html, results/168.processed,
9338: results/169.processed: - tests for ^table.columns[[column name]]
9339: and ^string.split[...][v][column name] were added
9340:
9341: * src/classes/table.C: - new option ^table.columns[[column name]]
9342: was added
9343:
9344: * src/classes/string.C: - new option ^string.split[...;v;[column
9345: name]]
9346:
9347: * src/include/pa_exception.h: - error text message for
9348: ^hash._keys[], ^table.columns[] and ^string.split[]
9349:
9350: 2007-08-27 misha
9351:
9352: * src/main/untaint.C: - try to fix coredump on unix if print to
9353: body ^taint[sql][something] outside of connect
9354:
9355: * tests/: 167.html, results/167.processed: - test for ^taint[sql]
9356: outside of connect
9357:
9358: * buildall-with-xml, buildall-without-xml: - strip parser3 was
9359: added (commented by default)
9360:
9361: 2007-08-20 misha
9362:
9363: * operators.txt: - comment about new method ^node.hasAttributes[]
9364: was added
9365:
9366: * src/classes/: file.C, math.C, op.C, string.C, xdoc.C: - more
9367: duplicated exception text strings were removed
9368:
9369: * src/include/pa_exception.h: - more exception text strings moved
9370: here
9371:
9372: * src/classes/table.C: - some duplicate exceptions' text strings
9373: removed
9374:
9375: * src/classes/: file.C, hashfile.C, image.C, op.C, string.C,
9376: xdoc.C, xnode.C: - some duplicate exceptions' text strings
9377: removed
9378:
9379: * src/include/pa_exception.h: - some exception text strings movet
9380: to pa_exception
9381:
9382: * tests/: 149.html, results/149.processed: - test for
9383: ^xnode.hasAttributes[] was added - some code changes
9384:
9385: * src/classes/xnode.C: - DOM2 method ^xnode.hasAttributes[] was
9386: added
9387:
9388: 2007-08-17 misha
9389:
9390: * tests/: results/006.processed, results/059.processed, 006.html,
9391: 059.html: - more tests for match
9392:
9393: * tests/: 129.html, results/129.processed: - tests for
9394: ^table.hash[...][$.type[string|hash|table]] added
9395:
9396: * src/targets/cgi/parser3.C: - little syntax changes
9397:
9398: * src/: classes/math.C, targets/isapi/parser3isapi.C: - little
9399: syntax changes
9400:
9401: * src/targets/cgi/parser3.C, operators.txt: - annoying 'SIGPIPE'
9402: messages in parser3.log switched off by default. If someone
9403: really still need it: use $SIGPIPE(1)
9404:
9405: 2007-08-08 misha
9406:
9407: * buildall-with-xml, buildall-without-xml: - remove libs source
9408: files by default since now
9409:
9410: 2007-08-07 misha
9411:
9412: * buildall-without-xml: - some option syntax changes
9413:
9414: * buildall-with-xml: - compile libxml2 without http support - some
9415: option syntax changes
9416:
9417: * src/main/pa_xml_io.C: - will use parser file loader for xml needs
9418:
9419: 2007-08-06 misha
9420:
9421: * buildall-with-xml: - moved to libxml2-2.6.29 and libxslt-1.1.21
9422:
9423: * tests/: 160.html, results/160.processed: - cache test was
9424: rewrited
9425:
9426: 2007-07-06 misha
9427:
9428: * tests/: 153.html, results/153.processed: - added test for
9429: ^math:sha1[string]
9430:
9431: * src/types/pa_vform.C: - bugfix: uploaded file name wasn't
9432: transcoded
9433:
9434: * src/classes/math.C: - ^math:long2ip(long) and ^math:sha1[string]
9435: were added
9436:
9437: 2007-06-28 misha
9438:
9439: * etc/parser3.charsets/windows-1251.cfg: - removed duplicated and
9440: some incorrect chars
9441:
9442: 2007-06-19 misha
9443:
9444: * src/include/pa_hash.h: - methods generic_hash_code & hash_code
9445: were moved on top because of gcc 4 had a problems during
9446: building.
9447:
9448: 2007-06-18 misha
9449:
9450: * tests/results/019.processed: - new image commited
9451:
9452: 2007-06-09 misha
9453:
9454: * src/classes/: op.C, table.C: - in while and table.select method
9455: as_expression used now
9456:
9457: * src/types/pa_vmethod_frame.h: - method as_expression was added
9458:
9459: 2007-06-08 misha
9460:
9461: * tests/: 166.html, results/166.processed: - test for
9462: ^match[...][n]
9463:
9464: * tests/: 165.html, results/165.processed: - tests for loops
9465:
9466: * src/lib/cord/include/private/cord_pos.h: - back to origin value
9467: because of no speed/memory optimisation but some proglems with
9468: long cycles occure
9469:
9470: 2007-06-06 misha
9471:
9472: * src/classes/: op.C, table.C: - ^while(true){}, ^while(1){},
9473: ^table.select(true) and ^table.select(1) didn't works because of
9474: awaiting junction-param only. fixed.
9475:
9476: 2007-05-24 misha
9477:
9478: * src/: include/pa_os.h, main/pa_os.C: - 20 attempt to get lock
9479: with 0.5 secs interval
9480:
9481: * src/classes/op.C: - cache was rewrited. I hope it works with
9482: locking system now on unix
9483:
9484: * src/main/pa_os.C: - locks engines were rewrited: now we don't use
9485: system locks which wait till other threads release it but try get
9486: lock, if fail wait 1 sec and make 10 attempts.
9487:
9488: * src/include/pa_os.h: - consts for blocking locks + some comments
9489: were added
9490:
9491: * src/lib/sdbm/apr_file_io.C: - wait till lock released while
9492: opening files
9493:
9494: * src/classes/table.C: - changes in includes. if unclude <sstream>
9495: after our classes on unix it can't be build
9496:
9497: * src/types/pa_vhashfile.C: - not needed code removed
9498:
9499: 2007-05-23 misha
9500:
9501: * src/: classes/file.C, classes/op.C, main/pa_common.C,
9502: include/pa_common.h: - cosmetic changes
9503:
9504: 2007-05-18 misha
9505:
9506: * src/lib/cord/include/private/cord_pos.h: - rebalance tree not so
9507: often. it's give some speed increasing
9508:
9509: * tests/results/160.processed: - returned time corrected
9510:
9511: * tests/160.html: - time increased because on unix 1 mean nothing
9512: :(
9513:
9514: * operators.txt: - added info about ^hash.contain[key]
9515:
9516: * src/classes/hash.C: - added ^hash.contain[key]
9517:
9518: * src/include/pa_hash.h: - added method for checking key exists in
9519: hash
9520:
9521: 2007-05-07 misha
9522:
9523: * src/include/pa_string.h: - was compilation error during build on
9524: freebsd4
9525:
9526: 2007-05-03 misha
9527:
9528: * src/classes/table.C: - option $.type[hash|string|table] was added
9529: for ^table.hash[]
9530:
9531: * src/classes/file.C: - comment removed
9532:
9533: 2007-04-26 misha
9534:
9535: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - while ::open the
9536: real files doesn't opened in place anymore
9537:
9538: 2007-04-24 misha
9539:
9540: * src/classes/math.C: - I thought one more time and remove lg(N) :)
9541:
9542: * src/include/pa_exception.h: "static" removed
9543:
9544: 2007-04-23 misha
9545:
9546: * src/classes/math.C: ^math:lg(N) => ^math:log10(N)
9547:
9548: * src/classes/math.C: added: - ^math:ln(N) (the same as
9549: ^math:log(N)) - ^math:lg(N)
9550:
9551: * tests/: 097.html, results/097.processed: - charsets converstion
9552: during ^file::load[text;http://...] added
9553:
9554: * tests/: 164.html, results/164.processed: - check for set expires
9555: as a date
9556:
9557: * tests/: 164.html, results/164.processed: - test for hashfile
9558:
9559: * src/classes/hashfile.C: - little comment changes
9560:
9561: * src/types/pa_vhashfile.C: - don't open hashfile files until 1st
9562: access
9563:
9564: * src/: classes/date.C, classes/double.C, classes/file.C,
9565: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
9566: classes/mail.C, classes/math.C, classes/op.C, classes/string.C,
9567: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
9568: classes/xnode.h, include/pa_request.h, main/execute.C,
9569: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
9570: main/pa_dictionary.C, main/pa_exec.C, main/pa_http.C,
9571: main/pa_request.C, main/pa_sql_driver_manager.C, main/pa_table.C,
9572: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
9573: types/pa_vconsole.h, types/pa_vfile.h, types/pa_vhash.h,
9574: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmethod_frame.h,
9575: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
9576: types/pa_vtable.C, types/pa_vxdoc.h, types/pa_wcontext.C: -
9577: "parser.runtime" strings were removed
9578:
9579: * src/classes/hashfile.C: - with .clear[] called files_delete()
9580: now.
9581:
9582: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - .clear() removed.
9583:
9584: * src/include/pa_exception.h: - string constant with
9585: "parser.runtime" text was added
9586:
9587: 2007-04-20 misha
9588:
9589: * operators.txt: - some comments changing
9590:
9591: * operators.txt: - added info about .^hashfile.release[],
9592: ^hashfile.clenaup[] and new ^string.match[][>N-option<]
9593:
9594: * configure: =cheching for unsetenv
9595:
9596: * src/classes/hashfile.C: - ^hashfile.cleanup[],
9597: ^hashfile.release[] were added
9598:
9599: * src/: main/pa_string.C, include/pa_string.h, classes/string.C: -
9600: ^string.match[][] understand new option now: return number of
9601: matches but not table wit results
9602:
9603: * src/types/: pa_vhashfile.C, pa_vhashfile.h: - hashfile can auto
9604: reopen now
9605:
9606: * src/classes/op.C: - bug. must be false
9607:
9608: * configure.in: - checking for unsetenv was added
9609:
9610: * src/types/pa_vform.C: - some comments
9611:
9612: 2007-04-18 misha
9613:
9614: * buildall-with-xml: moving to libxml2-2.6.28
9615:
9616: * buildall-with-xml, buildall-without-xml: added commented lines
9617: with --disable-safe-mode option
9618:
9619: * operators.txt: - info about $form:files
9620:
9621: 2007-04-17 misha
9622:
9623: * src/types/: pa_vform.C, pa_vform.h: - some code was modified -
9624: $form:files was added
9625:
9626: * tests/: 163.html, results/163.processed: removing auto format
9627:
9628: * src/types/pa_vdate.h: - start adding unsetenv("TZ");
9629:
9630: 2007-04-16 misha
9631:
9632: * tests/: 163.html, results/163.processed: - test for .int[],
9633: floor, round, ceiling and .format[]
9634:
9635: * src/classes/file.C: - little optimization for getting args in
9636: exec/cgi
9637:
9638: 2007-04-13 misha
9639:
9640: * src/classes/file.C: - arguments for file::exec/cgi can be
9641: specified now as s table with one column
9642:
9643: 2007-03-27 misha
9644:
9645: * tests/: 162.html, results/162.processed: - test for
9646: ^table.select(^condition[$t])
9647:
9648: * tests/results/auto.p: - load windows-1251 charset for some tests
9649:
9650: * tests/run_parser.sh: PARSER_CONFIG -> CGI_PARSER_CONFIG
9651:
9652: * tests/: results/161.processed, 161.html, 161_utf8.txt,
9653: 161_windows1251.txt: - added test for
9654: ^file::load[text;/local/file.txt;$.charset[...]]
9655:
9656: * tests/: results/013.processed, 013.html: - added test for
9657: checking $._default value while hash modifications
9658:
9659: * tests/: 160.html, results/160.processed: - add test for
9660: ^cache[key](secs){code}, ^cache[] and ^cache(0)
9661:
9662: 2007-03-22 misha
9663:
9664: * src/include/pa_common.h: - "charset" string defined for
9665: ^file::load[text;/local.txt] and ^table::load[/table.txt]
9666:
9667: * src/main/: pa_common.C, pa_http.C: - $.charset option for
9668: ^file::load[text;/local.txt] and ^table::load[/table.txt] was
9669: added - not needed transcodes were removed from
9670: ^file::load[...;http://...]
9671:
9672: * src/types/pa_vdate.h: - date.week was fixed - date.weekyear was
9673: added
9674:
9675: * src/classes/date.C: - date.week was fixed
9676:
9677: * operators.txt: - added info about date.weekyear
9678:
9679: * tests/: 159.html, results/159.processed: - tests for date.week
9680: and date.weekyear added
9681:
9682: 2007-03-15 misha
9683:
9684: * src/classes/table.C: - enclose column numbers for nameless tables
9685: as well
9686:
9687: 2007-03-14 misha
9688:
9689: * src/targets/cgi/parser3.C: - bugxif. failed when request cgi
9690:
9691: * src/classes/table.C: - table.save optimization: now required much
9692: less memory
9693:
9694: 2007-03-13 misha
9695:
9696: * tests/results/: 158.processed, 158.processes: - tests for
9697: table.save/table.load
9698:
9699: * tests/: 158.html, results/158.processes: - tests for
9700: table.save/table.load
9701:
9702: * buildall-with-xml: libxml2: --without-ftp --without-docbook
9703:
9704: * buildall-with-xml: - pattern needed now for building
9705:
9706: * tests/results/097.processed: - added test results for xdoc::load
9707: & xdoc::load[http://...]
9708:
9709: * tests/097.html: - added test for xdoc::load
9710:
9711: 2007-03-12 misha
9712:
9713: * tests/: 107.html, results/107.processed: - added test for xpath
9714: '//man'
9715:
9716: 2007-03-01 misha
9717:
9718: * tests/: 097.html, results/097.processed: - added test for
9719: creating xdoc from file
9720:
9721: * tests/: results/157.processed, 157.html: - added test for
9722: file:move
9723:
9724: 2007-02-28 misha
9725:
9726: * src/classes/xdoc.C: - another attempt
9727:
9728: * src/classes/xdoc.C: - roll back last changes for a while
9729:
9730: * src/classes/xdoc.C, operators.txt: - ^xdoc::create[$file] added.
9731:
9732: * src/classes/file.C: - under lock we create non-exist dir anyway
9733:
9734: * tests/results/099.processed: - ever send content-disposition to
9735: client with file
9736:
9737: * tests/157.html: + test for file:copy
9738:
9739: 2007-02-26 misha
9740:
9741: * src/classes/file.C: - some similar strings moved to #define
9742: instead of to be copy/pasted many times
9743:
9744: * src/types/pa_vfile.h: - class name string ("file") moved to
9745: #define
9746:
9747: 2007-02-20 misha
9748:
9749: * configure.in: - added some strings for sqlite detection
9750:
9751: 2007-02-19 misha
9752:
9753: * operators.txt: - some comments changes
9754:
9755: * buildall-with-xml, buildall-without-xml: - some modifications
9756:
9757: 2007-02-17 misha
9758:
9759: * buildall-with-xml, buildall-without-xml: - moving to gc6.8
9760:
9761: * src/main/pa_request.C: - damn, i forgot to commit it while I
9762: change console behaviour
9763:
9764: 2007-02-12 misha
9765:
9766: * src/targets/cgi/parser3.C: - don't print headers if
9767: $console:line[data] was used during cgi execution.
9768:
9769: * src/types/pa_vconsole.h: - console class have bool flag now which
9770: marked as 'true' if class was used.
9771:
9772: * tests/: 152.html, results/152.processed: - more types was added
9773: to test 152
9774:
9775: * src/types/: pa_vimage.C, pa_vimage.h: - fixed bug added while
9776: adding 'bool' (^if($image){} caused exception)
9777:
9778: 2007-02-09 misha
9779:
9780: * tests/: 152.html, results/152.processed: - test alightly updated
9781:
9782: * tests/: 152.html, results/152.processed: - test rewrited
9783:
9784: * src/types/: pa_vxdoc.C, pa_vxdoc.h, pa_vxnode.C, pa_vxnode.h: -
9785: bugfix. I broke xdoc & xnode in expression
9786:
9787: 2007-02-08 misha
9788:
9789: * tests/: 152.html, results/152.processed: - add test for checking
9790: 'def' for void, string, bool, int & double
9791:
9792: 2007-02-07 misha
9793:
9794: * operators.txt: - ^file:base64[filespec] was added
9795:
9796: * tests/results/153.processed: - result test for
9797: ^file:base64[filespec] was updated
9798:
9799: * tests/153.html: - test for ^file:base64[filespec] was added
9800:
9801: * src/types/pa_vconsole.h: - little optimization
9802:
9803: * src/classes/file.C: - ^file:base64[filespec]
9804:
9805: * src/main/pa_common.C: - definitions for ^file:base64[filespec]
9806:
9807: * src/include/pa_common.h: - declarations for
9808: ^file:base64[filespec]
9809:
9810: * src/types/pa_vcookie.C: - little optimization
9811:
9812: 2007-02-06 misha
9813:
9814: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: - some chars
9815: were temporary commented
9816:
9817: * src/types/pa_vbool.h: - bugfix
9818:
9819: * tests/156.html: - added test for bool cookie
9820:
9821: * src/types/pa_vcookie.h: - not needed string "cookie" removed
9822:
9823: * tests/: 155.html, results/155.processed: - added test for check
9824: $.encloser[] option for table save/load
9825:
9826: * tests/: 153.html, 154.html, todo.txt: - two more tests added
9827:
9828: 2007-02-05 misha
9829:
9830: * tests/results/152.processed: - newline at the end was missed
9831:
9832: * tests/results/141.processed: - math:md5 must be lowercased
9833:
9834: * src/targets/cgi/parser3.C: - 2007 in help ;)
9835:
9836: 2007-02-03 misha
9837:
9838: * tests/results/: 150.processed, 151.processed, 152.processed: -
9839: test for bool added and some content length fixes
9840:
9841: * tests/152.html: - test for bool added
9842:
9843: * buildall-with-xml: - moved to libxml2-2.6.27 and libxslt-1.1.20
9844:
9845: * operators.txt: - info bool class was added
9846:
1.116 moko 9847: * src/: classes/Makefile.am, classes/bool.C,
1.95 moko 9848: classes/classes.vcproj, classes/double.C, classes/int.C,
9849: classes/string.C, classes/void.C, classes/xnode.C,
9850: include/pa_string.h, types/pa_vbool.h, types/pa_vclass.h,
9851: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.C,
9852: types/pa_vjunction.h, types/pa_vproperty.C, types/pa_vproperty.h,
9853: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
9854: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h,
9855: types/types.vcproj: - bool class was added
9856:
9857: * src/main/pa_request.C: - fix
9858:
9859: 2007-01-18 misha
9860:
9861: * src/: main/pa_string.C, classes/string.C: - return table during
9862: ^string.match[][] even if no matched found.
9863:
9864: 2006-12-20 misha
9865:
9866: * src/types/: pa_method.h, pa_vfile.h: - some syntax changes [
9867: http://www.parser.ru/forum/?id=55598 ]
9868:
9869: 2006-12-19 misha
9870:
9871: * src/types/pa_vxdoc.C: - $xDoc is "xnode" == true now. more
9872: details: http://www.parser.ru/forum/?id=52359
9873:
9874: * src/main/pa_request.C: - always set content-disposition for
9875: $response:body[hash here]. more details:
9876: http://www.parser.ru/forum/?id=52130
9877:
9878: 2006-12-07 misha
9879:
9880: * operators.txt: - added info about bool params in cookie set
9881:
9882: * src/types/pa_vcookie.C: - bool param in cookies available now
9883: $cookie:name[ $.value[123] $.secure(true) $.httponly(true)
9884: ]
9885:
9886: * src/types/: pa_value.C, pa_value.h, pa_vbool.h: - is_bool method
9887: was added
9888:
9889: 2006-12-02 misha
9890:
9891: * src/classes/file.C: - file_block_read used instead of native read
9892:
9893: * src/main/pa_common.C: - added file_block_read with read error
9894: detection - file_block_read used instead of native read
9895:
9896: * src/include/pa_common.h: - added file_block_read declaration
9897:
9898: 2006-12-01 misha
9899:
9900: * operators.txt: - info about $var.CLASS_NAME was added
9901:
9902: * src/types/: pa_vstateless_class.C, pa_vstateless_class.h: -
9903: $var.CLASS_NAME added
9904:
9905: * operators.txt: - added info about ^file:copy[]
9906:
9907: * src/classes/file.C: - ^file:copy[from;fo] was added
9908:
9909: 2006-11-20 misha
9910:
9911: * src/classes/date.C: - bug fix :)
9912:
9913: 2006-11-17 misha
9914:
9915: * src/include/pa_common.h: - array in crc32 calculation was changed
9916: to static
9917:
9918: * src/main/pa_common.C: - little optimization in getMonthDays -
9919: small changes in crc32 calculation
9920:
9921: * src/classes/date.C: - not needed code was removed
9922:
9923: 2006-11-16 misha
9924:
9925: * src/types/pa_vmail.C: - fix missed brakes
9926:
9927: * src/types/pa_vmail.C: - mail:send now set content-type:
9928: multipart/related instead of multipart/mixed if file have
9929: $.content-id[]
9930:
9931: 2006-11-15 misha
9932:
9933: * src/types/pa_vdouble.h: abs -> fabs
9934:
9935: 2006-11-14 misha
9936:
9937: * operators.txt: - added info about ^file.md5[] and
9938: ^file:md5[file-name]
9939:
9940: * src/classes/file.C: - ^file.md5[] and ^file:md5[file-name] were
9941: added
9942:
9943: * src/main/pa_common.C: - CRC32_MAX_BUFFER_SIZE was renamed to
9944: FILE_BUFFER_SIZE
9945:
9946: * src/classes/math.C: - hex_string was moved to pa_common.h
9947:
9948: * src/include/pa_common.h: - hex_string was moved from math.C -
9949: CRC32_MAX_BUFFER_SIZE was renamed to FILE_BUFFER_SIZE
9950:
9951: * src/types/pa_vdouble.h: - incorrect frac detection with negative
9952: values was fixed
9953:
9954: 2006-11-13 misha
9955:
9956: * operators.txt: - added info about ^math:crc32[string],
9957: ^file:crc32[file-name] & ^file.crc32[]
9958:
9959: * src/classes/math.C: - added ^math:crc32[string]
9960:
9961: * src/classes/file.C: - some comments were changed - added
9962: ^file:crc32[file-name] and ^file.crc32[]
9963:
9964: * src/: include/pa_common.h, main/pa_common.C: - some functions for
9965: crc32 calculation added
9966:
9967: 2006-11-03 misha
9968:
9969: * src/include/pa_array.h: - not needed variable removed
9970:
9971: * tests/: 150.html, 151.html, results/150.processed,
9972: results/151.processed: - 2 tests were added
9973:
9974: * src/include/: pa_array.h, pa_table.h: - table.locate & table.join
9975: with $.reverse(1) were fixed
9976:
9977: * src/main/pa_http.C: - bug fix. now tainted data from $.form and
9978: query converted to $.charset during ^file::load[http://...]
9979:
9980: 2006-11-02 misha
9981:
9982: * src/include/pa_table.h: ups. forget '=' char
9983:
9984: * src/include/pa_table.h: - one more fix in
9985: .locate[...][$.reverse(1)]
9986:
9987: 2006-11-01 misha
9988:
9989: * src/classes/math.C: - bug fix, details:
9990: http://www.parser.ru/forum/?id=53360
9991:
9992: * src/include/pa_table.h: - bug fix during ^table.locate( condition
9993: false for all records )[$.reverse(1)]
9994:
9995: * src/main/pa_http.C: - second param for this mid method is length
9996: but not end_index so this method has error and can't detect
9997: charsets in next content-types: Content-type: text/html;
9998: charset="windows-1251" Content-type: text/html;
9999: charset="windows-1251"; Content-type: text/html;
10000: charset=windows-1251;
10001:
10002: only Content-type: text/html; charset=windows-1251 was fine
10003:
10004: 2006-10-31 misha
10005:
10006: * src/classes/file.C: - empty args in file::exec removed now
10007:
10008: 2006-09-03 paf
10009:
10010: * src/classes/file.C: proper tainting of
10011: ^file::exec/cgi[script;env;COMMAND;LINE;PARAMS]
10012:
10013: 2006-06-09 paf
10014:
10015: * src/lib/pcre/pcre-2_08.tar.gz: one can easily find those
10016:
10017: * src/classes/table.C: formatting
10018:
10019: * src/classes/table.C: incorporated patch from misha: Sent:
10020: Thursday, June 08, 2006 12:38 PM Subject: parser3: patch for
10021: ignoring string options for ^table.save[]
10022:
10023: * src/classes/hash.C: incorporated patch from misha Sent:
10024: Wednesday, June 07, 2006 9:52 PM Subject: parser3: patch for
10025: $hash._default disappear while
10026:
10027: * operators.txt: ^mail:send[ $.file1[ $.value[file]
10028: $.format[!uue|!base64] << new base64 option. default uue ] ]
10029:
10030: * src/types/pa_vmail.C: misha: Sent: Wednesday, June 07, 2006 8:51
10031: PM Subject: patch for base64 in ^mail:send[] %-)
10032:
10033: 2006-04-09 paf
10034:
10035: * src/main/compile.tab.C: ` change compiled
10036:
10037: * gnu.vcproj, operators.txt, parser3.sln,
10038: src/classes/classes.vcproj, src/classes/file.C,
10039: src/classes/hash.C, src/classes/hashfile.C, src/classes/image.C,
10040: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10041: src/classes/xnode.C, src/include/pa_array.h,
10042: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10043: src/include/pa_memory.h, src/include/pa_request.h,
10044: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10045: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10046: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10047: src/lib/pcre/pcre_dftables.vcproj,
10048: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10049: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10050: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10051: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10052: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10053: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10054: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10055: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10056: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10057: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10058: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10059: src/types/pa_value.h, src/types/pa_vcookie.C,
10060: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
10061: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10062: src/types/pa_vstatus.C, src/types/types.vcproj,
10063: tests/descript.ion: + ^break[] ^continue[], in ^for, ^while,
10064: ^menu, ^hash/hashfile.foreach
10065:
10066: * gnu.vcproj, parser3.sln, src/classes/classes.vcproj,
10067: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
10068: src/classes/op.C, src/classes/table.C, src/classes/xdoc.C,
10069: src/classes/xnode.C, src/include/pa_array.h,
10070: src/include/pa_config_fixed.h, src/include/pa_dir.h,
10071: src/include/pa_memory.h, src/include/pa_request.h,
10072: src/include/pa_stack.h, src/lib/cord/cord.vcproj,
10073: src/lib/gd/gd.vcproj, src/lib/ltdl/ltdl.vcproj,
10074: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
10075: src/lib/pcre/pcre_dftables.vcproj,
10076: src/lib/pcre/pcre_parser_ctype.vcproj, src/lib/sdbm/sdbm.vcproj,
10077: src/lib/smtp/smtp.h, src/lib/smtp/smtp.vcproj,
10078: src/main/compile.y, src/main/execute.C, src/main/main.vcproj,
10079: src/main/pa_cache_managers.C, src/main/pa_charset.C,
10080: src/main/pa_exec.C, src/main/pa_http.C, src/main/pa_request.C,
10081: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
10082: src/main/pa_string.C, src/main/pa_stylesheet_connection.C,
10083: src/main/pa_stylesheet_manager.C, src/targets/cgi/getopt.c,
10084: src/targets/cgi/parser3.C, src/targets/cgi/parser3.vcproj,
10085: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
10086: src/targets/isapi/parser3isapi.vcproj, src/types/pa_value.C,
10087: src/types/pa_value.h, src/types/pa_vcookie.C,
10088: src/types/pa_vmail.C, src/types/pa_vresponse.C,
10089: src/types/pa_vstatus.C, src/types/types.vcproj,
10090: tests/descript.ion: ! switched to VS2005 (projects and
10091: object<info explicitly typed>.for_each(, info)) +
10092: $response:field[] setting void means removing + grammar $name`
10093: name stops now, for mysql `$field` + started ^break[]
10094: ^continue[], in ^for. TODO: to other iterators (while, menu,
10095: foreach) + all log messages += [uri=, method=, cl=]
10096:
10097: * buildall-with-xml: merged . ftp paths update
10098:
10099: * buildall-with-xml: . ftp paths update
10100:
10101: 2006-03-04 paf
10102:
10103: * src/main/: pa_string.C: merged from HEAD ! cache file curruption
10104: checks++ [thanks to Igor Zinkovsky for detailed report]
10105:
10106: * src/main/pa_string.C: ! cache file curruption checks++ [thanks to
10107: Igor Zinkovsky for detailed report]
10108:
10109: 2006-03-01 paf
10110:
10111: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10112: \n to ' ' in
10113:
10114: 2006-02-18 paf
10115:
10116: * src/main/untaint.C: merged from HEAD ! mail:send << changed \r or
10117: \n to ' ' in
10118:
10119: * src/main/untaint.C: ! mail:send << changed \r or \n to ' ' in
10120:
10121: 2006-02-03 paf
10122:
10123: * src/main/pa_common.C: merged from HEAD ! bugfix: decoding from
10124: base64
10125:
10126: * src/main/pa_common.C: ! bugfix: decoding from base64
10127:
10128: 2006-01-20 paf
10129:
10130: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10131: economy fix
10132:
10133: * src/classes/: table.C: merged from HEAD ! bugfix
10134: ^table.save[$.encloser-s now handled properly
10135:
10136: * src/classes/table.C: ! bugfix ^table.save[$.encloser-s now
10137: handled properly
10138:
10139: 2006-01-19 paf
10140:
10141: * buildall-with-xml, buildall-without-xml: merged from HEAD !
10142: libgc:USE_MUNMAP activates merging of free memory blocks which
10143: helps a lot in our case: after transform we want
10144: CORD(main.result)->cstr[big malloc]->transcode[big malloc]
10145:
10146: * src/types/pa_vhashfile.C: . merged hashfile.foreach memory
10147: economy fix
10148:
10149: * buildall-with-xml, buildall-without-xml: ! libgc:USE_MUNMAP
10150: activates merging of free memory blocks which helps a lot in our
10151: case: after transform we want CORD(main.result)->cstr[big
10152: malloc]->transcode[big malloc]
10153:
10154: 2006-01-17 paf
10155:
10156: * src/types/pa_vhashfile.C: ! hashfile.foreach: counted pairs
10157: before reading them. got rid of reallocs = became quicker and
10158: less fragmentated
10159:
10160: 2005-12-29 paf
10161:
1.116 moko 10162: * INSTALL, Makefile.am, buildall-with-xml, buildall-without-xml,
10163: configure, configure.in, src/include/pa_version.h,
10164: src/lib/ltdl/Makefile.am, src/lib/ltdl/acconfig.h,
1.95 moko 10165: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
10166: src/lib/ltdl/config.sub, src/lib/ltdl/configure.in,
10167: src/lib/ltdl/install-sh, src/lib/ltdl/ltmain.sh,
10168: src/lib/ltdl/missing: . merged from 3.2.1
10169:
1.116 moko 10170: * Makefile.am, src/lib/ltdl/Makefile.am: . now site.m4 also
10171: packaged when 'make dist', so do configure companion files in
10172: src/lib/ltdl
10173:
10174: * src/lib/ltdl/: Makefile.am, acconfig.h, acinclude.m4,
10175: config.guess, config.sub, configure.in, install-sh, ltmain.sh,
10176: missing: . now config_auto.h is created with configure [were
10177: constant]
1.95 moko 10178:
10179: * INSTALL: . references to documentation and some clarification
10180:
10181: * buildall-with-xml, buildall-without-xml: . farawell doc
10182: indication
10183:
1.116 moko 10184: * Makefile.am: . dist+=buildall*
1.95 moko 10185:
10186: 2005-12-28 paf
10187:
10188: * configure: . 3.2.1
10189:
10190: * INSTALL, buildall-with-xml, buildall-without-xml: + started to
10191: simplify build process, see INSTALL
10192:
10193: 2005-12-26 paf
10194:
10195: * configure: ver
10196:
10197: * configure.in, src/include/pa_version.h, src/main/compile.tab.C:
10198: version
10199:
10200: 2005-12-21 paf
10201:
10202: * src/main/: compile.tab.C, main.vcproj: . win32: grammar is now
10203: compiled with bison 1.875b, it reports unexpected token names
10204:
10205: 2005-12-19 paf
10206:
10207: * src/: main/compile.tab.C, types/pa_vxnode.h: ! bugfix xnode now
10208: holds a link to xmlNode to prevent premature gc(xmlNode)
10209:
10210: * src/classes/classes.vcproj, src/include/pa_config_fixed.h,
10211: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
10212: src/main/main.vcproj, src/main/pa_globals.C,
10213: src/targets/cgi/parser3.vcproj,
10214: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj,
10215: configure, configure.in, src/include/pa_version.h: . killing
10216: gdome [what a relief]
10217:
10218: * tests/: 097.html, 106.html, 108.html, 110.html, 112.html,
10219: 113.html, 114.html, 115.html, 116.html, 117.html, Makefile,
10220: run_parser.sh, results/001.processed, results/002.processed,
10221: results/003.processed, results/004.processed,
10222: results/005.processed, results/006.processed,
10223: results/008.processed, results/009.processed,
10224: results/010.processed, results/011.processed,
10225: results/012.processed, results/013.processed,
10226: results/014.processed, results/015.processed,
10227: results/016.processed, results/017.processed,
10228: results/018.processed, results/020.processed,
10229: results/021.processed, results/022.processed,
10230: results/023.processed, results/024.processed,
10231: results/025.processed, results/026.processed,
10232: results/027.processed, results/028.processed,
10233: results/029.processed, results/030.processed,
10234: results/031.processed, results/032.processed,
10235: results/033.processed, results/034.processed,
10236: results/035.processed, results/036.processed,
10237: results/037.processed, results/038.processed,
10238: results/039.processed, results/040.processed,
10239: results/041.processed, results/042.processed,
10240: results/043.processed, results/044.processed,
10241: results/045.processed, results/046.processed,
10242: results/047.processed, results/048.processed,
10243: results/049.processed, results/050.processed,
10244: results/051.processed, results/052.processed,
10245: results/053.processed, results/054.processed,
10246: results/055.processed, results/056.processed,
10247: results/057.processed, results/058.processed,
10248: results/059.processed, results/060.processed,
10249: results/061.processed, results/062.processed,
10250: results/063.processed, results/064.processed,
10251: results/065.processed, results/066.processed,
10252: results/067.processed, results/068.processed,
10253: results/069.processed, results/070.processed,
10254: results/071.processed, results/072.processed,
10255: results/073.processed, results/074.processed,
10256: results/075.processed, results/076.processed,
10257: results/077.processed, results/078.processed,
10258: results/079.processed, results/080.processed,
10259: results/081.processed, results/082.processed,
10260: results/083.processed, results/084.processed,
10261: results/085.processed, results/086.processed,
10262: results/087.processed, results/088.processed,
10263: results/089.processed, results/090.processed,
10264: results/091.processed, results/092.processed,
10265: results/093.processed, results/094.processed,
10266: results/095.processed, results/096.processed,
10267: results/097.processed, results/099.processed,
10268: results/100.processed, results/101.processed,
10269: results/102.processed, results/104.processed,
10270: results/105.processed, results/106.processed,
10271: results/107.processed, results/108.processed,
10272: results/109.processed, results/110.processed,
10273: results/111.processed, results/112.processed,
10274: results/113.processed, results/114.processed,
10275: results/115.processed, results/117.processed,
10276: results/119.processed, results/120.processed,
10277: results/121.processed, results/122.processed,
10278: results/123.processed, results/124.processed,
10279: results/125.processed, results/126.processed,
10280: results/127.processed, results/128.processed,
10281: results/129.processed, results/130.processed,
10282: results/131.processed, results/132.processed,
10283: results/133.processed, results/134.processed,
10284: results/135.processed, results/136.processed,
10285: results/138.processed, results/139.processed,
10286: results/140.processed, results/141.processed,
10287: results/142.processed, results/143.processed,
10288: results/144.processed, results/145.processed,
10289: results/146.processed, results/147.processed,
10290: results/148.processed, results/149.processed, results/auto.p: .
10291: now works if we turn off default auto.p
10292:
1.116 moko 10293: * configure: . makes
1.95 moko 10294:
10295: * src/types/pa_vxnode.C: . less warnings
10296:
10297: * src/types/pa_vxnode.C, tests/142.html, tests/144.html,
10298: tests/145.html, tests/149.html, tests/descript.ion,
10299: tests/outputs/d.cmd, tests/results/142.processed,
10300: tests/results/143.processed, tests/results/144.processed,
10301: tests/results/145.processed, tests/results/146.processed,
10302: tests/results/147.processed, tests/results/148.processed,
10303: tests/results/149.processed: . removed .nodeValue from all node
10304: types other than 5 (grabbed piece from gdome)
10305:
10306: * tests/: 137.html, results/137.processed: . not handled this case
10307: yet. code does not hang from inserting parent into child,
10308: considering thing minor issue -- nodes are removed from source
10309: anyway, don't know why shold that be an error after all
10310:
10311: * src/targets/cgi/parser3.C: . style
10312:
10313: * src/classes/xnode.C: . "xml.dom" . xnode.select* now works on
10314: xdoc too [were barking "not element"]
10315:
10316: 2005-12-16 paf
10317:
10318: * tests/: 146.html, 147.html, 148.html: . more tests
10319:
10320: * src/classes/xnode.C: . also bark on possible errors
10321:
10322: * src/types/: pa_vxdoc.C, pa_vxnode.C, pa_vxnode.h: + xdoc DOM
10323: props
10324:
10325: * src/: types/pa_value.h, types/pa_vvoid.h, main/compile.tab.C,
10326: main/compile.y: merged from HEAD ! fixed overoptimized
10327: ^call(false) case. (confused it with ^call[] case)
10328:
10329: * src/main/: compile.tab.C, compile.y: ! fixed overoptimized
10330: ^call(false) case. (confused it with ^call[] case)
10331:
10332: * tests/: 142.html, 143.html, 144.html, 145.html: . dom [part]
10333:
10334: * tests/: 006.html, 034.html, 057.html, Makefile, make_tests.cmd,
10335: results/001.processed, results/002.processed,
10336: results/003.processed, results/004.processed,
10337: results/005.processed, results/006.processed,
10338: results/008.processed, results/009.processed,
10339: results/010.processed, results/011.processed,
10340: results/012.processed, results/013.processed,
10341: results/014.processed, results/015.processed,
10342: results/016.processed, results/017.processed,
10343: results/018.processed, results/019.processed,
10344: results/020.processed, results/021.processed,
10345: results/022.processed, results/023.processed,
10346: results/024.processed, results/025.processed,
10347: results/026.processed, results/027.processed,
10348: results/028.processed, results/029.processed,
10349: results/030.processed, results/031.processed,
10350: results/032.processed, results/033.processed,
10351: results/034.processed, results/035.processed,
10352: results/036.processed, results/037.processed,
10353: results/038.processed, results/039.processed,
10354: results/040.processed, results/041.processed,
10355: results/042.processed, results/043.processed,
10356: results/044.processed, results/045.processed,
10357: results/046.processed, results/047.processed,
10358: results/048.processed, results/049.processed,
10359: results/050.processed, results/051.processed,
10360: results/052.processed, results/053.processed,
10361: results/054.processed, results/055.processed,
10362: results/056.processed, results/057.processed,
10363: results/058.processed, results/059.processed,
10364: results/060.processed, results/061.processed,
10365: results/062.processed, results/063.processed,
10366: results/064.processed, results/065.processed,
10367: results/066.processed, results/067.processed,
10368: results/068.processed, results/069.processed,
10369: results/070.processed, results/071.processed,
10370: results/072.processed, results/073.processed,
10371: results/074.processed, results/075.processed,
10372: results/076.processed, results/077.processed,
10373: results/078.processed, results/079.processed,
10374: results/080.processed, results/081.processed,
10375: results/082.processed, results/083.processed,
10376: results/084.processed, results/085.processed,
10377: results/086.processed, results/087.processed,
10378: results/088.processed, results/089.processed,
10379: results/090.processed, results/091.processed,
10380: results/092.processed, results/093.processed,
10381: results/094.processed, results/095.processed,
10382: results/096.processed, results/097.processed,
10383: results/099.processed, results/101.processed,
10384: results/102.processed, results/104.processed,
10385: results/105.processed, results/106.processed,
10386: results/107.processed, results/108.processed,
10387: results/109.processed, results/110.processed,
10388: results/111.processed, results/112.processed,
10389: results/113.processed, results/114.processed,
10390: results/115.processed, results/116.processed,
10391: results/117.processed, results/118.processed,
10392: results/119.processed, results/120.processed,
10393: results/121.processed, results/122.processed,
10394: results/123.processed, results/124.processed,
10395: results/125.processed, results/126.processed,
10396: results/127.processed, results/128.processed,
10397: results/129.processed, results/130.processed,
10398: results/131.processed, results/132.processed,
10399: results/133.processed, results/134.processed,
10400: results/135.processed, results/136.processed,
10401: results/137.processed, results/138.processed,
10402: results/139.processed, results/140.processed,
10403: results/141.processed: . refreshed old tests, made them work
10404: without auto.p (in utf8) . things noted: . gif got encoded
10405: differently . exif 0000:00:00 decoded now into 0000:00:00 (were
10406: some strange year)
10407:
10408: * INSTALL: . revived linux libgc fix
10409:
10410: * INSTALL, configure.in, src/lib/Makefile.am: . sweetest part [no
10411: glib/gdome in INSTALL and patches]
10412:
10413: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10414: include/pa_charset.h, include/pa_config_includes.h,
10415: include/pa_globals.h, include/pa_memory.h, include/pa_request.h,
10416: include/pa_xml_exception.h, lib/cord/Makefile.am,
10417: lib/cord/cord.vcproj, lib/cord/cordbscs.c, lib/cord/cordprnt.c,
10418: lib/cord/cordxtra.c, main/compile.tab.C, main/pa_charset.C,
10419: main/pa_globals.C, main/pa_memory.C, main/pa_request.C,
10420: main/pa_stylesheet_connection.C, main/pa_xml_exception.C,
10421: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
10422: types/pa_vxnode.h: . started killing gdome
10423:
10424: 2005-12-13 paf
10425:
10426: * src/main/: pa_request.C: merged from HEAD ! when code in
10427: @unhandled_exception thrown another exception, print correct
10428: origin (earlier code in catch of exception inside of
10429: @unhandled_exception grabbed parent_frame(original_exception)
10430: origin and printed it, instead of true origin)
10431:
10432: * src/main/pa_request.C: ! when code in @unhandled_exception thrown
10433: another exception, print correct origin (earlier code in catch of
10434: exception inside of @unhandled_exception grabbed
10435: parent_frame(original_exception) origin and printed it, instead
10436: of true origin)
10437:
10438: 2005-12-09 paf
10439:
10440: * INSTALL: . updated INSTALL doc to work around linux stack base
10441: detection problem, due to change in gc6.4 code
10442:
10443: * src/main/: pa_string.C: merged from 3.1.5 ! regex tainting were
10444: ignored in ^string.matched :(
10445:
10446: * src/main/pa_string.C: ! regex tainting were ignored in
10447: ^string.matched :(
10448:
10449: * ChangeLog, INSTALL, configure, configure.in, src/classes/date.C,
10450: src/include/pa_config_fixed.h, src/include/pa_version.h,
10451: src/main/compile.y, src/main/compile_tools.h,
10452: src/main/pa_charset.C, src/main/pa_common.C,
10453: src/main/pa_globals.C, src/main/pa_string.C,
10454: src/targets/cgi/getopt.c, src/targets/isapi/parser3isapi.C,
10455: src/types/pa_vmail.C: . merged latest fixes from 3.2.0
10456:
10457: 2005-12-08 paf
10458:
10459: * src/types/pa_vmail.C: merged from 3.2.0 ! bcc line longer then
10460: 500 chars now handled OK [were wrapped on 500th char according to
10461: rfc, but sendmail failed to unwrap it properly]
10462:
10463: * src/types/pa_vmail.C: ! bcc line longer then 500 chars now
10464: handled OK [were wrapped on 500th char according to rfc, but
10465: sendmail failed to unwrap it properly]
10466:
10467: * src/targets/isapi/parser3isapi.C: . less warnings
10468:
10469: * src/targets/isapi/parser3isapi.C: . undone some strange change
10470: since 3.1.5
10471:
10472: * src/targets/isapi/parser3isapi.C: . merged from 3.1.5 release
10473: link fixes
10474:
10475: * src/: classes/date.C, include/pa_config_fixed.h,
10476: main/compile.tab.C, main/compile.y, main/compile_tools.h,
10477: main/pa_charset.C, main/pa_common.C, main/pa_globals.C,
10478: main/pa_string.C, targets/cgi/getopt.c: . less warnings
10479:
10480: * src/include/pa_config_fixed.h: . removed outdated string origins
10481: [in current storage scheme there's no place for them. someday we
10482: can add third CORD to store origins and special version of parser
10483: which stores origins there [separate binary]]
10484:
10485: 2005-12-07 paf
10486:
10487: * src/targets/isapi/parser3isapi.C: . now links in release mode
10488:
10489: * src/include/pa_version.h: makefiles
10490:
10491: * src/include/pa_version.h: . not beta
10492:
10493: * configure, configure.in, src/include/pa_version.h: not beta
10494:
10495: 2005-12-06 paf
10496:
10497: * src/types/: pa_wcontext.C, pa_wcontext.h: ! after long discussion
10498: [some details here http://i2/tasks/edit/?id=4869912143891354460]
10499: decided to undo the change ^call[$void] passes void. now it will
10500: pass empty string again.
10501:
10502: * src/main/: compile.tab.C, compile.y: . version readded
10503:
10504: * src/classes/op.C: . in this version there is no ^switch[$nothing]
10505: = ^switch[void] problem
10506:
10507: 2005-12-01 paf
10508:
10509: * src/classes/op.C: mreged from HEAD . bugfix ^switch[$void_value]
10510: caused ^case[string] to be coerced to double since searching
10511: value were not string (it was vvoid)
10512:
10513: * src/classes/op.C: . bugfix ^switch[$void_value] caused
10514: ^case[string] to be coerced to double since searching value were
10515: not string (it was vvoid)
10516:
10517: * INSTALL: . compiled with libxml2 = 2.6.22 libxslt =
10518: 1.1.15 glib = 1.2.10 gdome2 = 0.8.1
10519:
10520: 2005-11-30 paf
10521:
10522: * src/types/pa_vdate.h: merged from HEAD: ! bugfix: to drop TZ on
10523: win32 must putenv("TZ="), on unix works only putenv("TZ")
10524:
10525: * src/types/pa_vdate.h: ! bugfix: to drop TZ on win32 must
10526: putenv("TZ="), on unix works only putenv("TZ")
10527:
10528: * INSTALL: . xml libs versions updated
10529:
10530: * src/main/pa_globals.C: //20051130 trying to remove this, author
10531: claims that fixed a lot there // 20040920 for now both
10532: workarounds needed. wait for new libxml/xsl versions
10533:
10534: 2005-11-28 paf
10535:
10536: * src/classes/table.C: merged from HEAD: ! nameless table has
10537: columns==0
10538:
10539: * src/classes/table.C: ! nameless table has columns==0
10540:
10541: * src/main/pa_http.C: merged from HEAD: ! status line check made
10542: earlier [was totally wrong]
10543:
10544: * src/main/pa_http.C: ! status line check made earlier [was totally
10545: wrong]
10546:
10547: 2005-11-25 paf
10548:
10549: * src/include/pa_array.h: -this reduces speed(table::load) strange.
10550: undoing for now...
10551:
10552: * src/include/pa_version.h: -this reduces speed(table::load),
10553: strange. undoing
10554:
10555: * src/classes/op.C: merged from HEAD + ^while(){}[SEPARATOR]
10556:
10557: * src/classes/op.C: + ^while(){}[SEPARATOR]
10558:
10559: * src/include/pa_array.h: + optimistics added: all arrays (table
10560: rows) now grow size*=2, like in .NET ArrayList.EnsureCapacity,
10561: this speeds things up and saves memory a LOT! (not noticed
10562: negative effect on syntetic tests, future will tell...)
10563:
10564: * src/include/pa_memory.h: . removed GC_DEBUG for debug version, it
10565: changed gc_malloc implementation, which obscured profiling
10566:
10567: * src/classes/table.C: merged from HEAD: + optimized
10568: table::load/sql, now row ArrayString-s allocated with
10569: columns.count() elements and don't always grow from
10570: count=3[realloc,realloc]
10571:
10572: * src/classes/table.C: + optimized table::load/sql, now row
10573: ArrayString-s allocated with columns.count() elements and don't
10574: always grow from count=3[realloc,realloc]
10575:
10576: * src/classes/table.C: merged from HEAD: . ^table.save unused
10577: buffer after save
10578:
10579: * src/classes/table.C: . ^table.save unused buffer after save
10580:
10581: 2005-11-24 paf
10582:
10583: * configure.in: . merged glib2-config patch
10584:
10585: * configure.in: + trying to find glib2-config
10586:
10587: * src/: classes/file.C, include/pa_common.h, main/execute.C,
10588: main/pa_common.C, main/pa_request.C: merged from HEAD: ! changed
10589: file/dir_readable to simple file/dir_exist, this would help in
10590: situations "class not found because .p file has bad rights" << in
10591: that case error would be explicit "access denied to 'this' file"
10592:
1.116 moko 10593: * aclocal.m4, configure, src/include/pa_config_auto.h.in: makefiles
1.95 moko 10594:
10595: * src/: classes/file.C, include/pa_common.h, main/execute.C,
10596: main/pa_common.C, main/pa_request.C: ! changed file/dir_readable
10597: to simple file/dir_exist, this would help in situations "class
10598: not found because .p file has bad rights" << in that case error
10599: would be explicit "access denied to 'this' file"
10600:
10601: * src/: classes/file.C, include/Makefile.am, include/pa_common.h,
10602: include/pa_http.h, main/Makefile.am, main/main.vcproj,
10603: main/pa_common.C, main/pa_http.C: merged from HEAD: +!
10604: ^file::exec/cgi[script;$.charset[changed]
10605: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
10606: encoded in $.charset charset
10607:
10608: * src/classes/file.C: +! ^file::exec/cgi[script;$.charset[changed]
10609: $.QUERY_STRING[^untaint[URI]{aaa=$form:text} << now %HH would be
10610: encoded in $.charset charset
10611:
10612: * src/: include/Makefile.am, include/pa_common.h,
10613: include/pa_http.h, main/Makefile.am, main/main.vcproj,
10614: main/pa_common.C, main/pa_http.C: . extracted http:// into
10615: separate file [preparation for
10616: ^file::cgi[script;$.form[$.field1[]
10617:
10618: 2005-11-22 paf
10619:
10620: * src/: include/pa_version.h, main/compile.tab.C: makefiles
10621:
10622: * acinclude.m4, configure.in: . merged underquting fixes
10623:
1.116 moko 10624: * src/include/pa_config_auto.h.in: configure+makes
1.95 moko 10625:
10626: * src/classes/op.C: . overmerged a little
10627:
10628: * src/main/compile.tab.C: Makefile
10629:
10630: * src/main/: pa_common.C: . less gcc warnings
10631:
10632: * src/classes/op.C: merged from HEAD: + $exception.handled[cache]
10633: now reports original exception if we have no old cache
10634:
10635: * src/classes/op.C: + $exception.handled[cache] now reports
10636: original exception if we have no old cache
10637:
10638: * src/: classes/op.C, include/pa_string.h, main/untaint.C: merged
10639: from HEAD: + ^taint/untaint[regex] << escapes these:
10640: \^$.[]|()?*+{}
10641:
10642: * src/: classes/op.C, include/pa_string.h, main/untaint.C: +
10643: ^taint/untaint[regex] << escapes these: \^$.[]|()?*+{}
10644:
10645: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
10646: getenv-ed variable, which does not work both on win32&unix.
10647: copied old TZ value now
10648:
10649: * src/types/pa_vdate.h: merged from 3.1.5: ! date TZ save/restore
10650: stored pointer to getenv-ed variable, which does not work both on
10651: win32&unix. copied old TZ value now
10652:
10653: * src/types/pa_vdate.h: ! date TZ save/restore stored pointer to
10654: getenv-ed variable, which does not work both on win32&unix.
10655: copied old TZ value now
10656:
10657: * src/types/pa_vresponse.C: merged from HEAD: + $response:headers
10658: access to internal hash
10659:
10660: * src/types/pa_vresponse.C: + $response:headers access to internal
10661: hash
10662:
10663: * src/targets/isapi/parser3isapi.C: merged from HEAD: +
10664: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
10665: isapi] this reduces number of "GC Warning: Repeated allocation of
10666: very large block" messages to only important onces
10667:
10668: * src/targets/isapi/parser3isapi.C: +
10669: GC_large_alloc_warn_suppressed=0 between requests [apache mod_,
10670: isapi] this reduces number of "GC Warning: Repeated allocation of
10671: very large block" messages to only important onces
10672:
10673: * src/classes/string.C: merged from HEAD: + removed limitation on
10674: ^string/int/double:sql{}[$.default[({param style})] ]
10675:
10676: * src/classes/string.C: + removed limitation on
10677: ^string/int/double:sql{}[$.default[({param style})] ]
10678:
10679: * src/main/pa_common.C: merged from HEAD: + removed "use either uri
10680: with ?params or $.form option" limitation
10681:
10682: * src/main/pa_common.C: + removed "use either uri with ?params or
10683: $.form option" limitation
10684:
10685: * src/: classes/file.C, classes/string.C, include/pa_common.h,
10686: main/pa_common.C: merged from HEAD: + ^file.base64[] encode +
10687: ^file::base64[encoded] decode
10688:
10689: * src/: classes/file.C, classes/string.C, include/pa_common.h,
10690: main/pa_common.C: + ^file.base64[] encode +
10691: ^file::base64[encoded] decode
10692:
10693: * src/classes/: file.C, string.C: + ^string.base64[] encode +
10694: ^string:base64[encoded] decode
10695:
10696: * src/: classes/string.C, include/pa_common.h, main/pa_common.C: +
10697: ^string:base64[in] encode + ^string.base64[] decode
10698:
10699: 2005-11-21 paf
10700:
10701: * src/classes/file.C: + merged from HEAD:
10702: ^file::create[text;file.xml;^untaint[xml]{data}]
10703:
10704: * src/classes/file.C: +
10705: ^file::create[text;file.xml;^untaint[xml]{data}]
10706:
10707: * src/main/pa_request.C: ! merged: $response:body[file] now
10708: differes from :download, it does not return content-disposition
10709: at all now [previusely it returned valueless content-disposition]
10710:
10711: * src/main/pa_request.C: ! $response:body[file] now differes from
10712: :download, it does not return content-disposition at all now
10713: [previusely it returned valueless content-disposition]
10714:
10715: * src/main/: compile.tab.C, compile.y: ! overoptimized void
10716: literals, reverted to just vvod, recreating empty array with each
10717: void_value token. that's absolutely needed, since that array
10718: grows
10719:
10720: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
10721: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
10722: types/pa_vmethod_frame.h: + merged: expression literals:
10723: true/false. ^format[$.indent(true)]
10724:
10725: * src/: main/compile.tab.C, main/compile.y, types/pa_value.h,
10726: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vint.h,
10727: types/pa_vmethod_frame.h: + expression literals: true/false.
10728: ^format[$.indent(true)]
10729:
10730: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
10731: merged: $env:PARSER_VERSION reports "3.1.5beta (compiled on
10732: i386-pc-win32)"
10733:
10734: * src/types/: Makefile.am, pa_venv.C, pa_venv.h, types.vcproj: +
10735: $env:PARSER_VERSION reports "3.1.5beta (compiled on
10736: i386-pc-win32)"
10737:
10738: 2005-11-18 paf
10739:
10740: * src/classes/: double.C, int.C: ! ^int/double:sql{select
10741: null}[$.default(123)] will now return default value
10742:
10743: * src/classes/op.C: + merged ^cache[] << returns current cache
10744: expiration time
10745:
10746: * src/classes/op.C: + ^cache[] << returns current cache expiration
10747: time
10748:
10749: * src/classes/table.C: ! merged ^table::create[not'nameless';
10750: failed << Exception.problem_source pointed to local var!
10751:
10752: * src/classes/table.C: ! ^table::create[not'nameless'; failed <<
10753: Exception.problem_source pointed to local var!
10754:
10755: * src/main/pa_common.C: ! merged: file::load[binary;fileOfZeroSize]
10756: now loads VFile.ptr!=0, so such files can be saved now
10757:
10758: * src/main/pa_common.C: ! file::load[binary;fileOfZeroSize] now
10759: loads VFile.ptr!=0, so such files can be saved now
10760:
10761: * src/include/pa_dir.h: ! merged: file:list now sees .xxx files,
10762: only . and .. now removed from list [were removed all .*]
10763:
10764: * src/include/pa_dir.h: ! file:list now sees .xxx files, only . and
10765: .. now removed from list [were removed all .*]
10766:
10767: * src/lib/sdbm/apr_file_io.C: ! merged from 3.1.5: hashfile file
10768: open error now checked, were not :( [stole that piece from apache
10769: 1.3 sources]
10770:
10771: * src/lib/sdbm/apr_file_io.C: ! hashfile file open error now
10772: checked, were not :( [stole that piece from apache 1.3 sources]
10773:
10774: * src/main/pa_request.C: ! merged from 3.1.5: ensured proper
10775: untainting of @main result if returned by $result or
10776: $response:body
10777:
10778: * src/main/pa_request.C: ! ensured proper untainting of @main
10779: result if returned by $result or $response:body
10780:
10781: * src/main/pa_common.C: ! merged from 3.1.5: fixed file load memory
10782: issue: now tries to guess content-length and allocates one big
10783: piece if possible [regretfully gc_realloc works as malloc+free,
10784: leaving lots of holes behind]
10785:
10786: * src/: classes/memory.C, main/compile.tab.C, main/pa_common.C: !
10787: fixed file load memory issue: now tries to guess content-length
10788: and allocates one big piece if possible [regretfully gc_realloc
10789: works as malloc+free, leaving lots of holes behind]
10790:
10791: 2005-11-16 paf
10792:
10793: * src/: include/pa_common.h, classes/file.C, classes/table.C,
10794: main/compile.tab.C, main/pa_common.C: merged to HEAD: !
10795: table::save with enclosers now doubles them: "->"" !
10796: table::save/load do not remove elements from options hash
10797:
10798: * src/main/compile.y: ! merged to HEAD: ^if(-f "...") now works
10799: [were overoptimized ^if(double_literal), compiler confused
10800: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
10801:
10802: * src/main/: compile.tab.C, compile.y: ! ^if(-f "...") now works
10803: [were overoptimized ^if(double_literal), compiler confused
10804: OP_VALUE+origin+double with OP_STRINGPOOL+code+OP_writeXX
10805:
10806: * src/: classes/file.C, classes/table.C, include/pa_common.h,
10807: main/pa_common.C: ! table::save with enclosers now doubles them:
10808: "->"" ! table::save/load do not remove elements from options hash
10809:
10810: 2005-11-03 paf
10811:
1.116 moko 10812: * src/main/: Makefile.am, compile.tab.C: removed $< from .y
10813: compilation, not all makefiles liked that
1.95 moko 10814:
10815: 2005-08-30 paf
10816:
10817: * src/classes/op.C: merge . speedup check of [DEFAULT]
10818:
10819: * src/classes/op.C: . speedup check of [DEFAULT]
10820:
10821: 2005-08-26 paf
10822:
10823: * src/: classes/date.C, types/pa_vdate.h: merged + date.week
10824:
10825: * src/: classes/date.C, types/pa_vdate.h: + date.week
10826:
10827: * src/classes/table.C: merged ! ^table::create[bad]{xxx} now
10828: complains about bad!=nameless
10829:
10830: * src/classes/table.C: ! ^table::create[bad]{xxx} now complains
10831: about bad!=nameless
10832:
10833: * src/classes/: hash.C, string.C, table.C, void.C: merged !
10834: optional options were allowed to be empty. were checked
10835: if(is_string), changed to !defined||is_string to allow void
10836:
10837: * src/: targets/isapi/parser3isapi.C, classes/hash.C,
10838: classes/string.C, classes/table.C, classes/void.C: ! optional
10839: options were allowed to be empty. were checked if(is_string),
10840: changed to !defined||is_string to allow void
10841:
10842: * src/types/pa_vmethod_frame.h: merged ! many classes/* used
10843: as_junction where they needed as_int/double, so failed with
10844: recent "(const) now no junction" optimization
10845:
10846: * src/classes/: double.C, int.C, math.C, op.C, string.C, table.C:
10847: merged ! many classes/* used as_junction where they needed
10848: as_int/double, so failed with recent "(const) now no junction"
10849: optimization
10850:
10851: * src/: classes/double.C, classes/int.C, classes/math.C,
10852: classes/op.C, classes/string.C, classes/table.C,
10853: main/compile.tab.C, types/pa_vmethod_frame.h: ! many classes/*
10854: used as_junction where they needed as_int/double, so failed with
10855: recent "(const) now no junction" optimization
10856:
10857: 2005-08-24 paf
10858:
10859: * src/targets/isapi/: parser3isapi.C, parser3isapi.vcproj: ! on
10860: windows 2003 DllMain receivese \\?\ prefix to fullspec of .dll,
10861: stripped it
10862:
10863: 2005-08-09 paf
10864:
10865: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10866: not cleared
10867:
10868: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10869: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10870: classes/hashfile.C, classes/image.C, classes/int.C,
10871: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10872: classes/response.C, classes/string.C, classes/table.C,
10873: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10874: include/pa_array.h, include/pa_cache_managers.h,
10875: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10876: include/pa_config_fixed.h, include/pa_config_includes.h,
10877: include/pa_dictionary.h, include/pa_dir.h,
10878: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
10879: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
10880: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
10881: include/pa_request_charsets.h, include/pa_request_info.h,
10882: include/pa_sapi.h, include/pa_socks.h,
10883: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
10884: include/pa_stack.h, include/pa_string.h,
10885: include/pa_stylesheet_connection.h,
10886: include/pa_stylesheet_manager.h, include/pa_table.h,
10887: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
10888: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
10889: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
10890: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
10891: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
10892: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
10893: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
10894: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
10895: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
10896: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
10897: main/pa_sql_driver_manager.C, main/pa_string.C,
10898: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
10899: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
10900: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
10901: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
10902: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
10903: types/pa_junction.h, types/pa_method.h, types/pa_property.h,
10904: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
10905: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
10906: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
10907: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
10908: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
10909: types/pa_vform.h, types/pa_vhash.C, types/pa_vhash.h,
10910: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
10911: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
10912: types/pa_vmail.h, types/pa_vmath.C, types/pa_vmath.h,
10913: types/pa_vmemory.h, types/pa_vmethod_frame.C,
10914: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10915: types/pa_vproperty.h, types/pa_vrequest.C, types/pa_vrequest.h,
10916: types/pa_vresponse.C, types/pa_vresponse.h,
10917: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
10918: types/pa_vstateless_object.h, types/pa_vstatus.C,
10919: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
10920: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
10921: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
10922: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
10923: types/pa_wcontext.h, types/pa_wwrapper.h: 2005
10924:
10925: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10926: pa_vmethod_frame.h: merged from HEAD ! simplified (double)
10927: speedup consequent checks in vmethod_frame
10928:
10929: * src/types/pa_wcontext.h: ! bugfix in_expression bit field were
10930: not cleared
10931:
10932: * src/: classes/file.C, main/pa_exec.C: merged +file::cgi/exec now
10933: params: 50 max (were 10)
10934:
10935: * src/: classes/file.C, main/pa_exec.C: + file::cgi/exec now
10936: params: 50 max (were 10)
10937:
10938: * src/types/: pa_value.h, pa_vdouble.h, pa_vint.h,
10939: pa_vmethod_frame.h, pa_vvoid.C, pa_vvoid.h, pa_wcontext.C,
10940: pa_wcontext.h: + ^call[$void] param inside now is void (were:
10941: empty string) ! simplified (double) speedup consequent checks in
10942: vmethod_frame
10943:
10944: * src/types/: pa_vmethod_frame.C, pa_vmethod_frame.h: merged +
10945: optimized constants in expressions vstring->vdouble + optimized
10946: ^call(vdouble), no junction creation, no calls later
10947:
10948: 2005-08-08 paf
10949:
10950: * src/main/: compile.tab.C, compile.y, compile_tools.C,
10951: compile_tools.h: merged + optimized constants in expressions
10952: vstring->vdouble + optimized ^call(vdouble), no junction
10953: creation, no calls later
10954:
10955: * src/types/pa_vdouble.h: merged . double values without fractional
10956: part now default printed as %.0f instead of %g
10957:
10958: * src/types/pa_vdouble.h: . double values without fractional part
10959: now default printed as %.0f instead of %g
10960:
10961: * src/classes/hashfile.C: . merged ! second hashfile::open would
10962: cause an exception
10963:
10964: * src/classes/hashfile.C: ! second hashfile::open would cause an
10965: exception
10966:
10967: * src/: classes/classes.h, main/execute.C, types/pa_junction.h,
10968: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
10969: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
10970: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
10971: types/pa_vimage.C, types/pa_vimage.h, types/pa_vjunction.h,
10972: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
10973: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
10974: types/pa_vresponse.h, types/pa_vstateless_class.C,
10975: types/pa_vstateless_object.h, types/pa_vvoid.h,
10976: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
10977: merged VJunction(new Junction) optimization from 3.1.4
10978:
10979: * src/: main/execute.C, types/pa_junction.h, types/pa_vjunction.h,
10980: types/pa_vstateless_class.C: + optimized new VJunction(new
10981: Junction(params)) to new VJunction(params), thousands of mallocs
10982: removed
10983:
10984: 2005-08-05 paf
10985:
10986: * src/: include/pa_memory.h, main/compile.tab.C, main/compile.y,
10987: types/pa_vdouble.h, types/pa_vmethod_frame.C,
10988: types/pa_vmethod_frame.h: + optimized ^call(vdouble), no junction
10989: creation, no calls later
10990:
10991: * src/: classes/classes.C, classes/classes.h, classes/date.C,
10992: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
10993: classes/hashfile.C, classes/image.C, classes/int.C,
10994: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
10995: classes/response.C, classes/string.C, classes/table.C,
10996: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
10997: include/pa_array.h, include/pa_cache_managers.h,
10998: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
10999: include/pa_config_fixed.h, include/pa_config_includes.h,
11000: include/pa_dictionary.h, include/pa_dir.h,
11001: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
11002: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
11003: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
11004: include/pa_request_charsets.h, include/pa_request_info.h,
11005: include/pa_sapi.h, include/pa_socks.h,
11006: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
11007: include/pa_stack.h, include/pa_string.h,
11008: include/pa_stylesheet_connection.h,
11009: include/pa_stylesheet_manager.h, include/pa_table.h,
11010: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
11011: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
11012: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
11013: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
11014: lib/smtp/smtp.h, main/compile.C, main/compile.y,
11015: main/compile_tools.C, main/compile_tools.h, main/execute.C,
11016: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
11017: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
11018: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
11019: main/pa_memory.C, main/pa_os.C, main/pa_request.C,
11020: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
11021: main/pa_stylesheet_connection.C, main/pa_stylesheet_manager.C,
11022: main/pa_table.C, main/pa_uue.C, main/pa_xml_exception.C,
11023: main/pa_xml_io.C, main/untaint.C, sql/pa_sql_driver.h,
11024: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
11025: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
11026: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
11027: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
11028: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11029: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
11030: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
11031: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
11032: types/pa_vhash.C, types/pa_vhash.h, types/pa_vhashfile.h,
11033: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
11034: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
11035: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmemory.h,
11036: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
11037: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11038: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11039: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11040: types/pa_vstateless_object.h, types/pa_vstatus.C,
11041: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
11042: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.C,
11043: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
11044: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
11045: types/pa_wcontext.h, types/pa_wwrapper.h: . 2005 ;)
11046:
11047: * src/: lib/cord/cord.vcproj, lib/gd/gd.vcproj,
11048: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/pcre.vcproj,
11049: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
11050: lib/sdbm/sdbm.vcproj, lib/smtp/smtp.vcproj, main/compile.tab.C,
11051: main/compile.y, main/compile_tools.C, main/compile_tools.h,
11052: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj: +
11053: optimized constants in expressions vstring->vdouble
11054:
11055: 2005-07-29 paf
11056:
11057: * src/types/pa_vclass.C: . shaped up error messages a bit
11058:
11059: * src/types/pa_vclass.C: + property getter can now be overridden
11060:
11061: * src/: main/execute.C, types/pa_vclass.C, types/pa_vobject.C: !
11062: bug fix: static parent fields were not replaced in case
11063: $derived:field[put] + property setter can now be overridden
11064:
11065: 2005-07-28 paf
11066:
11067: * configure, configure.in, src/classes/classes.h,
11068: src/classes/date.C, src/classes/file.C, src/classes/hash.C,
11069: src/classes/hashfile.C, src/classes/image.C, src/classes/op.C,
11070: src/classes/table.C, src/classes/xdoc.C, src/classes/xnode.C,
11071: src/classes/xnode.h, src/include/pa_hash.h,
11072: src/include/pa_version.h, src/main/execute.C,
1.116 moko 11073: src/types/Makefile.am, src/types/pa_method.h,
11074: src/types/pa_value.h, src/types/pa_vclass.C,
11075: src/types/pa_vclass.h, src/types/pa_vcode_frame.h,
11076: src/types/pa_vconsole.h, src/types/pa_vcookie.C,
11077: src/types/pa_vcookie.h, src/types/pa_vhash.h,
11078: src/types/pa_vhashfile.h, src/types/pa_vimage.C,
11079: src/types/pa_vimage.h, src/types/pa_vmethod_frame.h,
11080: src/types/pa_vobject.C, src/types/pa_vobject.h,
11081: src/types/pa_vproperty.h, src/types/pa_vrequest.C,
11082: src/types/pa_vrequest.h, src/types/pa_vresponse.C,
11083: src/types/pa_vresponse.h, src/types/pa_vstateless_class.C,
11084: src/types/pa_vstateless_class.h,
1.95 moko 11085: src/types/pa_vstateless_object.h, src/types/pa_vvoid.h,
11086: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
11087: src/types/pa_wwrapper.h: + 3.2.0 beta: merged from
11088: dynamic_fields_join
11089:
11090: * src/: classes/hash.C, classes/hashfile.C, classes/op.C,
11091: classes/xnode.C, include/pa_hash.h, main/execute.C,
11092: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11093: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11094: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11095: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11096: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11097: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11098: types/pa_vresponse.h, types/pa_vstateless_object.h,
11099: types/pa_vvoid.h, types/pa_vxnode.C, types/pa_vxnode.h,
11100: types/pa_wwrapper.h: ! restored put_element('replace' param), and
11101: restored its checks in vobject.put_element->static fields |
11102: dynamic properties
11103:
11104: 2005-07-27 paf
11105:
11106: * src/types/pa_vclass.C: ! changed to GET_ SET_ prefixes. for there
11107: is some old code containing @set_name $name
11108:
11109: * src/types/pa_vobject.h: . fixed warning
11110:
11111: * configure, configure.in, src/include/pa_version.h,
1.116 moko 11112: src/types/Makefile.am: 3.2.0beta started
1.95 moko 11113:
11114: * src/: classes/xnode.C, include/pa_hash.h,
11115: types/pa_vstateless_class.C: ! new asserts were all false.
11116: regretfully reverted them all to checks
11117:
11118: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11119: classes/op.C, main/execute.C, types/pa_method.h,
11120: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11121: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11122: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11123: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11124: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11125: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11126: types/pa_vstateless_object.h, types/pa_vvoid.h,
11127: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11128: joined_dynamic_fields: removed unused param from put_method
11129: (returned to 3 params)
11130:
11131: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vclass.h:
11132: joined_dynamic_fields: dynamic get/set works with overriding
11133: props [alpha2]
11134:
11135: * src/types/pa_vclass.C: joined_dynamic_fields: dynamic get/set
11136: works [alfa]
11137:
11138: * src/: classes/classes.h, classes/hash.C, classes/hashfile.C,
11139: classes/op.C, include/pa_hash.h, main/execute.C,
11140: types/pa_method.h, types/pa_value.h, types/pa_vclass.C,
11141: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
11142: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vhash.h,
11143: types/pa_vhashfile.h, types/pa_vimage.C, types/pa_vimage.h,
11144: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
11145: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
11146: types/pa_vresponse.h, types/pa_vstateless_class.C,
11147: types/pa_vstateless_object.h, types/pa_vvoid.h,
11148: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h:
11149: joined_dynamic_fields: just compiled
11150:
11151: * src/: classes/date.C, classes/file.C, classes/hash.C,
11152: classes/hashfile.C, classes/image.C, classes/table.C,
11153: classes/xdoc.C, classes/xnode.h, main/execute.C,
11154: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.h,
11155: types/pa_vstateless_class.h: joined_dynamic_fields: started
11156:
11157: * src/types/pa_vobject.C: . object setters [only started, does not
11158: work yet]
11159:
11160: * src/: include/pa_hash.h, types/pa_vclass.C, types/pa_vobject.C: .
11161: object setters [only started, does not work yet]
11162:
11163: 2005-07-26 paf
11164:
11165: * src/: include/pa_request.h, main/execute.C: . properties: set
11166: works [alpha2]. for classes. todo: for objects
11167:
11168: * src/: classes/classes.h, include/pa_hash.h, main/execute.C,
11169: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
11170: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
11171: types/pa_vcookie.h, types/pa_vhash.h, types/pa_vhashfile.h,
11172: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
11173: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
11174: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
11175: types/pa_vstateless_object.h, types/pa_vvoid.h,
11176: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wwrapper.h: .
11177: properties: set works [alpha1]
11178:
11179: 2005-07-25 paf
11180:
11181: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h,
11182: types/pa_vstateless_class.C, types/pa_vstateless_class.h: .
11183: properties: started, get works [alpha1, other approach]
11184:
11185: * src/: main/compile.C, types/pa_vclass.C, types/pa_vclass.h: .
11186: properties: started, get works [alpha2]
11187:
11188: * src/types/: pa_vclass.C, pa_vclass.h, pa_vstateless_class.C,
11189: pa_vstateless_class.h: . properties: started, get works [alpha]
11190:
11191: 2005-07-15 paf
11192:
11193: * src/: classes/classes.h, classes/op.C, main/execute.C,
11194: types/pa_junction.h, types/pa_property.h, types/pa_value.h,
11195: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
11196: types/pa_vconsole.h, types/pa_vcookie.C, types/pa_vcookie.h,
11197: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
11198: types/pa_vimage.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
11199: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
11200: types/pa_vresponse.C, types/pa_vresponse.h,
11201: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
11202: types/pa_vstateless_object.h, types/pa_vvoid.h,
11203: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.h,
11204: types/pa_wwrapper.h, types/types.vcproj: + started property
11205: [getters work but think of changing them too to precaching]
11206:
11207: 2005-07-08 paf
11208:
11209: * src/main/pa_request.C: ! bugfix: $response:body[nonfile] caused
11210: gpf
11211:
11212: 2005-06-28 paf
11213:
11214: * src/: classes/file.C, main/untaint.C: ! string invariant violated
11215: in passing empty strings to file::exec/cgi environment
11216:
11217: 2005-06-06 paf
11218:
11219: * src/classes/: hash.C, string.C, table.C: ! bugfix ^string:sql
11220: ^table:sql ^hash:sql now DO process $.bind option
11221:
11222: 2005-05-24 paf
11223:
11224: * src/classes/file.C: ! bugfix ^file::load[mode;name;$.offset
11225: $.limit] now work again [support was broken in 3.1.4]
11226:
11227: * src/: main/pa_string.C, classes/op.C: . steps toward removing
11228: ALL_INTERIOR_POINTERS
11229:
11230: 2005-05-12 paf
11231:
11232: * configure: 3.1.5beta
11233:
11234: * src/main/pa_common.C: ! bugfix -- recv()==0 is not an error
11235:
11236: * src/main/pa_common.C: ! bugfix ^file::load[mode;name;$.offset
11237: $.limit] now work again [support was broken in 3.1.4]
11238:
11239: * src/lib/gd/gif.C: ! fixed image.fill, not it does not depend on
11240: line-width [was refusing to fill if line-width >1, thanks to
11241: Seras <seras@pinxit.lt> for repro case
11242:
11243: 2005-04-25 paf
11244:
11245: * src/types/pa_vdate.h: ! getenv("TZ")==0? TZ environment restored
11246: correctly
11247:
11248: 2005-04-19 paf
11249:
11250: * src/types/pa_vdate.h: bugfix: initial $date.TZ is 0, that results
11251: in VString violating invariant!!
11252:
11253: * src/types/pa_vdate.h: bugfix: TZ now restored after roll if were
11254: getenv("TZ")==null
11255:
11256: 2005-04-08 paf
11257:
11258: * src/main/pa_charset.C: bugfix: UTF8->one-byte-per-char-encoding
11259: bugfix: when there is no char in charset one byte produces 6
11260: (ÿ <<max). increased buffer size!
11261:
11262: 2005-03-23 paf
11263:
11264: * src/: types/pa_vdate.h, classes/date.C: ! bugfix:
11265: ^date.sql-string now takes TZ into account
11266:
11267: 2005-03-16 paf
11268:
11269: * INSTALL, src/include/pa_stack.h: . compiled on freebsd 5.3 with
11270: gcc 3.4
11271:
11272: * src/types/pa_vhash.C: . warning about eof eol
11273:
11274: 2005-02-17 paf
11275:
11276: * operators.txt, src/classes/op.C: + operator ^sleep(double
11277: seconds)
11278:
11279: 2005-02-02 paf
11280:
11281: * src/classes/xnode.C: beauty: removed needless includes
11282:
11283: 2005-01-31 paf
11284:
11285: * src/types/pa_vmail.C: change: $.partX now always 1... change:
11286: $.partNoNumber now alias to $.part1
11287:
11288: * src/types/pa_vmail.C: change: incoming letter part contains
11289: "content-disposition" header with any value? now considering that
11290: part to be "file#" [for text/plain text/html were $.text#
11291: $.html#]
11292:
11293: * INSTALL: updatet to latest working versions available
11294:
11295: 2005-01-20 paf
11296:
11297: * configure.in, src/include/pa_version.h: version
11298:
11299: 2005-01-19 paf
11300:
1.116 moko 11301: * src/: lib/gd/Makefile.am, lib/ltdl/Makefile.am,
11302: targets/cgi/parser3.C, types/Makefile.am: forgotten makefiles.
11303: couple warnings in parser3.C
1.95 moko 11304:
11305: 2004-12-23 paf
11306:
11307: * src/main/pa_sql_driver_manager.C: sql connect string, rsplit @
11308:
11309: * src/main/pa_exec.C: win32: bugfix: file::cgi/exec now set current
11310: dir to directory of script (when shbang used), not to directory
11311: of its interpreter
11312:
11313: * src/include/pa_version.h: compiled on win32...
11314:
11315: * src/targets/cgi/parser3.C: now, when version (compiled on HOST),
11316: we need more hspace
11317:
11318: * configure, configure.in, src/include/pa_version.h: configured
11319: host to pa_version. will be displayed everywhere
11320:
11321: * src/main/pa_request.C: new: @unhandled_exception can prevent
11322: exception from being logged by setting $exception.handled(1)
11323:
11324: * operators.txt, src/classes/file.C: change:
11325: ^file::sql{query}[[options]] options: $.name[file name]
11326: $.content-type[application/what]
11327:
11328: * src/: include/pa_common.h, main/pa_common.C,
11329: types/pa_vhashfile.C: beauty: hashfile::open now creates dir for
11330: new file
11331:
11332: * src/: classes/table.C, types/pa_vhash.C, types/pa_vhash.h:
11333: bugfix: table->hash now regards _default
11334:
11335: * src/types/pa_vmethod_frame.h: bugfix: when method junction was
11336: created by accessing $name_of_method it acquired bad self=closest
11337: methodframe; instead of proper self (current class)
11338:
11339: * src/types/pa_vhashfile.C: bugfix: reading empty string from
11340: hashfile produced bad cord
11341:
11342: 2004-12-10 paf
11343:
11344: * src/: lib/smtp/comms.C, main/pa_common.C: DONT_LINGER can cause
11345: subsequent failures though defined in .h
11346:
11347: * src/main/pa_common.C: comment on volatile
11348:
11349: * src/: include/pa_config_auto.h.in, main/pa_common.C: http: unix:
11350: alarm function were not used since the beginning due to stupid
11351: error [setsigjmp were not checked in configure.in]
11352:
11353: * src/main/pa_common.C: http: timeout setsockopt [if possible] on
11354: unix too
11355:
11356: * src/main/pa_common.C: http: exception status of send/recv errors
11357: change to most probable http.timeout
11358:
11359: * src/main/pa_common.C: win32: http connection $.timeout option now
11360: works [setsockopt on send/receive]
11361:
11362: 2004-12-08 paf
11363:
11364: * src/: classes/mail.C, types/pa_vmail.C: bugfix: mail body now
11365: cstr-ed knowing mail charset, and untainting uri lang now knows
11366: proper charset
11367:
11368: 2004-11-24 paf
11369:
11370: * src/classes/hash.C: hash: adding/cloning adds/clones _default now
11371:
11372: $hash[ $.a[1] $._default[def] ] #$hash2[^hash::create[$hash]]
11373: $hash2[^hash::create[]] ^hash2.add[$hash] $hash2.shit
11374:
11375: 2004-11-12 paf
11376:
11377: * src/types/pa_vmail.C: bugfix: mail:send[$.date[]] were ignored
11378: [since 3.0.4]
11379:
11380: 2004-11-09 paf
11381:
11382: * src/targets/cgi/parser3.C: debug: PA_DEBUG_CGI_ENTRY_EXIT if on,
11383: writes basics to c:\parser3.log
11384:
11385: 2004-10-21 paf
11386:
11387: * src/classes/xnode.C: bugfix: xnode.getAttribute[NS] now return
11388: tainted strings [were returning clean onces]
11389:
11390: 2004-10-15 paf
11391:
11392: * src/types/pa_vdouble.h: bugfix: ^for[i](1;1.5){} << did two
11393: cycles(i=1; i=2), which was wrong, now does ONE
11394:
11395: 2004-10-12 paf
11396:
11397: * etc/parser3.charsets/windows-1251.cfg: euro promille +/-
11398:
11399: 2004-10-07 paf
11400:
11401: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
11402: main/pa_globals.C: debugger help: PA_RELEASE_ASSERTS enables
11403: release asserts
11404:
11405: * src/: main/pa_string.C, include/pa_string.h: debugger help:
11406: String.dump() to stdout in detailed form [were String.v() in
11407: short form]
11408:
11409: * src/lib/cord/cordbscs.c: debugger help: CORD_dump now dumpts
11410: \t\r\n as @#| and truncates long char sequences less
11411:
11412: 2004-10-06 paf
11413:
11414: * src/: include/pa_socks.h, main/pa_common.C, main/pa_socks.C:
11415: win32 beauty: socket errors properly decoded
11416:
11417: 2004-10-05 paf
11418:
11419: * src/: include/pa_request.h, main/pa_request.C: bugfix:
11420: request::configure_user/admin done always, even if no
11421: file-to-process useful in @unhandled_exception [say, if they
11422: would want to mail by SMTP something]
11423:
11424: * src/main/pa_request.C: bugfix: cookie(and mail:recieved) fills
11425: now performed prior to file loading [and @auto executing] thus
11426: making $cookie:value available in @auto and in
11427: @unhandled_exception when IIS is configured to run interpreter
11428: even if no file exist
11429:
11430: 2004-09-20 paf
11431:
11432: * src/main/pa_globals.C: libxml has bugs: it calls xmlMallocAtomic
11433: somewhere where it should have called xmlMalloc and it calls
11434: xmlFree when it should have not called it. inserted two
11435: workarounds: xmlMallocAtomic implemented as xmlMalloc, and
11436: xmlFree just ignored. put away a testcase, maybe someday libxml
11437: author would fix all that. until that day: we have SLOW garbage
11438: collecting when many xml objects are alive hint: do
11439: ^memory:compact[] before xdoc::create
11440:
11441: 2004-09-17 paf
11442:
11443: * src/classes/file.C: bugfix: file::cgi headers were lost [typo
11444: error from 3.0.8 version]
11445:
11446: 2004-09-14 paf
11447:
11448: * src/types/pa_vhashfile.C: bugfix: hashfile.clear deleted only
11449: part bugfix: hashfile.foreach iterated only part if hashfile were
11450: modified inside
11451:
11452: 2004-09-13 paf
11453:
11454: * src/main/pa_string.C: bugfix: $s[+008] ^eval($s) now parsed OK
11455: [were as octal]
11456:
11457: * src/types/pa_vhashfile.C: beauty: not reproduced
11458: $hashfile.key[$novalue] bug [reported by motorin], inserted
11459: safety-check
11460:
11461: * src/types/pa_vhashfile.C: change: empty keys now error in parser
11462: [not something obscure from sdbm lib]
11463:
11464: * src/types/pa_vhashfile.C: bugfix: error numbers now from errno.h
11465: = strerror now returnes something and we can properly report that
11466: to client
11467:
11468: * src/lib/sdbm/sdbm_private.h: change: limit on length(key+value)
11469: now 8008 bytes, were 1008. perl sdbm compatibility now ruined
11470:
11471: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
11472: [tainted as-is] this helps //[space][newline] to remain as-is and
11473: not be unnecessary optimized away [ruining javascript]
11474:
11475: * src/classes/xdoc.C: change: ^xdoc.string now outputted as-is
11476: [tainted as-is]
11477:
11478: * src/classes/mail.C: bugfix: typo error
11479:
11480: 2004-09-09 paf
11481:
11482: * src/main/pa_common.C: bugfix: loads headers with both \r\n and \n
11483: separators bugfix: loads header with endings \r\n\r\n and \n\n
11484: (bloody yandex.server)
11485:
11486: 2004-09-06 paf
11487:
11488: * src/main/pa_charset.C: bugfix: two-bytes invalid chars in
11489: TranscodeFromUTF8 considered valid. only >2bytes-long now %HH
11490: encoded
11491:
11492: 2004-09-01 paf
11493:
11494: * src/types/pa_vmail.C: change: multipart/mixed changed to
11495: multipart/related outlook express have no problems showing
11496: unrelated attachments. todo: someday figure out a way of
11497: multipart/mixed multipart/related text/html
11498: image/xxx application/octet-stream << true attachments
11499:
11500: * src/types/pa_vmail.C: new:
11501: ^mail:send[$.file[$.content-disposition can be overriden new:
11502: empty mail header fields removed from letter
11503:
11504: * src/: classes/mail.C, include/pa_config_fixed.h,
11505: types/pa_value.C, types/pa_value.h, types/pa_vmail.C: new:
11506: ^mail:send[ $.file[ $.any[header]
11507:
11508: 2004-08-30 paf
11509:
11510: * src/: include/pa_config_fixed.h, main/pa_common.C: beauty: less
11511: warnings
11512:
11513: * src/main/pa_common.C: beauty: do not bother with charset
11514: detection when ^file::load[binary
11515:
11516: 2004-08-27 paf
11517:
11518: * src/main/pa_common.C: hack: for yandex.server http server
11519:
11520: 2004-08-18 paf
11521:
11522: * src/main/pa_request.C: bugfix: Accept-Ranges: bytes when sending
11523: possibly-chunked response
11524:
11525: 2004-08-17 paf
11526:
11527: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
11528: $f.content-type now = that of http response
11529:
11530: * src/classes/file.C: bugfix: $f[^file::load[;http://]]
11531: $f.content-type now = that of http response
11532:
11533: 2004-07-30 paf
11534:
11535: * src/: include/pa_request.h, main/pa_request.C,
11536: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: bugfix:
11537: win32: system&parser exceptions in release mode reported properly
11538: parser exception in exception handler WERE mistakenly reported as
11539: system exception, without details [in apache & isapi] +some
11540: beauty in exception text
11541:
11542: * src/: include/pa_exception.h, main/pa_request.C,
11543: targets/cgi/parser3.C: bugfix: win32: system&parser exceptions in
11544: release mode reported properly parser exception in exception
11545: handler WERE mistakenly reported as system exception, without
11546: details
11547:
11548: * src/main/execute.C: beauty: simplified system exception handling
11549:
11550: 2004-07-29 paf
11551:
11552: * src/classes/table.C: bugfix:
11553: ^table.save[export.csv;$.separator[^;]] now works fine [separator
11554: were ignored, and \t used unconditionally]
11555:
11556: * src/types/Makefile.am: added vhash.c
11557:
11558: 2004-07-28 paf
11559:
11560: * src/: classes/date.C, classes/image.C, classes/math.C,
11561: lib/ltdl/ltdl.c, lib/pcre/pcre_parser_ctype.c, lib/smtp/comms.C,
11562: main/pa_common.C, targets/cgi/parser3.C, types/pa_vform.C,
11563: types/pa_vmail.C: bugfix: isspace((unsigned char)c) everywhere.
11564: failed on russian letters
11565:
11566: * src/: main/pa_string.C, types/pa_vmail.C, main/pa_common.C:
11567: bugfix: isspace((unsigned char)c) everywhere. failed on russian
11568: letters
11569:
11570: * src/main/pa_exec.C: bugfix: win32: chdir not needed, dir passwed
11571: as 'currentDirectory' parameter to CreateProcess
11572:
11573: 2004-07-27 paf
11574:
11575: * src/targets/cgi/parser3.vcproj: beauty: win32:
11576: globaloptimizations ON, release:mapfile ON todo: copy .mapfile
11577: from release somewhere [to help searching for unhandled system
11578: exceptions]
11579:
11580: * src/types/pa_vdate.h: check: for invalid datetime after temporary
11581: TZ shift
11582:
11583: * src/types/pa_vdate.h: bugfix: time checked not only at set_time
11584: but also in ctor
11585:
11586: 2004-07-26 paf
11587:
11588: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
11589: src/main/pa_request.C, src/types/pa_vfile.h,
11590: src/types/pa_vhash.C, src/types/pa_vhash.h,
11591: src/types/types.vcproj: new: $response:body/download[
11592: $.file[name on disk] $.name[of file for user]
11593: $.mdate[date of last-modified. default from directory] ]
11594:
11595: * src/classes/file.C: moving file:send somewhere else..
11596:
11597: * src/: classes/file.C, include/pa_sapi.h, main/pa_common.C,
11598: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: patched:
11599: ^file:send by Victor Fedoseev <vvf_ru@mail.ru> todo: turn it to
11600: $response:download[ $.filename[filename] $.option[] ,, ]
11601:
11602: * src/classes/file.C: beauty: invalid mode thoroughly reported
11603:
11604: 2004-07-21 paf
11605:
11606: * src/types/pa_vmail.C: bugfix: too long header values now splitted
11607: to several lines
11608:
11609: were: header: vaaaaaaaaaaaalue now: header: vaaaaaa aaalue
11610:
11611: note: ms outlook[!express] shows only first 255 characters of
11612: subject
11613:
11614: 2004-07-15 paf
11615:
11616: * src/main/pa_os.C: bugfix: locks now compiled in [were mistakenly
11617: off]
11618:
11619: 2004-07-14 paf
11620:
11621: * src/classes/table.C: bugfix: $.bind values now got untainted
11622: according to lang [were: as-is]
11623:
11624: 2004-07-07 paf
11625:
11626: * src/classes/op.C: bugfix: cache with 2 params caused assertion,
11627: checked that
11628:
11629: * src/main/pa_exec.C: bufix: on unix AND win32 environment string
11630: now untainted according to their languages. were: as-is.
11631: EVERYWHERE
11632:
11633: * src/: classes/file.C, main/pa_exec.C: bufix: on unix AND win32
11634: environment string now untainted according to their languages.
11635: were: as-is. EVERYWHERE
11636:
11637: * src/main/pa_exec.C: bufix: on unix environment string now
11638: untainted according to their languages. were: as-is. on win32:
11639: ok
11640:
11641: * parser3.vssscc: ...would not go unnoticed
11642:
11643: * src/main/pa_charset.C: convinience: transcodeFromUTF8 now never
11644: fails. in case on input appears nonutf, those bytes will be
11645: printed in %HH form. that can be easily decoded/recovered.
11646:
11647: this form is quite noticable, and hopefully would not go noticed
11648:
11649: 2004-07-06 paf
11650:
11651: * src/main/pa_exec.C: bufix: on unix environment string now
11652: untainted according to their languages. were: as-is. on win32:
11653: ok
11654:
11655: 2004-07-01 paf
11656:
11657: * src/: classes/classes.vcproj, lib/cord/cord.vcproj,
11658: lib/gd/gd.vcproj, lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj,
11659: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
11660: lib/pcre/pcre_parser_ctype.vcproj, lib/smtp/smtp.vcproj,
11661: main/main.vcproj, targets/cgi/parser3.vcproj,
11662: targets/isapi/parser3isapi.vcproj, types/types.vcproj: win32:
11663: option: global optimization ON
11664:
11665: * src/main/untaint.C: workaround kinda bug in libxml: life requires
11666: to do xdoc::create{invalid chars} standard disables chars less
11667: then \x20, except tab, cr, lf.
11668:
11669: changed tainting so that those become '!'
11670:
11671: 2004-06-25 paf
11672:
11673: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
11674: int on odd address [prev bugfix failed due to superwize
11675: optimizer, which turned memcpy into same 'ld' asm command]
11676:
11677: * src/types/pa_vhashfile.C: bugfix: hashfile deserialize accessed
11678: int on odd address
11679:
11680: 2004-06-22 paf
11681:
11682: * src/sql/pa_sql_driver.h: note: about possible optimization
11683:
11684: * operators.txt, src/classes/hash.C, src/classes/memory.C,
11685: src/classes/string.C, src/classes/table.C, src/classes/void.C,
11686: src/include/pa_config_includes.h: new: ^void:sql{call
11687: paf(:a)}[ $.bind[ $.a[2]
11688: ] ] output variables work. todo: check in out
11689: variables
11690:
11691: 2004-06-18 paf
11692:
11693: * src/: classes/file.C, classes/hash.C, classes/string.C,
11694: classes/table.C, classes/void.C, include/pa_globals.h,
11695: include/pa_sql_connection.h, main/compile.tab.C,
11696: sql/pa_sql_driver.h: started: ^void:sql{call paf(:a)}[
11697: $.bind[ $.a[2] ]
11698: ] input variables work. todo:output
11699:
11700: * src/targets/cgi/parser3.C: bugfix: iis specific
11701: http://parser3/_bug.html?404;http://hpsv/test/ now $request:uri
11702: /_bug.html?404;http://hpsv/test/
11703: --------------------------------------------------------------------------------
11704: $request:query IIS-STATUS=404&IIS-DOCUMENT=http://hpsv/test/
11705: --------------------------------------------------------------------------------
11706: IIS-STATUS="404" IIS-DOCUMENT="http://hpsv/test/"
11707:
11708: 2004-06-16 paf
11709:
11710: * src/targets/cgi/parser3.C: new: iis specific
11711: http://parser3/_bug.html?404;http://server/_bug.html?f=v now
11712: $request:query
11713: IIS-STATUS=404&IIS-DOCUMENT=http://server/_bug.html&f=v
11714: $form:fields IIS-STATUS="404"
11715: IIS-DOCUMENT="http://server/_bug.html" f="v"
11716:
11717: todo: isapi too
11718:
11719: 2004-05-26 paf
11720:
11721: * src/include/pa_version.h: 3.1.3
11722:
11723: * operators.txt: beauty: removed outdated level 'table'
11724:
11725: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: thanks to konst
11726:
11727: * src/main/pa_string.C: beauty: removed 3 warnings
11728:
11729: * src/: include/pa_string.h, classes/table.C, main/untaint.C,
11730: classes/op.C: beauty: removed outdated level 'table'
11731:
11732: 2004-05-25 paf
11733:
11734: * src/lib/sdbm/apr_file_io.C: bugfix: bad seek wrapper
11735: implementation. mistery: how anything worked
11736:
11737: * src/sql/pa_sql_driver.h: beauty: param renamed and comment
11738: changed, it is now safe to use url if pointers to it are stored
11739: to gc mem
11740:
11741: * src/: main/pa_exec.C, types/pa_vhashfile.C: bugfix: hashfile
11742: unknown errors reported and not cause SIGSEGV now
11743:
11744: 2004-05-24 paf
11745:
11746: * src/: include/pa_string.h, lib/cord/cordbscs.c,
11747: lib/cord/include/cord.h, lib/cord/cordxtra.c: cancel: more speed,
11748: less memory: CORD_chars_block originally intended to ... it was
11749: good that CORD_chars_block were not used: it consumes more memory
11750: [and, might be slow too] undoing that. [and removed that func so
11751: that it would not confuse parser developer in future]
11752:
11753: * src/: include/pa_string.h, lib/cord/include/cord.h: more speed,
11754: less memory: CORD_chars_block originally intended to
11755: speedup/reduce mem usage were forgotten, and were used stupid
11756: CORD_chars
11757:
11758: * src/include/pa_config_auto.h.in: bugfix: bigendian check added
11759:
11760: * src/include/: pa_config_fixed.h, pa_string.h: bugfix: on
11761: BIGENDIAN processors space-conserving mech failed, causing
11762: SIGSEGV/SIGBUS and SAPI::abort("unknown untaint lang#%d",
11763: (1|2|3));
11764:
11765: 2004-05-14 paf
11766:
11767: * src/types/: Makefile.am, pa_vvoid.C, pa_vvoid.h, types.vcproj:
11768: bugfix: void now has vfile value, and $response:body[] works OK
11769:
11770: 2004-05-12 paf
11771:
11772: * src/types/: pa_vbool.h, pa_vhash.h, pa_vhashfile.h, pa_vtable.h:
11773: beauty: ^if(def $bool) now equals ^if($bool) and shaped up other
11774: sources to use is_defined() {return as_bool();} along VBool
11775:
11776: 2004-05-11 paf
11777:
11778: * src/include/pa_exec.h: bugfix: gpf on file::exec/cgi because of
11779: referencing to local objects
11780:
11781: * src/: classes/mail.C, include/pa_exec.h, main/compile.tab.C,
11782: types/pa_vmail.C, types/pa_vmail.h: bugfix: bcc with sendmail now
11783: left intact
11784:
11785: 2004-04-15 paf
11786:
11787: * src/classes/date.C: merged: beauty: unused var removed
11788:
11789: * src/classes/date.C: beauty: unused var removed
11790:
11791: * src/include/: pa_exec.h: bugfix: interface without pointer
11792: provoked bug
11793:
11794: 2004-04-09 paf
11795:
11796: * src/types/pa_vform.C: merge: bugfix: form:imap were incorrect
11797:
11798: * src/types/pa_vform.C: bugfix: form:imap were incorrect
11799:
11800: 2004-04-08 paf
11801:
11802: * src/classes/date.C: new: ^date::create[y-m-d
11803: h-M-s>>.milliseconds<<] now allowed, ignored so far
11804:
11805: * src/main/pa_xml_io.C: merged: bugfix /etc/xml/catalog
11806:
11807: * src/main/pa_xml_io.C: bugfix: in safe mode -- disabled attempts
11808: to consult default catalog [usually, that file belongs to other
11809: user/group]
11810:
11811: 2004-04-06 paf
11812:
11813: * src/main/pa_common.C: beauty: gcc warning removed
11814:
11815: * src/main/: compile.tab.C, compile.y: bugfix: gcc refused to
11816: accept that trick, trying other
11817:
11818: * src/main/: compile.tab.C, compile.y: bugfix: step3 to fix
11819: explicit result problem
11820:
11821: * src/main/: compile.tab.C, compile.y: bugfix: step2 to fix
11822: explicit result problem
11823:
11824: * src/main/: compile.tab.C, compile.y: bugfix: step1 to fix
11825: explicit result problem
11826:
11827: * operators.txt, src/classes/string.C: new: ^string.append[string]
11828:
11829: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
11830: main/execute.C: attempt_check_call_in_explicit_result_mode:
11831: failed
11832:
11833: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
11834: http://i.p.a.ddress gethostbyaddr added [on some platforms
11835: gethostbyname failed with such 'domains'] now checked properly,
11836: were: needless reverse/forward dns lookup
11837:
11838: * src/main/pa_common.C: bugfix: of 1.175 bugfix:
11839: http://i.p.a.ddress gethostbyaddr added [on some platforms
11840: gethostbyname failed with such 'domains'] now checked properly,
11841: were: needless reverse/forward dns lookup
11842:
11843: * src/main/: compile.C, compile.tab.C, compile.y: reimplemented:
11844: @method[][result] means "no string output here" moved to lexical
11845: level [on grammar level it were too difficult]
11846:
11847: * operators.txt, src/include/pa_string.h, src/main/compile.tab.C,
11848: src/main/compile.y, src/main/compile_tools.h,
11849: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h: new:
11850: @method[][result] means "no string output here", implemented part
11851: of that idea: compiler throws away string literal generation
11852: code. and barks nonwhitespace chars
11853:
11854: * operators.txt: truth: removed comment about $ORIGIN
11855:
11856: 2004-04-05 paf
11857:
11858: * configure.in, src/doc/html2chm.cmd, src/doc/sources2html.cmd,
11859: src/include/pa_version.h, src/main/pa_common.C,
11860: src/targets/isapi/parser3isapi.C: merged with 3.1.3
11861:
11862: * etc/parser3.charsets/x-mac-cyrillic.cfg: added: donated by
11863: Konstantin Tomashevitch [mailto:konst@design.ru]
11864:
11865: * src/doc/html2chm.cmd: beauty: no need in bg here
11866:
11867: * src/doc/sources2html.cmd: beauty: same window, in bg it
11868: interfered with FAR console
11869:
11870: * configure, configure.in: 3.1.3
11871:
11872: * src/targets/isapi/parser3isapi.C: beauty: removed some warnings
11873:
11874: * src/main/pa_common.C: removed warning
11875:
11876: * src/include/pa_version.h: 3.1.3
11877:
11878: 2004-04-02 paf
11879:
11880: * src/main/pa_string.C: bugfix: $s[009] ^s.int[] now 9, were error
11881:
11882: * src/targets/cgi/parser3.C: new: CGI_PARSER_LOG env variable
11883: allows to specify where to put parser log file
11884:
11885: 2004-04-01 paf
11886:
11887: * src/classes/table.C: bugfix: bugfix: table::load last line
11888: without tab and enter were ignored
11889:
11890: * src/: include/pa_cache_managers.h, include/pa_globals.h,
11891: include/pa_socks.h, main/pa_cache_managers.C, main/pa_globals.C,
11892: main/pa_socks.C, targets/cgi/parser3.C,
11893: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.def:
11894: bugfix: sql connections now are disconnected
11895:
11896: 2004-03-30 paf
11897:
11898: * src/classes/table.C: bugfix: table::load last line without tab
11899: and enter were ignored
11900:
11901: * src/classes/table.C: bufix: if last table lines were commented,
11902: gpfed
11903:
11904: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
11905: doc/ClassExample3.dox, doc/chmhelper.pl, doc/class.dox,
11906: doc/compiler.dox, doc/doxygen.cfg, doc/exception.dox,
11907: doc/executor.dox, doc/footer.htm, doc/index.dox, doc/memory.dox,
11908: doc/methoded.dox, doc/object.dox, doc/string.dox,
11909: doc/targets.dox, doc/value.dox, include/pa_version.h,
11910: main/pa_cache_managers.C, main/pa_stylesheet_connection.C,
11911: targets/isapi/parser3isapi.vcproj, types/pa_vform.C: merged
11912: bugfixes from 3.1.2, changed version to 3.1.3beta
11913:
11914: 2004-03-29 paf
11915:
11916: * src/types/pa_vhashfile.C: bugfix: empty key on hashfile.get
11917: causes gpf
11918:
11919: * src/doc/: ClassExample1.dox, ClassExample2.dox,
11920: ClassExample3.dox, chmhelper.pl, class.dox, compiler.dox,
11921: doxygen.cfg, exception.dox, executor.dox, footer.htm, index.dox,
11922: memory.dox, methoded.dox, object.dox, string.dox, targets.dox,
11923: value.dox: translated to english
11924:
11925: 2004-03-25 paf
11926:
11927: * src/targets/isapi/parser3isapi.vcproj: beauty: one more
11928: parser3project dependency removed
11929:
11930: * src/main/: pa_cache_managers.C, pa_stylesheet_connection.C:
11931: bugfix: refused to compile without xml
11932:
11933: * src/types/pa_vform.C: beauty: removed warning
11934:
11935: * src/classes/classes.vcproj: merged bugfix: now all compiles in
11936: any folder [removed last ;) folder dependency]
11937:
11938: * src/classes/classes.vcproj: bugfix: now all compiles in any
11939: folder [removed last ;) folder dependency]
11940:
11941: * src/include/pa_version.h: release
11942:
11943: * src/lib/gd/gif.C: new: ^image.pixel(outof;bounds) now returns -1
11944:
11945: * src/classes/table.C: beauty: comment& more meaningful error
11946: message
11947:
11948: * src/classes/hash.C: bugfix: ^hash::sql{one column} now produces
11949: $.hash[$.column_value1(true) ... ] [were producing some strang
11950: thing]
11951:
11952: 2004-03-23 paf
11953:
11954: * src/: classes/image.C, main/pa_common.C: bugfix: ^image.polyline
11955: and http status line parsing checked number of columns in table
11956: [user reported an assert]
11957:
11958: * operators.txt: example: on hashfile
11959:
11960: * src/: classes/op.C, types/pa_value.C, types/pa_wcontext.C:
11961: bugfix: junction reattach now actually reattaches a junction to
11962: new wcontext [were only assigning it to junction, which caused
11963: junction tracking to loose junction, and it's context were not
11964: killed, and it tried to process in invalid context, gpf]
11965:
11966: * src/targets/cgi/parser3.C: debug helper added
11967:
11968: 2004-03-19 paf
11969:
11970: * src/types/pa_wcontext.C: beauty: error messages removed duplicate
11971: "type(type)" in braces
11972:
11973: 2004-03-10 paf
11974:
11975: * operators.txt, src/classes/xdoc.C, src/classes/xnode.C,
11976: src/classes/xnode.h, src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
11977: src/types/pa_vxnode.C, src/types/pa_vxnode.h: new: refined
11978: solution to search-in-namespaces problem:
11979: $xdoc.search-namespaces.x[http://pif.design.ru/]
11980: $nodes[^xdoc.select[//x:second]]
11981:
11982: * operators.txt, src/classes/xnode.C: new: xnode.select*[xpath
11983: expression][[NAMESPACES HASH]] allows to search for info in
11984: namespaces
11985:
11986: $nodes[^xdoc.select[//x:second][
11987: $.x[http://pif.design.ru/] ]]
11988:
11989: 2004-03-09 paf
11990:
11991: * operators.txt, src/main/pa_common.C: new:
11992: ^file::load[...][options] $.form[
11993: !$.field1[string]
11994: !$.field2[^table::create{one_column_only^#0Avalue1^#0Avalue2}]
11995: ] !$.body[string]
11996:
11997: GET ?here notGET(POST, HEAD, others) in content-type:
11998: application/x-www-form-urlencoded
11999:
12000: todo: upload files ability
12001:
12002: * src/lib/cord/cordxtra.c: bugfix: CORD_pos were not fixed
12003: properly, done
12004:
12005: 2004-03-05 paf
12006:
12007: * operators.txt, src/main/pa_common.C: new: file::load[;http://
12008: GET/POST $.form[$.fields started, not tested yet
12009: todo:$.field[table] for multiple values
12010:
12011: * operators.txt: new: http:// options $.user $.password basic
12012: authorization
12013:
12014: * src/main/pa_common.C: beauty: link to rtf added
12015:
12016: * operators.txt, src/include/pa_common.h, src/main/pa_common.C:
12017: new: http:// options $.user $.password basic authorization
12018:
12019: * src/main/pa_common.C: beauty: removed needless vars
12020:
12021: * operators.txt: new: pgsql option [like that recently added to
12022: oracle driver] ClientCharset=parser-charset <<
12023: charset in which parser thinks client works
12024:
12025: * operators.txt: new: odbc option [like that recently added to
12026: oracle driver] ClientCharset=parser-charset <<
12027: charset in which parser thinks client works
12028:
12029: * src/sql/pa_sql_driver.h: beauty: important warning added
12030:
12031: * etc/parser3.charsets/koi8-r.cfg: there's special code for grad
12032: char!
12033:
12034: * etc/parser3.charsets/windows-1251.cfg: typo
12035:
12036: 2004-03-04 paf
12037:
12038: * src/main/pa_sql_driver_manager.C: speedup: charset lookups
12039: cached, sql transcoding now goes faster
12040:
12041: * operators.txt: new: mysql option [like that recently added to
12042: oracle driver] ClientCharset=parser-charset <<
12043: charset in which parser thinks client works
12044:
12045: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: keyboard
12046: typo error
12047:
12048: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: typograph
12049: chars commented
12050:
12051: 2004-03-03 paf
12052:
12053: * INSTALL: note: added on libgc on FreeBSD, thanks to Andrey N.
12054: Pazychev <135@ugtel.ru> and Goor <goor@hotbox.ru>
12055:
12056: 2004-03-02 paf
12057:
12058: * operators.txt: new[update typo]: !^void.left(n)
12059: nothing !^void.right(n) nothing !^void.mid(p[;n])
12060: nothing
12061:
12062: * operators.txt, src/classes/void.C: new: !^void.left(n)
12063: nothing !^void.right(n) nothing !^void.pos(p[;n])
12064: nothing
12065:
12066: * operators.txt, src/classes/file.C, src/include/pa_string.h: new:
12067: ^file::sql[[name_to_become_$.name]]{} query result must be one
12068: row with columns: first: data second: file name third:
12069: content-type
12070:
12071: * operators.txt, src/classes/file.C: ^file.sql-string[] inside
12072: ^connect gets properly escaped string, which can be passed to
12073: request now this for mysql only. it's up to parser sql driver to
12074: fix zeros properly
12075:
12076: * INSTALL: note: added on building apache with this option:
12077: --enable-shared=max thanks to Victor Fedoseev <vvf_ru@mail.ru>
12078:
12079: 2004-03-01 paf
12080:
12081: * src/targets/isapi/parser3isapi.C: new: apache module & isapi
12082: extension memory:compact befor processingrequest
12083:
12084: * operators.txt, src/classes/hash.C: new: ^hash._keys[>>name<<] to
12085: call sole column of result
12086:
12087: * operators.txt, src/classes/image.C, src/lib/gd/gif.C,
12088: src/lib/gd/gif.h: new: ^image.pixel(x;y)[(color)] get/set
12089: pixel color
12090:
12091: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
12092: beauty: image -- less checks [were ugly impl]
12093:
12094: * src/classes/string.C: bugfix: ^string.left/right/mid with
12095: negative values now considered bad
12096:
12097: * src/main/pa_common.C: bugfix: INADDR_NONE not everywhere defined
12098:
12099: * src/: classes/xdoc.C, types/pa_vxdoc.h: bugfix: boolean output
12100: options now have unified defaults [after transform
12101: indent/omit-xml-declaration/standalone 'default' erroreously
12102: meant 'true']
12103:
12104: * src/main/pa_common.C: bugfix: http://i.p.a.ddress gethostbyaddr
12105: added [on some platforms gethostbyname failed with such
12106: 'domains']
12107:
12108: * src/include/pa_config_auto.h.in: no select check, no define
12109:
12110: * src/classes/string.C: feature: ^string.trim both parameters may
12111: be empty-strings, meaning kind=both chars=whitespaces
12112:
12113: * src/lib/smtp/comms.C: bugfix: use SO_LINGER if no SO_DONTLINGER
12114: exist
12115:
12116: * src/classes/string.C: check: trim 'chars' must not be empty,
12117: exception if it is
12118:
12119: * src/classes/string.C: changed: ^string.trim [] << both,
12120: whitespaces [start|both|end] << kind, whitespaces
12121: [start|both|end;chars] full
12122:
12123: 2004-02-27 paf
12124:
12125: * operators.txt, src/classes/string.C, src/main/pa_string.C: new
12126: method: ^string.trim[start|both|end[;chars]] default
12127: 'chars' -- whitespace chars finished
12128:
12129: * operators.txt, src/classes/string.C, src/include/pa_string.h,
12130: src/main/pa_string.C: new method:
12131: ^string.trim[start|both|end[;chars]] default 'chars' --
12132: whitespace chars started, only start works
12133:
12134: * src/main/compile.C: bugfix: line numbers after
12135: ^process{}[$.line(-10]] can be negative, allowed to print they as
12136: signed
12137:
12138: * src/main/untaint.C: speed: there's no \n chars in output
12139: [normally], so no need to optimize them they could be retrived
12140: from databases, though. but 1. should be replaced 2. if not
12141: optimized, no harm done
12142:
12143: * src/main/pa_exec.C: bugfix: waitpid could be interrupted --
12144: ^file::exec/cgi could return invalid status & zombie child can
12145: remain for short period until process exists [very bad in
12146: mod_parser3] http://i2/tasks/edit/?id=4629451867179521923
12147:
12148: * src/lib/smtp/smtp.h: bugfix: SMTP buffer overflow could allow
12149: malicious SMTP server to attack as by returning too long status
12150: responses http://i2/tasks/edit/?id=4629448401140924947
12151:
12152: 2004-02-26 paf
12153:
12154: * operators.txt: feature: ^process...{CODE}[now has options] which
12155: are $.main[to what to rename @main] $.file[file,
12156: from which (user says) goes that CODE] $.lineno(line
12157: number in that file, where CODE starts. may be negative)
12158:
12159: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12160: src/main/compile.C, src/main/compile_tools.h,
12161: src/main/pa_request.C: feature: ^process...{CODE}[now has
12162: options] which are $.main[to what to rename @main]
12163: $.file[file, from which (user says) goes that CODE]
12164: $.lineno(line number in that file, where CODE starts. may be
12165: negative)
12166:
12167: 2004-02-25 paf
12168:
1.116 moko 12169: * etc/parser3.charsets/Makefile.am: bugfix: @sysconfdir@ used [were
12170: old @charsetsdir@ recently erased from configure.in]
1.95 moko 12171:
12172: * src/classes/hash.C: feature: ^hash::sql{one colum result} now
12173: produces hash of column=>1
12174:
12175: * src/lib/smtp/smtp.h: beauty: couple of #ifdef-s to compile even
12176: with incomplete errno constants set
12177:
12178: 2004-02-24 paf
12179:
12180: * src/lib/smtp/smtp.C: smtp on unix: authors of lib/smtp never read
12181: "man select"
12182:
12183: * src/main/pa_os.C: beauty: <0 better then ==-1
12184:
12185: * src/lib/smtp/comms.C: smtp on unix: steps to work on unix
12186:
12187: * src/lib/smtp/: smtp.C: smtp on unix: steps to work on unix
12188:
1.116 moko 12189: * src/classes/Makefile.am: smtp on unix: steps to work on unix
1.95 moko 12190:
12191: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp on
12192: unix: steps to work on unix [extracted 'to']
12193:
12194: * src/classes/mail.C: smtp on unix: steps to work on unix
12195:
12196: * src/lib/smtp/smtp.C: smtp on unix: compiled on win32
12197:
1.116 moko 12198: * src/: lib/smtp/Makefile.am, lib/smtp/comms.C, lib/smtp/smtp.C,
12199: lib/smtp/smtp.h, targets/cgi/Makefile.am: started porting smtp to
12200: unix [testing on solaris]
1.95 moko 12201:
12202: 2004-02-20 paf
12203:
12204: * src/classes/xdoc.C: beauty: ugly code removed, thanks to egr for
12205: pointing that out
12206:
12207: * src/classes/xdoc.C: bugfix: <tag attr="&#digital_entity;" bug
12208: fixed again [same solution, mistanenly removed one line]
12209:
12210: 2004-02-19 paf
12211:
12212: * src/: classes/date.C, classes/image.C, types/pa_vdate.h: feature:
12213: date::create from bad datetime in spring daylightsaving hole now
12214: OK for all platforms [on some platforms it failed]
12215:
12216: * src/classes/: date.C, image.C: beauty: date::create[bad date time
12217: in daylightsaving hole] now throws error
12218:
12219: * src/classes/date.C: comment: mistake fixed
12220:
12221: 2004-02-18 paf
12222:
12223: * src/: classes/xdoc.C, include/pa_charset.h: beauty: xdoc.string
12224: now renderes in $request:charset, but in header puts
12225: $response:charset todo: make that default only so that coder
12226: could override that
12227:
12228: * src/classes/xdoc.C: beauty: xhtml doctype-public/system forcly
12229: turns off omit-xml-declaration
12230:
12231: * src/classes/xdoc.C: feature: reimplemented xhtml output, see
12232: /.xsl for sample
12233:
12234: 2004-02-17 paf
12235:
12236: * src/classes/xdoc.C: beauty: needless helper class removed
12237:
12238: * src/classes/xdoc.C: beauty: method=html outputxmlbuffer not
12239: copied extra time
12240:
12241: * src/classes/xdoc.C: bugfound: meta again, now somewhere in xhtml
12242: part of libxml
12243:
12244: * src/classes/xdoc.C: new: xhtml now works [libxslt prevented
12245: libxml to do the work] <xsl:output method="html"
12246: doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
12247: doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
12248: />
12249:
12250: * src/classes/xdoc.C: beauty: no <meta ... charset generated
12251:
12252: * src/types/pa_vxdoc.h: bugfix: ^xdoc::transform [note double :]
12253: caused assertion
12254:
12255: * src/classes/hash.C: bugfix: ^hash.add[$hash] ^hash.sub[$hash]
12256: could hang. now such add does nothing, sub clears $hash
12257:
12258: * src/main/untaint.C: bugfix: one last char prior to "spaces<" were
12259: not made quoted-printable
12260:
12261: * src/main/pa_uue.C: bugfix: uuencoded finish char adding violated
12262: string invariant
12263:
12264: 2004-02-16 paf
12265:
12266: * src/main/pa_globals.C: bugfix: xml errors copy from library now
12267: cleared [were not cleared properly]
12268:
12269: 2004-02-13 paf
12270:
1.116 moko 12271: * src/include/pa_version.h: prerelease
1.95 moko 12272:
12273: * src/main/pa_stylesheet_connection.C: change: .xsl.stamp now not
12274: used, introducing dependencies timestamp check
12275:
12276: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12277: include/pa_xml_io.h, main/Makefile.am, main/compile.tab.C,
12278: main/main.vcproj, main/pa_globals.C, main/pa_xml_io.C: change:
12279: .xsl.stamp now not used, introducing dependencies timestamp check
12280:
1.150 moko 12281: * configure.in: auto.p: @conf made relative
1.95 moko 12282:
12283: 2004-02-12 paf
12284:
12285: * src/types/pa_vform.C: bugfix: empty values[recently allowed]
12286: ruined empty <input type=file> submits. parser thought there were
12287: nameless empty file and $form:field got value of type 'file'
12288:
12289: * INSTALL: --without-threads
12290:
12291: * src/include/pa_sapi.h: 2004
12292:
12293: 2004-02-11 paf
12294:
12295: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12296: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12297: classes/hashfile.C, classes/image.C, classes/int.C,
12298: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12299: classes/response.C, classes/string.C, classes/table.C,
12300: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12301: include/pa_array.h, include/pa_cache_managers.h,
12302: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12303: include/pa_config_fixed.h, include/pa_config_includes.h,
12304: include/pa_dictionary.h, include/pa_dir.h,
12305: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
12306: include/pa_hash.h, include/pa_memory.h, include/pa_opcode.h,
12307: include/pa_operation.h, include/pa_os.h, include/pa_request.h,
12308: include/pa_request_charsets.h, include/pa_request_info.h,
12309: include/pa_socks.h, include/pa_sql_connection.h,
12310: include/pa_sql_driver_manager.h, include/pa_stack.h,
12311: include/pa_string.h, include/pa_stylesheet_connection.h,
12312: include/pa_stylesheet_manager.h, include/pa_table.h,
12313: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12314: include/pa_xml_exception.h, include/pa_xml_io.h, lib/gd/gif.C,
12315: lib/gd/gif.h, lib/gd/gifio.C, lib/md5/pa_md5.h,
12316: lib/md5/pa_md5c.c, lib/smtp/comms.C, lib/smtp/smtp.C,
12317: lib/smtp/smtp.h, main/compile.C, main/compile_tools.C,
12318: main/compile_tools.h, main/execute.C, main/pa_cache_managers.C,
12319: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
12320: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
12321: main/pa_exec.C, main/pa_globals.C, main/pa_memory.C,
12322: main/pa_os.C, main/pa_request.C, main/pa_socks.C,
12323: main/pa_sql_driver_manager.C, main/pa_string.C,
12324: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
12325: main/pa_xml_exception.C, main/pa_xml_io.C, main/untaint.C,
12326: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12327: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
12328: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
12329: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
12330: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vconsole.h,
12331: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
12332: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
12333: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
12334: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.C,
12335: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12336: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12337: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12338: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12339: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12340: types/pa_vresponse.h, types/pa_vstateless_class.C,
12341: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12342: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12343: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12344: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12345: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12346: types/pa_wcontext.h, types/pa_wwrapper.h: 2004
12347:
12348: * src/main/pa_globals.C: beauty: typo caused gc.log warnings with
12349: debug version of gc.dll
12350:
12351: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12352: lib/pcre/pcre.vcproj, lib/pcre/pcre_dftables.vcproj,
12353: lib/pcre/pcre_parser_ctype.vcproj, lib/sdbm/sdbm.vcproj,
12354: lib/smtp/smtp.vcproj, main/main.vcproj, main/pa_globals.C,
12355: targets/cgi/parser3.C, targets/cgi/parser3.vcproj,
12356: targets/isapi/parser3isapi.vcproj, types/types.vcproj: migrated
12357: to latest libxml[2.6.5] and libgdome[1.1.2] simplified lib build
12358: processes
12359:
12360: * src/: classes/classes.vcproj, lib/gd/gd.vcproj, main/main.vcproj,
12361: main/pa_globals.C, targets/cgi/parser3.vcproj,
12362: targets/isapi/parser3isapi.vcproj, types/types.vcproj: continued
12363: changes to reflect libxml xsl new folders
12364:
12365: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12366: lib/smtp/smtp.vcproj, main/main.vcproj,
12367: targets/cgi/parser3.vcproj, types/types.vcproj: continued changes
12368: to reflect libxml xsl new folders
12369:
12370: * src/: classes/classes.vcproj, lib/gd/gd.vcproj,
12371: lib/smtp/smtp.vcproj, main/main.vcproj,
12372: targets/cgi/parser3.vcproj, targets/isapi/parser3isapi.vcproj,
12373: types/types.vcproj: started changes to reflect libxml xsl new
12374: folders
12375:
12376: * ChangeLog, parser3.sln, src/classes/classes.vcproj,
12377: src/lib/gd/gd.vcproj, src/lib/smtp/smtp.vcproj,
12378: src/main/compile.tab.C, src/main/main.vcproj,
12379: src/main/pa_globals.C, src/targets/cgi/parser3.vcproj,
12380: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
12381: started changes to reflect libxml xsl new folders
12382:
12383: 2004-02-10 paf
12384:
12385: * INSTALL: critical: libxslt1.1.2 wanted at least libxml2.6.3 to
12386: compile. recommened latest libxml up to date
12387:
12388: * INSTALL: critical: prior to 1.0.30 had bug: "a segfault on
12389: pattern compilation errors", on which spent 4 hours worktime. use
12390: versions higher than that. recommended now latest up to date
12391:
12392: 2004-02-06 paf
12393:
12394: * src/main/: pa_sql_driver_manager.C, pa_stylesheet_manager.C:
12395: beauty: unified destructing style
12396:
12397: * src/main/untaint.C: beauty: removed old def/ifdef
12398:
12399: * src/main/untaint.C: beauty: coredump @unknown untaint language
12400: now
12401:
12402: 2004-02-03 paf
12403:
12404: * src/: classes/image.C, main/pa_exec.C, main/pa_memory.C,
12405: targets/isapi/parser3isapi.C, types/pa_value.C,
12406: types/pa_vcookie.C: beauty: %u is more simple=proper for size_t
12407: then %ld/%lu
12408:
12409: * src/main/pa_common.C: typo: %l -> %u
12410:
12411: * src/classes/xdoc.C: bugfix: libxml: FOR UTF-8 TOO russian letters
12412: in attributes or documents-results of transform now not xx;
12413:
12414: * src/classes/xnode.C: memleaks found: not fixed yet. todo
12415:
12416: * src/main/pa_charset.C: bugfix: forgot to undo some
12417:
12418: * src/main/pa_charset.C: beauty: uncomment
12419: PA_PATCHED_LIBXML_BACKWARD to link with old patched libxml
12420: libraries
12421:
12422: 2004-02-02 paf
12423:
12424: * src/types/pa_vcookie.C: bugfix: erasing cookie: params now output
12425: $cookie:example[ $.value[value] $.path[/there/] ]
12426:
12427: $cookie:example[ $.value[] $.expires[session]
12428: $.path[/there/] $.domain[test.com] ]
12429:
12430: * src/types/pa_vform.C: bugfix: empty values with
12431: enctype=multipart/form-data now produce entries in $form:tables
12432: <form method=post enctype=multipart/form-data> <input type=hidden
12433: name=a> <input type=hidden name=b>
12434:
12435: <input type=submit> </form> $k[^form:fields._keys[]] ^eval($k)
12436: <hr> <pre>$request:body
12437:
12438: 2004-01-30 paf
12439:
12440: * src/classes/xdoc.C: bugfix: libxml: russian letters in attributes
12441: or documents-results of transform now not xx;
12442:
12443: * src/classes/date.C: bugfix: ^date::create[invalid fields now
12444: produce exception.
12445:
12446: * src/: classes/date.C, include/pa_string.h, main/pa_string.C:
12447: bugfix: ^date::create[invalid fields now produce exception.
12448:
12449: * ChangeLog, src/classes/date.C: bugfix: ^date::create[invalid
12450: year] now produces exception. todo: check other fields
12451:
12452: 2004-01-29 paf
12453:
12454: * src/include/pa_memory.h: typo error
12455:
12456: * src/include/pa_memory.h: bugfix: [potential] strdup copied one
12457: more byte then specified, then zeroed it << useless and
12458: potentially harmful(could gpf)
12459:
12460: 2004-01-22 paf
12461:
12462: * src/classes/xdoc.C: bugfix: when stylesheet contains error, gpf
12463:
12464: * src/main/untaint.C: merged: bugfix from 3.1.1 on whitespace
12465: optimization
12466:
12467: * src/main/untaint.C: bugfix: whitespace now optimized properly
12468: [were bug: ^taint[1 & 2]="1 &2"
12469:
12470: * src/main/pa_globals.C: beauty: bigger buffer for xml-related
12471: errors
12472:
12473: * src/main/pa_common.C: merged: bugfix from 3.1.1 on memory
12474: overflow
12475:
12476: * src/main/pa_common.C: bugfix: buffer overflow * in libxml&xsl
12477: error-reporting code * in parser-error reporting code [when no
12478: @unhandled_exception defined]
12479:
12480: fixed in one place: my *snprintf override
12481:
12482: 2004-01-13 paf
12483:
12484: * operators.txt: typo erro
12485:
12486: 2003-12-25 paf
12487:
12488: * src/main/pa_common.C: bugfix: ^file::load[binary;http:// now not
12489: garbled [pieces after zero bytes were removed]
12490:
12491: 2003-12-22 paf
12492:
1.116 moko 12493: * src/include/Makefile.am: bugfix: removed from dist:
12494: src/include/pa_config_auto.h which were configured for
1.95 moko 12495: make-dist-platform and badly updated proper config file in target
12496: [when .tar used for updating existing source tree]
12497:
12498: * ChangeLog, operators.txt, src/classes/op.C,
12499: src/include/pa_sql_connection.h,
12500: src/include/pa_sql_driver_manager.h,
12501: src/main/pa_sql_driver_manager.C, src/sql/pa_sql_driver.h:
12502: feature: sql introducing ability to transcode charsets
12503:
12504: 2003-12-19 paf
12505:
12506: * src/main/pa_sql_driver_manager.C: beauty: more straighforward
12507: error message
12508:
12509: * src/main/pa_charset.C: bugfix: memory for charsethandler
12510: structure for libxml now allocated properly
12511:
12512: 2003-12-17 paf
12513:
12514: * src/types/pa_vfile.C: beauty: removed outdated cast
12515:
12516: * src/main/pa_common.C: bugfix: empty http response caused gpf
12517:
12518: * src/include/pa_string.h: bugfix: removed too strong a assert
12519:
12520: * src/main/pa_globals.C: bugfix: removed false warning [warning:
12521: unreported xmlGenericErrors]
12522:
12523: 2003-12-15 paf
12524:
12525: * src/classes/xdoc.C: bugfix: taint uri under ^xdoc::create{now
12526: works}
12527:
12528: 2003-12-11 paf
12529:
12530: * operators.txt, src/types/pa_vstatus.C: !$status:pid process
12531: id
12532: !$status:tid thread id
12533:
12534: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
12535: main/pa_globals.C, main/pa_request.C, types/pa_vstatus.C:
12536: bugfix(solaris): removed dependency on object initialization
12537: order [one more place]
12538:
12539: * src/: classes/file.C, classes/mail.C, classes/op.C,
12540: classes/xdoc.C, main/pa_request.C, types/pa_vimage.C,
12541: types/pa_vmath.C, types/pa_vstatus.C: beauty cancel: gcc does not
12542: understand that
12543:
12544: * src/: classes/file.C, classes/mail.C, classes/op.C,
12545: classes/xdoc.C, include/pa_cache_managers.h,
12546: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12547: include/pa_stylesheet_manager.h, main/pa_request.C,
12548: main/pa_stylesheet_manager.C, types/pa_vimage.C,
12549: types/pa_vmath.C, types/pa_vstatus.C: beauty: removed redundant
12550: ctor call [relying on implicit String::Body(cstr) call]
12551:
12552: * src/main/: pa_cache_managers.C, pa_sql_driver_manager.C,
12553: pa_stylesheet_manager.C: bugfix(solaris): removed dependency on
12554: object initialization order [two places]
12555:
12556: 2003-12-10 paf
12557:
12558: * src/include/pa_sql_connection.h: bugfix: $status:sql.cache back
12559: << time now ok
12560:
12561: * operators.txt, src/main/pa_sql_driver_manager.C,
12562: src/main/pa_stylesheet_manager.C: $status:stylesheet.cache back
12563: operational
12564:
12565: * ChangeLog, operators.txt, src/classes/xdoc.C,
12566: src/include/pa_charset.h, src/include/pa_sql_connection.h,
12567: src/main/pa_charset.C, src/main/pa_sql_driver_manager.C,
12568: src/main/pa_string.C, src/types/pa_vxdoc.h: $status:sql.cache
12569: back operational
12570:
12571: 2003-12-02 paf
12572:
12573: * src/types/pa_vmail.C: bugfix:
12574: ^mail:send[$.file[$.value[>>xxxx<<]] now untaints properly [were:
12575: as-is forced]
12576:
12577: * src/main/pa_xml_io.C: bugfix: on some platforms one can't throw
12578: exceptions out of libxml callbacks: reimplemented error handling
12579: of http://localhost, parser://method and safemode check callbacks
12580:
12581: * src/main/pa_string.C: bugfix: SPARC gpf on %4!=0 address int ref
12582: [merged from HEAD]
12583:
12584: * src/classes/image.C: nothing: comment removed
12585:
12586: * src/main/pa_string.C: bugfix: sparc gpf on reading %4!=0
12587: addresses to int
12588:
12589: 2003-12-01 paf
12590:
12591: * src/main/pa_xml_io.C: bugfix: typo
12592:
12593: * src/main/pa_globals.C: bugfix: win32: compile prob
12594:
12595: * src/classes/xdoc.C: bugfix: typo
12596:
12597: * src/main/pa_xml_io.C: todo: safe mode check not to throw
12598: exception
12599:
12600: * src/main/pa_xml_io.C: bugfix: http://localhost typo error
12601:
12602: 2003-11-28 paf
12603:
12604: * src/main/pa_xml_io.C: installed safe-mode checker as filter of
12605: all xml documents read
12606:
12607: * src/main/pa_xml_io.C: http://localhost/ now checked for safe mode
12608:
12609: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
12610: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
12611: replaced original open mech of xdoc::create & co to use libxml
12612: open, so that this would work for root document todo: safe mode
12613: checks to libxml: ideally to some 1 point
12614:
12615: * src/main/pa_xml_io.C: comment
12616:
12617: * operators.txt, src/main/pa_xml_io.C: leading / in
12618: http://parser[abscent params]
12619:
12620: * operators.txt, src/include/pa_request.h, src/main/pa_xml_io.C:
12621: works. todo: maybe replace original open mech of xdoc::create &
12622: co to use libxml open, so that this would work for root document
12623:
12624: $xdoc[^xdoc::create{<?xml version="1.0"?> <!DOCTYPE test SYSTEM
12625: "parser://method/params/here"> <test> &test^; </test> }]
12626:
12627: ^taint[^xdoc.string[]]
12628:
12629: @method[param] <!ENTITY test
12630: "test-entity-value+$form:user+$param!">
12631:
12632: 2003-11-27 paf
12633:
12634: * src/main/pa_xml_io.C: libxml: started parser://methodcall/params
12635:
12636: * src/classes/date.C: bugfix: typo error
12637:
12638: 2003-11-26 paf
12639:
12640: * operators.txt, src/include/Makefile.am, src/include/pa_globals.h,
12641: src/main/Makefile.am, src/main/main.vcproj,
12642: src/main/pa_globals.C, src/main/pa_request.C,
12643: src/include/pa_xml_io.h, src/main/pa_xml_io.C: simplification:
12644: xml errors to hash<thread_id,error> reorganization: xml io moved
12645: to pa_xml_io.C/h
12646:
12647: * src/types/pa_value.h: warnings: --
12648:
12649: 2003-11-25 paf
12650:
12651: * src/classes/table.C: bugfix: wrong sequence. [sadly no waring
12652: whatever)
12653:
12654: * src/classes/table.C: bugfix: a, c?x:y, z in gcc considered(?) as
12655: a, (c?x:y, z)
12656:
12657: * src/main/untaint.C: bugfix: consequences of not reading this
12658: comment: CORD_pos_chars_left /* Number of characters in cache.
12659: <= 0 ==> none */
12660:
12661: * src/include/pa_array.h: removed needless checks
12662:
12663: 2003-11-24 paf
12664:
12665: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
12666: removed limit: now $form:xxx can be accessed anytime, even in
12667: @auto/conf [and request/response:charset still can be changed
12668: anytime]
12669:
12670: * src/main/pa_common.C: bugfix: ^file::load[binary;http://...]
12671: now not transcodes response body
12672:
12673: * operators.txt, src/types/pa_vxnode.C, src/types/pa_vxnode.h:
12674: $xdoc[^xdoc::create[test]] $tn[^xdoc.createTextNode[text node
12675: value]] $dummy[^xdoc.firstChild.appendChild[$tn]]
12676: $xdoc.firstChild.firstChild.nodeValue[different]
12677: ^taint[^xdoc.string[]]
12678:
12679: * src/: include/pa_hash.h, types/types.vcproj: linker HPUX nongnu
12680: workaround: static Hash::allocates -> static Hash_allocates
12681:
12682: 2003-11-21 paf
12683:
1.116 moko 12684: * Makefile.am, configure, configure.in, src/classes/Makefile.am,
12685: src/include/pa_config_auto.h.in, src/targets/cgi/Makefile.am,
12686: src/types/Makefile.am: rearrange: gd&smtp moved to src/lib
1.95 moko 12687:
12688: * src/classes/classes.vcproj: rearrange: gd&smtp moved to src/lib
12689:
12690: * src/classes/mail.C: bugfix: typo
12691:
12692: * parser3.sln, src/classes/Makefile.am, src/lib/Makefile.am,
1.116 moko 12693: src/lib/gd/Makefile.am, src/lib/gd/gd.vcproj, src/lib/gd/gif.C,
12694: src/lib/gd/gif.h, src/lib/gd/gifio.C, src/lib/gd/mtables.h,
12695: src/lib/smtp/Makefile.am, src/lib/smtp/comms.C,
12696: src/lib/smtp/smtp.C, src/lib/smtp/smtp.h,
1.95 moko 12697: src/lib/smtp/smtp.vcproj: rearrange: gd&smtp moved to src/lib
12698:
12699: * src/main/pa_exec.C: bug in safe mode
12700:
12701: * src/include/Makefile.am: pa_xml_exception.h
12702:
12703: * src/targets/isapi/parser3isapi.C: more warnings --
12704:
12705: 2003-11-20 paf
12706:
12707: * src/: classes/math.C, classes/op.C, classes/string.C,
12708: main/pa_charset.C, main/pa_dictionary.C, main/pa_string.C,
12709: types/pa_value.C, main/pa_dir.C, main/pa_table.C: more warnings
12710: --
12711:
12712: * src/: main/pa_charset.C, main/pa_string.C, types/pa_vxnode.C:
12713: more warnings --
12714:
12715: * src/classes/xdoc.C: more warnings --
12716:
12717: * src/classes/: date.C, image.C, xdoc.C: more warnings --
12718:
12719: * src/: main/pa_sql_driver_manager.C, main/untaint.C,
12720: types/pa_vcookie.C, types/pa_vmail.C: more warnings --
12721:
12722: * src/: classes/date.C, classes/file.C, classes/hash.C,
12723: classes/image.C, classes/mail.C, classes/op.C, classes/string.C,
12724: classes/table.C, include/pa_cache_managers.h,
12725: include/pa_stylesheet_connection.h, main/pa_request.C,
12726: types/pa_vdate.h, types/pa_vhashfile.C, types/pa_vimage.h,
12727: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h: more warnings
12728: --
12729:
12730: * src/main/: execute.C, pa_request.C: old forgotten todo: when
12731: can't report problem (undefined @unhandled_exception) problem
12732: source string were not reported
12733:
12734: * src/: classes/classes.C, classes/classes.h, classes/date.C,
12735: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
12736: classes/hashfile.C, classes/image.C, classes/int.C,
12737: classes/mail.C, classes/math.C, classes/memory.C, classes/op.C,
12738: classes/response.C, classes/string.C, classes/table.C,
12739: classes/void.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
12740: include/pa_array.h, include/pa_cache_managers.h,
12741: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
12742: include/pa_config_fixed.h, include/pa_dictionary.h,
12743: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
12744: include/pa_globals.h, include/pa_hash.h, include/pa_memory.h,
12745: include/pa_opcode.h, include/pa_operation.h, include/pa_os.h,
12746: include/pa_request.h, include/pa_request_charsets.h,
12747: include/pa_request_info.h, include/pa_sapi.h, include/pa_socks.h,
12748: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
12749: include/pa_stack.h, include/pa_string.h,
12750: include/pa_stylesheet_connection.h,
12751: include/pa_stylesheet_manager.h, include/pa_table.h,
12752: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
12753: include/pa_xml_exception.h, lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
12754: lib/sdbm/apr_file_io.C, lib/sdbm/apr_strings.C, main/compile.C,
12755: main/compile_tools.C, main/compile_tools.h, main/execute.C,
12756: main/pa_cache_managers.C, main/pa_charset.C, main/pa_charsets.C,
12757: main/pa_common.C, main/pa_dictionary.C, main/pa_dir.C,
12758: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
12759: main/pa_memory.C, main/pa_os.C, main/pa_pool.C,
12760: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
12761: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
12762: main/pa_uue.C, main/pa_xml_exception.C, main/untaint.C,
12763: sql/pa_sql_driver.h, targets/cgi/pa_threads.C,
12764: targets/cgi/parser3.C, targets/isapi/pa_threads.C,
12765: targets/isapi/parser3isapi.C, types/pa_junction.h,
12766: types/pa_method.h, types/pa_value.C, types/pa_value.h,
12767: types/pa_vbool.h, types/pa_vclass.C, types/pa_vclass.h,
12768: types/pa_vcode_frame.h, types/pa_vconsole.h, types/pa_vcookie.C,
12769: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
12770: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
12771: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
12772: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
12773: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
12774: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.C,
12775: types/pa_vmath.h, types/pa_vmemory.h, types/pa_vmethod_frame.C,
12776: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
12777: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
12778: types/pa_vresponse.h, types/pa_vstateless_class.C,
12779: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
12780: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
12781: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
12782: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
12783: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
12784: types/pa_wcontext.h, types/pa_wwrapper.h: static const char *
12785: const IDENT
12786:
12787: * src/: include/pa_array.h, include/pa_pool.h,
12788: include/pa_request.h, include/pa_string.h, include/pa_table.h,
12789: main/compile_tools.h, main/pa_common.C, types/pa_vhash.h,
12790: types/pa_wcontext.h: more warnings --
12791:
12792: * src/: classes/classes.vcproj, classes/date.C, classes/double.C,
12793: classes/file.C, classes/hash.C, classes/hashfile.C,
12794: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
12795: classes/memory.C, classes/op.C, classes/string.C,
12796: classes/table.C, classes/xdoc.C, classes/xnode.C,
12797: include/pa_config_includes.h, include/pa_operation.h,
12798: include/pa_sql_connection.h, include/pa_table.h,
12799: include/pa_types.h, lib/ltdl/config_fixed.h,
12800: lib/ltdl/ltdl.vcproj, lib/md5/md5.vcproj, lib/pcre/maketables.c,
12801: lib/pcre/pcre_dftables.vcproj, lib/pcre/pcre_parser_ctype.vcproj,
12802: lib/sdbm/apr_file_io.C, main/compile.tab.C, main/execute.C,
12803: main/main.vcproj, main/pa_cache_managers.C, main/pa_charset.C,
12804: main/pa_common.C, main/pa_dir.C, main/pa_exec.C,
12805: main/pa_globals.C, main/pa_os.C, main/pa_request.C,
12806: main/pa_string.C, main/pa_table.C, targets/cgi/parser3.vcproj,
12807: targets/isapi/parser3isapi.vcproj, types/pa_value.h,
12808: types/pa_vconsole.h, types/pa_vdate.h, types/pa_vfile.h,
12809: types/pa_vhashfile.C, types/pa_vimage.C, types/pa_vimage.h,
12810: types/pa_vmail.C, types/pa_vobject.C,
12811: types/pa_vstateless_class.h, types/pa_vtable.C,
12812: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
12813: types/pa_vxnode.h, types/types.vcproj: turned on warnings level4
12814: on all projects (except libltdl=off & libsdbm=level3) found
12815: several unitialized vars
12816:
12817: 2003-11-19 paf
12818:
12819: * src/classes/op.C: more ansi C++ comp
12820:
12821: * operators.txt, src/classes/op.C, src/include/pa_request.h,
12822: src/main/pa_request.C: ^cache[...]{body}{catch block with
12823: $exception.handled[cache] meaning "get expired cache, if any.
12824: else error"}
12825:
12826: * src/: classes/op.C, include/pa_os.h, include/pa_request.h,
12827: main/pa_common.C: cache: ^cache[] fallback todo: kinda ^try:
12828: ^cache[...]{body}{catch code with $exception.cache field}
12829:
12830: 2003-11-12 paf
12831:
12832: * src/classes/xnode.C: replaceChild: 2nd param now named oldChild
12833: [copy/paste bug]
12834:
12835: 2003-11-11 paf
12836:
12837: * src/types/: pa_value.h, pa_vfile.h: more C++ compatible [HP C++
12838: failed]
12839:
12840: 2003-11-10 paf
12841:
12842: * src/types/pa_vconsole.h: flush
12843:
12844: * operators.txt, src/main/pa_request.C, src/types/Makefile.am,
12845: src/types/types.vcproj, src/types/pa_vconsole.h: $console:line
12846: read/write [for nntp]
12847:
12848: * operators.txt: mysql: transaction support: ?autocommit=0
12849:
12850: * operators.txt: comment: updated
12851:
12852: * src/types/: pa_vhashfile.C, pa_vhashfile.h: add: hashfile old
12853: serialize version and exipire now removes entries
12854:
12855: * operators.txt: ^hashfile.delete[] removes files altogether [and
12856: dir, if could]
12857:
12858: * src/: classes/hashfile.C, include/pa_common.h, main/pa_common.C,
12859: types/pa_vhashfile.C, types/pa_vhashfile.h: ^hashfile.delete[]
12860: removes files altogether [and dir, if could]
12861:
12862: * src/lib/sdbm/sdbm.c: bugfix: sdbm: .h said it's OK to remove
12863: nonexistent pair. .c coded that that was error. fixed
12864:
12865: * src/types/pa_vhashfile.C: sdbm: exception type change to
12866: file.access [regretfull can't split it to different exceptions
12867: without modifying sdbm source wich would prefer not to]
12868:
12869: 2003-11-07 paf
12870:
12871: * src/: classes/date.C, classes/file.C, classes/hash.C,
12872: classes/hashfile.C, classes/image.C, classes/table.C,
12873: classes/xdoc.C, include/Makefile.am, include/pa_array.h,
12874: include/pa_pool.h, include/pa_request.h, main/Makefile.am,
12875: main/execute.C, main/main.vcproj, main/pa_pool.C,
12876: main/pa_request.C, targets/cgi/parser3.C, types/pa_vclass.C,
12877: types/pa_vclass.h, types/pa_vhashfile.h, types/pa_vobject.h,
12878: types/pa_vstateless_class.h: resurrected: pool idea. now only for
12879: destructing objects at request processing end
12880:
12881: 2003-11-06 paf
12882:
12883: * src/: classes/Makefile.am, types/Makefile.am: .am sdbm INCLUDES
12884: updates
12885:
12886: * parser3.sln, src/targets/cgi/Makefile.am: .vcproj & .am updated
12887: to include sdbm
12888:
1.116 moko 12889: * src/include/: pa_config_includes.h, pa_version.h: our
12890: replacements of max& co only for cpp
1.95 moko 12891:
12892: * src/lib/sdbm/: Makefile.am, apr_file_io.C, apr_strings.C: move to
12893: upper dir, .am updated
12894:
12895: * tests/todo.txt: hashfile: done
12896:
12897: * operators.txt, src/types/pa_vhashfile.C: hashfile: clear &
12898: expiration [time in value. todo: move time to key]
12899:
12900: * src/types/pa_vhashfile.C: hashfile: foreach body can bodify $self
12901:
12902: * src/types/pa_vhashfile.C: hashfile: clear now works [were trying
12903: to do that in foreach, no errors, but surely wrong]
12904:
12905: * operators.txt, src/types/pa_vhashfile.C,
12906: src/types/pa_vhashfile.h: hashfile: clear and proper locking
12907:
12908: * operators.txt, src/classes/hash.C, src/classes/hashfile.C,
12909: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h: hashfile:
12910: foreach
12911:
12912: * src/classes/hashfile.C, src/types/pa_vhashfile.C,
12913: src/types/pa_vhashfile.h, operators.txt: hashfile: hash
12914:
12915: * operators.txt, src/classes/hashfile.C, src/types/pa_vhashfile.C,
12916: src/types/pa_vhashfile.h, tests/todo.txt: hashfile: delete
12917:
12918: * src/: include/pa_memory.h, targets/cgi/parser3.C,
12919: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
12920: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile implemented
12921: get/put [raw]
12922:
12923: * src/: classes/op.C, main/pa_os.C: just linked
12924:
12925: * src/: classes/xdoc.C, classes/xnode.C, types/pa_vxnode.h:
12926: XmlException changes
12927:
12928: * src/: include/pa_charset.h, include/pa_globals.h,
12929: include/pa_stylesheet_connection.h, main/pa_exception.C:
12930: XmlException changes
12931:
12932: * src/lib/sdbm/: sdbm.c, sdbm.vcproj: just compiled
12933:
12934: * src/: include/pa_common.h, include/pa_exception.h,
12935: main/main.vcproj, main/pa_common.C, include/pa_os.h,
12936: include/pa_xml_exception.h, main/pa_os.C, lib/sdbm/sdbm.vcproj,
12937: main/pa_xml_exception.C: locking move to pa_os [along with
12938: pa_sleep] apr-impl locking done
12939:
12940: * configure, configure.in, operators.txt, parser3.sln,
12941: src/classes/classes.vcproj, src/classes/hashfile.C,
12942: src/classes/xdoc.C, src/include/pa_config_fixed.h,
12943: src/include/pa_exception.h, src/include/pa_globals.h,
12944: src/include/pa_memory.h, src/include/pa_version.h,
12945: src/lib/ltdl/libltdl.vcproj, src/lib/ltdl/libltdl.vcproj.vspscc,
12946: src/lib/ltdl/ltdl.vcproj, src/lib/ltdl/ltdl.vcproj.vspscc,
12947: src/main/compile.tab.C, src/main/main.vcproj,
12948: src/main/pa_charset.C, src/targets/cgi/parser3.vcproj,
12949: src/types/Makefile.am, src/types/pa_vhash.C,
12950: src/types/pa_vhashfile.C, src/types/pa_vhashfile.h,
12951: src/types/pa_vxnode.h, src/types/types.vcproj: hashfile: started
12952: again with sdbm from apache
12953:
12954: 2003-11-05 paf
12955:
12956: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
12957: main/main.vcproj, targets/cgi/parser3.vcproj: not has to be in
12958: \parser3project dir anymore
12959:
12960: * src/main/pa_charset.C: bugfix: had broken binary search [copied
12961: thoughtlessly from xalan]
12962:
12963: * src/lib/sdbm/: Makefile.am, sdbm.c, sdbm_hash.c, sdbm_lock.c,
12964: sdbm_pair.c, sdbm_pair.h, sdbm_private.h, sdbm_tune.h: original
12965: from httpd-2.0.43\srclib\apr-util\dbm\sdbm
12966:
12967: * src/main/helpers/CaseFolding.txt:
12968: http://www.unicode.org/Public/UNIDATA/CaseFolding.txt
12969:
12970: 2003-11-04 paf
12971:
12972: * operators.txt: comment: ^mail:send[$.options[
12973:
12974: * src/classes/table.C: compiled on unix
12975:
1.116 moko 12976: * src/classes/Makefile.am: classes.C to rebuild last
1.95 moko 12977:
12978: * src/classes/mail.C: compiled on unix
12979:
12980: * operators.txt, src/classes/mail.C, src/types/pa_vmail.C,
12981: src/types/pa_vmail.h: !^mail:send[
12982: $.options[unix: string to append to sendmail command
12983: line]
12984:
12985: * operators.txt, src/classes/table.C, src/main/pa_string.C,
12986: tests/todo.txt: ^table.save[... $.separator[^#09]
12987: $.encloser["] <nothing> by default
12988:
12989: * operators.txt, src/classes/table.C, tests/todo.txt: ^table::load
12990: !$.separator[^#09] !$.encloser["] <nothing> by
12991: default
12992:
12993: 2003-11-03 paf
12994:
12995: * operators.txt, src/classes/table.C, src/main/pa_common.C:
12996: ^table::load[; options: !$.column-separator[^#09]
12997: !$.column-encloser["]
12998:
12999: * operators.txt, src/include/pa_config_fixed.h,
13000: src/types/pa_vrequest.C: $request:document-root
13001:
13002: * src/targets/cgi/parser3.C: beauty: SIGUSRX removed qs= printing
13003: [already included into uri=xxx]
13004:
13005: * operators.txt, src/classes/image.C, tests/todo.txt:
13006: ^image.gif[filename] for $response:download
13007:
13008: * src/classes/date.C: minor precaution
13009:
13010: * operators.txt, src/classes/date.C: !^date::unix-timestamp()
13011: !^date.unix-timestamp[]
13012:
13013: 2003-10-30 paf
13014:
13015: * operators.txt, src/classes/date.C, src/types/pa_vdate.h: merged
13016: from 3.0.8: ^date.roll[TZ;GMT] $date.hour
13017:
13018: * src/classes/: date.C, image.C: improvement diagnostics:
13019: $now[^date::create[$undefined]] now is error
13020:
13021: * src/main/pa_common.C: read errors would now be reported 'actually
13022: read -1 bytes'
13023:
13024: 2003-10-24 paf
13025:
13026: * Makefile.am, src/classes/Makefile.am, src/lib/cord/Makefile.am,
13027: src/lib/md5/Makefile.am, src/lib/pcre/Makefile.am,
13028: src/main/Makefile.am, src/targets/cgi/Makefile.am,
13029: src/targets/isapi/Makefile.am: .dsp/w -> .vcproj/sln
13030:
13031: 2003-10-22 paf
13032:
13033: * src/include/pa_request.h: fixed: $h[^hash::create[]] $$h[1]
13034:
13035: 2003-10-21 paf
13036:
13037: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
13038: fixed: string.match[g] without <'> option produced columns with
13039: NULL's, which gpf'ed at table.save time
13040:
13041: * src/: classes/op.C, include/pa_request.h: fixed: false 'endless
13042: recoursion' message with intensive throw-catches fixed: incorrect
13043: name and line (one name upper then needed) in error message about
13044: problems inside try block
13045:
13046: 2003-10-10 paf
13047:
13048: * src/: include/pa_string.h, main/compile.tab.C: CORD_chr does not
13049: check offset argument for validity did that in String::Body::pos
13050: myself http://i2/tasks/edit/?id=4577425257580789777
13051:
13052: 2003-10-07 paf
13053:
13054: * src/main/: compile.tab.C, compile.y: ^if ( better error:
13055: .html(1:4): parse error, expecting `'['' or `'{'' or `'('' now
13056:
13057: 2003-10-03 paf
13058:
13059: * parser3.sln, src/include/pa_dictionary.h,
13060: src/main/pa_dictionary.C, src/main/pa_string.C,
13061: src/targets/cgi/parser3.vcproj: dictionary optimized by
13062: precalculating cstr&length
13063:
13064: 2003-10-02 paf
13065:
13066: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
13067: main/execute.C, main/pa_request.C, main/pa_sql_driver_manager.C,
13068: main/pa_stylesheet_manager.C: bugfix: ^throw context were
13069: saved/restored incompletely http://www.parser.ru/forum/?id=21484
13070:
13071: 2003-09-30 paf
13072:
13073: * src/main/pa_string.C: string::replace bug fix [were ignoring
13074: occurrances after lang-mismatched
13075:
13076: 2003-09-29 paf
13077:
13078: * src/main/: utf8-to-lower.inc, utf8-to-upper.inc: generated by
13079: helper
13080:
13081: * src/main/pa_string.C: string::serialize bug fix with
13082: zero-terminator
13083:
13084: * src/classes/table.C: ^nameless_table.save column row now has no
13085: \t at the end
13086:
13087: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
13088: @postprocess now takes $response:body/download
13089:
13090: * src/classes/form.C: better error message: MAX_POST_SIZE_NAME to
13091: error message
13092:
13093: * src/classes/string.C: bugfix: s.right(>s.length) returned nothing
13094:
13095: * src/classes/table.C: bugfix: flip: must produce nameless
13096: http://i2/tasks/edit/?id=4573405524674081244
13097:
13098: * src/: include/pa_charset.h, main/pa_charset.C, main/pa_string.C,
13099: main/helpers/simple_folding.pl: utf-8 upper/lower
13100:
13101: * src/main/pa_common.C: bugfix: utf signature were not ignored due
13102: to typo error http://i2/tasks/edit/?id=4573354650786434584
13103:
13104: 2003-09-26 paf
13105:
13106: * src/main/untaint.C: removed needless field
13107:
13108: * src/main/untaint.C: removed needless const
13109:
13110: * src/: include/pa_string.h, main/pa_common.C, main/pa_string.C:
13111: String.for_each bug fixed [omited one-char cases]
13112:
13113: * src/include/pa_stack.h: bugfix: before collecting garbage,
13114: runtime-executor stack were cleared... BADLY
13115:
13116: * src/main/pa_string.C: ^stirng.replace code used old
13117: param-convention on langs.append, fixed that search fo the like,
13118: found none
13119:
13120: * src/: classes/op.C, include/pa_string.h, main/pa_string.C:
13121: string::serialize/deserialize implemented Language enum assigned
13122: meaningful letters [more convinient for debugging. read warning
13123: before adding/changing anything]
13124:
13125: 2003-09-25 paf
13126:
13127: * src/: include/pa_string.h, include/pa_version.h,
13128: main/pa_string.C, main/untaint.C: templates and anonymous unions
13129: differences on unix
13130:
13131: * parser3.sln, src/classes/file.C, src/classes/image.C,
13132: src/classes/mail.C, src/classes/op.C, src/classes/table.C,
13133: src/classes/xdoc.C, src/classes/xnode.C,
13134: src/include/pa_cache_managers.h, src/include/pa_charset.h,
13135: src/include/pa_charsets.h, src/include/pa_common.h,
13136: src/include/pa_request.h, src/include/pa_sql_driver_manager.h,
13137: src/include/pa_string.h, src/include/pa_stylesheet_manager.h,
13138: src/include/pa_table.h, src/lib/cord/cordbscs.c,
13139: src/lib/cord/cordprnt.c, src/lib/cord/cordxtra.c,
13140: src/lib/cord/include/cord.h, src/main/compile.tab.C,
13141: src/main/compile_tools.h, src/main/pa_charset.C,
13142: src/main/pa_charsets.C, src/main/pa_common.C, src/main/pa_exec.C,
13143: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
13144: src/main/pa_string.C, src/main/pa_stylesheet_manager.C,
13145: src/main/untaint.C, src/types/pa_value.h, src/types/pa_vimage.C,
13146: src/types/pa_vmail.C, src/types/pa_vmath.C,
13147: src/types/pa_vstateless_class.h, src/types/pa_vstatus.C,
13148: src/types/pa_vxnode.C: string_fragments_to_cord merged to HEAD
13149:
13150: * src/main/: compile.tab.C, pa_string.C: string: debug: .v()
13151: functions aligned to that of eeparser3 look
13152:
13153: * src/lib/cord/cordprnt.c: removed warnings
13154:
13155: 2003-09-24 paf
13156:
13157: * src/: classes/file.C, classes/image.C, classes/mail.C,
13158: classes/op.C, classes/xdoc.C, classes/xnode.C,
13159: include/pa_cache_managers.h, include/pa_charset.h,
13160: include/pa_charsets.h, include/pa_common.h, include/pa_request.h,
13161: include/pa_sql_driver_manager.h, include/pa_string.h,
13162: include/pa_stylesheet_manager.h, include/pa_table.h,
13163: main/compile_tools.h, main/pa_charset.C, main/pa_charsets.C,
13164: main/pa_common.C, main/pa_exec.C, main/pa_request.C,
13165: main/pa_sql_driver_manager.C, main/pa_string.C,
13166: main/pa_stylesheet_manager.C, main/untaint.C, types/pa_value.h,
13167: types/pa_vimage.C, types/pa_vmail.C, types/pa_vmath.C,
13168: types/pa_vstateless_class.h, types/pa_vstatus.C,
13169: types/pa_vxnode.C: v() functions of String::Body,
13170: String::Languages and String itself StringBody->String::Body
13171:
13172: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13173: lib/cord/include/cord.h: CORD_append_block showed no efficiency =
13174: never optimized anything. todo: somehow speed up harder cases:
13175: concatenationA+concatenationB when last block of A and first of B
13176: contain same letters
13177:
13178: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13179: lib/cord/include/cord.h: langs: speed up by joining adjucent
13180: blocks of same char [CORD_append_block]
13181:
13182: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13183: lib/cord/include/cord.h, main/pa_string.C: aval/ works! todo:
13184: save space by extending blocks when appending block with c ==
13185: lastblock.c
13186:
13187: * src/: include/pa_string.h, main/pa_string.C: aval is not actually
13188: working yet :( but more working &understood :)
13189:
13190: * src/: classes/table.C, include/pa_string.h,
13191: lib/cord/include/cord.h, main/pa_string.C: aval/ works!
13192:
13193: 2003-09-23 paf
13194:
13195: * src/main/untaint.C: $a[ok!] $a works!
13196:
13197: * src/main/untaint.C: something even more works :)
13198:
13199: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
13200: something more works :)
13201:
13202: * src/: include/pa_string.h, lib/cord/cordbscs.c,
13203: lib/cord/cordxtra.c: something already works :)
13204:
13205: * src/: include/pa_string.h, main/untaint.C: just compiled todo:
13206: serialize&deserialize
13207:
13208: * src/: classes/table.C, include/pa_string.h, lib/cord/cordbscs.c,
13209: lib/cord/cordxtra.c, lib/cord/include/cord.h, main/pa_string.C,
13210: main/untaint.C: main idea implemented, details left
13211:
13212: 2003-09-22 paf
13213:
13214: * src/: classes/memory.C, include/pa_memory.h: #ifdef GC_DEBUG
13215:
13216: * src/classes/xnode.C: copy/paste comment bugfix
13217:
13218: * src/: include/pa_memory.h, main/pa_globals.C: when xml memory
13219: allocator returns 0, just die.
13220: http://i2/tasks/edit/?id=4570798492410259445
13221:
13222: * src/classes/xdoc.C: copy/paste comment bugfix
13223:
13224: * src/classes/: xdoc.C, xnode.C: new DOM2 methods from Alexandr
13225: Egorov <egr> (all?) xdoc: createAttributeNS createElementNS
13226: xnode: getAttributeNS setAttributeNS removeAttributeNS
13227: getAttributeNodeNS setAttributeNodeNS hasAttribute hasAttributeNS
13228:
13229: * src/lib/cord/cordxtra.c: CORD_pos bugfix [failed to find 8bit
13230: chars due to bitwise operation signed-char error]
13231:
13232: 2003-09-19 paf
13233:
13234: * src/types/pa_wcontext.C: output message: more practical
13235: suggestion
13236:
13237: * src/main/pa_common.C, operators.txt: merged
13238: $f[^file::load[binary;http://...]] $f.tables
13239:
13240: 2003-09-02 paf
13241:
13242: * src/main/pa_common.C: printf is buffered, write(1 is not. can't
13243: flush stdout without referencing 'stdout' symbol. to hell with
13244: non-ansi libraries without 'stdout' symbol
13245:
13246: * src/main/pa_common.C: got rid of 'stdout' symbol reference on
13247: unix (users reported problems with some old libc)
13248:
13249: * src/types/pa_vdate.h: forgot initializer
13250:
13251: 2003-09-01 paf
13252:
13253: * src/: classes/date.C, include/pa_common.h, main/compile.tab.C,
13254: main/pa_common.C, types/pa_vdate.h: $date.TZ ^date.roll[TZ;new
13255: zone]
13256:
13257: * src/classes/image.C: memory handling bugs [unpatched 'new' calls]
13258:
13259: 2003-08-19 paf
13260:
13261: * src/types/: pa_value.C, pa_value.h, pa_vdate.h, pa_vrequest.C,
13262: pa_vstring.h, pa_vxdoc.C, pa_vxnode.C: bark intefrace obsoleted,
13263: simplified a little
13264:
13265: * src/types/: pa_vhash.C, pa_vhash.h: _default+foreach bug refix
13266: [lost fix from 3.0.8]
13267:
13268: * src/types/pa_vcookie.C: in VC7 if(type var=xxx){ }else{ now
13269: visible here }
13270:
13271: bug fix
13272:
13273: * src/: include/pa_memory.h, types/pa_value.h: -= few warnings
13274:
13275: * src/main/compile.tab.C: initialized couple of variables about
13276: which user reported runtime problems when parser were compiled
13277: with VC7, warning level4. study shows that later in bison
13278: they've fixed that. would migrate to latest bison someday
13279:
13280: * src/types/pa_vmail.C: turned off recoding in gmime (were still
13281: recoding headers)
13282:
13283: * src/types/pa_vmail.C: works as before, same charset problems:
13284: gmime recodes to UTF-8 only headers, not body. so not recoding
13285: anything for now
13286:
13287: * src/types/: pa_vmail.C, pa_vmail.h: parses headers, still
13288: problems with body
13289:
13290: * src/types/pa_vmail.C: mail_receive just compiled
13291:
13292: 2003-08-18 paf
13293:
13294: * src/: classes/classes.vcproj, include/pa_config_fixed.h,
13295: main/main.vcproj, types/types.vcproj: win32: continued process
13296: detaching from \parser3project directory
13297:
13298: * gnu.dsp, parser3.dsw, src/classes/classes.dsp,
13299: src/lib/cord/cord.dsp, src/lib/ltdl/libltdl.dsp,
13300: src/lib/md5/md5.dsp, src/lib/pcre/pcre.dsp,
13301: src/lib/pcre/pcre_dftables.dsp,
13302: src/lib/pcre/pcre_parser_ctype.dsp, src/main/main.dsp,
13303: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
13304: src/types/types.dsp: moved to MSVC 7
13305:
13306: * gnu.vcproj.vspscc, parser3.vssscc,
13307: src/classes/classes.vcproj.vspscc,
13308: src/lib/cord/cord.vcproj.vspscc,
13309: src/lib/ltdl/libltdl.vcproj.vspscc,
13310: src/lib/md5/md5.vcproj.vspscc,
13311: src/lib/pcre/pcre_dftables.vcproj.vspscc,
13312: src/lib/pcre/pcre_parser_ctype.vcproj.vspscc,
13313: src/lib/pcre/pcre.vcproj.vspscc, src/main/main.vcproj.vspscc,
13314: src/targets/isapi/parser3isapi.vcproj.vspscc,
13315: src/types/types.vcproj.vspscc, src/targets/cgi/parser3.vcproj:
13316: moved to MSVC 7
13317:
13318: * parser3.sln, gnu.vcproj, src/classes/classes.vcproj,
13319: src/lib/cord/cord.vcproj, src/lib/ltdl/libltdl.vcproj,
13320: src/lib/md5/md5.vcproj, src/lib/pcre/pcre.vcproj,
13321: src/lib/pcre/pcre_dftables.vcproj,
13322: src/lib/pcre/pcre_parser_ctype.vcproj, src/main/main.vcproj,
13323: src/targets/cgi/parser3.vcproj,
13324: src/targets/isapi/parser3isapi.vcproj, src/types/types.vcproj:
13325: new VS project files
13326:
13327: * ~sak5c961f3101c36563.tmp: Temporary file created by Visual Studio
13328: .NET to detect Jalindi Igloo capabilities.
13329:
13330: * ChangeLog, configure, configure.in, src/classes/Makefile.am,
1.116 moko 13331: src/classes/classes.awk, src/doc/footer.htm,
13332: src/include/pa_config_fixed.h, src/include/pa_version.h,
13333: src/lib/Makefile.am, src/main/compile.tab.C,
1.95 moko 13334: src/main/pa_charset.C, src/main/pa_string.C, src/main/untaint.C,
13335: src/types/pa_vmail.C: merged 3.1.0 latest changes
13336:
13337: 2003-08-15 paf
13338:
13339: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13340: non-ascii <yyy> now encoded correctly [kinda merge from 3.0.8]
13341:
13342: * src/main/untaint.C: email addresses in forms: "non-ascii" <yyy>
13343: non-ascii <yyy> now encoded correctly
13344:
13345: 2003-07-29 paf
13346:
1.116 moko 13347: * src/classes/: Makefile.am, classes.awk: classes.awk added to make
13348: dist
1.95 moko 13349:
13350: * src/types/pa_vmail.C: just started --with-mail-receive
13351:
13352: 2003-07-28 paf
13353:
1.116 moko 13354: * src/: classes/Makefile.am, lib/Makefile.am: removed circular
13355: dependence in src/classes, src/lib/gc now in dist
1.95 moko 13356:
13357: * src/main/pa_string.C: ^cache bug fix [were not working at all]
13358:
13359: 2003-07-25 paf
13360:
13361: * src/doc/footer.htm: year
13362:
13363: 2003-07-24 paf
13364:
13365: * src/: include/pa_config_fixed.h, main/pa_charset.C: bad #endif
13366: fix
13367:
13368: * src/include/pa_version.h: release
13369:
1.116 moko 13370: * src/lib/gc/include/: Makefile.am, gc.h: moved tempate_gc to HEAD
1.95 moko 13371:
13372: * ChangeLog, src/classes/classes.dsp, src/main/main.dsp,
13373: src/main/pa_globals.C, src/targets/cgi/parser3.dsp,
13374: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: cvs:
13375: getting rid of win32xml pseudo project
13376:
13377: * src/main/: compile.tab.C, pa_memory.C: moved tempate_gc to HEAD
13378:
1.116 moko 13379: * ChangeLog, INSTALL, Makefile.am, acsite.m4, configure,
13380: configure.in, operators.txt, parser3.dsw,
1.95 moko 13381: etc/parser3.charsets/koi8-r.cfg,
1.116 moko 13382: etc/parser3.charsets/windows-1251.cfg, src/classes/Makefile.am,
1.95 moko 13383: src/classes/classes.C, src/classes/classes.awk,
13384: src/classes/classes.dsp, src/classes/classes.h,
13385: src/classes/date.C, src/classes/double.C, src/classes/file.C,
13386: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
13387: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
13388: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
13389: src/classes/string.C, src/classes/table.C, src/classes/void.C,
13390: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
13391: src/doc/exception.dox, src/doc/index.dox, src/doc/memory.dox,
13392: src/doc/string.dox, src/include/Makefile.am,
1.116 moko 13393: src/include/pa_array.h, src/include/pa_cache_managers.h,
13394: src/include/pa_charset.h, src/include/pa_charsets.h,
13395: src/include/pa_common.h, src/include/pa_config_auto.h.in,
13396: src/include/pa_config_fixed.h, src/include/pa_config_includes.h,
13397: src/include/pa_dictionary.h, src/include/pa_dir.h,
13398: src/include/pa_exception.h, src/include/pa_exec.h,
13399: src/include/pa_globals.h, src/include/pa_hash.h,
13400: src/include/pa_memory.h, src/include/pa_opcode.h,
13401: src/include/pa_operation.h, src/include/pa_pool.h,
13402: src/include/pa_pragma_pack_begin.h,
1.95 moko 13403: src/include/pa_pragma_pack_end.h, src/include/pa_request.h,
13404: src/include/pa_request_charsets.h, src/include/pa_request_info.h,
13405: src/include/pa_sapi.h, src/include/pa_socks.h,
13406: src/include/pa_sql_connection.h,
13407: src/include/pa_sql_driver_manager.h, src/include/pa_stack.h,
13408: src/include/pa_string.h, src/include/pa_stylesheet_connection.h,
13409: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
13410: src/include/pa_threads.h, src/include/pa_types.h,
1.116 moko 13411: src/include/pa_uue.h, src/lib/Makefile.am,
13412: src/lib/cord/Makefile.am, src/lib/cord/cord.dsp,
13413: src/lib/cord/cordbscs.c, src/lib/cord/cordprnt.c,
13414: src/lib/cord/cordxtra.c, src/lib/cord/source.url,
13415: src/lib/cord/include/Makefile.am, src/lib/cord/include/cord.h,
1.95 moko 13416: src/lib/cord/include/ec.h,
13417: src/lib/cord/include/private/Makefile.am,
13418: src/lib/cord/include/private/cord_pos.h, src/lib/gc/Makefile.am,
1.116 moko 13419: src/lib/ltdl/libltdl.dsp, src/lib/md5/pa_md5.h,
13420: src/lib/md5/pa_md5c.c, src/lib/pcre/pcre.h,
1.95 moko 13421: src/lib/pcre/pcre_parser_ctype.c, src/main/Makefile.am,
1.116 moko 13422: src/main/compile.C, src/main/compile.tab.C, src/main/compile.y,
13423: src/main/compile_tools.C, src/main/compile_tools.h,
13424: src/main/execute.C, src/main/main.dsp, src/main/pa_array.C,
13425: src/main/pa_cache_managers.C, src/main/pa_charset.C,
13426: src/main/pa_charsets.C, src/main/pa_common.C,
13427: src/main/pa_dictionary.C, src/main/pa_dir.C,
13428: src/main/pa_exception.C, src/main/pa_exec.C,
1.95 moko 13429: src/main/pa_globals.C, src/main/pa_hash.C, src/main/pa_pool.C,
13430: src/main/pa_request.C, src/main/pa_socks.C,
13431: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13432: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
1.116 moko 13433: src/main/pa_uue.C, src/main/untaint.C, src/sql/pa_sql_driver.h,
13434: src/targets/Makefile.am, src/targets/cgi/Makefile.am,
13435: src/targets/cgi/getopt.c, src/targets/cgi/getopt.h,
13436: src/targets/cgi/pa_pool.C, src/targets/cgi/pa_threads.C,
13437: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
13438: src/targets/cgi/pool_storage.h, src/targets/cgi/pp3.cmd,
13439: src/targets/isapi/Makefile.am, src/targets/isapi/pa_pool.C,
1.95 moko 13440: src/targets/isapi/pa_threads.C, src/targets/isapi/parser3isapi.C,
13441: src/targets/isapi/parser3isapi.dsp,
13442: src/targets/isapi/pool_storage.h, src/types/Makefile.am,
1.116 moko 13443: src/types/pa_junction.h, src/types/pa_method.h,
13444: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vbool.h,
1.95 moko 13445: src/types/pa_vclass.C, src/types/pa_vclass.h,
13446: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
13447: src/types/pa_vcookie.h, src/types/pa_vdate.h,
13448: src/types/pa_vdouble.h, src/types/pa_venv.h,
13449: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
13450: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
13451: src/types/pa_vimage.C, src/types/pa_vimage.h,
13452: src/types/pa_vint.h, src/types/pa_vjunction.h,
13453: src/types/pa_vmail.C, src/types/pa_vmail.h, src/types/pa_vmath.C,
13454: src/types/pa_vmath.h, src/types/pa_vmemory.h,
13455: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
13456: src/types/pa_vobject.C, src/types/pa_vobject.h,
13457: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
13458: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
13459: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
13460: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
13461: src/types/pa_vstatus.h, src/types/pa_vstring.C,
13462: src/types/pa_vstring.h, src/types/pa_vtable.C,
13463: src/types/pa_vtable.h, src/types/pa_vvoid.h,
13464: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
13465: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
13466: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
13467: src/types/pa_wwrapper.h, src/types/types.dsp: moved tempate_gc to
13468: HEAD
13469:
13470: * tests/: 001.html, 002.html, 003.html, 004.html, 005.html,
13471: 006.html, 007.html, 008.html, 009.html, 010.html, 011.html,
13472: 012.html, 013.html, 014.html, 015.html, 016.html, 017.html,
13473: 018.html, 019.html, 019paf2001.gif, 020.html, 021.html, 022.html,
13474: 023.html, 024.html, 025.html, 026.html, 027.html, 028.html,
13475: 029.html, 030.html, 031.html, 032.html, 033.html, 034.html,
13476: 035.html, 036.html, 037.html, 038.html, 039.html, 040.html,
13477: 041.html, 042.html, 043.html, 044.html, 045.html, 046.html,
13478: 047.html, 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p,
13479: 052.html, 053.html, 054.html, 055.html, 056.html, 057.html,
13480: 058.html, 058_paf2000.png, 059.html, 060.html, 061.dat, 061.html,
13481: 062.html, 063.html, 064.html, 065.html, 066.html, 067.html,
13482: 068.html, 069.html, 070.html, 071.html, 072.html, 073.html,
13483: 074.html, 075.html, 076.html, 077.html, 078.html, 079.html,
13484: 080.html, 081.html, 082.html, 083.html, 084.html, 085.html,
13485: 086.html, 087.html, 088.html, 089.html, 090.html, 091.html,
13486: 092.html, 093.html, 094.html, 095.html, 096.html, 097.html,
13487: 098.html, 098font.gif, 099.html, 100.html, 101.html, 102.html,
13488: 103.html, 103mark.gif, 103paf2001.gif, 104.html, 105.html,
13489: 106.html, 107.html, 108.html, 108.xsl, 109.html, 110.html,
13490: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
13491: 117.html, 118.html, 119.html, 120.html, 121.html, 122.html,
13492: 123.html, 124.html, 125.html, 126.html, 127.html, 128.html,
13493: 129.html, 130.html, 131.html, 132.html, 133.html, 134.html,
13494: 135.html, 136.html, 137.html, 138.html, 139.html, 140.html,
13495: 141.html, Makefile, descript.ion, run_parser.sh, 022_dir/a.html,
13496: 022_dir/b.txt, 022_dir/c.htm, 096_dir/163.jpg, 096_dir/188.jpg,
13497: outputs/create-dir, results/001.processed, results/002.processed,
13498: results/003.processed, results/004.processed,
13499: results/005.processed, results/006.processed,
13500: results/007.processed, results/008.processed,
13501: results/009.processed, results/010.processed,
13502: results/011.processed, results/012.processed,
13503: results/013.processed, results/014.processed,
13504: results/015.processed, results/016.processed,
13505: results/017.processed, results/018.processed,
13506: results/019.processed, results/020.processed,
13507: results/021.processed, results/022.processed,
13508: results/023.processed, results/024.processed,
13509: results/025.processed, results/026.processed,
13510: results/027.processed, results/028.processed,
13511: results/029.processed, results/030.processed,
13512: results/031.processed, results/032.processed,
13513: results/033.processed, results/034.processed,
13514: results/035.processed, results/036.processed,
13515: results/037.processed, results/038.processed,
13516: results/039.processed, results/040.processed,
13517: results/041.processed, results/042.processed,
13518: results/043.processed, results/044.processed,
13519: results/045.processed, results/046.processed,
13520: results/047.processed, results/048.processed,
13521: results/049.processed, results/050.processed,
13522: results/051.processed, results/052.processed,
13523: results/053.processed, results/054.processed,
13524: results/055.processed, results/056.processed,
13525: results/057.processed, results/058.processed,
13526: results/059.processed, results/060.processed,
13527: results/061.processed, results/062.processed,
13528: results/063.processed, results/064.processed,
13529: results/065.processed, results/066.processed,
13530: results/067.processed, results/068.processed,
13531: results/069.processed, results/070.processed,
13532: results/071.processed, results/072.processed,
13533: results/073.processed, results/074.processed,
13534: results/075.processed, results/076.processed,
13535: results/077.processed, results/078.processed,
13536: results/079.processed, results/080.processed,
13537: results/081.processed, results/082.processed,
13538: results/083.processed, results/084.processed,
13539: results/085.processed, results/086.processed,
13540: results/087.processed, results/088.processed,
13541: results/089.processed, results/090.processed,
13542: results/091.processed, results/092.processed,
13543: results/093.processed, results/094.processed,
13544: results/095.processed, results/096.processed,
13545: results/097.processed, results/098.processed,
13546: results/099.processed, results/100.processed,
13547: results/101.processed, results/102.processed,
13548: results/103.processed, results/104.processed,
13549: results/105.processed, results/106.processed,
13550: results/107.processed, results/108.processed,
13551: results/109.processed, results/110.processed,
13552: results/111.processed, results/112.processed,
13553: results/113.processed, results/114.processed,
13554: results/115.processed, results/116.processed,
13555: results/117.processed, results/118.processed,
13556: results/119.processed, results/120.processed,
13557: results/121.processed, results/122.processed,
13558: results/123.processed, results/124.processed,
13559: results/125.processed, results/126.processed,
13560: results/127.processed, results/128.processed,
13561: results/129.processed, results/130.processed,
13562: results/131.processed, results/132.processed,
13563: results/133.processed, results/134.processed,
13564: results/135.processed, results/136.processed,
13565: results/137.processed, results/138.processed,
13566: results/139.processed, results/140.processed,
13567: results/141.processed: merged(copied) to HEAD from template_gc
13568:
13569: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: more step
13570: towards \parser3project not having to be in root
13571:
13572: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c: apache
13573: module compiled [were minor unnecessary changes in lib/md5
13574: interface]
13575:
13576: * src/include/pa_version.h: release
13577:
13578: * parser3.dsw, src/main/pa_globals.C: relative paths to xml&gc libs
13579:
13580: * src/classes/math.C: merged uuid bugfix
13581:
13582: * tests/: 141.html, results/141.processed: fixed bug with
13583: too-small-a-buffer
13584:
13585: * src/classes/math.C: uuid bugfix
13586:
13587: * tests/: 141.html, Makefile, results/005.processed,
13588: results/030.processed, results/075.processed,
13589: results/078.processed: to reflect date format change (were -
13590: become ' ')
13591:
13592: * src/classes/math.C: uuid bugfix
13593:
13594: * parser3.dsw, src/main/pa_globals.C: few paths for libxml
13595: debug/release changes
13596:
13597: * src/lib/md5/pa_md5c.c: PA_ -> pa_
13598:
13599: 2003-07-23 paf
13600:
13601: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
13602: renamed a little [to move to comman naming conv]
13603:
1.116 moko 13604: * src/targets/Makefile.am: apache13 splitted to simplify apache
13605: build
1.95 moko 13606:
13607: * src/: include/pa_request.h, include/pa_stack.h, main/execute.C,
13608: main/pa_request.C, main/pa_sql_driver_manager.C,
13609: main/pa_stylesheet_manager.C, targets/isapi/parser3isapi.dsp:
13610: stack top_index() fixed
13611:
13612: * src/main/pa_globals.C: minor style changes
13613:
13614: * src/: classes/op.C, include/pa_sql_connection.h: connection
13615: closing/caching fixed [connections were not closed/put to cache]
13616:
13617: 2003-07-22 paf
13618:
13619: * INSTALL: gc part updated stightly
13620:
13621: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: updated to
13622: new sapi interface
13623:
13624: * src/classes/file.C: comment on OS
13625:
13626: * src/main/pa_string.C: removed reduntant invariant check [there is
13627: one deeper in cord lib]
13628:
13629: * src/main/pa_exec.C: on win32 bugfix in handling shbang
13630:
13631: * src/main/pa_memory.C: out of memory is no longer coredump
13632:
13633: * INSTALL: disable-threads adviced
13634:
13635: 2003-07-21 paf
13636:
1.116 moko 13637: * src/classes/Makefile.am: removed circular dependency on classes.C
1.95 moko 13638:
13639: * src/classes/file.C: file::exec/cgi environment variables now must
13640: be UPPERCASE and A-Z 0-9 _-
13641:
13642: * src/classes/file.C: env passing fixed
13643:
13644: * src/main/pa_common.C: http:// CRLF now [merged from HEAD]
13645:
13646: * src/main/pa_common.C: http:// CRLF now
13647:
13648: 2003-07-02 paf
13649:
13650: * operators.txt, src/types/pa_vstatus.C: renamed $memory:status
13651: fields to reflect their real meaning
13652:
13653: 2003-06-27 paf
13654:
13655: * src/: classes/file.C, include/pa_charset.h, include/pa_exec.h,
13656: include/pa_hash.h, main/pa_charset.C: merged from HEAD
13657: file::exec/cgi .charset
13658:
13659: 2003-06-26 paf
13660:
13661: * ChangeLog, src/classes/file.C, src/classes/hash.C,
13662: src/classes/image.C, src/classes/op.C, src/classes/string.C,
13663: src/classes/table.C: fixed several uninitialized local
13664: structures. notably ^hash.foreach now inserts delimiters
13665: properly [were inserting it before first body]
13666:
13667: 2003-06-24 paf
13668:
13669: * src/include/pa_hash.h: simplified HASH_ALLOCATES_COUNT
13670:
13671: 2003-06-20 paf
13672:
13673: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
13674: src/main/pa_globals.C: introducing
13675: $f[^file::load[binary;http://...]] $f.tables
13676:
13677: 2003-06-06 paf
13678:
13679: * src/types/: pa_vhash.h: $hash.field lookup first now: along with
13680: table. [were method lookup: inconsistent]
13681:
13682: 2003-06-02 paf
13683:
13684: * src/include/pa_memory.h: empty string clone fixed to return
13685: writable memory
13686:
13687: * src/main/pa_common.C: fix_line_breaks bug fix [terminating zero
13688: were not appended] which violated string invariant
13689:
13690: 2003-05-30 paf
13691:
13692: * src/types/pa_value.C: date format now Sun, 06 Nov 1994 08:49:37
13693: GMT ; RFC 822, updated by RFC 1123 [as in HEAD]
13694:
13695: * src/main/pa_common.C: date format now Sun, 06 Nov 1994 08:49:37
13696: GMT ; RFC 822, updated by RFC 1123
13697:
13698: * src/: classes/file.C, classes/form.C, targets/cgi/parser3.C,
13699: targets/isapi/parser3isapi.C: initialized request_info properly
13700:
13701: * src/classes/xnode.C: found minor bug, commended for future
13702:
13703: 2003-05-28 paf
13704:
13705: * src/classes/form.C: request_info.content_length can't be <0,
13706: size_t for some time
13707:
13708: 2003-05-26 paf
13709:
13710: * src/: classes/file.C, classes/string.C, main/pa_string.C: few
13711: forgotten <0 changed to !=STRING_NOT_FOUND
13712:
13713: * src/classes/math.C: merged ffffu from HEAD
13714:
13715: 2003-05-11 paf
13716:
13717: * src/main/pa_globals.C: xml memory debugging functions (ifdefed)
13718:
13719: * src/types/: pa_vxdoc.h, pa_vxnode.h: think that found cause of
13720: premature doc free. transformed document had xmlDoc reference
13721: stored to non-gc-memory (libgdome) added holding-reference
13722:
13723: 2003-04-29 paf
13724:
13725: * src/main/pa_globals.C: started digging on double free. on win32
13726: found that that's perfectly normal.
13727:
13728: 2003-04-25 paf
13729:
13730: * src/classes/table.C: table.join bug fix [bad limit check]
13731:
13732: * src/classes/math.C: merged from HEAD: simpiler hash_string
13733:
13734: * src/classes/math.C: snprintf(buf, 3) become (buf,2) and failed to
13735: print anything. changed to quicker and simplier code
13736:
13737: * src/classes/hash.C: allowed ^hash::create[^rem{xxx}] [were to
13738: strict a check]
13739:
13740: * src/: classes/table.C, lib/md5/pa_md5c.c: minor compile errors
13741:
13742: 2003-04-24 paf
13743:
13744: * src/include/pa_table.h: too strict assert loosened
13745:
13746: * src/lib/: md5/pa_md5c.c, pcre/pcre.h: thanks to Ilia Soldis
13747: <soldis@infolio.ru> for reporing this ansi c fiolation syntax
13748: report
13749:
13750: 2003-04-21 paf
13751:
1.116 moko 13752: * src/targets/cgi/Makefile.am: pp3 added to .am
1.95 moko 13753:
13754: * src/main/pa_globals.C: pcre memory management changed to use GC
13755: memory
13756:
13757: * src/main/pa_globals.C: 2.5.6 version of libxml allows to install
13758: xmlMallocAtomic [author agreed to my suggestion], used that
13759:
13760: * src/types/pa_vmail.C: ^mail:send[$.body backward compatibility
13761:
13762: * src/: targets/cgi/parser3.C, types/pa_value.C, types/pa_value.h,
13763: types/pa_vmail.C: attributed_meaning_to_string added
13764: L_UNSPECIFIED piece which was sortof OK, but violated string
13765: invariant [assertion barked on that] changed to L_PASS_APPEND,
13766: made that param obligatory
13767:
13768: * src/main/pa_string.C: String::ArrayFragment::append_positions bug
13769: fixed [assert helped]
13770:
13771: * src/include/pa_string.h: assert added [looking for bug]
13772:
13773: * src/main/pa_request.C: merged from HEAD: "x:..." and "\\..." file
13774: names on Win32 considered disk-global
13775:
13776: * src/main/pa_request.C: "x:..." and "\\..." file names on Win32
13777: considered disk-global
13778:
13779: 2003-04-18 paf
13780:
13781: * src/main/untaint.C: merged from HEAD: enabled '~' letter in
13782: filenames
13783:
13784: * src/main/untaint.C: enabled '~' letter in filenames
13785:
13786: 2003-04-16 paf
13787:
13788: * src/classes/file.C: small bug introduced in autoptr times fixed
13789:
13790: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: merged from
13791: HEAD
13792:
1.116 moko 13793: * src/classes/table.C: fix: gcc reported tiny error
1.95 moko 13794:
13795: 2003-04-15 paf
13796:
13797: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
13798: src/lib/md5/pa_md5c.c, tests/141.html,
13799: tests/results/141.processed: merged from head ^math:uuid[]
13800: ^math:uid64[] ^math:md5[string]
13801:
13802: test added: 141.html
13803:
13804: * operators.txt, src/classes/math.C: ^math:uid64[]
13805:
13806: * src/classes/math.C: ^math:uuid[]
13807:
13808: * operators.txt, src/classes/math.C: ^math:uuid[]
13809:
13810: * operators.txt, src/classes/math.C, src/lib/md5/pa_md5.h,
13811: src/lib/md5/pa_md5c.c: ^math:md5[string] 16-byte digest
13812:
13813: * operators.txt, src/classes/file.C, src/include/pa_common.h,
13814: src/include/pa_config_fixed.h, src/main/pa_common.C:
13815: ^file::load[mode;name; $.offset $.limit
13816:
13817: 2003-04-14 paf
13818:
13819: * src/: classes/math.C, lib/md5/pa_md5.h, lib/md5/pa_md5c.c:
13820: started ^math:md5
13821:
13822: * src/classes/table.C, src/include/pa_array.h,
13823: src/include/pa_table.h, src/main/pa_table.C, tests/140.html,
13824: tests/results/140.processed: table $.reverse option works in
13825: create&co table $.distinct[tables] bug fix merged
13826:
13827: * src/: classes/table.C, include/pa_table.h: table
13828: $.distinct[tables] bug fixed
13829:
13830: * src/classes/table.C: more warnings
13831:
13832: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C:
13833: removed checks in table::set_current, moved them back to
13834: table::locate implemented table::create/join ñ $.reverse
13835:
13836: * src/: include/pa_table.h, main/pa_array.C, main/pa_table.C:
13837: removed checks in table::set_current, moved them back to
13838: table::locate
13839:
13840: 2003-04-11 paf
13841:
13842: * operators.txt, src/classes/date.C, src/classes/table.C,
13843: src/include/pa_array.h, src/include/pa_common.h,
13844: src/include/pa_config_includes.h, src/include/pa_string.h,
13845: src/include/pa_table.h, src/main/pa_request.C,
13846: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13847: src/main/pa_table.C: merged from HEAD from
13848: before_append_array_limit_sense_change to
13849: after_append_array_limit_sense_change
13850:
13851: * src/classes/table.C: typo
13852:
13853: * operators.txt, src/classes/date.C, src/classes/table.C,
13854: src/include/pa_array.h, src/include/pa_common.h,
13855: src/include/pa_config_includes.h, src/include/pa_globals.h,
13856: src/include/pa_table.h, src/main/pa_array.C,
13857: src/main/pa_globals.C, src/main/pa_request.C,
13858: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
13859: src/main/pa_table.C: append_array_limit_sense_change locate
13860: accepts options same as create new option: $.reverse(1) [do not
13861: work in table::create]
13862:
13863: * src/: include/pa_common.h, main/pa_common.C: gcc didn't like
13864: (stat xxx,
13865:
13866: * src/classes/: table.C: typo
13867:
13868: * tests/: 130.html, 131.html, 132.html, 133.html, 134.html,
13869: 135.html, 136.html, 137.html, 138.html, 139.html, descript.ion,
13870: results/130.processed, results/131.processed,
13871: results/132.processed, results/133.processed,
13872: results/134.processed, results/135.processed,
13873: results/136.processed, results/137.processed,
13874: results/138.processed, results/139.processed: added few mustfail
13875: tests 130.html mustfail: empty regexp 131.html mustfail: invalid
13876: date/time 132.html mustfail: access to junction outside of
13877: context 133.html mustfail: access to junction outside of context,
13878: case version 134.html mustfail: hash: adding a key inside of
13879: foreach 135.html mustfail: modifying system class 136.html
13880: mustfail: $.name outside of $hash[here] 137.html mustfail:
13881: appendChild without import 138.html mustfail: invalid encoding
13882: inside of xml 139.html mustfail: bad XPath
13883:
13884: * operators.txt, src/classes/table.C, tests/084.html,
13885: tests/125.html, tests/126.html, tests/127.html, tests/128.html,
13886: tests/129.html, tests/results/125.processed,
13887: tests/results/126.processed, tests/results/127.processed,
13888: tests/results/128.processed, tests/results/129.processed: merged
13889: from HEAD ^table.hash[key][$.distinct[tables]]
13890:
13891: maked appropriate tests [changed one old nonconforming]
13892:
13893: * operators.txt, src/classes/table.C:
13894: ^table.hash[key][$.distinct[tables]]
13895:
13896: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13897: merged fix for found very old xml (dom) bug: were passing
13898: domString objects and later ERROREOUSLY freed them
13899:
13900: * INSTALL, src/include/pa_charset.h, src/lib/Makefile.am,
13901: src/main/pa_charset.C: re-added libgdome patch. regretfully
13902: libgdome bug can not be worked around
13903:
13904: 2003-04-10 paf
13905:
13906: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h:
13907: found very old xml (dom) bug: were passing domString objects and
13908: later ERROREOUSLY freed them
13909:
13910: * src/doc/string.dox, src/include/pa_memory.h,
13911: src/include/pa_string.h, src/lib/cord/cordbscs.c,
13912: src/main/pa_string.C, src/types/pa_vform.C, src/types/pa_vform.h,
13913: tests/123.html, tests/124.html, tests/results/001.processed,
13914: tests/results/002.processed, tests/results/003.processed,
13915: tests/results/004.processed, tests/results/005.processed,
13916: tests/results/006.processed, tests/results/008.processed,
13917: tests/results/009.processed, tests/results/010.processed,
13918: tests/results/011.processed, tests/results/012.processed,
13919: tests/results/013.processed, tests/results/014.processed,
13920: tests/results/015.processed, tests/results/016.processed,
13921: tests/results/017.processed, tests/results/018.processed,
13922: tests/results/020.processed, tests/results/021.processed,
13923: tests/results/022.processed, tests/results/023.processed,
13924: tests/results/024.processed, tests/results/025.processed,
13925: tests/results/026.processed, tests/results/027.processed,
13926: tests/results/028.processed, tests/results/029.processed,
13927: tests/results/030.processed, tests/results/031.processed,
13928: tests/results/032.processed, tests/results/033.processed,
13929: tests/results/034.processed, tests/results/035.processed,
13930: tests/results/036.processed, tests/results/037.processed,
13931: tests/results/038.processed, tests/results/039.processed,
13932: tests/results/040.processed, tests/results/041.processed,
13933: tests/results/042.processed, tests/results/043.processed,
13934: tests/results/044.processed, tests/results/045.processed,
13935: tests/results/046.processed, tests/results/047.processed,
13936: tests/results/048.processed, tests/results/049.processed,
13937: tests/results/050.processed, tests/results/051.processed,
13938: tests/results/052.processed, tests/results/053.processed,
13939: tests/results/054.processed, tests/results/055.processed,
13940: tests/results/056.processed, tests/results/057.processed,
13941: tests/results/058.processed, tests/results/059.processed,
13942: tests/results/060.processed, tests/results/061.processed,
13943: tests/results/062.processed, tests/results/063.processed,
13944: tests/results/064.processed, tests/results/065.processed,
13945: tests/results/066.processed, tests/results/067.processed,
13946: tests/results/068.processed, tests/results/069.processed,
13947: tests/results/070.processed, tests/results/071.processed,
13948: tests/results/072.processed, tests/results/073.processed,
13949: tests/results/074.processed, tests/results/075.processed,
13950: tests/results/076.processed, tests/results/077.processed,
13951: tests/results/078.processed, tests/results/079.processed,
13952: tests/results/080.processed, tests/results/081.processed,
13953: tests/results/082.processed, tests/results/083.processed,
13954: tests/results/084.processed, tests/results/085.processed,
13955: tests/results/086.processed, tests/results/087.processed,
13956: tests/results/088.processed, tests/results/089.processed,
13957: tests/results/090.processed, tests/results/091.processed,
13958: tests/results/092.processed, tests/results/093.processed,
13959: tests/results/094.processed, tests/results/095.processed,
13960: tests/results/096.processed, tests/results/097.processed,
13961: tests/results/101.processed, tests/results/102.processed,
13962: tests/results/104.processed, tests/results/105.processed,
13963: tests/results/106.processed, tests/results/107.processed,
13964: tests/results/108.processed, tests/results/109.processed,
13965: tests/results/110.processed, tests/results/111.processed,
13966: tests/results/112.processed, tests/results/113.processed,
13967: tests/results/114.processed, tests/results/115.processed,
13968: tests/results/116.processed, tests/results/117.processed,
13969: tests/results/118.processed, tests/results/119.processed,
13970: tests/results/120.processed, tests/results/121.processed,
13971: tests/results/122.processed, tests/results/123.processed,
13972: tests/results/124.processed: new convention: char* never 0.
13973: assert in cord on that
13974:
13975: * src/main/pa_charset.C: couple more asserts
13976:
13977: * src/: main/pa_charset.C, include/pa_charset.h: little transcodes
13978: speedup
13979:
13980: * src/main/pa_charset.C: couple assertions on fantastic situations
13981: added [may be those is the case now?]
13982:
13983: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13984: that's memory from gc_malloc, not from g_malloc :(, but would
13985: hope]
13986:
13987: * src/main/pa_charset.C: bugfix on memory buffer overrun [but
13988: that's memory from gc_malloc, not from g_malloc :(, but would
13989: hope]
13990:
13991: * src/main/pa_charset.C: checked custom malloc for returning 0
13992:
13993: 2003-04-09 paf
13994:
13995: * src/classes/date.C: merged ^date.roll changes
13996:
13997: * src/classes/date.C: ^date.roll bug fix
13998:
13999: * src/classes/date.C: ^date.roll now throws less errors: month
14000: shifts handles end of month situation by reducing day number
14001: hour-hole shift reduces hour to recover
14002:
14003: * src/targets/cgi/pp3.cmd: custom profiling script: plist/ST <<
14004: Sort by function time
14005:
14006: * operators.txt, src/main/pa_charset.C, src/main/pa_common.C:
14007: http:// $.charset[] param done
14008:
14009: * tests/: 122.html, results/122.processed: 122 date test <= and ==
14010: added [after volatile fix. passes on win&intel-solaris]
14011:
14012: 2003-04-08 paf
14013:
14014: * src/: classes/file.C, classes/op.C, classes/table.C,
14015: classes/xdoc.C, include/pa_charset.h, include/pa_charsets.h,
14016: include/pa_common.h, include/pa_request_charsets.h,
14017: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14018: main/pa_exec.C, main/pa_request.C, main/untaint.C,
14019: types/pa_value.h, types/pa_vmail.C, types/pa_vrequest.C,
14020: types/pa_vresponse.C: started http:// $.charset[] param and
14021: http response charset detection just compiled. todo:test
14022:
14023: * src/main/pa_common.C: merged PA_USE_ALARM bugfix from HEAD
14024:
14025: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
14026: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vform.C,
14027: types/pa_vmail.C: changed transcode param converntion along with
14028: string creating convention -- all strings are zero-terminated,
14029: this allowed to fix one remaining String("123", 2) case
14030:
14031: * src/: classes/date.C, classes/file.C, classes/hash.C,
14032: classes/op.C, classes/string.C, classes/table.C,
14033: include/pa_charset.h, include/pa_memory.h, include/pa_string.h,
14034: main/compile.tab.C, main/pa_charset.C, main/pa_exec.C,
14035: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14036: main/untaint.C, types/pa_vfile.C, types/pa_vfile.h,
14037: types/pa_vform.C, types/pa_vform.h, types/pa_vmail.C: pa_vform
14038: violated String::invariant. started fixing [not compiled now]
14039:
14040: * src/: classes/string.C, include/pa_string.h, lib/cord/cordbscs.c,
14041: main/compile.tab.C, main/compile.y, main/pa_string.C,
14042: main/untaint.C, targets/cgi/parser3.C: number of string style
14043: improvements & optimizations
14044:
14045: * src/classes/xnode.C: =0 bug fix [left from autoptr default ctor
14046: :(]
14047:
14048: * src/main/untaint.C: removed redundant & in CORD_pos param passing
14049: [for it's a pointer really]
14050:
14051: * src/main/untaint.C: CORD_pos_advance turned out to have limit on
14052: 'n' param. worked that around
14053:
14054: * src/lib/cord/: Makefile.am, cordbscs.c, source.url: From: "Boehm,
14055: Hans" <hans_boehm@hp.com> To: "'Alexandr Petrosian (PAF)'"
14056: <PAF@design.ru>; "Boehm, Hans" <hans_boehm@hp.com> Sent: Tuesday,
14057: April 08, 2003 2:16 AM Subject: RE: libgc 6.2.alpha4
14058: cord/cordbscs.c/CORD_cat bug [were: CORD__extend_path bug?
14059:
14060: Thanks for the bug report and patch.
14061:
14062: I hadn't looked at this code in a while. Reading it now, it
14063: seems to me that the tests should also be ">= MAX_DEPTH" to
14064: comply with the invariant, though that may not matter a lot. I
14065: changed that, too.
14066:
14067: Hans
14068:
14069: 2003-04-07 paf
14070:
14071: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C:
14072: merged from head:safe mode error message now includes numbers
14073:
14074: * src/main/execute.C: n-th attempt to make a=a work with double.
14075: problem: as_double returns it's result in fp-register compiler
14076: optimizes access to that register after b->as_double, and just
14077: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14078: from memory. _SAME_ double values do not match here. when
14079: forced to REload fp-register, values do match.
14080:
14081: tried to make them volatile.
14082:
14083: * src/main/execute.C: n-th attempt to make a=a work with double.
14084: problem: as_double returns it's result in fp-register compiler
14085: optimizes access to that register after b->as_double, and just
14086: compares ALREADY_STORED_VALUE with prev-calculated a->as_double
14087: from memory. _SAME_ double values do not match here. when
14088: forced to REload fp-register, values do match.
14089:
14090: tried to make them volatile.
14091:
14092: * src/types/pa_vobject.h: small style change
14093:
14094: * src/: lib/cord/cordbscs.c, include/pa_string.h: CORD_cat bugfix
14095:
14096: * src/: include/pa_common.h, main/pa_common.C, main/pa_exec.C: safe
14097: mode error message now includes numbers
14098:
14099: * src/: main/untaint.C, targets/cgi/parser3.C: unknown untaint lang
14100: now causes death
14101:
14102: 2003-04-04 paf
14103:
14104: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C:
14105: incorportated pa_exec patch by From: "Victor Fedoseev"
14106: <vvf_ru@mail.ru> To: "Alexandr Petrosian (PAF)" <PAF@design.ru>
14107: Sent: Thursday, January 23, 2003 9:14 AM
14108:
14109: huge speedup on ^file::cgi with big result
14110:
14111: * src/classes/table.C: sort table with 0 rows bug fixed
14112:
14113: * src/types/pa_vhash.h: $hash._default showed in foreach & co bug
14114: fix http://i2/tasks/edit/?id=4493701604654042676
14115:
14116: @main[] $with_default[ $.a[1] $._default[default from
14117: with_default] ] ^show[$with_default]
14118:
14119: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14120: =$to_add_to.xxx=<br>
14121:
14122: ^show[$to_add_to]
14123:
14124: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14125: ^show[$cloned]
14126:
14127: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14128:
14129: } <hr>
14130:
14131: * src/classes/hash.C: $hash._default showed in foreach & co bug fix
14132: http://i2/tasks/edit/?id=4493701604654042676
14133:
14134: @main[] $with_default[ $.a[1] $._default[default from
14135: with_default] ] ^show[$with_default]
14136:
14137: $to_add_to[ $.b[2] ] ^to_add_to.add[$with_default]
14138: =$to_add_to.xxx=<br>
14139:
14140: ^show[$to_add_to]
14141:
14142: $cloned[^hash::create[$with_default]] =$cloned.xxx=<br>
14143: ^show[$cloned]
14144:
14145: @show[hash] ^hash.foreach[k;v]{ $k = $v <br>
14146:
14147: } <hr>
14148:
14149: * src/types/pa_vmail.C: mail receive: .txt attachemnts bug fix
14150: http://i2/tasks/edit/?id=4507350336410850921
14151:
14152: * src/classes/xdoc.C: memory allocation func bugfix
14153: http://i2/tasks/edit/?id=4499303470368629745
14154:
14155: * src/classes/math.C: allowed random 1...
14156:
14157: * src/classes/math.C: allowed random 0..
14158:
14159: * src/main/pa_globals.C: exif mem leak
14160: http://i2/tasks/edit/?id=4480590323629807263
14161:
14162: * src/: classes/classes.dsp, main/main.dsp,
14163: targets/cgi/parser3.dsp, types/pa_vmail.C, types/types.dsp: buf
14164: fix http://i2/tasks/edit/?id=4493946731322521294
14165: $.to[billgates@microsoft.com BCc: send-spam-to@someemails.ru ]
14166:
14167: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14168: lib/pcre/pcre.dsp, main/compile.tab.C, main/main.dsp,
14169: main/pa_globals.C, targets/cgi/parser3.dsp, types/types.dsp:
14170: links to xml libs made relative, no need to unpack parser3project
14171: to /parser3project.
14172:
14173: * src/main/: compile.tab.C, compile.y, compile_tools.h: error
14174: column more precise - tab handling bug fixed
14175:
14176: * src/main/: compile.tab.C, compile.y: more understandable error
14177: message in case @CLASS with more then one line inside
14178:
14179: * src/targets/cgi/parser3.C: more understandable error message in
14180: case of errors in @unhandled_exception
14181:
14182: 2003-04-03 paf
14183:
14184: * INSTALL, src/include/pa_operation.h, src/include/pa_request.h,
14185: src/main/compile.tab.C, src/main/compile.y,
14186: src/main/compile_tools.C, src/main/compile_tools.h,
14187: src/main/execute.C, src/main/pa_request.C: debug info format
14188: simplified, now it's: OP_VALUE Operation::Origin << here value*
14189:
14190: higher limits: file number (max: 255) line number (max:
14191: 64535) column number (max: 255)
14192:
14193: * src/classes/math.C: top limit
14194:
14195: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
14196: precise parse error position in case of
14197:
14198: ^bug ]
14199:
14200: * src/classes/op.C, src/main/pa_request.C, tests/042.html: test 042
14201: changed to realities, and passed [bug fixed]
14202:
14203: * src/: classes/op.C, include/pa_request.h, main/compile.C,
14204: main/compile.tab.C, main/compile.y, main/compile_tools.C,
14205: main/compile_tools.h, main/pa_request.C: introducing
14206: ^process...[main-method-alias]
14207:
14208: * src/: classes/date.C, classes/image.C, classes/op.C,
14209: classes/string.C, classes/table.C, classes/xdoc.C,
14210: types/pa_vmethod_frame.h: MethodParams& now [methods without
14211: params receive zero reference, but they are expected not to look
14212: there]
14213:
14214: * operators.txt, src/classes/date.C, src/classes/double.C,
14215: src/classes/file.C, src/classes/hash.C, src/classes/image.C,
14216: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14217: src/classes/memory.C, src/classes/op.C, src/classes/response.C,
14218: src/classes/string.C, src/classes/table.C, src/classes/void.C,
14219: src/classes/xdoc.C, src/classes/xnode.C, src/classes/xnode.h,
14220: src/main/execute.C, src/types/pa_method.h: MethodParams& now
14221: [methods without params receive zero reference, but they are
14222: expected not to look there]
14223:
14224: * operators.txt, src/classes/op.C, src/include/pa_request.h,
14225: src/main/pa_request.C, src/types/pa_vmethod_frame.h:
14226: ^process...[filename] useful for better error reporting
14227: [file/line/col]
14228:
14229: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
14230: types/pa_vstring.h: slightly improved error messages text: 1. is
14231: '%s', it 2. method undefined in case of ^void[]
14232:
14233: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14234: include/pa_types.h, main/execute.C, main/pa_request.C: exception
14235: handling done. now we have error columns todo: test it
14236:
14237: * src/: classes/op.C, include/pa_request.h: removed from trace 'a'
14238: exception when ^try{ ^throw[a;1] }{ ^throw[b;2] }
14239:
14240: this makes life easier: were: bad stack order -- were in
14241: exception catch unwind order, which didn't match execution order
14242:
14243: @main[] ^try{ ^first[] }{ ^throw[c;3] }
14244:
14245: @first[] ^throw[a;1]
14246:
14247: showed throw a first throw b try
14248:
14249: which is no good
14250:
14251: * src/: classes/op.C, include/pa_request.h, include/pa_stack.h,
14252: main/compile.tab.C, main/execute.C, main/pa_request.C: strack
14253: trace reset after handled exception [old bug fixed]
14254:
14255: * src/main/: compile.tab.C, compile.y: parse position old bug
14256: fixed. position reporting made precise [both, in parse erros and
14257: runtime errors]
14258:
14259: 2003-04-02 paf
14260:
14261: * src/: include/pa_operation.h, include/pa_request.h,
14262: main/compile.C, main/compile.tab.C, main/compile.y,
14263: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14264: main/pa_exception.C, main/pa_request.C: debug info: started
14265: using. todo:complete
14266:
14267: * src/: classes/op.C, include/pa_operation.h, include/pa_request.h,
14268: main/compile.C, main/compile.tab.C, main/compile.y,
14269: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14270: main/pa_request.C: prepared debug info todo:use it
14271:
14272: * src/include/pa_operation.h: strange mistake fixed: forgot to
14273: return Operation class->union after switching from autoptrs.
14274:
14275: * tests/: Makefile, results/108.processed, results/117.processed:
14276: meta considered OK [it's up to coder now to remove it not needed]
14277:
14278: * src/main/pa_dictionary.C, tests/Makefile: replace bug fix [broke
14279: Dictionary constructor when moved to gc]
14280:
14281: * src/main/pa_common.C: uncommented http:// file loading
14282:
14283: * src/include/pa_array.h, src/main/execute.C,
14284: src/targets/cgi/parser3.C, tests/run_parser.sh: gif encoder bug
14285: fix [gdGrowingBuf]
14286:
14287: * configure.in, src/lib/Makefile.am: removed patches
14288:
14289: * configure, src/include/pa_config_auto.h.in,
14290: src/main/pa_charset.C: --enable-assertions autoconf-ed
14291:
14292: * src/main/pa_common.C: uncommented http:// file loading
14293:
14294: * src/: classes/xdoc.C, types/pa_vxdoc.h: removed ref leak in
14295: xdoc::create/load
14296:
14297: * src/: classes/form.C, classes/hash.C, classes/image.C,
14298: classes/string.C, classes/table.C, classes/void.C,
14299: include/pa_common.h, main/pa_common.C, main/pa_request.C,
14300: main/pa_sql_driver_manager.C, main/pa_string.C: all calls to
14301: String::String(str,helper_length) are checked. found/fixed one
14302: place: $request:body now zero-terminated,
14303:
14304: * src/: classes/op.C, classes/table.C, include/pa_request.h,
14305: main/compile_tools.C, main/execute.C, types/pa_value.h,
14306: types/pa_vbool.h, types/pa_vclass.h, types/pa_vdate.h,
14307: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
14308: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
14309: types/pa_vobject.C, types/pa_vobject.h, types/pa_vstring.h,
14310: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.h,
14311: types/pa_vxnode.h: more locally scoped vars in execute (more
14312: easily optimizable)
14313:
14314: * src/: classes/table.C, include/pa_table.h, main/pa_table.C: few
14315: for(size_t i=0...) -> for(Array_iterator... i(..); i.has_next()
14316:
14317: * src/: include/pa_array.h, include/pa_stack.h,
14318: include/pa_string.h, main/compile_tools.C, main/main.dsp,
14319: main/pa_table.C, types/pa_vmethod_frame.C: array get/put check
14320: become assertion iterator in methodframe filler
14321:
14322: * src/: include/pa_array.h, include/pa_stack.h, main/main.dsp,
14323: targets/cgi/parser3.C: array::get/put inlined
14324:
14325: * src/: lib/cord/cordbscs.c, main/pa_globals.C: globals.c:
14326: gc_substitute_memory_management_functions +installed CORD_oom
14327: function
14328:
14329: * configure.in, src/classes/xnode.C, src/include/pa_config_fixed.h,
14330: src/include/pa_config_includes.h, src/include/pa_string.h,
14331: src/lib/cord/cordbscs.c, src/main/pa_memory.C,
14332: src/targets/cgi/parser3.C: converted debug hacks to ANSI
14333: assertions started configure.in --enable-assertions
14334:
14335: 2003-04-01 paf
14336:
14337: * src/: classes/xdoc.C, classes/xnode.h, include/pa_memory.h,
14338: main/pa_memory.C, targets/cgi/parser3.C, types/pa_vxdoc.h,
14339: types/pa_vxnode.C, types/pa_vxnode.h: memory bug debugged down:
14340: gdome uses glib memory, and stores last pointer to xmlDoc there,
14341: gc misses that and collects valid memory fixed by remembering
14342: xmlDoc from dom object in xdoc. todo: do something with
14343: premature free of xdoc with xnodes/node values referring into it
14344:
14345: * src/classes/: mail.C: typo fix
14346:
14347: * src/main/pa_memory.C: bug() to set bpt in (memory.c) some .am
14348: changes
14349:
14350: * src/: include/pa_memory.h, main/pa_common.C, main/pa_globals.C,
14351: main/pa_memory.C: moved memory debugging to global level: to
14352: pa_gc_malloc
14353:
14354: * src/: main/pa_globals.C, targets/cgi/parser3.C: xml memory
14355: debugging showed no errors. todo: debug parser memory
14356:
14357: * src/targets/cgi/: parser3.C, parser3.dsp: more build
14358: configurations
14359:
14360: * src/: classes/classes.dsp, include/pa_config_fixed.h,
14361: main/compile.tab.C, main/main.dsp, main/pa_globals.C,
14362: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
14363: types/types.dsp: prepared xml-static configuration
14364:
14365: 2003-03-31 paf
14366:
14367: * INSTALL, src/classes/xdoc.C, src/main/pa_globals.C,
14368: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp: started
14369: xml lib memory debugging, simple checks failed: it seems that
14370: library does realloc(bad ptr), and recording those ptrs in heap
14371: [for debugging] was bad: heap situation changes = everything
14372: works fine
14373:
14374: * src/: main/pa_charset.C, include/pa_charset.h: worked around
14375: xmlRegisterCharEncodingHandler limitation [currently imposed
14376: limit of 10 user-defined charsets]
14377:
14378: 2003-03-28 paf
14379:
14380: * src/main/execute.C: execution stack copied to local register
14381: variable, removed lots [~2e7) of memory accesses
14382:
14383: 2003-03-27 paf
14384:
14385: * src/: classes/xdoc.C, main/pa_globals.C: XML memory funcs to GC
14386: works in debug, but fails in release todo: fix that
14387:
14388: * src/: classes/xdoc.C, main/compile.tab.C, main/pa_globals.C,
14389: targets/cgi/parser3.C: forgot to merge XML memory funcs
14390: replacement from gc branch
14391:
14392: * src/main/pa_exec.C: introducing append_help_length [radical
14393: improvement here]
14394:
14395: * src/targets/cgi/parser3.C: GC_java_finalization turned off [was
14396: 'not recommened' in gc.h, on win32 noticed no difference]
14397:
14398: * src/include/pa_array.h: returned checked array get [were disabled
14399: for debugging] result:not slower [don't understand that, it were
14400: INLINED] todo: find out a way of inlining it!
14401:
14402: * src/: include/pa_string.h, lib/gc/include/gc.h,
14403: lib/gc/include/gc_fake.h, main/compile.tab.C,
14404: targets/cgi/parser3.C, main/pa_memory.C, targets/cgi/parser3.dsp:
14405: convention changed: all resulting strings are zero-terminated
14406:
14407: * src/: classes/date.C, classes/file.C, classes/hash.C,
14408: classes/string.C, classes/table.C, classes/void.C,
14409: include/pa_string.h, lib/cord/cord.dsp, lib/cord/cordbscs.c,
14410: lib/cord/include/cord.h, main/compile.tab.C, main/compile.y,
14411: main/compile_tools.h, main/pa_common.C, main/pa_exec.C,
14412: main/pa_request.C, main/pa_string.C, main/pa_uue.C,
14413: sql/pa_sql_driver.h, types/pa_value.C, types/pa_venv.h,
14414: types/pa_vfile.C, types/pa_vmail.C: introducing
14415: append_help_length [radical improvement here]
14416:
14417: * src/: classes/memory.C, include/pa_array.h, include/pa_hash.h,
14418: include/pa_memory.h, lib/cord/cord.dsp, lib/cord/cordxtra.c,
14419: lib/gc/include/gc.h, main/pa_memory.C, targets/cgi/parser3.C,
14420: targets/cgi/parser3.dsp, types/pa_vstatus.C: disabled gc, become
14421: even slower
14422:
14423: * src/: classes/string.C, classes/table.C, include/pa_array.h,
14424: include/pa_stack.h, include/pa_string.h, main/compile_tools.C,
14425: main/pa_string.C, main/untaint.C, types/pa_vmethod_frame.C: fixed
14426: clients of &get(): most to use non-ref version, some[in tight
14427: places] to get_unchecked_ref
14428:
14429: * src/doc/memory.dox: forgot to add
14430:
14431: * src/: classes/classes.dsp, classes/memory.C, classes/xdoc.C,
14432: include/pa_array.h, include/pa_request.h, include/pa_stack.h,
14433: include/pa_string.h, lib/cord/cord.dsp, lib/ltdl/libltdl.dsp,
14434: lib/md5/md5.dsp, lib/pcre/pcre.dsp, main/compile.tab.C,
14435: main/compile.y, main/compile_tools.C, main/compile_tools.h,
14436: main/main.dsp, main/pa_string.C, targets/cgi/parser3.C,
14437: targets/cgi/parser3.dsp, types/pa_vmail.C,
14438: types/pa_vmethod_frame.C, types/types.dsp: Array::put(index,
14439: T>>&<< removed after Stack::pop wiping removed [moved to separate
14440: func] other Array & removed
14441:
14442: 2003-03-26 paf
14443:
14444: * src/: classes/classes.dsp, classes/file.C, classes/op.C,
14445: classes/table.C, include/pa_array.h, include/pa_charset.h,
14446: include/pa_stack.h, include/pa_string.h, include/pa_table.h,
14447: lib/cord/cord.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14448: lib/pcre/pcre.dsp, main/compile.tab.C, main/compile.y,
14449: main/main.dsp, main/pa_charset.C, main/pa_common.C,
14450: main/pa_exec.C, main/pa_sql_driver_manager.C,
14451: main/pa_stylesheet_manager.C, main/pa_table.C,
14452: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14453: types/pa_vmethod_frame.C, types/pa_vmethod_frame.h,
14454: types/pa_vobject.C, types/pa_vobject.h, types/types.dsp:
14455: pre-evaluated .count() in some places
14456:
14457: * src/: classes/classes.dsp, lib/ltdl/libltdl.dsp, lib/md5/md5.dsp,
14458: lib/pcre/pcre.dsp, main/main.dsp, targets/cgi/parser3.dsp,
14459: types/types.dsp: .dsp profiling updated
14460:
14461: * src/: classes/classes.dsp, lib/cord/cord.dsp,
14462: lib/ltdl/libltdl.dsp, lib/md5/md5.dsp, main/main.dsp,
14463: targets/cgi/parser3.dsp, types/types.dsp: started profiling
14464:
14465: * src/: classes/classes.dsp, lib/cord/cord.dsp, main/compile.tab.C,
14466: main/compile_tools.h, main/main.dsp, targets/cgi/parser3.dsp,
14467: targets/isapi/parser3isapi.dsp, types/types.dsp: .dsp updated to
14468: use lib/gc,lib/cord
14469:
1.116 moko 14470: * acsite.m4, src/classes/Makefile.am, src/classes/mail.C,
14471: src/classes/math.C, src/classes/op.C, src/include/pa_common.h,
1.95 moko 14472: src/include/pa_config_auto.h.in, src/include/pa_config_fixed.h,
14473: src/include/pa_config_includes.h, src/include/pa_request.h,
14474: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14475: src/include/pa_stylesheet_connection.h, src/include/pa_version.h,
1.116 moko 14476: src/lib/Makefile.am, src/lib/cord/Makefile.am,
1.95 moko 14477: src/lib/cord/include/Makefile.am,
1.116 moko 14478: src/lib/cord/include/private/Makefile.am, src/main/Makefile.am,
14479: src/main/pa_exec.C, src/main/pa_string.C, src/main/untaint.C,
14480: src/targets/cgi/Makefile.am, src/types/Makefile.am,
14481: src/types/pa_vclass.h, src/types/pa_vcookie.h,
14482: src/types/pa_vform.h, src/types/pa_vhash.h,
14483: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.h,
14484: src/types/pa_vresponse.h, src/types/pa_vstateless_class.h,
14485: src/types/pa_vstatus.C, src/types/pa_vstatus.h,
14486: src/types/pa_vtable.h, src/types/pa_vxdoc.h: configured math
14487: funcs ported pa_exec
1.95 moko 14488:
14489: * src/lib/: cord/include/gc.h, gc/include/gc.h: introducing lib/gc
14490:
14491: * src/lib/cord/include/: cord.h, ec.h, gc.h, private/cord_pos.h:
14492: bundled gc includes
14493:
14494: * src/: classes/op.C, include/pa_array.h,
14495: include/pa_sql_connection.h, include/pa_string.h,
14496: include/pa_version.h, main/compile.tab.C, main/compile.y,
14497: main/execute.C, main/pa_common.C, main/pa_exception.C,
14498: main/pa_request.C, main/pa_string.C, targets/cgi/parser3.C,
14499: targets/cgi/parser3.dsp: a number of bugfixes [while testing
14500: first real site (aval)]
14501:
14502: 2003-03-25 paf
14503:
14504: * operators.txt, src/main/pa_sql_driver_manager.C,
14505: src/types/pa_vstatus.C: $status.memory used free since_compact
14506: process
14507:
14508: * src/: include/pa_sql_connection.h, main/pa_globals.C,
14509: main/untaint.C, sql/pa_sql_driver.h: untaint.C L_SQL
14510:
14511: * src/main/: pa_charset.C, untaint.C: untaint.C L_MAIL_HEADER
14512:
14513: * src/main/pa_request.C, src/main/untaint.C, src/types/pa_value.C,
14514: src/types/pa_value.h, src/types/pa_vfile.h,
14515: src/types/pa_vobject.C, src/types/pa_vobject.h,
14516: src/types/pa_vstring.C, src/types/pa_vstring.h, tests/121.html,
14517: tests/results/121.processed: untaint.C L_URI
14518:
14519: * operators.txt, src/classes/Makefile.am, src/classes/classes.dsp,
14520: src/classes/op.C, src/main/pa_request.C, src/types/Makefile.am,
14521: src/types/pa_venv.h, src/types/types.dsp, src/classes/memory.C,
14522: src/types/pa_vmemory.h: ^memory:compact[]
14523:
14524: * tests/results/109.processed: it was a bug in parser. updated 109
14525: test result
14526:
14527: * src/classes/xdoc.C, tests/Makefile: fixed transform params2
14528:
14529: * src/main/pa_charset.C, src/targets/cgi/parser3.C, tests/Makefile,
14530: tests/results/107.processed: fixed dom language [values are now
14531: considered tainted. it was a bug in parser. updated 107 test
14532: result
14533:
14534: * src/classes/xdoc.C: fixed transform params
14535:
14536: * src/: include/pa_stylesheet_manager.h,
14537: main/pa_stylesheet_manager.C: fixed stylesheet caching
14538:
14539: * src/: include/pa_memory.h, main/pa_charset.C: memory: new 'new'
14540: overloads for structure handling
14541:
14542: * src/: classes/image.C, classes/xdoc.C, classes/xnode.C,
14543: include/pa_string.h, main/pa_string.C, types/pa_vxnode.C: removed
14544: StringBody(0) ambiguilty, introducting static
14545: StringBody::Format(int)
14546:
14547: * src/: main/pa_request.C, types/pa_vxnode.C: vxnode compiled xml
14548: linked
14549:
14550: * src/types/pa_vxdoc.C: vxdoc compiled
14551:
14552: * src/: classes/xnode.C, classes/xnode.h, include/pa_memory.h,
14553: types/pa_vxdoc.h, types/pa_vxnode.h: xnode.C compiled, doc/node
14554: finalizers isntalled
14555:
14556: * src/: classes/image.C, classes/xdoc.C, classes/xnode.h,
14557: doc/exception.dox, doc/index.dox, include/pa_charset.h,
14558: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
14559: main/pa_charset.C, main/pa_memory.C, main/pa_string.C: xdoc.C
14560: compiled todo: xnode.C / finalizers
14561:
14562: * src/doc/string.dox: updated: new string internals
14563:
14564: 2003-03-24 paf
14565:
14566: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14567: include/pa_charset.h, include/pa_config_fixed.h,
14568: include/pa_request.h, include/pa_stylesheet_connection.h,
14569: include/pa_stylesheet_manager.h, main/pa_charset.C,
14570: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
14571: main/pa_stylesheet_manager.C, types/pa_vxdoc.h,
14572: types/pa_vxnode.h: started XML
14573:
14574: * src/main/: pa_common.C, pa_sql_driver_manager.C: http://
14575:
14576: * src/: classes/file.C, classes/image.C, classes/mail.C,
14577: include/pa_string.h, main/pa_common.C,
14578: main/pa_sql_driver_manager.C: introducing string[body]::pos(char)
14579:
14580: * src/: classes/file.C, classes/image.C, classes/mail.C,
14581: include/pa_memory.h, include/pa_string.h, main/pa_common.C,
14582: main/pa_request.C, main/pa_sql_driver_manager.C,
14583: types/pa_vimage.h: size_t pos everywhere checks changed to check
14584: for eq STRING_NOT_FOUND
14585:
14586: * src/main/pa_string.C, src/main/untaint.C, tests/Makefile: string
14587: optimize bit implemented
14588:
14589: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
14590: String::ArrayFragment::append_positions fixed
14591:
14592: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
14593: String::this_starts fixed
14594:
14595: * src/main/pa_string.C, tests/Makefile: string::pos fixed
14596:
14597: * src/: include/pa_hash.h, main/execute.C, main/pa_string.C:
14598: hashcode implemented fully, including per-char callback [it can
14599: be - substr CORD node]
14600:
14601: * src/: include/pa_array.h, main/compile.tab.C: gif encoding
14602: rewritten to rewalloc with 100byte buf ahead
14603:
14604: * src/classes/image.C, src/classes/op.C, src/classes/table.C,
14605: src/include/pa_string.h, src/main/compile.tab.C,
14606: src/main/compile.y, src/main/execute.C, src/main/pa_common.C,
14607: src/main/untaint.C, tests/Makefile: attempt to do gif encoding to
14608: CORD_ec [bad] would rewrite as realloc now
14609:
14610: * src/: classes/date.C, classes/file.C, classes/form.C,
14611: classes/image.C, classes/math.C, classes/op.C, classes/table.C,
14612: include/pa_cache_managers.h, include/pa_charsets.h,
14613: include/pa_common.h, include/pa_request.h,
14614: include/pa_sql_driver_manager.h, include/pa_table.h,
14615: main/pa_charset.C, main/pa_exception.C, main/pa_exec.C,
14616: main/pa_globals.C, main/pa_request.C, main/pa_uue.C,
14617: targets/isapi/parser3isapi.C, types/pa_value.C, types/pa_value.h,
14618: types/pa_vmail.C, types/pa_vmethod_frame.C,
14619: types/pa_vstateless_class.h: 2*2 worked :)
14620:
14621: * parser3.dsw, src/classes/date.C, src/classes/file.C,
14622: src/include/pa_exec.h, src/include/pa_string.h,
14623: src/main/pa_exec.C, src/main/pa_sql_driver_manager.C: empty run
14624: passed OK
14625:
14626: * src/: classes/hash.C, classes/string.C, classes/table.C,
14627: types/pa_value.C: all linked todo: debug
14628:
14629: * src/: classes/mail.C, main/pa_request.C, targets/cgi/parser3.C,
14630: types/pa_vstateless_class.C: all compiled. todo:link
14631:
14632: * src/types/pa_wcontext.C: pa_wcontext.C compiled
14633:
14634: * src/types/pa_vtable.C: pa_vtable.C compiled
14635:
14636: * src/types/pa_vstring.C: pa_vstring.C compiled
14637:
14638: * src/types/pa_vstatus.C: pa_vstatus.C compiled
14639:
14640: * src/types/: pa_vmath.C, pa_vmethod_frame.C, pa_vmethod_frame.h,
14641: pa_vobject.C, pa_vrequest.C, pa_vresponse.C,
14642: pa_vstateless_class.C, pa_vstateless_class.h:
14643: pa_vstateless_class.C compiled
14644:
14645: * src/: classes/xdoc.C, types/pa_vmail.C, types/pa_vmail.h,
14646: types/pa_vmath.C: pa_vmail.C compiled
14647:
14648: * src/types/: pa_vhash.C, pa_vimage.C: pa_vimage.C compiled
14649:
14650: * src/types/pa_vform.C: pa_vform.C compiled
14651:
14652: * src/types/pa_vfile.C: pa_vfile.C compiled
14653:
14654: * src/types/: pa_value.h, pa_vclass.C, pa_vcookie.C,
14655: pa_vstateless_class.C: pa_vcookie.C compiled
14656:
14657: * src/: classes/string.C, types/pa_value.C, types/pa_value.h,
14658: types/pa_vhash.h: pa_value.C compiled
14659:
14660: * src/: main/execute.C, main/pa_string.C, types/pa_wcontext.h:
14661: classes.lib main.lib compiled
14662:
14663: * src/classes/void.C: void.C compiled
14664:
14665: * src/: classes/string.C, classes/table.C, include/pa_string.h,
14666: main/pa_string.C, types/pa_vtable.C, types/pa_vtable.h: table.C
14667: compiled
14668:
14669: * src/: classes/string.C, include/pa_request.h,
14670: include/pa_string.h, main/pa_string.C: string.C compiled
14671:
14672: * src/: classes/op.C, classes/string.C, classes/table.C,
14673: classes/void.C, include/pa_sql_connection.h, include/pa_string.h,
14674: main/pa_request.C, main/pa_string.C: op.C compiled
14675:
14676: * src/classes/: math.C, op.C: math.C compiled
14677:
14678: * src/: classes/mail.C, classes/string.C, classes/table.C,
14679: types/pa_vmail.h: mail.C compiled
14680:
14681: * src/classes/: int.C, table.C: int.C compiled
14682:
14683: * src/: classes/hash.C, classes/image.C, classes/string.C,
14684: classes/table.C, include/pa_memory.h, include/pa_string.h,
14685: main/pa_memory.C, types/pa_vimage.h, types/pa_vmail.C: image.C
14686: compiled
14687:
14688: * src/: classes/hash.C, classes/string.C, classes/table.C,
14689: classes/void.C, classes/xdoc.C, include/pa_request.h,
14690: include/pa_sql_connection.h: hash.C compiled
14691:
14692: * src/: classes/classes.C, classes/classes.awk, classes/classes.h,
14693: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
14694: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
14695: classes/math.C, classes/op.C, classes/response.C,
14696: classes/string.C, classes/table.C, classes/void.C,
14697: classes/xdoc.C, classes/xnode.C, include/pa_memory.h,
14698: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
14699: main/pa_string.C, types/pa_vdate.h, types/pa_vmethod_frame.h:
14700: file.C table.C compiled
14701:
14702: * src/: include/pa_string.h, main/pa_string.C, main/pa_uue.C,
14703: main/untaint.C: main.lib compiled
14704:
14705: 2003-03-21 paf
14706:
14707: * src/: classes/op.C, include/pa_cache_managers.h,
14708: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
14709: include/pa_stylesheet_manager.h, main/pa_exception.C,
14710: main/pa_globals.C, main/pa_sql_driver_manager.C,
14711: sql/pa_sql_driver.h, types/pa_vimage.C: pa_sql_driver_manager.C
14712: compiled
14713:
14714: * src/: classes/hash.C, classes/image.C, classes/op.C,
14715: classes/xdoc.C, classes/xnode.C, include/pa_common.h,
14716: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
14717: main/compile.C, main/pa_common.C, main/pa_request.C,
14718: types/pa_vmail.C, types/pa_vresponse.C, types/pa_vxnode.C:
14719: pa_request.C compiled
14720:
14721: * src/: classes/hash.C, classes/mail.C, classes/op.C,
14722: include/pa_request.h, main/execute.C, main/pa_request.C,
14723: types/pa_value.C, types/pa_value.h, types/pa_vcookie.C,
14724: types/pa_vhash.h, types/pa_vimage.C, types/pa_vmethod_frame.h,
14725: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
14726: types/pa_vresponse.h, types/pa_vtable.C: pa_request.C 50%
14727: compiled
14728:
14729: * src/: include/pa_exec.h, include/pa_string.h, main/pa_exec.C,
14730: main/pa_string.C: pa_exec.C compiled [win32 only for now] todo:
14731: on unix
14732:
14733: * src/: include/pa_charset.h, include/pa_charsets.h,
14734: include/pa_exec.h, main/compile.tab.C, main/pa_charset.C,
14735: main/pa_charsets.C, main/pa_dictionary.C, main/pa_exec.C:
14736: pa_charsets.C compiled
14737:
14738: * src/: classes/image.C, classes/mail.C, classes/op.C,
14739: include/pa_request.h, include/pa_string.h, main/compile.tab.C,
14740: main/compile.y, main/execute.C, main/pa_common.C,
14741: main/pa_request.C, types/pa_junction.h, types/pa_method.h,
14742: types/pa_vcode_frame.h, types/pa_vimage.h,
14743: types/pa_vmethod_frame.h: execute.C compiled
14744:
14745: * src/: classes/classes.C, classes/classes.h, classes/date.C,
14746: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
14747: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
14748: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
14749: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
14750: include/pa_cache_managers.h, include/pa_charsets.h,
14751: include/pa_common.h, include/pa_exec.h, include/pa_memory.h,
14752: include/pa_operation.h, include/pa_request.h, include/pa_sapi.h,
14753: include/pa_sql_driver_manager.h, include/pa_string.h,
14754: include/pa_stylesheet_connection.h,
14755: include/pa_stylesheet_manager.h, include/pa_table.h,
14756: main/compile.C, main/compile.tab.C, main/compile.y,
14757: main/compile_tools.C, main/compile_tools.h, main/execute.C,
14758: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
14759: main/pa_exec.C, main/pa_request.C, main/pa_sql_driver_manager.C,
14760: main/pa_string.C, main/pa_stylesheet_manager.C, main/untaint.C,
14761: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
14762: types/pa_junction.h, types/pa_method.h, types/pa_value.C,
14763: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.C,
14764: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
14765: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
14766: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
14767: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
14768: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
14769: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
14770: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
14771: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
14772: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
14773: types/pa_vresponse.h, types/pa_vstateless_class.C,
14774: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
14775: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
14776: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
14777: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
14778: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
14779: types/pa_wcontext.h, types/pa_wwrapper.h: introducing StringBody
14780: [C++ CORD wrapper]
14781:
14782: * src/: lib/cord/cordbscs.c, main/pa_string.C: test14 [bug fixed]
14783:
14784: * src/: classes/file.C, include/pa_charset.h, main/pa_charset.C:
14785: $file::exec/cgi[script; $.charset[this is script's charset]
14786:
14787: command line, env values, input got transcoded before call
14788: stdout, stderr got transcoded after call
14789:
14790: * src/classes/file.C: ^file::exec/cgi now does not pass post data
14791: by default. use: ^file::exec[...;$.stdin[$request.body]
14792:
14793: * src/main/pa_common.C: } typo bug fix
14794:
14795: * src/main/pa_common.C: } typo bug fix
14796:
14797: 2003-03-20 paf
14798:
14799: * src/: include/pa_string.h, lib/cord/cordbscs.c, main/pa_string.C,
14800: main/untaint.C: cord bug fix, but still errors todo: clear out
14801:
14802: * src/include/pa_string.h: more tests
14803:
14804: * src/main/pa_string.C: string.pos fixed
14805:
1.116 moko 14806: * src/lib/: ltdl/config_fixed.h, ltdl/configure, ltdl/configure.in,
14807: ltdl/libltdl.dsp, ltdl/ltdl.c, ltdl/ltdl.h, pcre/dftables.c,
14808: pcre/get.c, pcre/internal.h, pcre/maketables.c, pcre/pcre.c,
14809: pcre/pcre.h, pcre/pcre_parser_ctype.c, pcre/study.c: undone bad
14810: replaces
1.95 moko 14811:
14812: * src/: classes/image.C, include/pa_dictionary.h,
14813: include/pa_string.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
14814: lib/pcre/internal.h, lib/pcre/pcre.c, lib/pcre/study.c,
14815: main/compile.tab.C, main/pa_dictionary.C, main/pa_string.C,
14816: main/untaint.C, types/pa_vmail.C: more tests [bugs fixed]
14817:
14818: * src/include/pa_string.h: warning
14819:
14820: * src/include/pa_string.h: this_starts fixed
14821:
14822: * src/: include/pa_string.h, main/pa_string.C: added: assertion on
14823: new String ctor & append params convention
14824:
14825: * src/: classes/file.C, classes/hash.C, classes/image.C,
14826: classes/mail.C, classes/op.C, classes/string.C, classes/table.C,
14827: classes/xdoc.C, include/pa_common.h, include/pa_memory.h,
14828: include/pa_string.h, main/compile.tab.C, main/pa_common.C,
14829: main/pa_exception.C, main/pa_exec.C,
14830: main/pa_sql_driver_manager.C, main/pa_string.C,
14831: main/pa_stylesheet_manager.C, main/untaint.C,
14832: targets/isapi/parser3isapi.C, types/pa_vimage.C,
14833: types/pa_vmail.C: more tests OK
14834:
14835: * src/: include/pa_array.h, include/pa_hash.h, include/pa_memory.h,
14836: include/pa_string.h, main/pa_memory.C, main/pa_string.C: test:
14837: gc/exit runned OK
14838:
14839: * src/types/pa_vmail.C: another naming problem: should not name
14840: vars like that: unpredictable close caused problems with later
14841: sending mail: Mar 20 06:39:53 pt-6 sendmail[19044]: File
14842: descriptors missing on startup: stdin; Bad file number
14843:
14844: todo: find out why so many filters(stream) here. probably wrong?
14845:
14846: * src/: include/pa_dictionary.h, include/pa_string.h,
14847: main/pa_common.C, main/pa_dictionary.C, main/pa_string.C,
14848: main/untaint.C: test compiled
14849:
14850: * src/: classes/image.C, classes/mail.C, classes/math.C,
14851: classes/string.C, include/pa_dictionary.h, include/pa_hash.h,
14852: include/pa_memory.h, include/pa_string.h, lib/cord/cordbscs.c,
14853: lib/cord/cordxtra.c, lib/pcre/dftables.c, lib/pcre/get.c,
14854: lib/pcre/maketables.c, lib/pcre/pcre.c, lib/pcre/pcre.h,
14855: lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
14856: main/compile.tab.C, main/pa_common.C, main/pa_dictionary.C,
14857: main/pa_exec.C, main/pa_memory.C, main/pa_request.C,
14858: main/pa_string.C, main/untaint.C, types/pa_vfile.h,
14859: types/pa_vmail.C: untaint.C 99% [except mail&sql&optimize]
14860:
14861: * parser3.dsw, src/classes/file.C, src/classes/image.C,
14862: src/classes/op.C, src/classes/string.C, src/classes/table.C,
14863: src/classes/xdoc.C, src/classes/xnode.C, src/include/pa_common.h,
14864: src/include/pa_memory.h, src/include/pa_request.h,
14865: src/include/pa_request_charsets.h,
14866: src/include/pa_sql_connection.h, src/include/pa_string.h,
14867: src/main/compile.tab.C, src/main/execute.C,
14868: src/main/pa_charset.C, src/main/pa_common.C,
14869: src/main/pa_exception.C, src/main/pa_exec.C,
14870: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
14871: src/main/pa_stylesheet_manager.C, src/main/untaint.C,
14872: src/sql/pa_sql_driver.h, src/targets/cgi/parser3.C,
14873: src/targets/isapi/parser3isapi.C, src/types/pa_value.C,
14874: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14875: src/types/pa_venv.h, src/types/pa_vform.C, src/types/pa_vmail.C,
14876: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14877: src/types/pa_vobject.C, src/types/pa_vresponse.C,
14878: src/types/pa_vstatus.C, src/types/pa_vstring.C,
14879: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14880: src/types/pa_vxnode.C, src/types/pa_wcontext.h: untaint.C 30%,
14881: pa_common.C [done, without http for now]
14882:
14883: 2003-03-19 paf
14884:
14885: * src/: classes/date.C, classes/form.C, classes/hash.C,
14886: classes/image.C, classes/mail.C, classes/op.C, classes/xdoc.C,
14887: classes/xnode.C, include/pa_array.h, include/pa_config_fixed.h,
14888: include/pa_exception.h, include/pa_memory.h, include/pa_sapi.h,
14889: include/pa_string.h, include/pa_table.h, main/compile.C,
14890: main/compile_tools.C, main/execute.C, main/pa_charset.C,
14891: main/pa_common.C, main/pa_exception.C, main/pa_request.C,
14892: main/pa_socks.C, main/pa_string.C, main/pa_table.C,
14893: main/untaint.C, targets/cgi/parser3.C, targets/cgi/parser3.dsp,
14894: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.h,
14895: types/pa_vform.C, types/pa_vmail.C, types/pa_vmethod_frame.h,
14896: types/pa_vstateless_class.h, types/pa_vtable.C,
14897: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.C,
14898: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
14899: types/pa_wwrapper.h: started test
14900:
1.116 moko 14901: * src/lib/pcre/: dftables.c, get.c, maketables.c, pcre.c, pcre.dsp,
14902: pcre.h, pcre_parser_ctype.c, study.c: restored bad replaces
1.95 moko 14903:
14904: * src/: classes/op.C, include/pa_array.h, include/pa_memory.h,
14905: include/pa_string.h, main/pa_string.C: string compiled todo: test
14906: it
14907:
14908: * src/: classes/classes.dsp, classes/string.C, classes/table.C,
14909: include/pa_array.h, include/pa_common.h, include/pa_dictionary.h,
14910: include/pa_exception.h, include/pa_string.h, include/pa_table.h,
14911: lib/cord/cord.dsp, main/compile.tab.C, main/main.dsp,
14912: main/pa_common.C, main/pa_string.C, targets/cgi/parser3.dsp,
14913: types/pa_method.h, types/pa_value.h, types/pa_vmethod_frame.C,
14914: types/pa_vmethod_frame.h, types/types.dsp: string
14915: reimplementation with cord+array<fragment>: 70%
14916:
14917: 2003-03-18 paf
14918:
14919: * src/: classes/date.C, classes/file.C, classes/form.C,
14920: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
14921: classes/op.C, classes/string.C, classes/table.C, classes/xdoc.C,
14922: classes/xnode.C, include/pa_hash.h, include/pa_string.h,
14923: main/pa_string.C, types/pa_vmail.C: lots of replacements, todo:we
14924: can ignore lang in cmp and pos really, but would
14925: split properly!
14926:
14927: * src/lib/cord/: cord.dsp, cordbscs.c, cordprnt.c, cordxtra.c: gc:
14928: cord part made parser/src/lib: it's not compiled into libgc by
14929: default
14930:
14931: * parser3.dsw, src/classes/classes.dsp, src/classes/classes.h,
14932: src/classes/date.C, src/classes/double.C, src/classes/file.C,
14933: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
14934: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
14935: src/classes/op.C, src/classes/response.C, src/classes/string.C,
14936: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
14937: src/classes/xnode.C, src/classes/xnode.h,
14938: src/include/Makefile.am, src/include/pa_cache_managers.h,
14939: src/include/pa_charset.h, src/include/pa_charsets.h,
14940: src/include/pa_common.h, src/include/pa_dictionary.h,
14941: src/include/pa_exception.h, src/include/pa_exec.h,
14942: src/include/pa_globals.h, src/include/pa_hash.h,
14943: src/include/pa_memory.h, src/include/pa_pool.h,
14944: src/include/pa_request.h, src/include/pa_request_charsets.h,
14945: src/include/pa_sapi.h, src/include/pa_sql_connection.h,
14946: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
14947: src/include/pa_stylesheet_connection.h,
14948: src/include/pa_stylesheet_manager.h, src/include/pa_table.h,
14949: src/include/pa_uue.h, src/lib/pcre/get.c, src/main/Makefile.am,
14950: src/main/compile.C, src/main/compile.tab.C,
14951: src/main/compile_tools.C, src/main/compile_tools.h,
14952: src/main/execute.C, src/main/main.dsp, src/main/pa_charset.C,
14953: src/main/pa_charsets.C, src/main/pa_common.C,
14954: src/main/pa_dictionary.C, src/main/pa_exception.C,
14955: src/main/pa_exec.C, src/main/pa_globals.C, src/main/pa_memory.C,
14956: src/main/pa_pool.C, src/main/pa_request.C,
14957: src/main/pa_sql_driver_manager.C, src/main/pa_string.C,
14958: src/main/pa_stylesheet_manager.C, src/main/pa_table.C,
14959: src/main/pa_uue.C, src/main/untaint.C, src/targets/cgi/parser3.C,
14960: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
14961: src/types/pa_junction.h, src/types/pa_method.h,
14962: src/types/pa_value.C, src/types/pa_value.h,
14963: src/types/pa_vclass.C, src/types/pa_vclass.h,
14964: src/types/pa_vcode_frame.h, src/types/pa_vcookie.C,
14965: src/types/pa_vcookie.h, src/types/pa_vdate.h,
14966: src/types/pa_vdouble.h, src/types/pa_venv.h,
14967: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.C,
14968: src/types/pa_vform.h, src/types/pa_vhash.C, src/types/pa_vhash.h,
14969: src/types/pa_vimage.C, src/types/pa_vimage.h,
14970: src/types/pa_vint.h, src/types/pa_vmail.C, src/types/pa_vmail.h,
14971: src/types/pa_vmath.C, src/types/pa_vmath.h,
14972: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
14973: src/types/pa_vobject.C, src/types/pa_vobject.h,
14974: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
14975: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
14976: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
14977: src/types/pa_vstateless_object.h, src/types/pa_vstatus.C,
14978: src/types/pa_vstatus.h, src/types/pa_vstring.C,
14979: src/types/pa_vstring.h, src/types/pa_vtable.C,
14980: src/types/pa_vtable.h, src/types/pa_vvoid.h,
14981: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
14982: src/types/pa_vxnode.C, src/types/pa_vxnode.h,
14983: src/types/pa_wcontext.C, src/types/pa_wcontext.h,
14984: src/types/pa_wwrapper.h, src/types/types.dsp: started porting to
14985: gc: PA_Object done lots of replacements also
14986:
14987: * src/: include/pa_pool.h, main/execute.C, targets/cgi/pa_pool.C:
14988: gc logging
14989:
14990: 2003-03-17 paf
14991:
14992: * src/: classes/date.C, classes/file.C, classes/form.C,
14993: classes/image.C, classes/mail.C, classes/op.C, classes/table.C,
14994: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
14995: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
14996: include/pa_string.h, include/pa_types.h, main/compile.C,
14997: main/compile.tab.C, main/execute.C, main/pa_charset.C,
14998: main/pa_common.C, main/pa_exception.C, main/pa_exec.C,
14999: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15000: main/pa_sql_driver_manager.C, main/pa_string.C,
15001: main/pa_stylesheet_manager.C, main/pa_uue.C, main/untaint.C,
15002: targets/cgi/pa_pool.C, targets/cgi/parser3.C,
15003: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
15004: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.C,
15005: types/pa_vform.C, types/pa_vint.h, types/pa_vmail.C,
15006: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
15007: types/pa_vxnode.h: libgc attempt
15008:
15009: 2003-03-13 paf
15010:
15011: * src/: include/pa_sql_driver_manager.h,
15012: main/pa_sql_driver_manager.C, targets/cgi/parser3.C: lt_dlexit
15013: called
15014:
15015: * src/: include/pa_request.h, lib/ltdl/libltdl.dsp,
15016: lib/md5/md5.dsp, main/compile.tab.C, main/execute.C,
15017: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.C,
15018: types/pa_value.h, types/pa_vobject.h,
15019: types/pa_vstateless_class.h, types/pa_vstatus.C, types/types.dsp:
15020: set_base, set_derived simplified [counter leaks fixed]
15021:
15022: * ChangeLog, src/include/pa_config_fixed.h, src/types/pa_vstatus.C,
15023: src/types/types.dsp: incorporated status class patch From:
15024: "Victor Fedoseev" <vvf_ru@mail.ru> Sent: Thursday, January 23,
15025: 2003 8:14 AM
15026:
15027: now we have $status.rusage.maxrss,tv_sec,tv_usec un WIN32 [plus
15028: Win32 specific: QuotaPeakNonPagedPoolUsage
15029: QuotaPeakPagedPoolUsage PeakPagefileUsage]
15030:
15031: 2003-03-12 paf
15032:
1.116 moko 15033: * configure, configure.in, src/lib/ltdl/configure,
15034: src/lib/ltdl/configure.in, src/targets/cgi/Makefile.am:
1.95 moko 15035: lib/ltdl/Makefile now created by /configure.in only [were by
15036: lib/ltdl/configure.in OVERWRITE]
15037:
1.116 moko 15038: * configure, configure.in, src/targets/cgi/Makefile.am: libstdc++
15039: linkage fixed for g++ 3.2.2
1.95 moko 15040:
15041: * src/include/pa_stylesheet_manager.h: gcc 3.2 rightliy complained
15042: on using privately declared class [fixed]
15043:
15044: * src/: include/pa_sql_driver_manager.h, main/compile.tab.C: gcc
15045: 3.2 rightliy complained on using privately declared class [fixed]
15046:
15047: * src/targets/cgi/parser3.C: 1. more detailed log on signals. 2.
15048: sigpipe before request constructor now causes death
15049:
15050: * src/: include/pa_request.h, main/compile.tab.C, main/execute.C,
15051: targets/cgi/parser3.C: SIGPIPE now can be intercepted and does
15052: not cause exception in exception handler
15053:
1.116 moko 15054: * configure, configure.in, src/targets/cgi/Makefile.am: configure
15055: now default links libstdc++ statically. that can be overriden by
15056: --with-dynamic-stdcpp
1.95 moko 15057:
15058: 2003-03-11 paf
15059:
15060: * src/: main/compile.tab.C, main/compile.y, sql/pa_sql_driver.h,
15061: types/pa_vstateless_class.C, types/pa_vstateless_class.h: removed
15062: necessity of libstdc++
15063:
15064: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15065:
15066: * src/include/pa_request.h: ANTI_ENDLESS_EXECUTE_RECOURSION doubled
15067:
15068: 2003-03-08 paf
15069:
15070: * tests/Makefile: make install & co
15071:
15072: * src/: include/pa_request.h, classes/op.C: removing
15073: vclass,object.h -> pa_request.h dependency
15074:
15075: * src/: classes/mail.C, classes/response.C, include/pa_request.h,
15076: main/pa_request.C: removing vform,response,cookie.h ->
15077: pa_request.h dependency
15078:
15079: * src/include/pa_request.h: removing vmail.h -> pa_request.h
15080: dependency [testing...]
15081:
15082: * src/: include/pa_config_fixed.h, types/pa_vxdoc.C: yet another
15083: return 0; fixed
15084:
15085: * src/: include/pa_config_fixed.h, types/pa_vmail.C,
15086: types/pa_vmail.h: vmail.C received just compiled [not tested]
15087:
15088: * src/classes/xdoc.C: forgotten: global xdoc when ndef XML
15089:
15090: * src/main/pa_request.C: forgotten: ifdef XML
15091:
15092: * src/main/pa_request.C: forgotten: ifdef XML
15093:
15094: * src/targets/cgi/parser3.C: todo: move to latest xml version on
15095: win32 and run memleak tests again
15096:
15097: * src/targets/cgi/parser3.C: charsets: see some strange things with
15098: old xml lib-- it's internal memory handling has faults
15099:
15100: * src/: include/pa_types.h, main/pa_charset.C: charsets: fixed
15101: problems when transcode from charset A to A.
15102:
15103: * src/: main/untaint.C, types/pa_vmail.C: mail: transcode fixed.
15104: todo: still problems when transcode from charset A to A.
15105:
15106: * src/: classes/hash.C, classes/mail.C, classes/string.C,
15107: classes/table.C, include/pa_array.h,
15108: main/pa_sql_driver_manager.C, types/pa_vmail.C, types/pa_vmail.h:
15109: started full-scale-site-test [~ http://parser.ru sources]
15110:
15111: some fixes
15112:
15113: * tests/: 021.html, 031.html, 033.html, 109.html, 110.html,
15114: 111.html, 112.html, 113.html, 114.html, 115.html, 116.html,
15115: 117.html, 118.html, 119.html, 120.html, results/109.processed,
15116: results/110.processed, results/111.processed,
15117: results/112.processed, results/113.processed,
15118: results/114.processed, results/115.processed,
15119: results/116.processed, results/117.processed,
15120: results/118.processed, results/119.processed,
15121: results/120.processed: xml: tests 109 dom create/show 110 xpath
15122: selectSingle 111 xdoc.create from tainted & 112
15123: xdoc.create/output with russian attr value 113 xpath
15124: selectString/Number 114 dom attributes.count 115 xpath selectBool
15125: 116 output media-type change 117 transform by dom stylesheet 118
15126: empty transform result 119 dom setAttribute 120 nbsp letter
15127: output
15128:
15129: =END OF PREPARED XML TESTS=
15130:
15131: 2003-03-07 paf
15132:
15133: * src/classes/xdoc.C, src/include/pa_charset.h,
15134: src/include/pa_stylesheet_connection.h, tests/108.html,
15135: tests/108.xsl, tests/results/108.processed: xml: test 108
15136: transform with params [bugs fixed]
15137:
15138: * src/: main/pa_charset.C, targets/cgi/parser3.C: fixed: mem leak
15139: from copy/paste bug
15140:
15141: * src/classes/xdoc.C, src/include/pa_charset.h,
15142: src/include/pa_request.h, src/main/execute.C,
15143: src/main/pa_charset.C, src/main/pa_exception.C,
15144: src/main/pa_globals.C, src/main/pa_request.C,
15145: src/types/pa_vxdoc.C, src/types/pa_vxdoc.h,
15146: src/types/pa_vxnode.C, tests/107.html,
15147: tests/results/107.processed: xml: test: 107 bug fixes
15148:
15149: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15150: types/pa_value.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15151: types/pa_vxnode.C, types/pa_vxnode.h: test: 107 bug fixes
15152:
15153: * tests/: 106.html, results/106.processed: test: 106 xdoc create,
15154: string
15155:
15156: * src/: include/pa_charset.h, main/pa_charset.C: xml: charset two
15157: mem alloc functions used for different cases [libxml, libxsl]
15158:
15159: * src/classes/classes.C: fixed: prevent system classes from
15160: modification to lock ALL the classes, not only directly used
15161:
15162: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.h: xml:
15163: linked
15164:
15165: * src/: classes/xdoc.C, types/pa_vxdoc.h: xdoc.C compiled
15166:
15167: 2003-03-06 paf
15168:
15169: * src/classes/xdoc.C: xdoc.C 50%
15170:
15171: * src/: classes/xnode.C, classes/xnode.h, include/pa_charset.h,
15172: include/pa_memory.h, include/pa_request.h, include/pa_string.h,
15173: main/pa_globals.C, main/pa_request.C,
15174: main/pa_stylesheet_manager.C: xnode.C compiled
15175:
15176: * src/: include/pa_stylesheet_connection.h,
15177: include/pa_stylesheet_manager.h, main/pa_sql_driver_manager.C,
15178: main/pa_stylesheet_manager.C: xml: stylesheet&manager done
15179:
15180: * src/: include/pa_memory.h, include/pa_stylesheet_connection.h,
15181: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C:
15182: xml: stylesheet&manager STARTED
15183:
15184: * src/: include/pa_globals.h, main/pa_charset.C,
15185: main/pa_exception.C, main/pa_globals.C: xml: exceptions
15186:
15187: * src/: include/pa_charset.h, include/pa_config_fixed.h,
15188: include/pa_memory.h, include/pa_pool.h, main/pa_charset.C,
15189: main/pa_memory.C, main/pa_pool.C, types/pa_vxdoc.C,
15190: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: xml:
15191: charsets
15192:
15193: * tests/023.html: in some cases it rounded up badly. postponing
15194: solution of that problem, making more simple test
15195:
15196: * tests/: 058_paf2000.png, results/058.processed: .png added with
15197: -kb now
15198:
15199: * src/: include/pa_charset.h, include/pa_charsets.h,
15200: main/pa_charset.C, main/pa_charsets.C: charset_utf8 declaration
15201: moved to charsets.C
15202:
15203: 2003-03-05 paf
15204:
15205: * src/classes/string.C, src/include/pa_string.h,
15206: src/main/pa_string.C, tests/105.html,
15207: tests/results/105.processed: String::match bug fixed
15208:
15209: * src/classes/op.C, src/main/main.dsp, tests/104.html,
15210: tests/results/104.processed: ^bpt operator added [does int3 in
15211: debug build on win32]
15212:
15213: * tests/: 057.html, results/057.processed: test bug fixed
15214:
1.116 moko 15215: * src/targets/cgi/Makefile.am: linker needed more tricks to link OK
1.95 moko 15216:
15217: * src/classes/math.C: can be: crypt in -lcrypt OK, but crypt.h be
15218: missing
15219:
1.116 moko 15220: * src/: include/Makefile.am, main/Makefile.am, types/Makefile.am:
15221: forgotten files added to Makes
1.95 moko 15222:
15223: * ltmain.sh: ltmain.sh added
15224:
15225: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15226: change undone ;(
15227:
15228: * src/types/: pa_vhash.C, pa_vhash.h: hash_default_element_name
15229: made static
15230:
15231: * src/: classes/math.C, classes/op.C, classes/string.C,
1.116 moko 15232: main/pa_exec.C, targets/cgi/Makefile.am: gcc more happy.
15233: todo:make linker happy
1.95 moko 15234:
15235: * src/: classes/file.C, include/pa_exec.h, main/pa_exec.C: pa_exec
15236: env param made optional
15237:
15238: 2003-03-04 paf
15239:
15240: * src/: classes/image.C, include/pa_request.h, include/pa_stack.h,
15241: types/pa_vimage.h: number of gcc compiler bugs fixed
15242:
15243: * tests/: 103.html, 103mark.gif, 103paf2001.gif,
15244: results/103.processed: tests: 103 image.copy transparence test
15245:
15246: * src/main/execute.C, tests/101.html, tests/102.html,
15247: tests/results/101.processed, tests/results/102.processed: tests:
15248: 101 method/variable name conflict test 102 form fields change
15249: should not not change anything [bug fix]
15250:
15251: * tests/: 057.html, 099.html, 100.html, results/057.processed,
15252: results/099.processed, results/100.processed: tests: 57 date
15253: create 2002: added 99,100 response:body/download
15254:
15255: * src/classes/image.C, tests/098.html, tests/098font.gif,
15256: tests/results/098.processed: test: 98 image font text [bug fixed]
15257:
15258: * src/main/pa_common.C, src/targets/cgi/parser3.C, tests/097.html,
15259: tests/results/097.processed: test: 97 file::load http:// [bugs
15260: fixed]
15261:
15262: * src/classes/hash.C, src/classes/image.C, src/classes/table.C,
15263: src/include/pa_memory.h, tests/096.html, tests/096_dir/163.jpg,
15264: tests/096_dir/188.jpg, tests/results/096.processed: tests: 96
15265: image EXIF [bug fixed]
15266:
15267: * src/classes/table.C, src/main/execute.C, tests/061.dat,
15268: tests/061.html, tests/062.html, tests/063.html, tests/064.html,
15269: tests/065.html, tests/066.html, tests/067.html, tests/068.html,
15270: tests/069.html, tests/070.html, tests/071.html, tests/072.html,
15271: tests/073.html, tests/074.html, tests/075.html, tests/076.html,
15272: tests/077.html, tests/078.html, tests/080.html, tests/081.html,
15273: tests/082.html, tests/083.html, tests/084.html, tests/085.html,
15274: tests/086.html, tests/087.html, tests/088.html, tests/089.html,
15275: tests/090.html, tests/091.html, tests/092.html, tests/093.html,
15276: tests/094.html, tests/095.html, tests/results/061.processed,
15277: tests/results/062.processed, tests/results/063.processed,
15278: tests/results/064.processed, tests/results/065.processed,
15279: tests/results/066.processed, tests/results/067.processed,
15280: tests/results/068.processed, tests/results/069.processed,
15281: tests/results/070.processed, tests/results/071.processed,
15282: tests/results/072.processed, tests/results/073.processed,
15283: tests/results/074.processed, tests/results/075.processed,
15284: tests/results/076.processed, tests/results/077.processed,
15285: tests/results/078.processed, tests/results/080.processed,
15286: tests/results/081.processed, tests/results/082.processed,
15287: tests/results/083.processed, tests/results/084.processed,
15288: tests/results/085.processed, tests/results/086.processed,
15289: tests/results/087.processed, tests/results/088.processed,
15290: tests/results/089.processed, tests/results/090.processed,
15291: tests/results/091.processed, tests/results/092.processed,
15292: tests/results/093.processed, tests/results/094.processed,
15293: tests/results/095.processed, tests/079.html,
15294: tests/results/079.processed: tests: 61 file::stat size 62
15295: string->int autoconvert 63 double .int,dec,div,mul 64 date
15296: compare 65 file: basename,justname,justext 66 math:crypt 67
15297: string.match simple on long 68 string.match normalized simple on
15298: long 69 string.int 70 file::stat content-type 71 table.join 72
15299: hash parameter conditional pass 73 date daylightsaving,yearday 74
15300: date arithmetics 75 response date values/attributes 76 string.pos
15301: of void, void.pos 77 syntax parsing 78 cookie tainting 79 switch
15302: with local 80 scientific numeric literal in string autoconvert 81
15303: xor: logical and numerical 82 for delims 83 menu delims 84
15304: table.hash distinct 85 long string replace 86 throw+catch
15305: current language preserve 87 bit shifts 88 junction tests +
15306: $caller test 89 hash.foreach selfmodification 90 int/void to int
15307: 91 $caller test 92 junction is + def junction tests 93 $caller
15308: test 94 syntax test 95 table.hash(keygenerator) [bug fixed]
15309:
15310: * src/main/: execute.C, pa_table.C: test: 59 table.locate [bug
15311: fixed] 60 string eq string [bug fixed]
15312:
15313: * tests/: 053.html, 054.html, 055.html, 056.html, 057.html,
15314: 058.html, 058_paf2000.png, 059.html, 060.html,
15315: results/053.processed, results/054.processed,
15316: results/055.processed, results/056.processed,
15317: results/057.processed, results/058.processed,
15318: results/059.processed, results/060.processed: test: 53
15319: string.replace 54 junctions 55 table.hash 56 call indirect 57
15320: date.create[string] 58 image.measure[png]
15321:
15322: * tests/: 052.html, outputs/049.processed, outputs/050.processed,
15323: outputs/051.processed, results/052.processed: test: 52
15324: pre/match/post test: passed AS-IT-WERE, but wrong :) separate
15325: task: fix that
15326:
15327: 2003-03-03 paf
15328:
15329: * tests/: 043.html, 044.html, 045.html, 046.html, 047.html,
15330: 048.html, 049.html, 050.html, 051.html, 051b.p, 051t.p, Makefile,
15331: parser-cygwin.sh, parser-unix.sh, run_parser.sh,
15332: outputs/049.processed, outputs/050.processed,
15333: outputs/051.processed, results/001.processed,
15334: results/002.processed, results/003.processed,
15335: results/005.processed, results/006.processed,
15336: results/008.processed, results/009.processed,
15337: results/011.processed, results/012.processed,
15338: results/013.processed, results/014.processed,
15339: results/015.processed, results/016.processed,
15340: results/017.processed, results/020.processed,
15341: results/021.processed, results/022.processed,
15342: results/024.processed, results/025.processed,
15343: results/026.processed, results/027.processed,
15344: results/028.processed, results/029.processed,
15345: results/030.processed, results/031.processed,
15346: results/049.processed, results/050.processed,
15347: results/051.processed, results/043.processed,
15348: results/044.processed, results/045.processed,
15349: results/046.processed, results/047.processed,
15350: results/048.processed: tests: 43,44,45 date rolls 46
15351: autoevaluating junction 47 table.select 48 name with subvar 49
15352: hash-creating switch 50 process 51 started parent/child, works as
15353: it were but it were NOT GOOD, created separate task to fix that
15354:
15355: * tests/: 042.html, results/042.processed: test: 42
15356: exception.handled
15357:
15358: * tests/: 041.html, results/041.processed: test: 41 table.locate by
15359: expression
15360:
15361: * tests/: 040.html, results/040.processed: test: 39 method result
15362: of type table 40 method param junction auto evaluate
15363:
15364: * tests/: 039.html, results/039.processed: test: 37 method result
15365: of type table
15366:
15367: * src/main/pa_request.C, src/types/pa_vmath.C, tests/033.html,
15368: tests/034.html, tests/035.html, tests/036.html, tests/037.html,
15369: tests/038.html, tests/results/033.processed,
15370: tests/results/034.processed, tests/results/035.processed,
15371: tests/results/036.processed, tests/results/037.processed,
15372: tests/results/038.processed: tests: 33 string.replace 34
15373: string.upper 35 table created 36 local/global vars with juntions
15374: 37 table clone 38 math PI & number formatting
15375:
15376: math class registring typo fixed
15377:
15378: * src/classes/op.C, src/include/pa_request.h,
15379: src/include/pa_string.h, src/main/execute.C,
15380: src/main/pa_request.C, src/main/pa_string.C, src/main/untaint.C,
15381: src/types/pa_vcode_frame.h, src/types/pa_wcontext.h,
15382: tests/032.html, tests/results/032.processed: uchar changed to
15383: String_UL in all places [was not everywhere] untaint test: 032
15384:
15385: * src/targets/cgi/parser3.C, tests/004.html, tests/Makefile,
15386: tests/results/004.processed, tests/parser-cygwin.sh,
15387: tests/parser-unix.sh: removed -H command line key, now testing
15388: using .sh file with SERVER_SOFTWARE=xxx
15389:
15390: 2003-02-26 paf
15391:
15392: * src/main/execute.C, src/types/pa_vstateless_class.h,
15393: tests/024.html, tests/025.html, tests/026.html, tests/027.html,
15394: tests/028.html, tests/029.html, tests/030.html, tests/031.html,
15395: tests/results/024.processed, tests/results/025.processed,
15396: tests/results/026.processed, tests/results/027.processed,
15397: tests/results/028.processed, tests/results/029.processed,
15398: tests/results/030.processed, tests/results/031.processed: fixed
15399: bug with name_cstr mutable CharPtr more tests
15400:
15401: * src/: include/pa_sapi.h, main/pa_globals.C, main/pa_memory.C,
15402: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: SAPI::abort
15403: << abort. die now just exits
15404:
15405: * src/classes/classes.awk, src/classes/classes.h,
15406: src/classes/date.C, src/classes/double.C, src/classes/file.C,
15407: src/classes/form.C, src/classes/hash.C, src/classes/image.C,
15408: src/classes/int.C, src/classes/mail.C, src/classes/math.C,
15409: src/classes/op.C, src/classes/response.C, src/classes/string.C,
15410: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
15411: src/classes/xnode.C, src/include/pa_memory.h,
15412: src/include/pa_sapi.h, src/targets/cgi/parser3.C,
15413: src/targets/isapi/parser3isapi.C, src/types/pa_venv.h,
15414: src/types/pa_vform.C, tests/015.html, tests/016.html,
15415: tests/017.html, tests/018.html, tests/019.html,
15416: tests/019paf2001.gif, tests/020.html, tests/021.html,
15417: tests/022.html, tests/023.html, tests/022_dir/a.html,
15418: tests/022_dir/b.txt, tests/022_dir/c.htm,
15419: tests/results/015.processed, tests/results/016.processed,
15420: tests/results/017.processed, tests/results/018.processed,
15421: tests/results/019.processed, tests/results/020.processed,
15422: tests/results/021.processed, tests/results/022.processed,
15423: tests/results/023.processed: methoded_array now contains all Mxxx
15424: classes SAPI::get_env now returns info on pool more tests
15425:
15426: * src/include/pa_array.h, src/include/pa_hash.h,
15427: src/include/pa_memory.h, src/main/pa_charset.C, tests/001.html,
15428: tests/002.html, tests/003.html, tests/004.html, tests/005.html,
15429: tests/006.html, tests/007.html, tests/008.html, tests/009.html,
15430: tests/010.html, tests/011.html, tests/012.html, tests/013.html,
15431: tests/014.html, tests/Makefile, tests/outputs/create-dir,
15432: tests/results/001.processed, tests/results/002.processed,
15433: tests/results/003.processed, tests/results/004.processed,
15434: tests/results/005.processed, tests/results/006.processed,
15435: tests/results/007.processed, tests/results/008.processed,
15436: tests/results/009.processed, tests/results/010.processed,
15437: tests/results/011.processed, tests/results/012.processed,
15438: tests/results/013.processed, tests/results/014.processed: hash
15439: cloning fixed
15440:
15441: 2003-02-25 paf
15442:
15443: * src/main/pa_common.C: typo fixed
15444:
15445: 2003-02-24 paf
15446:
15447: * src/types/pa_vcookie.C: fixed all places with bad get_string(0)
15448: [one remained]
15449:
15450: * src/: include/pa_request.h, main/execute.C: few bad get_string(0)
15451: [should have been get_string(&pool)] todo: check other such calls
15452:
15453: * src/: main/compile.tab.C, main/execute.C, types/pa_vfile.h:
15454: test10, bad lookups
15455:
15456: xxx* xxx=smartptr.get(); << is bad style, after ";" original
15457: object got destructed, and xxx points to sky
15458:
15459: * ChangeLog, src/classes/string.C: match bug fixed
15460:
15461: * src/types/pa_vmail.C: body [text/html] transcoded to
15462: $.charset[specified] now
15463:
15464: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
15465: which failed to handle sigsetjmp+throw: crashed inside of
15466: pre-throw code. rewritten simplier [though duplicating
15467: closesocket code]
15468:
15469: * src/main/pa_common.C: stupid gcc [2.95.4] generated bad code
15470: which failed to handle sigsetjmp+throw: crashed inside of
15471: pre-throw code. rewritten simplier [though duplicating
15472: closesocket code]
15473:
15474: 2003-02-21 paf
15475:
15476: * operators.txt, src/targets/cgi/parser3.C, src/types/pa_vcookie.C:
15477: $cookie:name[$.expires[date << can be now]]
15478:
15479: written makefile with regression tests [raw]
15480:
15481: * src/targets/cgi/parser3.C: MAKE_TEST must be used inside of 'make
15482: tests' only [it's not forcing CGI mode now] now use -H to output
15483: CGI header when parser used in command line [useful for tests
15484: also]
15485:
15486: * src/targets/cgi/parser3.C: MAKE_TEST environment variable
15487: switches on CGI mode, and is used in regression tests
15488:
15489: * src/: include/pa_request.h, main/pa_request.C,
15490: targets/cgi/parser3.C, types/pa_vcookie.h, types/pa_venv.h: env
15491: fixed
15492:
15493: * src/: include/pa_memory.h, main/pa_memory.C: inlined memory
15494: handling pa_*
15495:
15496: * src/: include/pa_memory.h, main/pa_memory.C, include/pa_array.h,
15497: include/pa_exception.h, include/pa_pool.h, main/Makefile.am,
15498: main/main.dsp, main/pa_array.C, main/pa_pool.C: reorganized
15499: memory handling files
15500:
15501: * src/main/pa_array.C: pool::format_integer terminator fixed
15502:
15503: * src/: main/execute.C, targets/cgi/parser3.C: release mode now
15504: compiles OK test to show benefits of free
15505:
15506: * src/: classes/file.C, classes/image.C, classes/mail.C,
15507: classes/op.C, classes/xdoc.C, main/pa_charset.C, main/pa_exec.C,
15508: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
15509: types/pa_vimage.C, types/pa_vxdoc.h: fixed all cstr's that must
15510: use pool [as the one in ^process]
15511:
15512: * src/classes/op.C: fixed process. sould now check for all cstr's
15513: -- some must use pool [as the one in ^process]
15514:
15515: 2003-02-20 paf
15516:
15517: * src/: classes/date.C, classes/double.C, classes/file.C,
15518: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15519: classes/math.C, classes/op.C, classes/response.C,
15520: classes/string.C, classes/table.C, classes/void.C,
15521: classes/xdoc.C, classes/xnode.C, main/pa_string.C,
15522: types/pa_method.h, types/pa_value.C, types/pa_vmethod_frame.h:
15523: string cmp fixed
15524:
15525: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C: form
15526: values passed OK now
15527:
15528: 2003-02-19 paf
15529:
15530: * src/: classes/form.C, include/pa_charset.h, include/pa_pool.h,
15531: main/pa_charset.C, main/pa_exception.C, main/pa_request.C,
15532: main/pa_stylesheet_manager.C, targets/cgi/parser3.C,
15533: targets/isapi/parser3isapi.dsp, types/pa_vcookie.C,
15534: types/pa_vform.C, types/pa_vmail.C, types/pa_vxnode.C: found&kill
15535: all remaning leaks resulted from pooled::malloc calls [excluding
15536: in gd -- planning complete rewrite extremely ugly code]
15537:
15538: * src/targets/isapi/: pa_pool.C, pool_storage.h: removed unneeded
15539: files
15540:
15541: 2003-02-17 paf
15542:
15543: * src/: classes/date.C, classes/double.C, classes/file.C,
15544: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15545: classes/response.C, classes/string.C, classes/table.C,
15546: classes/xdoc.C, classes/xnode.h, include/pa_stack.h,
15547: include/pa_stylesheet_connection.h,
15548: include/pa_stylesheet_manager.h, sql/pa_sql_driver.h,
15549: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
15550: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.h,
15551: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
15552: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
15553: types/pa_wcontext.h, types/pa_wwrapper.h: fixed all remained bugs
15554: of unitialized simple-typed field
15555:
15556: * src/: classes/classes.C, classes/classes.h, main/execute.C,
15557: main/pa_charset.C, main/pa_request.C: another bug of unitialized
15558: simple-typed field fixed. todo: find&kill all like that one
15559:
15560: * src/: main/execute.C, targets/cgi/pa_pool.C,
15561: targets/cgi/parser3.C, targets/cgi/pool_storage.h: few bugs in
15562: debug output fixed
15563:
15564: * src/: include/pa_stack.h, main/compile.C, main/execute.C,
15565: main/pa_request.C: stack-stored items need extra .ref to prevent
15566: object_ptr from delete[them]
15567:
15568: * src/: classes/date.C, classes/op.C, classes/table.C,
15569: classes/xdoc.C, classes/xnode.C, include/pa_array.h,
15570: include/pa_charset.h, main/Makefile.am, main/main.dsp,
15571: main/pa_charset.C, main/pa_common.C,
15572: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
15573: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
15574: types/pa_vmail.C: fixed more leaks resulted from pooled::malloc
15575: calls
15576:
15577: * src/: main/pa_request.C, targets/cgi/parser3.C, types/pa_vfile.C:
15578: couple mem leaks rusulted from old pooled::malloc usage.
15579: todo:find more like those
15580:
15581: * src/main/: compile.C, compile_tools.C: 2*2!
15582:
15583: * src/: include/pa_array.h, include/pa_request.h, main/execute.C:
15584: stackItem fixed [there were no string on stack before]
15585:
15586: * src/: main/execute.C, main/pa_request.C,
15587: types/pa_vmethod_frame.C: first letters out OK
15588:
15589: * src/: classes/classes.C, include/pa_array.h, include/pa_hash.h,
15590: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
15591: main/pa_string.C, main/untaint.C, types/pa_value.h,
15592: types/pa_vint.h, types/pa_vstateless_class.h, types/pa_vstring.h,
15593: types/pa_vvoid.h, types/pa_wcontext.h: class fields of simple
15594: type not initialized with zeros :( while class fields of class
15595: types initialized with default constructors. learn C++
15596:
15597: * src/: classes/classes.awk, classes/double.C, classes/file.C,
15598: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
15599: classes/math.C, classes/xdoc.C, classes/xnode.C,
15600: include/pa_array.h, include/pa_string.h, main/pa_exec.C,
15601: types/pa_vmail.C: parser3.exe - 0 error(s), 0 warning(s)
15602:
15603: 2003-02-14 paf
15604:
15605: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C:
15606: 13 link errors
15607:
15608: * src/: classes/file.C, include/pa_request.h, main/pa_request.C,
15609: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
15610: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
15611: types/pa_vimage.C, types/pa_vtable.C: all compiled, only 14 link
15612: errors :)
15613:
15614: * src/: classes/classes.C, classes/classes.awk, classes/file.C,
15615: classes/hash.C, classes/mail.C, classes/op.C,
15616: include/pa_common.h, include/pa_request.h, include/pa_sapi.h,
15617: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C,
15618: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C:
15619: classes.lib - 0 error(s), 0 warning(s) parser.C compiled
15620:
15621: * src/: classes/classes.dsp, classes/op.C, classes/string.C,
15622: classes/table.C, include/pa_common.h, include/pa_globals.h,
15623: include/pa_pool.h, include/pa_request.h, main/pa_globals.C,
15624: main/pa_request.C, types/pa_value.h, types/pa_vhash.h,
15625: types/pa_vint.h, types/types.dsp: op compiled
15626:
15627: * src/: classes/classes.dsp, classes/response.C, classes/string.C,
15628: include/pa_dictionary.h, include/pa_string.h, main/pa_string.C,
15629: main/untaint.C, types/pa_vtable.h: string, response compiled
15630:
15631: 2003-02-07 paf
15632:
15633: * src/: classes/table.C, types/pa_vtable.h: table compiled
15634:
15635: 2003-02-06 paf
15636:
15637: * src/: classes/mail.C, include/pa_request.h, main/pa_request.C:
15638: mail compiled
15639:
15640: * src/: classes/image.C, classes/string.C, classes/xdoc.C,
15641: include/pa_common.h, include/pa_hash.h, main/pa_common.C,
15642: types/pa_vfile.h, types/pa_vimage.h: image compiled
15643:
15644: * src/classes/: file.C, form.C: form compiled
15645:
15646: * src/: classes/classes.dsp, classes/file.C, include/pa_common.h,
15647: include/pa_exec.h, main/pa_common.C, main/pa_exec.C,
15648: types/pa_vfile.C, types/pa_vfile.h: file compiled
15649:
15650: * src/: classes/hash.C, classes/math.C, types/pa_vmath.C,
15651: types/pa_vmath.h: math compiled [win32]
15652:
15653: * src/: classes/hash.C, include/pa_hash.h, include/pa_table.h,
15654: types/pa_vstring.h: hash compiled
15655:
15656: 2003-02-04 paf
15657:
15658: * src/: classes/date.C, classes/hash.C, include/pa_exec.h,
15659: include/pa_hash.h, include/pa_request.h, include/pa_string.h,
15660: include/pa_table.h, main/pa_common.C, main/pa_exec.C,
15661: main/pa_string.C, types/pa_method.h, types/pa_vform.C,
15662: types/pa_vhash.h: hash 50% compiled
15663:
15664: * src/: classes/date.C, classes/file.C, classes/hash.C,
15665: classes/image.C, classes/mail.C, classes/math.C, classes/op.C,
15666: classes/string.C, classes/table.C, classes/xdoc.C,
15667: classes/xnode.C, include/pa_request.h, main/pa_globals.C,
15668: main/pa_string.C: date compiled
15669:
15670: * src/classes/: classes.dsp, double.C: double compiled
15671:
15672: * src/: classes/date.C, classes/double.C, classes/file.C,
15673: classes/form.C, classes/hash.C, classes/image.C, classes/int.C,
15674: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
15675: classes/string.C, classes/table.C, classes/void.C,
15676: classes/xdoc.C, classes/xnode.C, types/pa_vdouble.h,
15677: types/pa_vhash.h, types/pa_vint.h, types/pa_vstring.h,
15678: types/pa_vtable.h, types/pa_vxdoc.h, types/pa_vxnode.h: int
15679: compiled
15680:
15681: * src/: classes/date.C, classes/double.C, classes/file.C,
15682: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
15683: classes/math.C, classes/op.C, classes/response.C,
15684: classes/string.C, classes/table.C, classes/void.C,
15685: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
15686: types/pa_vvoid.h: void compiled :)
15687:
15688: * src/: include/pa_globals.h, main/pa_cache_managers.C,
15689: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
15690: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15691: main/pa_globals.C, main/pa_pool.C, main/pa_sql_driver_manager.C,
15692: main/pa_string.C, main/pa_uue.C, main/untaint.C,
15693: types/pa_value.C, types/pa_vcookie.C, types/pa_vfile.C,
15694: types/pa_vimage.C, types/pa_vmath.C, types/pa_vrequest.C,
15695: types/pa_vresponse.C, types/pa_vstateless_class.C,
15696: types/pa_vstatus.C, types/pa_vstring.C, types/pa_vtable.C,
15697: types/pa_wcontext.C, types/types.dsp: removed stupid
15698: value_includes.h
15699:
15700: * src/types/: pa_value.C, pa_value_includes.h, pa_vrequest.C:
15701: trying to remove stupid value_includes.h
15702:
15703: * src/main/pa_exec.C: pa_exec compiled on win32
15704:
15705: * src/main/pa_exec.C: libmain.a compiled on six [unix]
15706:
15707: * src/: include/pa_globals.h, include/pa_request.h,
15708: types/pa_value.C, types/pa_value.h, types/pa_vclass.C,
15709: types/pa_vcookie.C, types/pa_vdate.h, types/pa_vfile.C,
15710: types/pa_vfile.h, types/pa_vmail.C, types/pa_vobject.C,
15711: types/pa_vrequest.C, types/pa_vstateless_class.C,
15712: types/pa_vstatus.C, types/pa_vtable.C: libtypes.a compiled gcc
15713:
15714: * src/: include/pa_config_includes.h, include/pa_dictionary.h,
15715: main/pa_common.C, main/pa_dictionary.C, main/pa_exec.C,
15716: main/pa_socks.C: libmain.a gcc and mail.lib msvc++ compiled
15717:
15718: * src/: include/pa_array.h, include/pa_config_includes.h,
15719: include/pa_dictionary.h, main/pa_dictionary.C, main/pa_exec.C,
15720: main/pa_socks.C, main/pa_sql_driver_manager.C: gcc libmain.a
15721: compiled
15722:
15723: * src/main/pa_globals.C: merged changes from 1.149-1.150 (stupid
15724: name conflicts)
15725:
15726: * src/: main/compile_tools.h, main/execute.C, main/pa_table.C,
15727: types/pa_vmethod_frame.h, types/pa_vvoid.h: yuk: gcc on cygwin
15728: yelds "virtual memory exhausted" while trying to compile
15729: execute.C [eating up to 127MB]
15730:
15731: 2003-02-03 paf
15732:
15733: * src/: include/pa_config_includes.h, include/pa_hash.h,
15734: include/pa_operation.h, include/pa_pool.h, include/pa_string.h,
15735: main/pa_common.C, types/pa_value.C, types/pa_value.h,
15736: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vhash.h,
15737: types/pa_vint.h, types/pa_vjunction.h,
15738: types/pa_vstateless_class.h, types/pa_vstring.h, types/types.dsp:
15739: started gcc compiling pa_common compiled
15740:
15741: * src/: include/pa_exception.h, include/pa_pool.h,
15742: main/pa_exception.C: exception gcc change #1
15743:
1.116 moko 15744: * src/include/: Makefile.am, pa_hash.h, pa_pool.h: gcc refused to
15745: compile _P identifier. it replaced it to some strange 0x0000040
1.95 moko 15746:
15747: * src/types/: pa_vmath.C, pa_vmethod_frame.C: vmath compiled
15748:
15749: * src/types/pa_vtable.C: vtable compiled
15750:
15751: * src/types/: pa_vstring.C, pa_vstring.h: vstring compiled
15752:
15753: * src/: include/pa_cache_managers.h, main/pa_request.C,
15754: types/pa_vstatus.C, types/pa_vstatus.h: vstatus compiled
15755:
15756: * src/types/pa_vstateless_class.C: vstateless_class compiled
15757:
15758: * src/types/: pa_vresponse.C, pa_vresponse.h: vresponse compiled
15759:
15760: * src/types/pa_vrequest.C: vrequest compiled
15761:
15762: * src/types/: pa_value.C, pa_value.h, pa_vclass.C, pa_vclass.h,
15763: pa_vobject.C, pa_vobject.h: vobject compiled
15764:
15765: * src/: classes/form.C, classes/mail.C, include/pa_request.h,
15766: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15767: types/pa_vform.C, types/pa_vmail.C, types/pa_vmail.h: vmail
15768: compiled
15769:
15770: * src/types/: pa_vimage.C, pa_vimage.h: vimage compiled
15771:
15772: * src/: include/pa_pool.h, main/pa_request.C, types/pa_value.C,
15773: types/pa_vclass.C, types/pa_vcookie.C, types/pa_vcookie.h,
15774: types/pa_vform.C, types/pa_vform.h, types/pa_vobject.h: vform
15775: compiled
15776:
15777: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
15778: main.lib - 0 error(s), 0 warning(s)
15779:
15780: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
15781: types/pa_value.h, types/pa_vmethod_frame.h: execute compiled
15782:
15783: 2003-01-31 paf
15784:
15785: * src/: include/pa_array.h, include/pa_operation.h,
15786: include/pa_request.h, main/execute.C, main/main.dsp,
15787: types/pa_vjunction.h: started last file from main library:
15788: execute
15789:
15790: * src/: include/pa_request.h, include/pa_sapi.h,
15791: main/compile.tab.C, main/compile.y, main/compile_tools.h,
15792: main/pa_request.C, targets/cgi/parser3.C,
15793: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vfile.h,
15794: types/pa_vhash.h: pa_request compiled
15795:
15796: * src/: classes/op.C, classes/string.C, include/pa_common.h,
15797: include/pa_globals.h, include/pa_request.h,
15798: include/pa_sql_connection.h, main/compile.tab.C, main/compile.y,
15799: main/execute.C, main/main.dsp, main/pa_common.C,
15800: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15801: types/pa_vcode_frame.h, types/pa_vcookie.h, types/pa_vform.h,
15802: types/pa_vmail.C, types/pa_vmail.h, types/pa_vresponse.h,
15803: types/pa_vtable.h, types/pa_wcontext.C, types/pa_wcontext.h,
15804: types/types.dsp: most pa_request compiled
15805:
15806: * src/: classes/classes.C, classes/classes.h, classes/date.C,
15807: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
15808: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
15809: classes/op.C, classes/response.C, classes/string.C,
15810: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
15811: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
15812: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
15813: include/pa_config_fixed.h, include/pa_config_includes.h,
15814: include/pa_dictionary.h, include/pa_dir.h,
15815: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
15816: include/pa_hash.h, include/pa_opcode.h, include/pa_operation.h,
15817: include/pa_pool.h, include/pa_request.h,
15818: include/pa_request_charsets.h, include/pa_request_info.h,
15819: include/pa_sapi.h, include/pa_socks.h,
15820: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
15821: include/pa_stack.h, include/pa_string.h,
15822: include/pa_stylesheet_connection.h,
15823: include/pa_stylesheet_manager.h, include/pa_table.h,
15824: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
15825: lib/ltdl/config_fixed.h, lib/ltdl/ltdl.c, lib/ltdl/ltdl.h,
15826: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, lib/pcre/dftables.c,
15827: lib/pcre/get.c, lib/pcre/maketables.c, lib/pcre/pcre.c,
15828: lib/pcre/pcre.h, lib/pcre/pcre_parser_ctype.c, lib/pcre/study.c,
15829: main/compile.C, main/compile.tab.C, main/compile.y,
15830: main/compile_tools.C, main/compile_tools.h, main/execute.C,
15831: main/main.dsp, main/pa_cache_managers.C, main/pa_charset.C,
15832: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
15833: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
15834: main/pa_globals.C, main/pa_pool.C, main/pa_request.C,
15835: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15836: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
15837: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/getopt.c,
15838: targets/cgi/getopt.h, targets/cgi/pa_pool.C,
15839: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
15840: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
15841: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
15842: targets/isapi/pool_storage.h, types/pa_value.C, types/pa_value.h,
15843: types/pa_value_includes.h, types/pa_vbool.h, types/pa_vclass.C,
15844: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
15845: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
15846: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
15847: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
15848: types/pa_vimage.C, types/pa_vimage.h, types/pa_vint.h,
15849: types/pa_vjunction.h, types/pa_vmail.C, types/pa_vmail.h,
15850: types/pa_vmath.C, types/pa_vmath.h, types/pa_vmethod_frame.C,
15851: types/pa_vmethod_frame.h, types/pa_vobject.C, types/pa_vobject.h,
15852: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
15853: types/pa_vresponse.h, types/pa_vstateless_class.C,
15854: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
15855: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
15856: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
15857: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
15858: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
15859: types/pa_wcontext.h, types/pa_wwrapper.h: grammar compiled
15860:
15861: * ChangeLog, src/classes/classes.h, src/classes/op.C,
15862: src/include/pa_cache_managers.h, src/include/pa_charset.h,
15863: src/include/pa_charsets.h, src/include/pa_common.h,
15864: src/include/pa_dictionary.h, src/include/pa_exception.h,
15865: src/include/pa_exec.h, src/include/pa_pool.h,
15866: src/include/pa_request.h, src/include/pa_sapi.h,
15867: src/include/pa_sql_connection.h,
15868: src/include/pa_sql_driver_manager.h, src/include/pa_string.h,
15869: src/include/pa_table.h, src/include/pa_uue.h, src/main/compile.C,
15870: src/main/compile.tab.C, src/main/compile_tools.C,
15871: src/main/compile_tools.h, src/main/main.dsp,
15872: src/main/pa_charset.C, src/main/pa_charsets.C,
15873: src/main/pa_common.C, src/main/pa_dictionary.C,
15874: src/main/pa_exception.C, src/main/pa_exec.C,
15875: src/main/pa_request.C, src/main/pa_sql_driver_manager.C,
15876: src/main/pa_string.C, src/main/pa_table.C, src/main/pa_uue.C,
15877: src/main/untaint.C, src/types/pa_value.C, src/types/pa_value.h,
15878: src/types/pa_vclass.h, src/types/pa_vcookie.C,
15879: src/types/pa_vcookie.h, src/types/pa_vdate.h,
15880: src/types/pa_vdouble.h, src/types/pa_venv.h,
15881: src/types/pa_vfile.C, src/types/pa_vfile.h, src/types/pa_vform.h,
15882: src/types/pa_vhash.h, src/types/pa_vimage.C,
15883: src/types/pa_vimage.h, src/types/pa_vint.h, src/types/pa_vmail.C,
15884: src/types/pa_vmail.h, src/types/pa_vmath.C, src/types/pa_vmath.h,
15885: src/types/pa_vmethod_frame.C, src/types/pa_vmethod_frame.h,
15886: src/types/pa_vobject.C, src/types/pa_vobject.h,
15887: src/types/pa_vrequest.C, src/types/pa_vrequest.h,
15888: src/types/pa_vresponse.C, src/types/pa_vresponse.h,
15889: src/types/pa_vstateless_class.C, src/types/pa_vstateless_class.h,
15890: src/types/pa_vstateless_object.h, src/types/pa_vstatus.h,
15891: src/types/pa_vstring.h, src/types/pa_vtable.h,
15892: src/types/pa_vvoid.h, src/types/pa_wcontext.C,
15893: src/types/pa_wcontext.h, src/types/pa_wwrapper.h: ConstStringPtr
15894: died, long live StringPtr
15895:
15896: 2003-01-30 paf
15897:
15898: * src/: include/pa_charset.h, include/pa_request.h,
15899: include/pa_sql_driver_manager.h, main/compile.tab.C,
15900: main/compile.y, main/compile_tools.h, main/pa_request.C,
15901: types/pa_vobject.h, types/pa_vstatus.h: grammar compiled
15902:
15903: * src/: classes/classes.h, include/pa_pool.h, main/compile.C,
15904: main/compile.tab.C, types/pa_value.h, types/pa_vfile.h,
15905: types/pa_vhash.h, types/pa_vmethod_frame.h,
15906: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
15907: types/types.dsp: vstateless_class compiled
15908:
15909: * src/main/compile.C: compile compiled
15910:
15911: * src/: include/pa_array.h, include/pa_operation.h,
15912: include/pa_table.h, main/compile_tools.C, main/compile_tools.h,
15913: main/pa_table.C: compile_tools compiled
15914:
15915: * src/: include/pa_operation.h, main/compile.y,
15916: main/compile_tools.C, main/compile_tools.h: started
15917: compile_tools. vagues ideas of how to free compiled code
15918:
15919: * src/: include/pa_opcode.h, main/compile_tools.h, main/execute.C,
15920: main/main.dsp, types/pa_value.C, types/pa_value.h,
15921: types/pa_vmethod_frame.h, types/pa_vstateless_class.h: value
15922: compiled
15923:
15924: 2003-01-29 paf
15925:
15926: * src/: include/pa_globals.h, include/pa_request.h,
15927: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
15928: types/pa_vmethod_frame.h, types/pa_vstateless_class.h,
15929: types/pa_wcontext.h, types/types.dsp: vmethodframe, pa_request.h
15930: compiled
15931:
15932: * src/lib/ltdl/config_fixed.h: libltdl compiled without warnings
15933: now
15934:
15935: * src/: include/pa_array.h, include/pa_exception.h,
15936: include/pa_pool.h, main/pa_exception.C: gd compiled
15937:
15938: * src/types/: pa_vfile.C, pa_vfile.h, pa_vimage.C, pa_vimage.h: gd
15939: compiled
15940:
15941: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
15942: types/pa_value.C, types/pa_value.h, types/pa_vfile.C,
15943: types/pa_vfile.h: vfile compiled
15944:
15945: * src/: include/pa_common.h, include/pa_globals.h,
15946: include/pa_string.h, main/pa_globals.C, types/pa_value.C,
15947: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
15948: types/pa_vform.C, types/pa_vform.h: vcookie compiled
15949:
15950: * src/: include/pa_exception.h, main/pa_cache_managers.C,
15951: main/pa_charsets.C, main/pa_common.C, main/pa_dir.C,
15952: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
15953: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
15954: main/pa_uue.C: #include "pa_value_includes.h" everywhere in main
15955:
15956: * src/: include/pa_request_charsets.h, include/pa_request_info.h,
15957: main/main.dsp, main/untaint.C: more compiled
15958:
15959: * src/: include/pa_charsets.h, include/pa_request.h,
15960: include/pa_request_info.h, include/pa_string.h,
15961: main/pa_charsets.C, types/pa_vrequest.C, types/pa_vresponse.C,
15962: types/pa_vresponse.h: vrequest compiled
15963:
15964: * src/types/: pa_value.h, pa_vdate.h, pa_vform.h, pa_vhash.h,
15965: pa_vobject.C, pa_vobject.h, pa_vrequest.C, pa_vresponse.C,
15966: pa_vresponse.h, pa_wcontext.h: vrequest compiled
15967:
15968: * src/: classes/classes.h, include/pa_charset.h,
15969: include/pa_charsets.h, include/pa_globals.h, include/pa_pool.h,
15970: include/pa_request.h, include/pa_string.h, main/main.dsp,
15971: main/pa_charset.C, main/pa_charsets.C, main/pa_globals.C,
15972: main/untaint.C, types/pa_value.h, types/pa_vdouble.h,
15973: types/pa_vfile.h, types/pa_vint.h, types/pa_vmath.C,
15974: types/pa_vrequest.C, types/pa_vrequest.h,
15975: types/pa_vstateless_class.h, types/pa_vstring.h,
15976: types/pa_vvoid.h: vrequest,vdouble,vint compiled
15977:
15978: * src/: classes/classes.h, classes/math.C, include/pa_pool.h,
15979: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
15980: main/main.dsp, types/pa_value.h, types/pa_vbool.h,
15981: types/pa_vclass.h, types/pa_vdouble.h, types/pa_venv.h,
15982: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
15983: types/pa_vjunction.h, types/pa_vmath.C, types/pa_vmath.h,
15984: types/pa_vobject.h, types/pa_vstateless_class.h,
15985: types/pa_vstateless_object.h, types/pa_vstatus.h,
15986: types/pa_vstring.h, types/types.dsp: vmath compiled
15987:
15988: 2003-01-28 paf
15989:
15990: * src/: classes/classes.h, classes/date.C, classes/file.C,
15991: classes/hash.C, classes/image.C, classes/table.C, classes/xdoc.C,
15992: classes/xnode.h, main/execute.C, main/main.dsp, types/pa_value.h,
15993: types/pa_vclass.C, types/pa_vclass.h, types/pa_vobject.C,
15994: types/pa_vobject.h, types/pa_vstateless_class.h: started main:
15995: compile_tools
15996:
15997: * src/: include/pa_charset.h, include/pa_exception.h,
15998: include/pa_request.h, include/pa_string.h, main/untaint.C:
15999: untaint compiled
16000:
16001: * ChangeLog, src/include/pa_array.h, src/include/pa_string.h,
16002: src/main/execute.C, src/main/untaint.C, src/types/pa_vmail.C:
16003: more compiled. struck with string::store_to needing to know
16004: source/client charsets
16005:
16006: * src/: include/pa_exception.h, include/pa_uue.h, main/pa_uue.C,
16007: types/pa_vfile.h: uue compiled
16008:
16009: * src/: include/pa_table.h, main/pa_string.C, main/pa_table.C:
16010: table compiled
16011:
16012: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C,
16013: main/pa_globals.C, main/pa_sql_driver_manager.C: globals compiled
16014:
16015: * src/: include/pa_charset.h, main/pa_charset.C,
16016: main/pa_charsets.C: charset/s simplified [charset::pool_for_load
16017: introduced]
16018:
16019: * src/: classes/date.C, include/pa_charset.h,
16020: include/pa_charsets.h, include/pa_globals.h, main/pa_charset.C,
16021: main/pa_charsets.C, main/pa_globals.C, main/pa_request.C:
16022: pa_charsets compiled
16023:
16024: * src/: include/pa_array.h, include/pa_exec.h, include/pa_hash.h,
16025: include/pa_pool.h, main/pa_exec.C: pa_exec win32 compiled
16026:
16027: * src/: include/pa_pool.h, main/pa_common.C, types/pa_vdouble.h:
16028: common compiled
16029:
16030: * src/: include/pa_charsets.h, main/pa_charsets.C,
16031: main/pa_sql_driver_manager.C: pa_charsets compiled
16032:
16033: * src/: include/pa_array.h, include/pa_charset.h,
16034: include/pa_charsets.h, include/pa_pool.h,
16035: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16036: include/pa_stack.h, include/pa_string.h,
16037: main/pa_sql_driver_manager.C, types/pa_vhash.h, types/pa_vint.h:
16038: sql_driver_manager compiled
16039:
16040: * etc/parser3.charsets/: koi8-r.cfg, windows-1251.cfg: ukranian
16041: letter i with two dots added to koi, all ukranian letters added
16042: to win1251.
16043:
16044: typographic simbol 0xb9 deleted from win1251 [strange one & were
16045: abscent from koi]
16046:
16047: 2003-01-27 paf
16048:
16049: * src/: include/pa_exception.h, include/pa_sql_connection.h,
16050: include/pa_sql_driver_manager.h, include/pa_string.h,
16051: main/pa_common.C, main/pa_exec.C, main/pa_sql_driver_manager.C,
16052: sql/pa_sql_driver.h: paused on sql_manager
16053:
16054: * src/: include/pa_cache_managers.h, include/pa_pool.h,
16055: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16056: include/pa_stack.h, main/pa_sql_driver_manager.C,
16057: types/pa_vtable.h, types/pa_vvoid.h: vtable compiled
16058:
16059: * src/: classes/op.C, include/pa_globals.h, include/pa_hash.h,
16060: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16061: include/pa_table.h, main/pa_sql_driver_manager.C,
16062: main/pa_table.C: table compiled
16063:
16064: * src/: include/pa_cache_managers.h, main/pa_cache_managers.C:
16065: cache_managers compiled
16066:
16067: * src/: include/pa_array.h, include/pa_charset.h,
16068: include/pa_pool.h, main/pa_charset.C: charset compiled
16069:
16070: * src/: include/pa_pool.h, main/pa_common.C: common compiled
16071:
16072: * src/: include/pa_array.h, include/pa_common.h, include/pa_hash.h,
16073: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16074: main/pa_string.C, types/pa_value.C, types/pa_value.h,
16075: types/pa_vhash.h, types/pa_vint.h, types/pa_vstateless_class.h,
16076: types/pa_wcontext.C, types/pa_wcontext.h: wcontext compiled
16077:
16078: 2003-01-24 paf
16079:
16080: * src/: classes/classes.C, classes/classes.h, include/pa_array.h,
16081: include/pa_common.h, include/pa_globals.h, include/pa_hash.h,
16082: include/pa_pool.h, include/pa_string.h, main/pa_common.C,
16083: main/pa_globals.C, main/pa_string.C, types/pa_value.h,
16084: types/pa_vbool.h, types/pa_vdouble.h, types/pa_vhash.h,
16085: types/pa_vint.h, types/pa_vjunction.h,
16086: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
16087: types/pa_vstatus.h, types/pa_vstring.h: more patched
16088:
16089: * src/: classes/op.C, include/pa_array.h, include/pa_exception.h,
16090: include/pa_hash.h, include/pa_pool.h, include/pa_string.h,
16091: include/pa_table.h, main/pa_dictionary.C, main/pa_exception.C,
16092: main/pa_string.C, main/pa_table.C: string compiled
16093:
16094: * src/: include/pa_array.h, include/pa_common.h,
16095: include/pa_dictionary.h, include/pa_exception.h,
16096: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
16097: main/pa_common.C, main/pa_dictionary.C, main/pa_exception.C,
16098: main/pa_string.C: dictionary compiled
16099:
16100: 2003-01-23 paf
16101:
16102: * src/: include/pa_array.h, include/pa_common.h,
16103: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
16104: include/pa_request.h, include/pa_string.h, main/pa_common.C,
16105: main/pa_exception.C, main/pa_globals.C, types/pa_value.C,
16106: types/pa_value.h: resurrected pool in new sense: now it's
16107: factory, producing&accounting memory chunks for read[autofree]
16108: buffers
16109:
16110: * src/: include/pa_array.h, include/pa_exception.h,
16111: include/pa_hash.h, include/pa_pool.h, include/pa_table.h,
16112: main/pa_exception.C, main/pa_table.C: table compiled
16113:
16114: * src/: classes/image.C, classes/op.C, include/pa_array.h,
16115: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
16116: include/pa_pool.h, include/pa_pragma_pack_begin.h,
16117: include/pa_pragma_pack_end.h, include/pa_sapi.h,
16118: include/pa_string.h, include/pa_table.h, include/pa_types.h,
16119: main/pa_exception.C, main/pa_globals.C, main/pa_string.C,
16120: main/pa_table.C: aint that easy
16121:
16122: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
16123: main/main.dsp: continued with Hash
16124:
16125: * src/main/pa_common.C: connect_string allocated on heap[wes on
16126: stack] now. and exception can be reported OK now [can be reported
16127: outside of pro c with that stack]
16128:
16129: 2003-01-22 paf
16130:
16131: * src/: include/pa_array.h, include/pa_charset.h,
16132: include/pa_dictionary.h, include/pa_hash.h, include/pa_pool.h,
16133: include/pa_string.h, main/pa_array.C, main/pa_hash.C,
16134: main/pa_pool.C, main/pa_string.C: started auto_ptr. PA_Object is
16135: base: contains references_count. auto_ptr template calls
16136: add_ref/release
16137:
16138: 2003-01-21 paf
16139:
16140: * src/: classes/classes.C, classes/classes.h, classes/date.C,
16141: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
16142: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
16143: classes/op.C, classes/response.C, classes/string.C,
16144: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16145: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
16146: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
16147: include/pa_config_fixed.h, include/pa_config_includes.h,
16148: include/pa_dictionary.h, include/pa_dir.h,
16149: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
16150: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
16151: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
16152: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
16153: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
16154: include/pa_stack.h, include/pa_string.h,
16155: include/pa_stylesheet_connection.h,
16156: include/pa_stylesheet_manager.h, include/pa_table.h,
16157: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
16158: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
16159: lib/pcre/pcre_parser_ctype.c, main/compile.C,
16160: main/compile_tools.C, main/compile_tools.h, main/execute.C,
16161: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
16162: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
16163: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
16164: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
16165: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
16166: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
16167: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
16168: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
16169: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
16170: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
16171: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
16172: types/pa_value.C, types/pa_value.h, types/pa_vbool.h,
16173: types/pa_vclass.C, types/pa_vclass.h, types/pa_vcode_frame.h,
16174: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
16175: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
16176: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16177: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
16178: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
16179: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16180: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16181: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16182: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16183: types/pa_vstateless_object.h, types/pa_vstatus.C,
16184: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
16185: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
16186: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
16187: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
16188: types/pa_wwrapper.h, main/compile.tab.C, main/compile.y:
16189: 2002->2003
16190:
16191: 2003-01-16 paf
16192:
16193: * operators.txt, src/include/pa_globals.h, src/main/pa_common.C,
16194: src/main/pa_globals.C: http:// introducing $.any-status(1)
16195:
16196: * operators.txt, src/include/pa_config_fixed.h,
16197: src/main/pa_common.C: http request now return status. and not
16198: fail on status!=200
16199:
16200: 2003-01-15 paf
16201:
16202: * src/main/pa_globals.C: localized pa_xmlFileRead/Close
16203:
16204: 2003-01-14 paf
16205:
16206: * src/lib/ltdl/: config.guess, config.sub, install-sh, missing,
16207: mkinstalldirs: removed some ancient files [they in / really]
16208:
16209: * src/lib/ltdl/: config_fixed.h, libltdl.dsp, ltdl.c: ltdl.c
16210: regretfully needed patch in two places. in config_fixed.h made
16211: stubs for lib to compile in MSVC
16212:
16213: 2003-01-13 paf
16214:
16215: * config.guess, config.sub, ltmain.sh: removed last piece of
16216: configure.in(libtool) hacks
16217:
1.116 moko 16218: * src/lib/ltdl/: COPYING.LIB, acinclude.m4, config.h,
1.95 moko 16219: config_auto.h.in, configure, configure.in, libltdl.dsp, ltdl.c,
16220: ltdl.h: moved to latest libtool (1.4.3)
16221:
16222: 2003-01-10 paf
16223:
16224: * src/lib/ltdl/: configure, configure.in: PROG_NM
16225:
16226: * src/main/pa_globals.C: moved to latest xml lib versions, changed
16227: patches. libxml2 >= 2.5.1
16228: [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >= 1.0.23
16229: [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >= 0.7.2
16230: [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16231:
16232: * INSTALL: moved to latest versions of xml libs libxml2 >=
16233: 2.5.1 [ftp://xmlsoft.org/libxml2-2.5.1.tar.gz] libxslt >=
16234: 1.0.23 [ftp://xmlsoft.org/libxslt-1.0.23.tar.gz] gdome2 >=
16235: 0.7.2 [http://gdome2.cs.unibo.it/tarball/gdome2-0.7.2.tar.gz]
16236:
16237: 2003-01-09 paf
16238:
16239: * INSTALL: xml,xslt,gdome lib urls updated
16240:
16241: * config.guess, config.sub, missing, mkinstalldirs,
1.116 moko 16242: src/include/pa_config_auto.h.in, src/lib/ltdl/config_auto.h.in,
1.95 moko 16243: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
1.116 moko 16244: src/targets/cgi/Makefile.am: moved to autoconf 2.57 & automake
16245: 1.7.2
1.95 moko 16246:
16247: * depcomp: moving to automake 1.7.2
16248:
16249: 2002-12-27 paf
16250:
16251: * src/include/pa_version.h: 0007
16252:
16253: * src/doc/: aliased.dox, index.dox, module.dox, pooled.dox: removed
16254: outdated parts, made links to language docs
16255:
16256: * src/include/pa_config_auto.h.in: comment
16257:
16258: 2002-12-26 paf
16259:
16260: * src/classes/file.C: ^file:fullpath[a.gif] when document root did
16261: not contain trailing / fixed.
16262:
16263: * INSTALL: changing SAFE_MODE politics
16264:
16265: * src/include/pa_config_auto.h.in: changing SAFE_MODE politics
16266:
16267: * src/main/: pa_common.C, pa_exec.C: changing SAFE_MODE politics
16268:
16269: 2002-12-25 paf
16270:
16271: * src/main/pa_globals.C: optimized-xml
16272:
16273: * src/main/pa_globals.C: optimized-as-is
16274:
16275: 2002-12-24 paf
16276:
16277: * src/main/: pa_common.C, pa_pool.C: pool::copy on zero size|ptr
16278: fixed [were really called with zero size when .html?a=&b=]
16279:
16280: * src/classes/mail.C: $MAIL in @conf now invalid when configured
16281: with --with-sendmail
16282:
16283: * src/main/pa_exec.C: fork/pipe error now [old always-pipe-error
16284: fixed]
16285:
16286: 2002-12-23 paf
16287:
16288: * src/types/pa_vcookie.C: $cookie:field[put value] fixed [were
16289: ignoring parameters & were storing only string with default
16290: expires
16291:
16292: * src/main/pa_charset.C: From: "Victor Fedoseev" <vvf_ru@mail.ru>
16293: To: "Alexandr Petrosian (PAF)" <PAF@design.ru> Sent: Monday,
16294: December 23, 2002 4:22 AM Subject: bug â
16295: Charset::transcode_buf2xchar
16296:
16297: 2002-12-20 paf
16298:
16299: * src/targets/cgi/parser3.C: removed last \n appending in non-win32
16300: non-cgi [script] runs
16301:
16302: 2002-12-19 paf
16303:
16304: * INSTALL: --without-iconv recommended [it crashes on some systems
16305: [tested on elik]] moreover, it's not needed there [parser
16306: registers charsets itself]
16307:
16308: * INSTALL: --without-iconv recommended [it crashes on some systems
16309: [tested on elik]]
16310:
16311: * operators.txt, src/include/pa_globals.h,
16312: src/include/pa_request.h, src/main/pa_globals.C,
16313: src/main/pa_request.C: $response:download
16314:
16315: * src/classes/mail.C: 'to' check bugfix [now checked only on ms
16316: compiler [win32]].
16317:
16318: 2002-12-18 paf
16319:
16320: * src/classes/xdoc.C: doc->URL on xdoc.load set correctly now
16321:
16322: 2002-12-17 paf
16323:
16324: * src/targets/cgi/parser3.C: merged die&iis changes
16325:
16326: * src/targets/cgi/parser3.C: 1. on win32 in die: abort() reverted
16327: to exit(1) 2. more flexible iilegal call check
16328:
16329: 2002-12-16 paf
16330:
16331: * ltmain.sh: some automakes silly insist on having this handy
16332:
16333: * src/main/untaint.C: filespec russian small 'r' changed to latin
16334: 'p' bug fix
16335:
16336: 2002-12-15 paf
16337:
16338: * src/main/untaint.C: filespec russian small 'r' changed to latin
16339: 'p'
16340:
16341: * configure.in, src/include/pa_config_auto.h.in,
16342: src/main/compile.C, src/main/pa_common.C: merged small changes
16343: from branch 6 to HEAD
16344:
16345: * src/main/compile.C: removed warning
16346:
16347: * src/main/pa_common.C: ftruncate having checked
16348:
16349: * configure.in, src/include/pa_version.h: new version
16350:
16351: 2002-12-14 paf
16352:
16353: * src/classes/table.C: removed unnecessary code
16354:
16355: * src/sql/pa_sql_driver.h: exception type fixed
16356:
16357: 2002-12-09 paf
16358:
16359: * src/types/pa_vvoid.h: $void.store[now] error
16360:
16361: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16362:
16363: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: ::die now
16364: tries to write core dump
16365:
16366: * src/targets/cgi/parser3.C: ::die now tries to write core dump
16367:
16368: * src/: classes/hash.C, classes/string.C, classes/table.C,
16369: classes/void.C, main/pa_sql_driver_manager.C,
16370: sql/pa_sql_driver.h: changed exception handling mech in sql
16371: handlers #2
16372:
16373: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: changed
16374: exception handling mech in sql handlers
16375:
16376: * src/sql/pa_sql_driver.h: changed exception handling mech in sql
16377: handlers
16378:
16379: * src/: classes/hash.C, classes/string.C, classes/table.C,
16380: classes/void.C, main/pa_sql_driver_manager.C,
16381: sql/pa_sql_driver.h: changed exception handling mech in sql
16382: handlers
16383:
1.116 moko 16384: * configure.in: removed configure.in:AC_LIBTOOL, it caused automake
16385: to write makefile which used libtool to install things, which is
16386: not needed
1.95 moko 16387:
16388: 2002-12-06 paf
16389:
16390: * operators.txt, src/main/compile.tab.C, src/types/pa_vhash.h:
16391: $hash.fields -- pseudo field to make 'hash' more like 'table'
16392:
16393: 2002-12-05 paf
16394:
16395: * src/: classes/mail.C, types/pa_vmail.C, types/pa_vmail.h: smtp
16396: cc/bcc OK now
16397:
16398: * src/main/untaint.C: mail header closed properly
16399:
16400: * src/: main/pa_common.C, main/untaint.C, types/pa_vmail.C: mail
16401: header ',' allowed. still bugs in smtp [only one receiptient
16402: works, cc, bcc ignored now, and MAILED ;)]
16403:
16404: [strncpy killed, memnchr used]
16405:
16406: * src/main/pa_table.C: table-copy now current=0
16407:
16408: * src/main/: pa_array.C, pa_table.C: wow! found/fixed bug in
16409: lowlevel proc
16410:
16411: * src/targets/cgi/parser3.C: more checks on
16412: http://domain/parser.cgi start [maybe some getenv returns "",
16413: checked that now
16414:
16415: * src/targets/cgi/parser3.C: more checks on
16416: http://domain/parser.cgi start [maybe some getenv returns "",
16417: checked that now
16418:
16419: * src/targets/cgi/parser3.C: error logging made unbuffered [so that
16420: out-of-mem errors reached log]
16421:
16422: * src/: classes/mail.C, targets/cgi/parser3.C, types/pa_vmail.C:
16423: mail:send MIME-Version default
16424:
16425: * src/main/main.dsp: pa_version included into main.dsp
16426:
16427: 2002-12-04 paf
16428:
16429: * src/types/pa_vform.C: $form:field string value cut by premature 0
16430:
16431: * parser3.dsw, src/main/compile.tab.C, src/main/main.dsp:
16432: lib/libltdl -> lib/ltdl Win32 changes. s
16433:
16434: * src/classes/classes.awk: more strict *.C$
16435:
16436: * gnu.dsp: restored
16437:
1.116 moko 16438: * configure.in, gnu.dsp, src/lib/Makefile.am,
16439: src/lib/ltdl/Makefile.am, src/lib/ltdl/README,
16440: src/lib/ltdl/acinclude.m4, src/lib/ltdl/config.guess,
16441: src/lib/ltdl/config.h, src/lib/ltdl/config.sub,
16442: src/lib/ltdl/config_auto.h.in, src/lib/ltdl/config_fixed.h,
16443: src/lib/ltdl/configure, src/lib/ltdl/configure.in,
16444: src/lib/ltdl/install-sh, src/lib/ltdl/libltdl.dsp,
16445: src/lib/ltdl/ltdl.c, src/lib/ltdl/ltdl.h: src/lib/ltdl/Makefile
16446: now created with /configure, not ltdl/configure, so it does have
16447: no problems with automake. ltdl/configure
16448: AC_OUTPUT(Makefile<<removed)
1.95 moko 16449:
16450: 2002-12-02 paf
16451:
16452: * operators.txt: removed outdated status:db
16453:
16454: * ChangeLog, src/classes/mail.C, src/include/pa_common.h,
16455: src/main/pa_common.C, src/main/pa_request.C,
16456: src/types/pa_vcookie.C, src/types/pa_vmail.C: http header lang of
16457: tainted parts becomes http-header
16458:
16459: 2002-11-29 paf
16460:
16461: * src/classes/date.C, src/classes/image.C, operators.txt: exif
16462: dates now objects of type date
16463:
16464: * src/classes/image.C: file.seek removed [it were used in image.C
16465: only, and for parser user this means that jpeg image has bad
16466: size in fragment's header] now used image.format
16467:
16468: * src/: include/pa_common.h, main/pa_common.C,
16469: types/pa_vresponse.C, types/pa_vresponse.h: http:// param values
16470: now handled exactly like $response:header values. e.g. can be
16471: hash [can have subattributes] & contain date values.
16472:
16473: * src/main/pa_common.C: http:// param values lang forced URI
16474:
16475: * src/main/pa_common.C: http:// tainted partes now %xx
16476:
16477: 2002-11-28 paf
16478:
16479: * operators.txt: http.timeout
16480:
16481: * src/classes/image.C: ^image.length now counts interchar space.
16482: plus space after last char
16483:
16484: * src/main/pa_string.C: PCRE_DOLLAR_ENDONLY
16485:
16486: * src/classes/image.C: ^image.font width measurer now scans full
16487: height [were -1]
16488:
16489: * configure.in: stopped double libltdl/Makefile generation
16490:
16491: * src/classes/image.C: ^image.text now outputs one pixel HIGHER
16492: chars [one top horizontal line of 1pixel height were missing]
16493:
16494: * src/classes/op.C: ^cache bug fixed. stupid compiler allowed
16495: 'false' to go into (Hash *) parameter
16496:
16497: 2002-11-27 paf
16498:
16499: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
16500: types/pa_vmail.C: response:body[file] if file nows it's name now
16501: returns content-disposition: >>attachment<<
16502:
16503: * src/classes/image.C: ^image.font << bad font file-size now
16504: properly reported
16505:
16506: 2002-11-26 paf
16507:
16508: * src/main/pa_request.C: fixed lang in reponse header
16509:
16510: * src/main/pa_common.C: utf8 prefix ignored @read text
16511:
16512: * operators.txt, src/main/pa_common.C: http:// response status!=200
16513: made exception: http.status with source=bad status#
16514:
16515: 2002-11-25 paf
16516:
16517: * configure.in, src/classes/image.C,
16518: src/include/pa_config_auto.h.in,
16519: src/include/pa_config_includes.h, src/main/Makefile.am,
1.116 moko 16520: src/main/pa_common.C, src/main/pa_globals.C: http:// and image
16521: const void related probs fixed
1.95 moko 16522:
16523: * operators.txt, src/main/pa_common.C: http fields now UPPERCASE
16524:
16525: $file[^file::load[http://there]] $file.SERVER
16526:
16527: * src/: classes/file.C, classes/image.C, classes/xdoc.C,
16528: include/pa_common.h, main/pa_common.C, main/pa_request.C: checked
16529: http options [invalid onces now reported] made default
16530: user-agent: paf
16531:
16532: * operators.txt, src/classes/file.C, src/classes/table.C,
16533: src/classes/xdoc.C, src/include/pa_common.h,
16534: src/include/pa_globals.h, src/main/pa_common.C,
16535: src/main/pa_globals.C, src/main/pa_request.C,
16536: src/types/pa_vfile.C, src/types/pa_vfile.h: table/xdoc/file::load
16537: now understand http:// prefix and additional params, sample:
16538: $rates[^xdoc::load[http://www.cbr.ru/scripts/XML_daily.asp?date_req=02/03/2002;
16539: $.USER-AGENT[parser3] ]]
16540:
16541: 2002-11-22 paf
16542:
16543: * src/classes/image.C, src/include/pa_globals.h,
16544: src/main/execute.C, src/main/pa_globals.C, src/types/pa_vimage.C,
16545: src/types/pa_vimage.h, operators.txt: $image.exif support
16546: $image.exif.DateTime & co
16547:
16548: 2002-11-21 paf
16549:
16550: * src/main/: pa_exec.C, untaint.C: cstr(UL_UNSPECIFIED) [not
16551: _PASS_APPENDED)
16552:
16553: * src/classes/image.C: jpeg size measure fixed: were badly skipping
16554: EXIF information [were big block and it's size were considered
16555: negative :(]
16556:
16557: * operators.txt, src/classes/image.C, src/include/pa_common.h,
16558: src/main/pa_common.C, src/types/pa_vmail.C: image.measure
16559: internals rewritten. no there's reader.seek, and all's ready for
16560: EXIF extraction [now we fail to measure files with EXIF info]
16561:
16562: * src/main/pa_common.C: O_TRUNCATE killed, ftruncate used instead:
16563: O_TRUNC truncates even exclusevely write-locked file [thanks to
16564: Igor Milyakov <virtan@rotabanner.com> for discovering]
16565:
16566: 2002-11-20 paf
16567:
16568: * src/targets/cgi/parser3.C: logging @signal += query_string
16569:
16570: * configure.in, src/include/pa_config_auto.h.in,
16571: src/include/pa_config_includes.h, src/targets/cgi/parser3.C:
16572: comment
16573:
16574: * src/targets/cgi/parser3.C: SIGNALS overriden @ main top
16575:
16576: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
16577: targets/cgi/parser3.C: SIGUSR1 >> writes to error_log uri of
16578: currently processed document SIGPIPE >> interrupts request
16579: processing [exception = DB rollback]
16580:
16581: * src/main/pa_exec.C: comment
16582:
16583: * src/main/pa_exec.C: pa_exec: data written only if size>0
16584:
16585: * operators.txt, src/classes/file.C: ^file::exec/cgi[file;$.stdin[]
16586: << disable HTTP-POST repassing
16587:
16588: * src/: include/pa_config_fixed.h, main/pa_common.C,
16589: main/pa_exec.C, targets/cgi/parser3.C: ^file:exec/cgi [pa_exec]
16590: pipe read errors now checked
16591:
16592: 2002-11-19 paf
16593:
16594: * src/targets/cgi/parser3.C: removed #ifdef WIN32 around check of
16595: CGI: Illegal call
16596:
16597: 2002-11-01 paf
16598:
16599: * src/main/execute.C: comment
16600:
16601: 2002-10-31 paf
16602:
16603: * src/main/execute.C: found out why, checked that for now. todo:
16604: find out a way for that user could do that
16605:
16606: * src/types/pa_vstateless_object.h: object put replaces static
16607: parent if any
16608:
16609: * src/types/pa_vobject.C: object put replaces static parent if any
16610:
16611: * src/: classes/form.C, classes/mail.C, classes/op.C,
16612: classes/xnode.h, main/compile.tab.C, main/execute.C,
16613: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
16614: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
16615: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
16616: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
16617: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
16618: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
16619: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
16620: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
16621: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16622: types/pa_vstateless_object.h, types/pa_vstatus.C,
16623: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
16624: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
16625: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
16626: types/pa_wwrapper.h: static fix merged
16627:
16628: * src/: main/compile.tab.C, types/pa_vobject.C: killed
16629: $virtual_fields in dynamic, but one can reach derived
16630: static[class] variable from base
16631:
16632: * src/: classes/op.C, types/pa_value.h, types/pa_vmethod_frame.h,
16633: types/pa_vobject.C, types/pa_vobject.h,
16634: types/pa_vstateless_class.C, types/pa_vstateless_class.h: fixed
16635: statics, left $virtual_fields in dynamic
16636:
16637: * src/types/: pa_vobject.C, pa_vstateless_class.C: realized that
16638: one can't remember derivates in base class: there's so many of
16639: them. also there can be no virtual method calls in static
16640: classes
16641:
16642: * src/: classes/form.C, classes/mail.C, classes/op.C,
16643: classes/xnode.h, main/execute.C, main/pa_request.C,
16644: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
16645: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
16646: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
16647: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
16648: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
16649: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
16650: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
16651: types/pa_vresponse.C, types/pa_vresponse.h,
16652: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
16653: types/pa_vstateless_object.h, types/pa_vstatus.C,
16654: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.C,
16655: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
16656: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
16657: types/pa_wwrapper.h: static call $self fixed
16658:
16659: * src/main/execute.C: comment
16660:
16661: * src/: classes/op.C, types/pa_value.h, types/pa_vobject.h:
16662: ^process[$caller.self]{...} now compiles to last derived object
16663: part of that 'self'
16664:
16665: 2002-10-29 paf
16666:
16667: * src/targets/isapi/parser3isapi.C: comment on 404 bad status
16668: re-passing [iis to blame]
16669:
16670: * src/classes/string.C: changed string.save to pass current sql
16671: connection to cstr thus one can ^connect[some server]{
16672: $s[insert into table x (x) values (^taint[sql]{value})]
16673: ^s.save[some.sql] } and he'd get in some.sql file code with
16674: properly escaped. [tried in mssql->mysql export->import of
16675: binary data]
16676:
16677: 2002-10-25 paf
16678:
16679: * src/types/pa_vresponse.C: case insensitive response user fields
16680: get/put
16681:
16682: * src/: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
16683: types/pa_vresponse.C: saving for maybe-future
16684:
16685: 2002-10-23 paf
16686:
16687: * operators.txt, src/classes/table.C: ^table.hash{code}...
16688: ^table.hash(expr)...
16689:
16690: * src/types/pa_vmail.C: email whitespace trimBoth-ed
16691:
16692: 2002-10-22 paf
16693:
16694: * src/types/: pa_vform.C, pa_vform.h: removed needless
16695: VForm::Append...(...Value)
16696:
16697: * src/main/execute.C: $.name outside of $name[...] checked
16698:
16699: * src/main/: compile.tab.C, compile.y: lexer changed to fix
16700: ^call[]^#HH bug [that situation yelded no EON, which whas wrong]
16701:
16702: 2002-10-21 paf
16703:
16704: * operators.txt, src/types/pa_vform.C, src/types/pa_vform.h:
16705: $form:qtail $form:imap.x/y
16706:
16707: * operators.txt, src/types/pa_vform.C: $form:nameless =
16708: "?value&...", "...&value&...", "...&value"
16709:
16710: * operators.txt, src/types/pa_vform.C: $form:image-map
16711:
16712: * operators.txt, src/classes/file.C: /some/page.html:
16713: ^file:fullpath[a.gif] => /some/a.gif
16714:
16715: 2002-10-17 paf
16716:
16717: * src/main/: compile.tab.C, compile.y: operators precedence changed
16718: a little: logical not and bitwise negation precedence made
16719: highest, << and >> bitshits precedence made equal [were << higher
16720: than >>]
16721:
16722: * src/classes/op.C: exception handling fixed [were bad with
16723: contexts]
16724:
16725: 2002-10-16 paf
16726:
16727: * src/: classes/op.C, include/pa_request.h, main/execute.C,
16728: main/pa_request.C: Request::self considered equal to
16729: VMethodFrame::self, and removed, Request::get_self() mapped to
16730: VMethodFrame.self()
16731:
16732: * src/: classes/op.C, main/pa_request.C: VMainClass now has name =
16733: $hash in open field now gives old good error meesage
16734:
16735: 2002-10-15 paf
16736:
16737: * src/types/pa_vjunction.h: ^if(def $junction){was true}{now false}
16738: use ^if($junction is junction){was and now true}
16739:
16740: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
16741: include/pa_pool.h, main/pa_charset.C, main/pa_pool.C,
16742: types/pa_vxnode.C: xml->parser strings now have origin, which
16743: points to place where value left xml library and came to parser:
16744: place of dom field extraction/call
16745:
16746: * src/: classes/op.C, include/pa_opcode.h, include/pa_request.h,
16747: main/compile.tab.C, main/compile.y, main/execute.C,
16748: types/pa_vmethod_frame.h: removed last pieces of old code
16749: allowing $junction.xxx at compile time
16750:
16751: * ChangeLog, src/classes/op.C, src/main/compile.tab.C,
16752: src/main/compile.y, src/types/pa_vmethod_frame.h: process[self]
16753: objects also considered [were only classes]
16754:
16755: * ChangeLog, src/classes/op.C, src/include/pa_request.h,
16756: src/types/pa_vmethod_frame.h: ^process[CLASS]{body} now executed
16757: with CLASS self. [ (request&method_frame).self temporarily
16758: changed ]
16759:
16760: * src/classes/: hash.C, op.C: method_frame now always changed, with
16761: no exception to native calls. for&foreach changed to use
16762: method_frame.caller for their var's name context
16763:
16764: * src/: main/execute.C, targets/cgi/parser3.C,
16765: types/pa_vstateless_class.C, types/pa_vstateless_class.h:
16766: compiling to system classes disabled
16767:
16768: * operators.txt, src/classes/op.C:
16769: ^process[$caller.CLASS]{code-string} added
16770:
16771: * operators.txt, src/classes/op.C, src/main/compile.tab.C,
16772: src/main/compile.y, src/main/execute.C, src/main/pa_request.C,
16773: src/types/Makefile.am, src/types/pa_vjunction.C,
16774: src/types/pa_vjunction.h, src/types/pa_vmethod_frame.h,
16775: src/types/types.dsp: removed $junction.get $junction.set[]
16776: introducing $caller
16777:
16778: * src/types/pa_value.h: removed outdated comments. doxygen would
16779: find them lower by inheritance tree
16780:
16781: * src/types/pa_vjunction.C: ident
16782:
16783: 2002-10-14 paf
16784:
16785: * src/classes/op.C: process compiles to code's class class
16786:
16787: * src/: classes/form.C, classes/mail.C, classes/op.C,
16788: include/pa_request.h, main/compile.C, main/compile.tab.C,
16789: main/compile.y, main/execute.C, main/pa_request.C,
16790: types/pa_vstateless_class.h: operators now main-class-methods
16791:
16792: * src/: classes/op.C, include/pa_request.h: ^try{^call{}} now has
16793: better stack trace [has "call" & co there]
16794:
16795: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
16796: operators @auto now executed in MAIN context
16797:
16798: * src/main/execute.C: operator execution context now = MAIN, not
16799: closest stack frame
16800:
16801: @touchit[] $i[after]
16802:
16803: ----t.html $i[before] << local ^touchit[] $i << now 'before',
16804: were 'after'
16805:
16806: ---t.html $i[before] << notlocal [main] ^touchit[] $i << now
16807: 'after'
16808:
16809: * src/main/execute.C: comment
16810:
16811: * src/types/: pa_vclass.C, pa_vobject.h, pa_vstateless_class.C,
16812: pa_vstateless_class.h: $form:CLASS resurrected [wes killed in
16813: action]
16814:
16815: * src/types/pa_vxnode.C: misreplace fixed
16816:
16817: * configure, configure.in, src/include/pa_config_auto.h.in,
16818: src/types/pa_vstatus.C, operators.txt:
16819: $status:rusage.tv_secs/usecs introduced
16820:
16821: 2002-10-09 paf
16822:
16823: * src/classes/: double.C, int.C, string.C: ^string.int[] now failes
16824: on empty string [or uses (default)]
16825:
16826: 2002-10-08 paf
16827:
16828: * src/main/untaint.C: mail header quoted printable changed after
16829: RFC reread
16830:
16831: * operators.txt: plan on ^if(method
16832:
16833: * src/types/pa_vxnode.C: misreplace
16834:
16835: 2002-09-24 paf
16836:
1.116 moko 16837: * src/targets/cgi/Makefile.am: LIBS were bad name in .am
1.95 moko 16838:
16839: * src/types/pa_vmail.C: HAVE_TIMEZONE & co now checked and
16840: mailreceive would compile on freebsd now
16841:
16842: * src/include/pa_config_fixed.h, src/types/pa_vmail.C, acconfig.h,
16843: configure, configure.in, src/include/pa_config_auto.h.in,
1.116 moko 16844: src/targets/cgi/Makefile.am: HAVE_TIMEZONE & co now checked and
16845: mailreceive would compile on freebsd now
1.95 moko 16846:
16847: * src/: classes/file.C, main/untaint.C: 1. file spec language
16848: changed: now there are only few chars are untainted: * ? ' " < >
16849: | and, on unix, : \ ~ [russian letters and SPACES now enabled,
16850: one should use ^untaint[uri]{...} now]
16851:
16852: 2. $list[^file:list[dir]] now returns simply tainted names in
16853: $list.name, not tainted as filespec
16854:
16855: @russianindex[] #dir with files with russian-lang names
16856: $where[dir]
16857:
16858: $dir[^file:list[$where;\.txt^$]] ^dir.menu{ <a
16859: href=$where/^untaint[uri]{$dir.name}>$dir.name</a><br> }
16860:
16861: 2002-09-23 paf
16862:
16863: * src/types/pa_vdouble.h: double->int round added
16864:
16865: * src/classes/date.C: date bug fix, now
16866: round(floatDays*secondsPerDay)
16867:
16868: * src/classes/date.C: date bug fix, now
16869: round(floatDays*secondsPerDay)
16870:
16871: 2002-09-20 paf
16872:
16873: * src/main/execute.C: code junction calls disabled [before: code
16874: was compiled in such a way, that there were no code-junctions in
16875: OP_CALL]
16876:
16877: this now error: @badjunctioncall[] ^badjunctioncallinside{code}
16878:
16879: @badjunctioncallinside[code] ^code[]
16880:
16881: * src/main/: compile.tab.C, compile.y: changed grammer on junction
16882: expanding to include ^junction.method
16883:
16884: * src/main/pa_common.C: -d "DIR/" now true
16885:
16886: * src/classes/xdoc.C: xdoc::create[name] now sets $request:charset
16887: as internal xdoc encoding, and after decoding attributes set by
16888: dom functions now encoded OK, not as digital entities
16889:
16890: * src/classes/xdoc.C: empty transform result, being taken as file
16891: now returns empty file, not raises stupid error about "stat-ed
16892: file"
16893:
16894: * src/types/pa_vhash.h: hash.foreach modification of existing keys
16895: allowed
16896:
16897: * src/types/types.dsp: introducing $junction.get/put(1) one can
16898: write iterators now:
16899:
16900: ^user-foreach[key;value]{$key=$value<br>}
16901:
16902: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16903: $code.value($i*2) $code }
16904:
16905: * src/main/compile_tools.h: mistype
16906:
1.116 moko 16907: * src/targets/cgi/Makefile.am: binaries now depend on makefiles,
16908: thus taking linking options configure changes into account [were:
16909: ignoring]
1.95 moko 16910:
16911: * src/types/: pa_vjunction.C, Makefile.am: introducing
16912: $junction.get/put(1) one can write iterators now:
16913:
16914: ^user-foreach[key;value]{$key=$value<br>}
16915:
16916: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16917: $code.value($i*2) $code }
16918:
16919: * src/: include/pa_opcode.h, include/pa_request.h,
16920: main/compile.tab.C, main/compile.y, main/execute.C,
16921: main/main.dsp, targets/cgi/parser3.dsp, types/pa_vjunction.h:
16922: introducing $junction.get/put(1) one can write iterators now:
16923:
16924: ^user-foreach[key;value]{$key=$value<br>}
16925:
16926: @user-foreach[key;value;code] ^for[i](1;10){ $code.key($i)
16927: $code.value($i*2) $code }
16928:
16929: 2002-09-19 paf
16930:
1.116 moko 16931: * Makefile.am: new: make commit
1.95 moko 16932:
16933: * aclocal.m4: forced to be older
16934:
16935: 2002-09-18 paf
16936:
16937: * parser3.dsw, src/include/pa_opcode.h, src/main/compile.tab.C,
16938: src/main/compile.y, src/main/execute.C: << >> int shifts
16939:
16940: * src/: include/pa_common.h, include/pa_request.h,
16941: main/pa_common.C, main/pa_request.C: auto.p exists but unreadable
16942: - now this - fatal error
16943:
16944: * src/classes/file.C: ^file::exec/cgi $.stdin[can be file now] so
16945: that one can pass binary data there
16946:
16947: * src/: classes/date.C, classes/double.C, classes/file.C,
16948: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
16949: classes/op.C, classes/response.C, classes/string.C,
16950: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
16951: include/pa_request.h: pa_request contexts made privated, plus
16952: get_{self/method_frame} to read. Request_context_saver used in
16953: ^try to save flang too. [were not saved]
16954:
16955: * src/types/pa_vresponse.C: header value chains joined before
16956: output, this should help $.subject[$var $var] from being
16957: converted to subject: ?koi8-r?Q?...?= ?koi8-r?Q?...?=
16958:
16959: 2002-09-17 paf
16960:
16961: * src/: main/execute.C, types/pa_value.h, types/pa_vmethod_frame.h:
16962: removed changes, operators executed with calling self. lots of
16963: code with ^include code relies on defined/defining self variables
16964:
16965: $a[1] ^include[print_a.p] print_a.p: $a
16966:
16967: ^include[set_a.p] a=$a set_a.p: $a[1]
16968:
16969: * src/: classes/op.C, main/execute.C, main/pa_request.C,
16970: types/pa_value.C, types/pa_value.h, types/pa_vmethod_frame.h,
16971: types/pa_vstateless_class.h: operators now executed with MAIN
16972: self. it's for ^include sake, too strong a change
16973:
16974: * src/classes/op.C: made place for ^process to compile it's code to
16975: in case of no self
16976:
16977: * src/main/execute.C: found ancient param to Junction, removed.
16978: allowed passing self to native_code_operators [for ^process to
16979: work, she needs self]
16980:
16981: * src/: main/execute.C, types/pa_value.C, types/pa_value.h,
16982: types/pa_vstateless_class.h: found ancient param to Junction,
16983: removed. allowed passing self to native_code_operators [for
16984: ^process to work, she needs self]
16985:
16986: * src/: main/execute.C, main/pa_request.C, types/pa_value.C,
16987: types/pa_value.h, types/pa_vmethod_frame.h,
16988: types/pa_vstateless_class.h: allowed Request.self to be 0,
16989: checked that in VMethodFrame get/put and $self.
16990:
16991: * src/classes/: table.C, xdoc.C: table::sql options table::create
16992: copy options options checked, wrong option now fatal error
16993:
16994: * src/main/pa_string.C: string.replace fixed [were missing words on
16995: pieces boundaries]
16996:
1.150 moko 16997: * configure, configure.in: .so now detected [can be .sl on hpux,
16998: .dll on cygwin, .so in other cases)
1.95 moko 16999:
17000: * configure, configure.in: .so now detected [can be .sl on hpux,
17001: .dll on cygwin, .so in other cases)
17002:
17003: * operators.txt, src/classes/hash.C, src/classes/table.C,
17004: src/include/pa_globals.h, src/main/pa_globals.C: table.sql
17005: hash::sql flag to allow duplicate keys [$.distinct(1/0)] first
17006: record taken [were last]
17007:
17008: * src/: classes/hash.C, classes/table.C,
17009: include/pa_sql_connection.h: table.sql hash::sql duplicate keys
17010: now errors
17011:
17012: * src/classes/hash.C: foreach delims bug fixed [were ,2,3]
17013:
17014: * src/classes/: op.C, table.C: menu/for delims bug fixed [were
17015: ,2,3]
17016:
17017: 2002-09-16 paf
17018:
17019: * src/classes/file.C: file::cgi line ends can be both unix & dos.
17020: and they can be unix [\n\n] on win when 'use CGI' used, it causes
17021: stdout to be binary. now detected closest header break.
17022:
17023: * src/: main/untaint.C, types/pa_vmail.C: mail:send closing ?= now
17024: closed right
17025:
17026: 2002-09-13 paf
17027:
17028: * operators.txt, src/main/compile.tab.C, src/main/compile.y,
17029: src/main/compile_tools.h: (expression #comment)
17030:
17031: (multiline expression #comment line2 #comment )
17032:
17033: (expression #comment with (brackets) comment) << OK
17034:
17035: * operators.txt, src/main/compile.tab.C, src/main/compile.y: !|
17036: bitwise !|| numerical xor now [preparing for expression
17037: #comments]
17038:
17039: * src/main/: compile.tab.C, compile.y: @method[$name] now parse
17040: error
17041:
17042: * src/: include/pa_config_fixed.h, main/pa_socks.C: HAVE_WINSOCK_H
17043: cheched in pa_socks.C
17044:
1.116 moko 17045: * configure, configure.in, src/include/pa_config_auto.h.in:
17046: HAVE_WINSOCK_H created in configure.in
1.95 moko 17047:
17048: * src/: main/compile.tab.C, main/compile.y, types/pa_vresponse.C:
17049: cookie date now clean [were mistakenly tainted & that worked bad
17050: with opera -- 'happily' that worked OK with msie]
17051:
17052: 2002-09-12 paf
17053:
17054: * src/types/: pa_vclass.C, pa_vmail.C, pa_vobject.C: VObject &
17055: VClass get_element now first looks to fields, next to methods &
17056: co todo: the rest reason: more speed
17057:
17058: * src/main/untaint.C: quoted printable encoding stops before
17059: \s*<...>$
17060:
17061: * src/main/untaint.C: quoted printable ' ' now =20 and encoding
17062: stops before <...>$
17063:
17064: 2002-09-11 paf
17065:
17066: * src/: main/pa_charset.C, targets/cgi/parser3.dsp: while fixing (
17067: xmlCharEncodingInput/OutputFunc callbacks returned bad value )
17068: forgot to check users of those funcs. not all were using that
17069: return value convention
17070:
17071: * src/lib/pcre/ibm-1254.ucm, etc/parser3.charsets/windows-1254.cfg:
17072: windows-1254 added
17073:
17074: 2002-09-10 paf
17075:
17076: * src/: classes/op.C, main/execute.C, types/pa_wcontext.h:
17077: VCodeFrame parent param were specified badly
17078:
17079: * src/: main/execute.C, types/pa_value.h, types/pa_wwrapper.h:
17080: WWrapper which used in constructing objects(second param to sql
17081: method) ^...sql{}[$.default{code}] now has parent, wich helps
17082: code in hash to survivi
17083:
17084: * src/: include/pa_request.h, main/execute.C: removed redundant
17085: param to execute [stack said 'thanks']
17086:
17087: * src/: classes/op.C, main/execute.C, types/pa_value.C,
17088: types/pa_value.h, types/pa_vcode_frame.h,
17089: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17090: types/pa_wcontext.h, types/pa_wwrapper.h: moved junction kill
17091: responsibility to wcontext
17092:
17093: * src/classes/file.C: decided not to log exec's with stderr, that
17094: could be warnings, and it's up to scritper to log/show them
17095:
17096: * src/: classes/double.C, main/execute.C: double:sql badly called
17097: write_assign_lang, not write_no_lang, thus doing unnecessary
17098: double/string converstion, which were loosing time&precesion
17099:
17100: * src/: main/pa_charset.C, types/pa_vmail.C:
17101: xmlCharEncodingInput/OutputFunc callbacks returned bad value in
17102: case of unfinished in buffer processing, causing accidental
17103: transcode stop [in case that source enc != utf-8 & there is
17104: incomplete utf-8 sequence at the end of 16000block iside of
17105: libxml lib] tfm readed & code updated
17106:
17107: 2002-09-04 paf
17108:
17109: * configure: makes with sjlj
17110:
17111: * INSTALL, src/include/pa_config_fixed.h,
17112: src/include/pa_sql_connection.h,
17113: src/main/pa_sql_driver_manager.C: -with-sjlj-exceptions define
17114: checked. on win32 it made default
17115:
17116: * src/include/pa_config_auto.h.in: sjlj define
17117:
17118: * configure, configure.in: introducing --with-sjlj-exceptions [hpux
17119: can not work with longjump/throw pair, and one must switch that
17120: on there. todo: detect that automatically]
17121:
17122: * src/types/pa_vxnode.C: removed too strong checks of
17123: xnode.elements. now, for instance, if element does not have any
17124: attributes, $xnode.attributes is void, not error
17125:
17126: 2002-09-02 paf
17127:
17128: * operators.txt, src/main/execute.C, src/targets/cgi/parser3.dsp:
17129: removed double_result, didn't help
17130:
17131: * src/main/execute.C: double_result made to move that var away from
17132: hungry g++ optimizer (-O2), before: it were optimized and
17133: comparison operators worked badly
17134:
17135: * src/types/pa_vdate.h: removed debug
17136:
1.116 moko 17137: * Makefile.am, src/types/pa_vdate.h: happy now only install-exec
1.95 moko 17138:
17139: * src/main/execute.C: fixed numeric < & co so that thay now use
17140: c=a-b, c OPERATOR 0. this works fine on solaris/intel for still
17141: unknown reason.
17142:
17143: 2002-08-29 paf
17144:
17145: * parser3.dsw, src/classes/classes.dsp, src/classes/hash.C,
17146: src/classes/op.C, src/classes/string.C, src/include/pa_request.h,
17147: src/lib/md5/md5.dsp, src/main/execute.C, src/main/main.dsp,
17148: src/main/pa_request.C, src/targets/cgi/parser3.dsp,
17149: src/types/pa_value.C, src/types/pa_value.h, src/types/pa_vmail.C,
17150: src/types/pa_vmethod_frame.h, src/types/pa_wcontext.h,
17151: src/types/types.dsp: junction_cleaner moved to auto VMethodFrame
17152: [called less frequent, allowed to remove ugly
17153: Junction.change_context-s from many places, switch,
17154: mail:send..html{}, ..] request.root renamed to method_frame [more
17155: easyreading] ancient {...PUSH/POPs...} changed to stack vars
17156: [speed up]
17157:
17158: 2002-08-28 paf
17159:
17160: * src/types/pa_vcookie.C: $cookie:name[&] $cookie:name << now
17161: tainted
17162:
17163: * src/types/pa_vcookie.C: fixed cookie delete when
17164: $cookie:name[$.value[]]
17165:
17166: * operators.txt, src/classes/string.C:
17167: ^string.split[delim[;options]]
17168:
17169: 2002-08-27 paf
17170:
1.116 moko 17171: * etc/parser3.charsets/Makefile.am: merged from 3.0.0005
1.95 moko 17172:
17173: * operators.txt, src/main/compile.tab.C, src/main/compile.y: # now
17174: delimiter
17175:
17176: * INSTALL: recommended latest gmime 1.0.5
17177:
17178: 2002-08-26 paf
17179:
17180: * configure, configure.in: apache13/hook added to make dist.
17181:
17182: 2002-08-23 paf
17183:
17184: * src/: include/pa_common.h, main/pa_common.C,
17185: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: when auto.p
17186: beside binary [cgi, isapi] not accessible [due to bad rights or
17187: whatever] it's error now
17188:
17189: 2002-08-21 paf
17190:
1.116 moko 17191: * Makefile.am: can use: make happy equals to make update install
1.95 moko 17192:
17193: * src/main/: compile.tab.C, compile.y, compile_tools.C,
17194: compile_tools.h: "BASE:" "BASE::" syntax allowed, means "base
17195: class". compiled as if here they named base class
17196:
17197: * src/main/pa_string.C: fixed bad language bug, [were wrong string
17198: cloning constructor]
17199:
17200: * src/: main/execute.C, types/pa_vobject.h: fixed virtual calls
17201:
1.150 moko 17202: * src/: targets/cgi/parser3.C, types/pa_vfile.C, types/pa_vmail.C:
1.95 moko 17203: $mail.received.file.value.content-type fixed
17204:
17205: 2002-08-20 paf
17206:
17207: * src/classes/file.C: fixed language of file:file result
17208:
17209: * operators.txt, src/classes/void.C: ^void.pos[...] = -1 merged
17210: from 3.0.0005
17211:
17212: * operators.txt, src/classes/void.C: ^void.pos[...] = -1
17213:
17214: * operators.txt, src/classes/void.C: ^void.length[] = 0 merged from
17215: 3.0.0005
17216:
17217: * src/classes/void.C, operators.txt: ^void.length[] = 0
17218:
17219: 2002-08-19 paf
17220:
17221: * src/classes/xdoc.C: xdoc getElementsByTagName, ...NS overriden,
17222: work now
17223:
17224: * src/: classes/xnode.C, types/pa_vxdoc.C: xdoc.fields fixed [were
17225: error in xnode, which were not catched in xdoc]
17226:
17227: * src/: include/pa_stylesheet_connection.h, main/pa_globals.C:
17228: prepared: // validate each document after load/create (?)
17229: //xmlDoValidityCheckingDefaultValue = 1;
17230:
17231: 2002-08-15 paf
17232:
17233: * src/classes/classes.h: write to static var caused useless
17234: Exception, introduced Methoded::put_element wich consumes those
17235:
17236: * operators.txt, src/include/pa_common.h, src/main/pa_common.C,
17237: src/types/pa_vcookie.C, src/types/pa_vdate.h,
17238: src/types/pa_vresponse.C, src/types/pa_vresponse.h:
17239: $response:field[date] $response:field[$.xxx[date]]
17240:
17241: * src/: classes/hash.C, classes/string.C, classes/table.C,
17242: classes/void.C, include/pa_sql_connection.h: fixed source of
17243: ^hash::sql{bad}
17244:
17245: * operators.txt: $request:body unprecessed POST request body
17246:
17247: * src/types/pa_vrequest.C: $request:body unprecessed POST request
17248:
17249: * src/types/: pa_value.h, pa_vdate.h, pa_vrequest.C, pa_vxdoc.C,
17250: pa_vxnode.C: few barks: bark("%s field not found", 0, &aname)
17251:
17252: * operators.txt, src/classes/form.C, src/include/pa_pool.h,
17253: src/include/pa_request.h, src/main/pa_pool.C,
17254: src/types/pa_vform.C, src/types/pa_vform.h: planning/preparing_to
17255: $request:body r.post_data now const
17256:
17257: * src/: classes/image.C, classes/op.C, classes/xdoc.C,
17258: classes/xnode.C, main/execute.C, types/pa_value.h,
17259: types/pa_vhash.h, types/pa_vobject.C, types/pa_vobject.h,
17260: types/pa_vtable.h: instead of type() checking everywhere used
17261: Value.as now user descendants can be used in params.
17262:
17263: VObject::as_*, is_defined now taken from bases. xtable(table)
17264: ^if($xtable) now OK
17265:
17266: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.C,
17267: types/pa_vclass.h, types/pa_vobject.C, types/pa_vobject.h,
17268: types/pa_vxdoc.C, types/pa_vxdoc.h: is->as
17269:
17270: 2002-08-14 paf
17271:
17272: * src/: classes/xnode.h, main/execute.C, targets/cgi/parser3.dsp,
17273: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
17274: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17275: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17276: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17277: types/pa_vimage.h, types/pa_vmail.C, types/pa_vmail.h,
17278: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.C,
17279: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17280: types/pa_vresponse.C, types/pa_vresponse.h,
17281: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17282: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17283: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17284: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17285: types/pa_vxnode.h, types/pa_wwrapper.h: is now works with VObject
17286: & VClass
17287:
17288: * src/types/pa_vmail.C: mail: turned off utf8 to source transcoding
17289:
17290: * src/targets/cgi/: fixopt.C, fixopt.h, parser3.C, Makefile.am:
17291: removed fixopt stupidity. on stupid linux use cd /document/root
17292: ../cgi/parser3 script
17293:
17294: * src/targets/cgi/fixopt.C: fixopt now preprocesses command line
17295: params, splitting them by space, excluding argv[0], argv[argc-1]
17296:
17297: * src/targets/cgi/: Makefile.am, parser3.C, parser3.dsp, fixopt.C,
17298: fixopt.h: fixopt now preprocesses command line params, splitting
17299: them by space, excluding argv[0], argv[argc-1]
17300:
17301: * src/targets/cgi/parser3.C: -f config file
17302:
17303: * src/targets/cgi/parser3.C: fixed .log file dir
17304:
17305: 2002-08-13 paf
17306:
17307: * src/types/pa_vobject.C: allow override parent variables, useful
17308: for form descendants [in vobject too, were in vclass]
17309:
17310: * src/types/pa_vclass.C: allow override parent variables, useful
17311: for form descendants
17312:
17313: * src/types/pa_vclass.C: checked: form[vclass]fields can be
17314: overwritten in derived(table)
17315:
17316: * src/: classes/form.C, classes/mail.C, classes/op.C,
17317: classes/xnode.h, include/pa_request.h, main/execute.C,
17318: main/pa_request.C, types/pa_value.h, types/pa_vclass.C,
17319: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
17320: types/pa_vcookie.h, types/pa_vdate.h, types/pa_venv.h,
17321: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17322: types/pa_vhash.h, types/pa_vimage.h, types/pa_vmail.C,
17323: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17324: types/pa_vobject.C, types/pa_vobject.h, types/pa_vrequest.C,
17325: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
17326: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17327: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17328: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17329: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17330: types/pa_vxnode.h, types/pa_wwrapper.h: introduced
17331: Value::get_element(..., bool looking_down) [needed to exclude
17332: endless recoursion]
17333:
17334: * src/types/: pa_vclass.C, pa_vobject.C: reorganized modules todo:
17335: fix bug with put endless recoursion todo: check 'as'
17336:
17337: * src/types/: Makefile.am, pa_vclass.h, pa_vobject.h, types.dsp:
17338: reorganized modules todo: fix bug with put endless recoursion
17339: todo: check 'as'
17340:
17341: * src/types/pa_vobject.h: checked: table fields can be overwritten
17342: in derived(table)
17343:
17344: * src/types/pa_vobject.h: derived classes can have fields of their
17345: own now
17346:
17347: * src/: classes/table.C, types/pa_vtable.C, types/pa_vtable.h:
17348: fixed error message on using non-created table
17349:
17350: * src/: classes/form.C, classes/hash.C, classes/mail.C,
17351: classes/op.C, classes/xnode.h, include/pa_request.h,
17352: main/compile.C, main/compile.tab.C, main/execute.C,
17353: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17354: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17355: types/pa_vdate.h, types/pa_venv.h, types/pa_vfile.h,
17356: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
17357: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmail.C,
17358: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17359: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17360: types/pa_vresponse.C, types/pa_vresponse.h,
17361: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17362: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.h,
17363: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17364: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17365: types/pa_vxnode.h, types/pa_wwrapper.h: VObject.get/out now
17366: looking down/up tree todo: fix error message on non-constructed
17367: parents
17368:
17369: 2002-08-12 paf
17370:
17371: * src/types/: pa_vstateless_class.h, pa_vstateless_object.h: table
17372: derived OK
17373:
17374: * src/main/execute.C: ^base:create[] dynamic call rewritten todo:
17375: thorough testing
17376:
17377: * src/: main/compile.tab.C, main/compile.y, main/execute.C,
17378: main/pa_request.C, types/pa_value.h, types/pa_vclass.h,
17379: types/pa_vobject.h, types/pa_vstateless_class.h,
17380: types/pa_vstateless_object.h, types/pa_wcontext.h,
17381: types/pa_valiased.C, types/pa_valiased.h, types/Makefile.am:
17382: ^base:create[] dynamic call rewritten todo: thorough testing
17383:
17384: * src/types/: pa_value.h, pa_vclass.h, pa_vobject.h: VObject ctor
17385: now instantates base class, remembers it and saves child in
17386: parent VObject.get_class now returns last child = downward
17387: virtual calls OK
17388:
17389: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
17390: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vfile.h,
17391: types/pa_vimage.h, types/pa_vint.h, types/pa_vmethod_frame.h,
17392: types/pa_vobject.h, types/pa_vresponse.h,
17393: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17394: types/pa_vstring.h, types/pa_vtable.h, types/pa_vxdoc.h,
17395: types/pa_vxnode.h, types/pa_wcontext.h, types/types.dsp: killed
17396: VAliased [redundant], moved $CLASS to VObject only [parser class
17397: instance]
17398:
17399: * src/main/pa_request.C: $response:body[file] content-type check
17400: fixed [were bad when content-type is hash]
17401:
17402: 2002-08-09 paf
17403:
17404: * src/: main/execute.C, types/pa_value.h, types/pa_vclass.h,
17405: types/pa_vobject.h, types/pa_vxdoc.h: started as()
17406:
17407: 2002-08-08 paf
17408:
17409: * operators.txt, src/classes/date.C, src/include/pa_globals.h,
17410: src/main/pa_globals.C: year column in month calendar [week year]
17411:
17412: * src/main/execute.C: error reporting on object writes to MAIN
17413: improved [were ruind with fixing $obj[^if(1){$obj}] ]
17414:
17415: * operators.txt, src/types/pa_vdate.h: $date.yearday
17416: $date.daylightsaving
17417:
17418: * src/: classes/mail.C, types/pa_vmail.C: in letter texts one can
17419: use tainted data now. only she must specify the language.
17420:
17421: ^mail:send[ $.from[paf@mail.design.ru]
17422: $.to[paf@mail.design.ru] $.subject[^taint[uri][ìîñêâà]=2]
17423: $.text[^taint[uri][ìîñêâà]=] ]
17424:
17425: * src/: classes/file.C, classes/op.C, types/pa_vfile.C: ^process
17426: now prints more precise origin
17427:
17428: * src/include/pa_string.h: String::first_char now not fails on
17429: empty strings ^if(-f '') now ok and in 3 other places.
17430:
17431: * operators.txt, src/include/pa_string.h, src/main/pa_string.C:
17432: String::first_char now not fails on empty strings ^if(-f '') now
17433: ok and in 3 other places.
17434:
17435: 2002-08-07 paf
17436:
17437: * src/: classes/string.C, main/pa_string.C: ^string.mid(0;bad)
17438: fixed
17439:
17440: * src/main/pa_string.C: ^string.mid(0;bad) fixed
17441:
17442: * src/: main/execute.C, types/pa_vcode_frame.h,
17443: types/pa_vmethod_frame.h, types/pa_wcontext.C,
17444: types/pa_wcontext.h, types/pa_wwrapper.h: vcodeframe were
17445: mistakenly not completely transparent to object writes.
17446: $hash[^if(1){$hash}] now works
17447:
17448: * operators.txt, src/classes/op.C: ^cache...{...^cache<<to past...}
17449: now erasing cache file [there were bad check on that]
17450:
17451: * src/: classes/classes.dsp, classes/table.C,
17452: lib/pcre/pcre_parser_ctype.dsp, main/pa_array.C, types/types.dsp:
17453: all Debug dirs in .dsp now named 'Debug'
17454:
1.116 moko 17455: * etc/parser3.charsets/Makefile.am: all included into dist
1.95 moko 17456:
17457: * operators.txt, src/classes/mail.C: exception_type email.send
17458:
17459: * operators.txt, src/types/pa_vmail.C: exception_type email.format
17460:
17461: * src/types/pa_vmail.C: mail:send empty email checked
17462:
17463: 2002-08-06 paf
17464:
17465: * operators.txt, src/classes/table.C, src/include/pa_array.h,
17466: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
17467: ^table::create[$source;$.options] ^table::join[$source;$.options]
17468:
17469: * operators.txt, src/classes/hash.C, src/classes/string.C,
17470: src/classes/table.C: sql options can be string now ^xxx:sql{...}[
17471: # $.default() }
17472:
17473: * src/classes/file.C: $f[file::cgi] $f.UPPER case fields
17474:
17475: * src/: classes/file.C, include/pa_globals.h, main/pa_globals.C,
17476: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h:
17477: $file.content-type [instead of .mime-type] now works for
17478: file::stat also
17479:
17480: * src/main/pa_request.C: case insensitive mime_type_of
17481:
17482: 2002-08-05 paf
17483:
17484: * src/types/pa_vxnode.C: xnode.childNodes now 0... [were 1...]
17485:
17486: * src/types/pa_vmail.C: file buffer relocated to parser heap
17487:
17488: * operators.txt: comment on date:calendar week column
17489:
17490: * src/main/pa_common.C: write checked
17491:
17492: * src/main/: pa_common.C: write checked
17493:
17494: * src/classes/date.C: +1 buf size for stupid snprintfs
17495:
17496: * src/: classes/date.C, include/pa_globals.h, main/pa_globals.C:
17497: month calendar week column [ISO 8601 Week Numbers]
17498:
17499: 2002-08-02 paf
17500:
17501: * src/: include/pa_config_fixed.h, main/pa_string.C,
17502: targets/cgi/getopt.c, targets/cgi/parser3.C: removed #define
17503: DEBUG*
17504:
17505: * configure, configure.in, src/include/pa_version.h: release
17506: 3_0_0005
17507:
17508: * src/types/: pa_vclass.h, pa_vform.C, pa_vobject.h: opera
17509: multipart post fixed
17510:
17511: * operators.txt, src/main/pa_request.C, src/types/pa_vform.C:
17512: response transcoded source->client only when text/* or simple
17513: onoverridden $response:body
17514:
17515: 2002-08-01 paf
17516:
17517: * src/: classes/classes.C, classes/classes.h, classes/date.C,
17518: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
17519: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
17520: classes/op.C, classes/response.C, classes/string.C,
17521: classes/table.C, classes/void.C, classes/xdoc.C, classes/xnode.C,
17522: classes/xnode.h, include/pa_array.h, include/pa_cache_managers.h,
17523: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17524: include/pa_config_fixed.h, include/pa_dictionary.h,
17525: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
17526: include/pa_globals.h, include/pa_hash.h, include/pa_opcode.h,
17527: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
17528: include/pa_socks.h, include/pa_sql_connection.h,
17529: include/pa_sql_driver_manager.h, include/pa_stack.h,
17530: include/pa_string.h, include/pa_stylesheet_connection.h,
17531: include/pa_stylesheet_manager.h, include/pa_table.h,
17532: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17533: lib/md5/pa_md5.h, lib/md5/pa_md5c.c,
17534: lib/pcre/pcre_parser_ctype.c, main/compile.C, main/compile.tab.C,
17535: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17536: main/pa_array.C, main/pa_cache_managers.C, main/pa_charset.C,
17537: main/pa_charsets.C, main/pa_common.C, main/pa_dictionary.C,
17538: main/pa_dir.C, main/pa_exception.C, main/pa_exec.C,
17539: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
17540: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
17541: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
17542: main/pa_uue.C, main/untaint.C, sql/pa_sql_driver.h,
17543: targets/cgi/pa_pool.C, targets/cgi/pa_threads.C,
17544: targets/cgi/parser3.C, targets/cgi/pool_storage.h,
17545: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17546: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
17547: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.C,
17548: types/pa_value.h, types/pa_vbool.h, types/pa_vclass.h,
17549: types/pa_vcode_frame.h, types/pa_vcookie.C, types/pa_vcookie.h,
17550: types/pa_vdate.h, types/pa_vdouble.h, types/pa_venv.h,
17551: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
17552: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
17553: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
17554: types/pa_vmail.C, types/pa_vmail.h, types/pa_vmath.h,
17555: types/pa_vmethod_frame.h, types/pa_vobject.h,
17556: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
17557: types/pa_vresponse.h, types/pa_vstateless_class.C,
17558: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
17559: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
17560: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
17561: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
17562: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
1.119 moko 17563: types/pa_wcontext.h, types/pa_wwrapper.h: Date: now
1.95 moko 17564:
17565: * src/: classes/classes.C, classes/classes.dsp, classes/classes.h,
17566: classes/date.C, classes/double.C, classes/file.C, classes/form.C,
17567: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
17568: classes/math.C, classes/op.C, classes/response.C,
17569: classes/string.C, classes/table.C, classes/void.C,
17570: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
17571: include/pa_array.h, include/pa_cache_managers.h,
17572: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
17573: include/pa_config_fixed.h, include/pa_config_includes.h,
17574: include/pa_dictionary.h, include/pa_dir.h,
17575: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
17576: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
17577: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
17578: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
17579: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
17580: include/pa_stack.h, include/pa_string.h,
17581: include/pa_stylesheet_connection.h,
17582: include/pa_stylesheet_manager.h, include/pa_table.h,
17583: include/pa_threads.h, include/pa_types.h, include/pa_uue.h,
17584: lib/md5/pa_md5.h, lib/md5/pa_md5c.c, main/compile.C,
17585: main/compile_tools.C, main/compile_tools.h, main/execute.C,
17586: main/main.dsp, main/pa_array.C, main/pa_cache_managers.C,
17587: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
17588: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
17589: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
17590: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
17591: main/pa_sql_driver_manager.C, main/pa_string.C,
17592: main/pa_stylesheet_manager.C, main/pa_table.C, main/pa_uue.C,
17593: main/untaint.C, sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
17594: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
17595: targets/cgi/parser3.dsp, targets/cgi/pool_storage.h,
17596: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
17597: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
17598: targets/isapi/pool_storage.h, types/pa_valiased.C,
17599: types/pa_valiased.h, types/pa_value.C, types/pa_value.h,
17600: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
17601: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
17602: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.C,
17603: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
17604: types/pa_vhash.h, types/pa_vimage.C, types/pa_vimage.h,
17605: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmail.C,
17606: types/pa_vmail.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
17607: types/pa_vobject.h, types/pa_vrequest.C, types/pa_vrequest.h,
17608: types/pa_vresponse.C, types/pa_vresponse.h,
17609: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
17610: types/pa_vstateless_object.h, types/pa_vstatus.C,
17611: types/pa_vstatus.h, types/pa_vstring.C, types/pa_vstring.h,
17612: types/pa_vtable.C, types/pa_vtable.h, types/pa_vvoid.h,
17613: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
17614: types/pa_vxnode.h, types/pa_wcontext.C, types/pa_wcontext.h,
17615: types/pa_wwrapper.h, types/types.dsp, Makefile.am,
17616: classes/Makefile.am, main/Makefile.am, targets/cgi/Makefile.am,
17617: types/Makefile.am: ident.C* removed
17618:
17619: * operators.txt, src/classes/file.C, src/main/pa_request.C:
17620: file:find[/can/do/this/now.txt]
17621:
17622: * src/targets/cgi/parser3.C: usage to stdout now
17623:
17624: 2002-07-31 paf
17625:
17626: * src/types/pa_vmail.C: mail: errors-to: now default "postmaster"
17627:
17628: * src/: classes/mail.C, types/pa_vmail.C: mail: errors-to: now
17629: default "postmaster"
17630:
17631: * src/: classes/mail.C, types/pa_vmail.C: mail from/to now must be.
17632: -f postmaster now default sendmail key word "postmaster"
17633: replaced to $.from
17634:
17635: 2002-07-30 paf
17636:
1.116 moko 17637: * configure, configure.in, src/targets/cgi/pa_config_paths.h.in,
17638: src/targets/cgi/parser3.C: removed pa_config_paths.h
1.95 moko 17639:
17640: * src/main/pa_charset.C: comment
17641:
17642: * src/main/pa_charset.C: UTF-8 to 1byte charset convert, no char in
17643: table, &#decimal;
17644:
17645: * src/main/pa_request.C: comment
17646:
17647: * etc/parser3.charsets/windows-1251.cfg: section sign [russian
17648: paragraf]
17649:
17650: 2002-07-11 paf
17651:
17652: * src/main/pa_exec.C: build command line badly added params twice
17653: [and first time without ' ']. double wrong. fixed.
17654:
17655: * src/main/pa_exec.C: invalid .exe caused error message with params
17656: wich parser did not provide = reported badly. fixed that.
17657:
17658: * src/classes/mail.C: $MAIL[ # xxx ]
17659:
17660: now ok
17661:
17662: * operators.txt: plan: sql detailed exception
17663:
17664: 2002-07-01 paf
17665:
17666: * src/: classes/form.C, main/pa_request.C: @conf bug fixed
17667: [MForm.configure_admin were called when request.main_class ==0
17668:
17669: * src/classes/form.C: 10*0x400*400 bug fix [4M not 10M]
17670:
17671: * src/classes/form.C: content_length type fix
17672:
17673: 2002-06-30 paf
17674:
17675: * src/classes/mail.C: merged from 4
17676:
17677: * src/classes/mail.C: restored $MAIL
17678:
17679: 2002-06-28 paf
17680:
17681: * configure, configure.in: removed paths.h
17682:
1.116 moko 17683: * configure, src/include/pa_version.h,
1.95 moko 17684: src/targets/cgi/pa_config_paths.h.in: lates changes from 4 build
17685: merged, makes updated
17686:
17687: * ChangeLog, configure, operators.txt, src/classes/xdoc.C,
17688: src/include/pa_charset.h, src/include/pa_config_fixed.h,
17689: src/include/pa_pool.h, src/include/pa_version.h,
17690: src/main/pa_charset.C, src/main/pa_pool.C,
17691: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.dsp,
17692: src/types/pa_vmail.C: merged latest updates to head
17693:
17694: 2002-06-27 paf
17695:
17696: * src/targets/: cgi/parser3.dsp, isapi/parser3isapi.dsp: post-build
17697: not error now
17698:
17699: * operators.txt, src/classes/xdoc.C, src/include/pa_charset.h,
17700: src/include/pa_config_fixed.h, src/include/pa_pool.h,
17701: src/main/pa_charset.C, src/main/pa_pool.C:
17702: ^xdoc::create[[uri]]... base uri for document being created,
17703: imports and other relative file names would be relative to this
17704: uri default uri=path_translated
17705:
17706: * src/classes/xdoc.C: xsltParseStylesheetDoc bug workaround
17707:
17708: 2002-06-26 paf
17709:
17710: * configure, configure.in, src/include/pa_version.h:
17711: release_3_0_0004
17712:
17713: * src/main/pa_string.C: blank string '', ' <whitespace>' considered
17714: 0 now
17715:
17716: * src/targets/cgi/parser3.C: /cgi-bin/parser empty filename checked
17717:
17718: 2002-06-25 paf
17719:
17720: * src/main/pa_string.C: emtpy string, or string of whitespaces
17721: considered bad number now
17722:
17723: * operators.txt, src/classes/xdoc.C: ^xdoc.transform[xdoc <<can be
17724: now
17725:
17726: * operators.txt, src/classes/string.C: ^string.normalize [old
17727: name: optimize
17728:
17729: * configure, configure.in, src/include/pa_config_auto.h.in: crypt
17730: library configured
17731:
17732: * src/main/pa_request.C: configure_admin forced if no @conf
17733:
1.150 moko 17734: * operators.txt, src/classes/math.C, src/types/pa_vmail.C:
17735: ^math:crypt updated to generate random salt when needed and to
17736: call system crypt() if not $apr1$ prefix
1.95 moko 17737:
17738: 2002-06-24 paf
17739:
17740: * INSTALL: --with-static/shared-mailreceive described
17741:
17742: * src/include/pa_config_fixed.h: ssize_t fixed
17743:
1.116 moko 17744: * configure, configure.in, src/include/pa_config_auto.h.in,
17745: src/targets/cgi/Makefile.am, src/types/Makefile.am,
1.95 moko 17746: src/types/pa_vmail.C: $mail:received makes update
17747:
17748: * src/: include/pa_config_fixed.h, types/pa_vmail.C: #ifdef
17749: WITH_MAILRECEIVE
17750:
17751: * src/targets/cgi/parser3.C: #ifdef WITH_MAILRECEIVE
17752:
17753: * src/targets/cgi/: getopt.c, getopt.h: introducing parser -m
17754: option, for $mail:receive
17755:
17756: * src/types/: pa_vmail.C, pa_vmail.h: uue to separate file
17757: introducting $message:received ^mail:send rewritten with backward
17758: comp
17759:
17760: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
17761: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
17762: types/types.dsp: win32xml win32mailreceive pseudomodules paths
17763: now
17764:
17765: * operators.txt, src/classes/mail.C, src/include/Makefile.am,
17766: src/include/pa_charset.h, src/include/pa_config_fixed.h,
17767: src/include/pa_request.h, src/include/pa_string.h,
17768: src/include/pa_uue.h, src/main/Makefile.am, src/main/main.dsp,
17769: src/main/pa_globals.C, src/main/pa_request.C,
17770: src/main/pa_string.C, src/main/pa_uue.C,
17771: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.C,
17772: src/targets/cgi/parser3.dsp, src/targets/isapi/parser3isapi.C,
17773: src/types/pa_vform.C, src/types/pa_vform.h, src/types/types.dsp:
17774: uue to separate file introducting $message:received ^mail:send
17775: rewritten with backward comp
17776:
17777: 2002-06-21 paf
17778:
1.116 moko 17779: * src/lib/: Makefile.am, md5/pa_md5.h: lib restructure apache .am &
17780: co changes
1.95 moko 17781:
1.116 moko 17782: * configure, configure.in, src/lib/md5/Makefile.am,
17783: src/lib/md5/pa_md5c.c, src/targets/cgi/Makefile.am: lib
17784: restructure .in and .am files appropriate changes
1.95 moko 17785:
17786: * src/lib/md5/: md5.dsp, pa_md5.h, pa_md5c.c: moved libltdl and
17787: pcre to libs/ added libs/md5 which is linked to non-apache
17788: targets ^math:crypt[password;$apr1$salt]
17789:
17790: * INSTALL, configure.in, operators.txt, parser3.dsw,
17791: src/Makefile.am, src/classes/Makefile.am,
17792: src/classes/classes.dsp, src/classes/math.C,
17793: src/lib/md5/Makefile.am, src/lib/pcre/LICENCE,
1.116 moko 17794: src/lib/pcre/Makefile.am, src/lib/pcre/README,
17795: src/lib/pcre/Tech.Notes, src/lib/pcre/dftables.c,
17796: src/lib/pcre/get.c, src/lib/pcre/ibm-1250.ucm,
17797: src/lib/pcre/ibm-1251.ucm, src/lib/pcre/ibm-1257.ucm,
17798: src/lib/pcre/internal.h, src/lib/pcre/maketables.c,
17799: src/lib/pcre/pcre-2_08.tar.gz, src/lib/pcre/pcre.3,
17800: src/lib/pcre/pcre.3.html, src/lib/pcre/pcre.3.txt,
17801: src/lib/pcre/pcre.c, src/lib/pcre/pcre.dsp, src/lib/pcre/pcre.h,
1.95 moko 17802: src/lib/pcre/pcre_dftables.dsp, src/lib/pcre/pcre_parser_ctype.c,
17803: src/lib/pcre/pcre_parser_ctype.dsp,
17804: src/lib/pcre/ruspart_win2koi.pl, src/lib/pcre/study.c,
17805: src/lib/pcre/win-koi.tab, src/main/Makefile.am,
17806: src/main/compile.tab.C, src/main/main.dsp,
17807: src/targets/cgi/Makefile.am, src/targets/cgi/parser3.dsp,
17808: src/targets/isapi/parser3isapi.dsp, src/types/Makefile.am,
17809: src/types/types.dsp, src/lib/Makefile.am: moved libltdl and pcre
17810: to libs/ added libs/md5 which is linked to non-apache targets
17811: ^math:crypt[password;$apr1$salt]
17812:
17813: 2002-06-20 paf
17814:
1.150 moko 17815: * INSTALL, configure, configure.in, operators.txt,
17816: src/classes/file.C, src/classes/op.C, src/doc/doxygen.cfg,
17817: src/include/pa_globals.h, src/include/pa_request.h,
17818: src/main/execute.C, src/main/pa_request.C,
17819: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
17820: src/types/pa_vmethod_frame.h: marged latest HEAD updates, mainly
17821: file:justname&co & @auto/conf[filespec
1.95 moko 17822:
17823: * operators.txt, src/classes/file.C:
17824: !^file:dirname[/a/some.tar.gz]=/a
17825: !^file:dirname[/a/b/]=/a
17826: !^file:basename[/a/some.tar.gz]=some.tar.gz
17827: !^file:justname[/a/some.tar.gz]=some.tar
17828: !^file:justext[/a/some.tar.gz]=gz
17829:
17830: * src/: classes/op.C, include/pa_request.h, main/execute.C,
17831: main/pa_request.C, types/pa_vmethod_frame.h: introducing
17832: @conf/auto[filespec]
17833:
1.116 moko 17834: * configure: parser3.conf renamed to auto.p autoconf changes
1.95 moko 17835:
1.150 moko 17836: * INSTALL, configure.in, operators.txt, src/doc/doxygen.cfg,
1.95 moko 17837: src/include/pa_globals.h, src/targets/cgi/parser3.C,
17838: src/targets/isapi/parser3isapi.C: parser3.conf renamed to auto.p
17839:
17840: 2002-06-18 paf
17841:
17842: * configure, configure.in, src/include/pa_version.h: version to
17843: configure.in
17844:
17845: * INSTALL: reflected .conf.dist dir change
17846:
1.150 moko 17847: * Makefile.am, configure, configure.in,
1.116 moko 17848: etc/parser3.charsets/Makefile.am: parser3.conf.dist moved to bin,
1.95 moko 17849: .in & *.am updated
17850:
17851: * src/classes/file.C: strncasecmp
17852:
17853: * src/classes/file.C: strcasecmp
17854:
1.150 moko 17855: * etc/Makefile.am: bin/parser3.conf.dist [moved from etc
1.95 moko 17856:
17857: * src/classes/file.C: ^file::exec[script;$.bad error case
17858: insensitive check now
17859:
17860: * src/classes/file.C: ^file::exec[script;$.bad now error, not skip
17861:
17862: * configure, configure.in, src/include/pa_pool.h,
17863: src/include/pa_types.h: pack configure.in detection simplified.
17864: figured out that gcc on sparc not that stupid as thought
17865: previously: on sparc: when it sees packed class it modifies it's
17866: field-access-code to byte operations [stb, ldub] instead of 4byte
17867: operations [st, lduh] so packed must be all parts of packed
17868: class, i.e. it's parents&fields(classes). for now it's only
17869: String that packed and what was wrong is that it's parent -
17870: Pooled, were not packed. fixed that.
17871:
17872: 2002-06-14 paf
17873:
17874: * operators.txt: more precise xml-to-text options
17875:
17876: * operators.txt, src/types/pa_vxnode.C: xnode
17877: attribute_node.name/value xnode pi.node.data
17878:
17879: 2002-06-12 paf
17880:
1.116 moko 17881: * configure, configure.in, src/targets/cgi/Makefile.am,
17882: src/targets/cgi/parser3.C: removed root conf define creation
1.95 moko 17883:
17884: * INSTALL, configure.in, operators.txt, etc/Makefile.am,
17885: src/include/pa_globals.h, src/include/pa_request.h,
17886: src/main/compile.tab.C, src/main/pa_globals.C,
17887: src/main/pa_request.C, src/targets/cgi/parser3.C,
17888: src/targets/isapi/parser3isapi.C: parser3.conf now one and only
17889:
17890: * src/classes/mail.C: sendmail -ti [default now]
17891:
17892: * src/: classes/mail.C, main/pa_request.C: $MAIL $CHARSETS allowed
17893: to be strings. for convinient #ing
17894:
17895: * src/: include/pa_globals.h, include/pa_request.h, main/execute.C,
17896: main/pa_globals.C, main/pa_request.C: @rootconf [were @conf]
17897:
17898: * src/: include/pa_globals.h, include/pa_request.h, main/main.dsp,
17899: main/pa_globals.C, main/pa_request.C: @conf
17900:
17901: 2002-06-11 paf
17902:
17903: * src/classes/file.C: check simplified
17904:
17905: * src/: classes/file.C, targets/cgi/parser3.dsp,
17906: targets/isapi/parser3isapi.C: suexec env keys filter plus CGI_ as
17907: valid prefix
17908:
17909: * src/: classes/file.C, include/pa_request.h, include/pa_sapi.h,
17910: targets/cgi/parser3.C, targets/isapi/parser3isapi.C:
17911: file::exec/cgi to pass HTTP_ vars introducing SAPI::environment
17912:
17913: 2002-06-10 paf
17914:
17915: * operators.txt, src/classes/op.C, src/include/pa_common.h,
17916: src/main/pa_common.C: lock failures reported now
17917:
17918: * src/main/compile_tools.C: ^if(" 1 "){y} bug fixed optimization
17919: string->double @ compile time were not-enough-checking...
17920:
17921: * src/main/: compile.tab.C, pa_string.C: whitespace after number in
17922: autoconvert now ignored
17923:
17924: * src/types/: pa_vform.C, pa_vform.h: $form: not determined yet
17925: check
17926:
17927: * src/classes/mail.C: mail netscape attachment name fixed. todo:
17928: $response:body content-type:name
17929:
17930: * configure, configure.in: hpux check, nsl link, no socket
17931:
17932: * operators.txt: old merge conflict removed
17933:
17934: * configure, configure.in: pack even address access on sparc&co
17935: arch checked in configure
17936:
17937: * configure, src/include/pa_version.h: makes
17938:
17939: * configure, configure.in, src/include/pa_version.h: makes
17940:
17941: * src/main/untaint.C: (bug#2) mail subject got always prepended
17942: with charset even when all letters were 7bit one
17943:
17944: * src/main/pa_common.C: merged fixed -d (bug)
17945:
17946: * src/main/pa_common.C: fixed -d (bug)
17947:
17948: 2002-06-03 paf
17949:
17950: * ChangeLog, operators.txt, etc/parser3.charsets/windows-1251.cfg,
17951: src/classes/classes.dsp, src/main/compile.tab.C,
17952: src/main/main.dsp, src/main/pa_globals.C,
17953: src/targets/cgi/parser3.C, src/targets/cgi/parser3.dsp,
17954: src/targets/isapi/parser3isapi.dsp, src/types/types.dsp: fixed
17955: .dsp-s along with reorganized cvs modules dirs structure
17956:
17957: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
17958: main/pa_globals.C, targets/cgi/parser3.dsp,
17959: targets/isapi/parser3isapi.dsp, types/types.dsp: reorganized cvs
17960: modules
17961:
17962: 2002-05-28 paf
17963:
17964: * src/targets/cgi/parser3.C: info.uri now ""
17965:
17966: 2002-05-17 paf
17967:
17968: * src/classes/: table.C: ^table.save << checked empty
17969: pre/match/post columns
17970:
17971: 2002-05-16 paf
17972:
17973: * src/classes/image.C: image::measure can png now
17974:
17975: 2002-05-15 paf
17976:
17977: * operators.txt, src/classes/date.C: ^date::create[%H:%M[:%S]]
17978: added
17979:
17980: * etc/parser3.charsets/windows-1251.cfg: 0x forgot, fixed
17981:
17982: * operators.txt, src/classes/date.C: ^date::create[%Y[-%m[-%d[
17983: %H[:%M[:%S]]]]]] [-%m now
17984:
17985: 2002-05-14 paf
17986:
17987: * etc/parser3.charsets/: windows-1251.cfg: added 3 quotes
17988:
17989: 2002-05-07 paf
17990:
17991: * ChangeLog, src/classes/classes.dsp, src/classes/op.C,
17992: src/include/pa_globals.h, src/include/pa_request.h,
17993: src/include/pa_table.h, src/main/compile.tab.C,
17994: src/main/compile.y, src/main/main.dsp, src/main/pa_globals.C,
17995: src/main/pa_request.C, src/main/pa_table.C,
17996: src/targets/isapi/pa_pool.C, src/targets/isapi/parser3isapi.C,
17997: src/targets/isapi/parser3isapi.dsp,
17998: src/targets/isapi/pool_storage.h, src/types/types.dsp: Table
17999: name2number field now &. main_method_name now on Request pool
18000: rather on global_pool [Junction+VJunction created on same pool as
18001: name = were created on global pool, causing mem leaks]
18002:
18003: * src/: classes/classes.dsp, classes/op.C, include/pa_globals.h,
18004: include/pa_request.h, include/pa_table.h, main/compile.tab.C,
18005: main/compile.y, main/main.dsp, main/pa_globals.C,
18006: main/pa_request.C, main/pa_table.C, targets/isapi/pa_pool.C,
18007: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
18008: targets/isapi/pool_storage.h, types/types.dsp: Table name2number
18009: field now &. main_method_name now on Request pool rather on
18010: global_pool [Junction+VJunction created on same pool as name =
18011: were created on global pool, causing mem leaks]
18012:
18013: 2002-05-06 paf
18014:
18015: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18016: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18017: 100*40 bytes per request memory leak [nonpool malloc in globals]
18018:
18019: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18020: targets/cgi/pool_storage.h, targets/isapi/parser3isapi.C: removed
18021: 100*40 bytes per request memory leak [nonpool malloc in globals]
18022:
18023: 2002-04-30 paf
18024:
18025: * configure, src/include/pa_version.h: version now not b
18026:
18027: * src/targets/cgi/parser3.C: request.uri now never 0
18028:
18029: 2002-04-29 paf
18030:
18031: * configure.in: removed b
18032:
18033: * src/: classes/op.C, include/pa_exception.h, main/pa_request.C:
18034: Exception::comment/type checked in (), no there's no empty
18035: type/comment by default
18036:
18037: * ChangeLog, src/doc/ClassExample1.dox, src/doc/ClassExample3.dox,
18038: src/doc/aliased.dox, src/doc/methoded.dox, src/doc/string.dox,
18039: src/doc/value.dox, src/include/pa_exception.h,
18040: src/main/pa_request.C, src/targets/cgi/parser3.C: merged from
18041: 0001
18042:
18043: 2002-04-26 paf
18044:
18045: * src/: doc/doxygen.cfg, targets/cgi/parser3.dsp: doxygen dot image
18046: size reduced
18047:
18048: 2002-04-25 paf
18049:
18050: * src/targets/cgi/: parser3.C: setenv in .htaccess when cgi is not
18051: under that dir got REDIRECT_ prefix before HTTP_PARSER_x_CONFIG,
18052: now that took into account
18053:
18054: * operators.txt, src/classes/date.C: ^date::create[2002-12-33
18055: 01:03:04]
18056:
18057: * ChangeLog, operators.txt, src/classes/date.C:
18058: ^date::create[2002-12-33 01:03:04]
18059:
18060: * ChangeLog: updated changelog
18061:
18062: * src/classes/table.C: removed restriction on column count to
18063: ^table.hash to work, now must be >0 [were >1]
18064:
18065: 2002-04-24 paf
18066:
18067: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18068: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
18069: targets/isapi/parser3isapi.dsp, types/types.dsp: MSVC profile
18070: targets
18071:
18072: 2002-04-23 paf
18073:
18074: * operators.txt, src/classes/string.C:
18075: int/double/string:sql{}[$.default{code}] fixed [were barking:
18076: "junction used outside of context"]
18077:
18078: 2002-04-22 paf
18079:
18080: * types.txt, src/classes/string.C, src/include/pa_string.h,
18081: src/main/pa_string.C, src/types/pa_vstring.C,
18082: src/types/pa_vstring.h: ^string.optimize[]
18083:
18084: * src/: include/pa_globals.h, include/pa_table.h,
18085: main/pa_globals.C, main/pa_string.C, main/pa_table.C: fixed match
18086: table template
18087:
18088: * src/classes/: string.C: optimize removed from string
18089: .left/right/pos
18090:
18091: * src/main/execute.C: rolled back to
18092: before_killing_userjunction_contexts
18093:
18094: * src/main/execute.C: user junctions context killed
18095:
18096: * src/main/execute.C: junctions to local contexts got
18097: cleanized&checked later
18098:
18099: 2002-04-19 paf
18100:
18101: * src/: classes/string.C, include/pa_request.h,
18102: include/pa_string.h, main/pa_request.C, main/pa_string.C,
18103: types/pa_vstring.C, types/pa_vstring.h: string now optimized
18104: prior to .left .right .mid .pos .match when that is profitable,
18105: and always before .replace when $ORIGINS(1) optimization disabled
18106: economy from not wasting mem on lots of strings which occur by
18107: lots of String:mid calls to get parts of source string between
18108: found_occurances
18109:
18110: * src/classes/file.C: ovector now local economy: 16 bytes per
18111: ^file:list
18112:
18113: * src/: include/pa_globals.h, include/pa_table.h,
18114: main/pa_globals.C, main/pa_string.C: String::match table columns
18115: globalized, not created @ each ^match anymore economy:
18116: sizeof(Array)+space on 3+x cells=24+ bytes per ^match
18117:
18118: * src/: classes/op.C, classes/string.C, types/pa_value.h: VTable
18119: removed from each String::match replace iteration, and made
18120: stacked sizeof(VTable)=12bytes economy on each replace code
18121:
18122: * src/doc/footer.htm: 2001,
18123:
18124: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
18125: string.match[]['] option enables generation of $match.prematch
18126: .match .postmatch columns
18127:
18128: * src/main/pa_string.C: String::match options analized without
18129: cstr-ing them now
18130:
18131: * src/doc/: doxygen.cfg, footer.htm, html2chm.cmd, postbuild.txt,
18132: sources2html.cmd, view_chm.cmd, view_html.cmd, chmhelper.pl:
18133: config updated to doxygen 1.2.15, created helper which fixes
18134: minor bugs in chm project files & htm tree. changed extension to
18135: .htm
18136:
18137: 2002-04-18 paf
18138:
18139: * src/doc/doxygen.cfg: .chi generation disabled
18140:
18141: * src/: classes/classes.h, classes/xdoc.C, classes/xnode.C,
18142: classes/xnode.h, types/pa_vxdoc.C: xdoc(xnode) now fully -
18143: fields&methods
18144:
18145: * src/: classes/classes.h, classes/hash.C, types/pa_value.h,
18146: types/pa_vbool.h, types/pa_vcookie.h, types/pa_vdate.h,
18147: types/pa_vdouble.h, types/pa_venv.h, types/pa_vfile.h,
18148: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
18149: types/pa_vjunction.h, types/pa_vobject.h, types/pa_vrequest.h,
18150: types/pa_vresponse.h, types/pa_vstateless_class.h,
18151: types/pa_vstateless_object.h, types/pa_vstatus.h,
18152: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h,
18153: types/pa_vxdoc.h, types/pa_vxnode.h: fclass_real lowered from
18154: VStateless_class to VObject
18155:
18156: * src/: main/pa_request.C, types/pa_valiased.h,
18157: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18158: types/pa_vstring.h: VStateless_string_object speicalized light
18159: version of VStateless_object
18160:
18161: * src/classes/op.C: ^throw comment param made optional
18162:
18163: * src/types/: pa_valiased.C, pa_valiased.h, pa_vclass.h,
18164: pa_vobject.h, pa_wcontext.C: VAliased get/set alias now virtual
18165: and implemented down in VClass, fclass_alias removed,
18166:
18167: * src/types/pa_value.C: forced to cut that from .h because of
18168: VStateless_class usage [undefined in .h]
18169:
18170: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18171: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18172: main/pa_request.C, types/pa_vmethod_frame.h: OP_GET_METHOD_FRAME
18173: merged with OP_CALL, VCodeFrame move to stack [no more heap waste
18174: on each CALL]
18175:
18176: * src/: classes/classes.h, classes/date.C, classes/double.C,
18177: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
18178: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
18179: classes/response.C, classes/string.C, classes/table.C,
18180: classes/void.C, classes/xnode.C, include/pa_globals.h,
18181: include/pa_request.h, main/execute.C, main/pa_globals.C,
18182: main/pa_request.C, types/Makefile.am, types/pa_value.h,
18183: types/pa_vdouble.h, types/pa_vform.C, types/pa_vhash.h,
18184: types/pa_vint.h, types/pa_vmath.h, types/pa_vmethod_frame.h,
18185: types/pa_vstateless_class.h, types/pa_wcontext.C,
18186: types/pa_wcontext.h, types/pa_wwrapper.h, types/types.dsp:
18187: removed Value::fname
18188:
18189: 2002-04-17 paf
18190:
18191: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
18192: doc/ClassExample3.dox, doc/compiler.dox, doc/module.dox,
18193: doc/pooled.dox, doc/string.dox, doc/targets.dox,
18194: include/pa_pool.h, include/pa_types.h: dox updated to current
18195: state, PTHROW freshen to throw & co
18196:
18197: * src/types/pa_vhash.h: vstring wrong parent fixed
18198:
18199: * src/classes/op.C: taint local result var bug fixed
18200:
18201: 2002-04-16 paf
18202:
18203: * asm.txt, form.txt, lang.txt, sql.txt: removed outdated. see in
18204: Attic asm.txt as most interesting
18205:
18206: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: removed
18207: check, preventing content-length: 0 from appearing
18208:
18209: * src/main/execute.C: $result in @main now taken into account as in
18210: usual functions
18211:
18212: * src/: doc/postbuild.txt, main/execute.C: $result in @postprocess
18213: & @unhandled_exception now taken into account as in usual
18214: functions
18215:
18216: * src/doc/postbuild.txt: instructions on post .html build
18217:
18218: * src/doc/: doxygen.cfg, html2chm.cmd: .chm file only now, no .chi
18219:
18220: * src/: classes/file.C, main/pa_exec.C: stderr of execs mark as
18221: tainted
18222:
18223: * src/main/pa_request.C: uri in error log
18224:
18225: * src/: classes/date.C, main/compile.tab.C, targets/cgi/parser3.C:
18226: cheched date:create(days) param for validity [later were assumed
18227: valid and crashed on invalid onces]
18228:
18229: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18230: main/execute.C, targets/cgi/parser3.C: OP_CALL -> OP_CALL__WRITE
18231: and used that for removing VString wrapper
18232:
18233: * src/classes/op.C: exception2vhash file now tainted
18234:
18235: * src/classes/op.C: _process pseudo origin copied from local var to
18236: heap
18237:
18238: * src/classes/op.C: extra check on empty file in origin in _execute
18239:
18240: 2002-04-15 paf
18241:
18242: * src/: main/execute.C, types/pa_value.h: fixed name update
18243:
18244: * src/classes/: file.C, op.C, table.C: finished dual write_xxx_lang
18245: functions
18246:
18247: * src/: classes/file.C, classes/hash.C, classes/op.C,
18248: include/pa_request.h, main/execute.C, types/pa_wcontext.h:
18249: started dual write_xxx_lang functions, if checked & works
18250:
18251: * src/: classes/date.C, classes/file.C, classes/mail.C,
18252: classes/string.C, classes/xnode.C, include/pa_request.h,
18253: types/pa_value.h, types/pa_wcontext.h: removed absolutely
18254: unnecessary VString shells
18255:
18256: * src/main/execute.C: CodeFrame soul fixed [mistakenly killed by
18257: prev changes]
18258:
18259: * src/: classes/image.C, classes/op.C, classes/string.C,
18260: classes/table.C, include/pa_request.h, main/execute.C,
18261: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
18262: StringOrValue wcontext result, now ready for dual writes
18263:
18264: * src/targets/cgi/parser3.C: ctime sometimes can be just "",
18265: checked that
18266:
18267: * src/main/: compile.tab.C, compile.y, compile_tools.C,
18268: compile_tools.h, execute.C: OP_GET_ELEMENT+OP_GET_ELEMENT__WRITE
18269: changed to OP_WRITE_VALUE in var get cases
18270:
18271: * src/: classes/op.C, include/pa_globals.h, include/pa_opcode.h,
18272: include/pa_request.h, main/compile.tab.C, main/compile.y,
18273: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18274: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C:
18275: switch in hash constructor fixed [were problems with using of
18276: stacked wwrapper after it's death]
18277:
18278: 2002-04-12 paf
18279:
18280: * operators.txt, src/classes/table.C: table.select(expression) 0
18281:
18282: 2002-04-11 paf
18283:
18284: * src/: classes/string.C, include/pa_request.h, main/execute.C:
18285: Request::process_internal codeFrame & wwrapper stacked [not
18286: wasting heap anymore]
18287:
18288: 2002-04-10 paf
18289:
18290: * src/: classes/double.C, classes/file.C, classes/hash.C,
18291: classes/image.C, classes/int.C, classes/math.C, classes/op.C,
18292: classes/string.C, classes/table.C, classes/void.C,
18293: classes/xdoc.C, include/pa_request.h, main/execute.C,
18294: main/pa_string.C: killed Request::process() wrapping
18295: VString(String) in case we need only String
18296:
18297: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18298: killed 8 bytes from String.head
18299:
18300: 2002-04-09 paf
18301:
18302: * src/: main/compile.tab.C, targets/cgi/parser3.C,
18303: targets/isapi/parser3isapi.C: removed { char *a; { /*sub
18304: local*/char b[...]; a=b; situations
18305:
18306: * operators.txt, src/classes/xdoc.C: xslt params made literal
18307:
18308: * src/classes/xdoc.C: xslt params fixed
18309:
18310: * src/: main/pa_common.C, targets/cgi/parser3.C,
18311: types/pa_vdouble.h, types/pa_vint.h: int/double get_string now
18312: not pool.malloc(MAX_NUMBER) but really neaded
18313:
18314: * operators.txt, src/classes/double.C, src/classes/int.C:
18315: int/double.int/double(default)
18316:
18317: 2002-04-04 paf
18318:
18319: * src/: include/pa_string.h, main/pa_string.C: fixed string.replace
18320: [when reconstructing pieces were split by
18321: max_integral(piece.size), thus some strings to replace happen to
18322: be split into two = not replaced)
18323:
18324: * src/targets/cgi/: parser3.C, parser3.dsp: document root in
18325: standalone version = current dir
18326:
18327: * src/targets/cgi/parser3.C: document root in standalone version =
18328: current dir
18329:
18330: 2002-04-03 paf
18331:
18332: * configure, configure.in: more checks on nonexistent charset
18333:
1.116 moko 18334: * INSTALL, configure, configure.in: root config configure options
1.95 moko 18335:
18336: 2002-04-02 paf
18337:
18338: * src/main/compile.C: parser.compile [exception name more like in
18339: doc]
18340:
18341: 2002-04-01 paf
18342:
18343: * src/: classes/mail.C, include/pa_string.h, main/untaint.C,
18344: targets/isapi/parser3isapi.dsp: mail subject encoding taken from
18345: .content-type.charset, not .charset
18346:
18347: 2002-03-29 paf
18348:
18349: * etc/parser3.charsets/koi8-r.cfg: koi8-r += ukranian letters
18350:
18351: * operators.txt, src/classes/date.C: ^date::create now may not
18352: supply day, default 1. checked 29.03 -> 29.02 roll on non 366
18353: days' year. | 31.05->31.04 roll
18354:
18355: 2002-03-28 paf
18356:
18357: * operators.txt, src/classes/date.C, src/classes/op.C,
18358: src/include/pa_globals.h, src/include/pa_hash.h,
18359: src/main/pa_globals.C, src/types/pa_vdate.h: ^cache[file][date]{
18360: ^cache(seconds) ^cache[date] }
18361:
18362: * src/classes/: xdoc.C, xnode.C, xnode.h: removed redundant pool
18363: param
18364:
18365: 2002-03-27 paf
18366:
18367: * operators.txt, src/classes/date.C, src/classes/double.C,
18368: src/classes/file.C, src/classes/form.C, src/classes/hash.C,
18369: src/classes/image.C, src/classes/int.C, src/classes/mail.C,
18370: src/classes/math.C, src/classes/op.C, src/classes/string.C,
18371: src/classes/table.C, src/classes/void.C, src/classes/xdoc.C,
18372: src/classes/xnode.C, src/include/pa_exception.h,
18373: src/include/pa_request.h, src/include/pa_stylesheet_connection.h,
18374: src/main/compile.C, src/main/compile_tools.C, src/main/execute.C,
18375: src/main/pa_array.C, src/main/pa_charset.C,
18376: src/main/pa_charsets.C, src/main/pa_common.C,
18377: src/main/pa_dictionary.C, src/main/pa_exception.C,
18378: src/main/pa_exec.C, src/main/pa_pool.C, src/main/pa_request.C,
18379: src/main/pa_socks.C, src/main/pa_sql_driver_manager.C,
18380: src/main/pa_string.C, src/main/pa_table.C, src/main/untaint.C,
18381: src/targets/cgi/parser3.C, src/targets/isapi/parser3isapi.C,
18382: src/types/pa_value.h, src/types/pa_vcookie.C,
18383: src/types/pa_vfile.h, src/types/pa_vform.C, src/types/pa_vhash.h,
18384: src/types/pa_vmethod_frame.h, src/types/pa_vstatus.C,
18385: src/types/pa_vtable.C, src/types/pa_vxdoc.h,
18386: src/types/pa_vxnode.h, src/types/pa_wcontext.C,
18387: src/types/pa_wwrapper.h: assigned exception types
18388:
18389: * operators.txt, src/classes/op.C, src/include/pa_config_fixed.h,
18390: src/include/pa_request.h, src/main/execute.C,
18391: src/main/pa_request.C: decided agains resetting exception_trace,
18392: just changed name
18393:
18394: 2002-03-26 paf
18395:
18396: * src/: include/pa_common.h, main/pa_exec.C: windows exec chdir
18397: fixed
18398:
18399: * src/classes/op.C: forced language of $source field of exception
18400: to 'tainted', so that sql-langed-frags could be outputed outside
18401: of connect
18402:
18403: * operators.txt: removed date.roll limit of +-1 offset
18404:
18405: * src/classes/date.C: removed date.roll limit of +-1 offset
18406:
18407: * operators.txt, src/classes/date.C: fixed date roll on
18408: daylightsaving days mktime took into account tm_isdst flag, which
18409: remained from BEFORE roll, but should have been reset
18410:
18411: 2002-03-25 paf
18412:
18413: * operators.txt, src/targets/cgi/parser3.C:
18414: http_site_config_filespec
18415:
18416: * src/: classes/file.C, classes/mail.C, include/pa_exec.h,
18417: main/pa_exec.C: f(!forced_allow) to allow --with-sendmail to work
18418: with any/both --disable-foreign-group-files --disable-execs
18419:
18420: * INSTALL: "--with=sendmail=COMMAND" comment
18421:
18422: * INSTALL, configure, configure.in, src/classes/mail.C,
18423: src/include/pa_config_auto.h.in, src/main/pa_exec.C,
1.116 moko 18424: src/targets/cgi/Makefile.am: --disable-foreign-group-files now
18425: disables execs also. introducing --sendmail
1.95 moko 18426:
18427: * operators.txt: pgsql options comment
18428:
18429: * INSTALL: comment on --disable-link-stdcpp
18430:
1.116 moko 18431: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
18432: libstdc++ link skipping configure option
1.95 moko 18433:
18434: * src/: classes/op.C, include/pa_sql_connection.h: sql connection
18435: with error were put to cache with 'marked_to_rollback' flag, all
18436: consequent even OK requests rolled back
18437:
18438: 2002-03-22 paf
18439:
18440: * src/main/pa_exec.C: createprocess nowindow flag check on readfile
18441: false return
18442:
18443: * operators.txt: few comments on sets
18444:
18445: 2002-03-18 paf
18446:
18447: * operators.txt, src/classes/op.C, src/include/pa_exception.h,
18448: src/include/pa_globals.h, src/include/pa_request.h,
18449: src/include/pa_stack.h, src/main/pa_globals.C,
18450: src/main/pa_request.C: introducing ^try
18451:
18452: * src/: main/pa_charset.C, targets/isapi/pa_threads.C,
18453: types/pa_vdouble.h: removed some tested @tests
18454:
18455: 2002-03-15 paf
18456:
18457: * operators.txt, src/classes/table.C: ^table.locate(logical expr)
18458:
18459: 2002-03-13 paf
18460:
18461: * src/main/pa_exception.C: checked not-pooled malloc
18462:
18463: 2002-03-11 paf
18464:
18465: * INSTALL, configure, configure.in,
18466: src/include/pa_config_auto.h.in: --disable-foreign-group-files
18467:
18468: * src/main/pa_common.C: --disable-foreign-group-files
18469:
18470: * INSTALL: --disable-execs
18471:
18472: * src/main/pa_exec.C: --disable-execs
18473:
18474: * configure, configure.in, src/include/pa_config_auto.h.in:
18475: --disable-execs
18476:
18477: * src/: include/pa_config_fixed.h, main/pa_exec.C: --disable-execs
18478:
18479: * src/types/pa_vfile.C: $file.text now 0A linebreaks,
18480: file::exec/cgi linebreaks "0D0A" changed to 0A onces
18481:
18482: 2002-03-05 paf
18483:
18484: * operators.txt, src/classes/date.C: date week calendar columns
18485: named
18486:
18487: * operators.txt, src/classes/date.C: date week calendar columns
18488: named
18489:
18490: * src/targets/isapi/: parser3isapi.C, parser3isapi.dsp: iis5 now
18491: requires headers to be terminated with \r\n manually [refuses to
18492: separate header/body itself]
18493:
18494: * src/: main/pa_globals.C, targets/cgi/parser3.C,
18495: targets/isapi/parser3isapi.C: isapi site config beside .dll
18496:
18497: 2002-03-04 paf
18498:
18499: * src/: classes/op.C, types/pa_vfile.C: process body now evaluated
18500: in PASS language
18501:
18502: * src/: classes/op.C, include/pa_string.h, main/pa_string.C: string
18503: deserialize checks on broken file
18504:
18505: * src/targets/isapi/: pa_threads.C, parser3isapi.C,
18506: parser3isapi.dsp: isapi updated
18507:
18508: 2002-03-01 paf
18509:
18510: * src/main/pa_exec.C: execle -> execve, now argc OK
18511:
18512: 2002-02-28 paf
18513:
18514: * src/main/untaint.C: removed some debug comments
18515:
18516: * src/main/pa_charsets.C: when placing charset to cache using
18517: global name now [were request]
18518:
18519: * configure, configure.in: apache module updated
18520:
18521: * src/main/pa_string.C: origin by first piece preferred before last
18522: piece
18523:
18524: 2002-02-27 paf
18525:
18526: * src/main/pa_charset.C: size_t
18527:
18528: * INSTALL: shared/static-xml with-pathlink
18529:
18530: * operators.txt: SMTP comment
18531:
18532: 2002-02-26 paf
18533:
18534: * src/main/pa_exec.C: more precise names for vars, cosmetic
18535:
18536: * src/classes/xnode.C: in some situation, xpath query returned
18537: result with type NODESET, but empty nodeset member field, checked
18538: that
18539:
18540: 2002-02-22 paf
18541:
18542: * INSTALL: without-zlib comment
18543:
18544: * etc/parser3.charsets/windows-1251.cfg: °
18545:
18546: * configure, configure.in: glib###.a detection fixed
18547:
18548: * INSTALL: hashfile removed from INSTALL
18549:
1.116 moko 18550: * Makefile.am: make update
1.95 moko 18551:
18552: * src/main/pa_string.C: string iterators fixed again, so were
18553: String::join_chain
18554:
18555: * src/main/pa_string.C: string iterators fixed again, so were
18556: String::join_chain
18557:
18558: * src/: include/pa_string.h, main/pa_string.C: string iterators
18559: fixed again, so were String::join_chain
18560:
18561: * src/types/pa_vcookie.C: cookie "expires=0" = "session"
18562:
18563: * operators.txt, src/types/pa_vcookie.C: cookie "expires=0" =
18564: "session"
18565:
1.116 moko 18566: * configure, configure.in, src/include/pa_config_auto.h.in:
18567: --with-shared-xml --with-static-xml
1.95 moko 18568:
18569: * src/: classes/classes.dsp, main/compile.tab.C, main/main.dsp,
18570: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
18571: types/types.dsp: *.dsp: removed refereces to win32db & ancient
18572: xalan&xml
18573:
18574: * acconfig.h: acconfig move in cvs[from src/libltdl to /]
18575:
18576: * operators.txt, src/classes/classes.dsp, src/main/main.dsp,
18577: src/types/types.dsp: removed hashfile support from sources for
18578: now
18579:
1.116 moko 18580: * configure, configure.in, src/classes/Makefile.am,
1.95 moko 18581: src/classes/hashfile.C, src/include/Makefile.am,
1.116 moko 18582: src/include/pa_config_auto.h.in, src/include/pa_db_connection.h,
18583: src/include/pa_db_manager.h, src/include/pa_db_table.h,
18584: src/main/Makefile.am, src/main/pa_db_connection.C,
1.95 moko 18585: src/main/pa_db_manager.C, src/main/pa_db_table.C,
1.116 moko 18586: src/main/pa_globals.C, src/targets/cgi/Makefile.am,
18587: src/types/Makefile.am, src/types/pa_vhashfile.C,
18588: src/types/pa_vhashfile.h: removed hashfile support for now
1.95 moko 18589:
18590: 2002-02-21 paf
18591:
18592: * src/main/untaint.C: removed debug code, activated commented-for
18593: debug parts
18594:
1.116 moko 18595: * Makefile.am: make cvsupdate
1.95 moko 18596:
18597: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
18598: main/untaint.C: STRING_*FOREACH_ROW changed to stop at
18599: append_row, not at link zero now string to string appending works
18600:
18601: 2002-02-20 paf
18602:
18603: * src/: include/pa_string.h, main/execute.C, main/untaint.C,
18604: targets/cgi/pa_pool.C, targets/cgi/parser3.C: //#define
18605: DEBUG_STRING_APPENDS_VS_EXPANDS
18606:
18607: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18608: economy: 22%
18609:
18610: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
18611: space uptimized: string::link_row removed
18612:
18613: * src/: include/pa_string.h, include/pa_stylesheet_connection.h,
18614: main/pa_db_manager.C, main/pa_dictionary.C, main/pa_string.C,
18615: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
18616: types/pa_vstring.h: speed uptimized: string::is_empty
18617:
18618: * operators.txt, src/include/pa_common.h,
18619: src/include/pa_config_fixed.h, src/include/pa_string.h,
18620: src/include/pa_types.h, src/main/compile.tab.C,
18621: src/main/execute.C, src/main/pa_string.C, src/main/untaint.C,
18622: src/targets/cgi/pa_pool.C, src/targets/cgi/parser3.C: strign to
18623: string append optimiziation idea and estimates
18624:
18625: 2002-02-19 paf
18626:
18627: * src/classes/math.C: not used directly [but erroreously reported
18628: that 'is', thus registering twice&other probs]
18629:
18630: * src/classes/: xdoc.C, xnode.C: getElementsByTagName and *NS moved
18631: to node [element]
18632:
18633: * src/main/compile.C: without string_origins parse error
18634: file+line+col possible
18635:
18636: * src/main/: compile.C: without string_origins not worked
18637:
18638: 2002-02-18 paf
18639:
18640: * src/types/pa_vdouble.h: since we have in_expression removed that
18641: trick i've installed into double::as_string
18642:
18643: * src/main/pa_globals.C: extern "C" was removed too fast
18644:
18645: * src/: include/pa_opcode.h, include/pa_request.h,
18646: main/compile.tab.C, main/compile.y, main/execute.C,
18647: types/pa_wcontext.h: in_expression aimed to solve old problem
18648: with string/nonstring values, now in expressions double/int
18649: values are passed as-is, without stupid tostring/fromstring
18650: conversions
18651:
18652: * src/main/: main.dsp, pa_globals.C: removed unneded #ifdef
18653: __cplusplus } #endif
18654:
18655: * src/main/compile.tab.C: bison env set so one could compile
18656: without cygwin installed
18657:
18658: * src/: classes/classes.dsp, main/main.dsp, main/pa_globals.C,
18659: targets/cgi/parser3.dsp, types/types.dsp: win32xml now contains
18660: gnome xml libs parser .dsp-s changed accordingly
18661:
18662: * operators.txt, src/targets/cgi/parser3.C: PARSER_ROOT_CONFIG
18663:
18664: * operators.txt, src/classes/date.C: date::create [were date::set,
18665: with backward comp
18666:
18667: * src/classes/math.C: math:random range check fixed
18668:
18669: * src/main/: compile.tab.C, compile.y: integer division stops name
18670:
18671: * INSTALL: local install comment
18672:
1.116 moko 18673: * ltconfig, ltmain.sh: removed libtool subpart files
1.95 moko 18674:
1.116 moko 18675: * acinclude.m4, aclocal.m4, configure, configure.in,
18676: src/include/pa_config_auto.h.in,
18677: src/include/pa_config_includes.h, src/targets/cgi/Makefile.am,
18678: src/targets/cgi/parser3.C: removed libtool usage from build mech
1.95 moko 18679:
18680: * operators.txt: \ comment
18681:
18682: 2002-02-13 paf
18683:
18684: * src/include/pa_config_includes.h: sys/time time both included
18685: now. vaguely remember confilicts on this on some system [not on
18686: six|ablv] so when would see them again would think up proper
18687: check
18688:
1.116 moko 18689: * INSTALL, configure, configure.in, src/targets/cgi/Makefile.am:
18690: --with-glib-config CXXLINK=$(CC) for targets/cgi/parser3
1.95 moko 18691:
18692: * src/main/pa_common.C: truncation never occured when writing files
18693: on unix [since i've changed cache mech] fix
18694:
18695: * src/main/pa_common.C: strnchr: sanity check added
18696:
18697: * etc/parser3.charsets/windows-1257.cfg: id added
18698:
18699: * etc/parser3.charsets/windows-1257.cfg, src/targets/cgi/parser3.C:
18700: baltic charset file generated, in generation script ispunct check
18701: added
18702:
18703: 2002-02-08 paf
18704:
1.116 moko 18705: * src/: include/Makefile.am, sql/Makefile.am,
18706: targets/isapi/Makefile.am: forgotten makes
1.95 moko 18707:
18708: * src/types/: pa_vcookie.C: VCookie::fill_fields one check
18709: forgotten
18710:
18711: * src/types/pa_vcookie.C: VCookie::fill_fields one check forgotten
18712:
18713: * INSTALL, README: install&others updated
18714:
18715: * AUTHORS, COPYING, ChangeLog, INSTALL: install&others updated
18716:
1.116 moko 18717: * Makefile.am, configure, configure.in,
18718: etc/parser3.charsets/Makefile.am, src/Makefile.am,
18719: src/classes/Makefile.am, src/main/Makefile.am,
18720: src/main/pa_status_provider.C, src/targets/Makefile.am,
18721: src/targets/cgi/Makefile.am, src/types/Makefile.am: 'make dist'
18722: works
1.95 moko 18723:
18724: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18725: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18726: classes/hashfile.C, classes/int.C, classes/mail.C,
18727: classes/math.C, classes/op.C, classes/response.C,
18728: classes/string.C, classes/table.C, classes/void.C,
18729: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18730: include/pa_array.h, include/pa_cache_managers.h,
18731: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18732: include/pa_config_fixed.h, include/pa_config_includes.h,
18733: include/pa_db_connection.h, include/pa_db_manager.h,
18734: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18735: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18736: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18737: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18738: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18739: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18740: include/pa_stack.h, include/pa_string.h,
18741: include/pa_stylesheet_connection.h,
18742: include/pa_stylesheet_manager.h, include/pa_table.h,
18743: include/pa_threads.h, include/pa_types.h, main/compile.C,
18744: main/compile_tools.C, main/compile_tools.h, main/execute.C,
18745: main/pa_array.C, main/pa_cache_managers.C, main/pa_charsets.C,
18746: main/pa_db_connection.C, main/pa_db_manager.C,
18747: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18748: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
18749: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
18750: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
18751: main/pa_string.C, main/pa_stylesheet_manager.C, main/pa_table.C,
18752: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18753: targets/cgi/pa_threads.C, targets/cgi/pool_storage.h,
18754: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
18755: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h,
18756: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
18757: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
18758: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18759: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.h,
18760: types/pa_vhash.h, types/pa_vhashfile.h, types/pa_vimage.h,
18761: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
18762: types/pa_vmethod_frame.h, types/pa_vobject.h,
18763: types/pa_vrequest.h, types/pa_vresponse.h,
18764: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
18765: types/pa_vstateless_object.h, types/pa_vstatus.C,
18766: types/pa_vstatus.h, types/pa_vstring.h, types/pa_vtable.h,
18767: types/pa_vvoid.h, types/pa_vxdoc.h, types/pa_vxnode.h,
18768: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h,
18769: classes/image.C, main/pa_common.C, main/pa_exec.C,
18770: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C,
18771: types/pa_vfile.C, types/pa_vform.C, types/pa_vhashfile.C,
18772: types/pa_vimage.C, types/pa_vrequest.C, types/pa_vresponse.C,
18773: types/pa_vstring.C, types/pa_vtable.C, types/pa_vxdoc.C,
18774: types/pa_vxnode.C, main/pa_charset.C: name spelling
18775:
18776: * src/: classes/classes.C, classes/classes.h, classes/date.C,
18777: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
18778: classes/hashfile.C, classes/image.C, classes/int.C,
18779: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
18780: classes/string.C, classes/table.C, classes/void.C,
18781: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
18782: include/pa_array.h, include/pa_cache_managers.h,
18783: include/pa_charset.h, include/pa_charsets.h, include/pa_common.h,
18784: include/pa_config_fixed.h, include/pa_config_includes.h,
18785: include/pa_db_connection.h, include/pa_db_manager.h,
18786: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
18787: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
18788: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
18789: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
18790: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
18791: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
18792: include/pa_stack.h, include/pa_string.h,
18793: include/pa_stylesheet_connection.h,
18794: include/pa_stylesheet_manager.h, include/pa_table.h,
18795: include/pa_threads.h, include/pa_types.h, main/compile.C,
18796: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
18797: main/execute.C, main/pa_array.C, main/pa_cache_managers.C,
18798: main/pa_charset.C, main/pa_charsets.C, main/pa_common.C,
18799: main/pa_db_connection.C, main/pa_db_manager.C,
18800: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
18801: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
18802: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
18803: main/pa_socks.C, main/pa_sql_driver_manager.C,
18804: main/pa_status_provider.C, main/pa_string.C,
18805: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
18806: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
18807: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
18808: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
18809: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
18810: targets/isapi/pool_storage.h, types/pa_valiased.C,
18811: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
18812: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
18813: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
18814: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
18815: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
18816: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
18817: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
18818: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
18819: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.C,
18820: types/pa_vresponse.h, types/pa_vstateless_class.C,
18821: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
18822: types/pa_vstatus.C, types/pa_vstatus.h, types/pa_vstring.C,
18823: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
18824: types/pa_vvoid.h, types/pa_vxdoc.C, types/pa_vxdoc.h,
18825: types/pa_vxnode.C, types/pa_vxnode.h, types/pa_wcontext.C,
18826: types/pa_wcontext.h, types/pa_wwrapper.h: 2002
18827:
18828: 2002-02-07 paf
18829:
18830: * src/main/pa_socks.C: swapped headers to avoid compiler warnings
18831:
1.116 moko 18832: * configure, configure.in, src/include/pa_config_auto.h.in,
18833: src/main/pa_common.C, src/main/pa_socks.C: compiled under cygwin
18834: added yet another locking function: fcntl
1.95 moko 18835:
18836: * config.sub: on cygwin configure passes it with strange i1586
18837: const, hacked it to mean i586
18838:
18839: * src/main/: compile.C, compile.tab.C, compile.y, compile_tools.h:
18840: disabled $if reference due to conflicts with local variables
18841:
18842: * operators.txt, src/classes/xdoc.C, src/include/pa_config_fixed.h:
18843: xdoc::set obsolete now, now xdoc::create, with both sences
18844:
18845: * operators.txt, src/classes/table.C, src/include/pa_array.h,
18846: src/include/pa_table.h, src/main/pa_array.C, src/main/pa_table.C:
18847: table::create now // 'set' name obsolete now table clone.
18848:
18849: * operators.txt, src/classes/string.C,
18850: src/include/pa_config_fixed.h, src/main/compile.tab.C:
18851: ^int/double/string.format now can be called with normal []
18852: brackets, not stupid {} as it were implemented for some strange
18853: reason. retaining backward compatibility due to some
18854: already-implemented servers
18855:
18856: * src/: include/pa_array.h, main/compile.C, main/compile.tab.C,
18857: main/compile.y, main/compile_tools.C, main/compile_tools.h:
18858: operators now detected by check at name_without_curly_rdive_read
18859: rule whether diving code constists only of
18860: OP_VALUE+string+OP_GET_ELEMENT. and last op code substituted
18861: with OP_GET_ELEMENT_OR_OPERATOR to form
18862: OP_VALUE+string+OP_GET_ELEMENT_OR_OPERATOR. code
18863:
18864: 2002-02-06 paf
18865:
18866: * configure, configure.in: prefix expanded, grr
18867:
18868: * operators.txt, src/classes/mail.C: mail:send config changed
18869:
18870: 2002-02-05 paf
18871:
18872: * operators.txt: regex options commented
18873:
18874: * src/main/: pa_exec.C: argv0 now correct
18875:
18876: * src/types/pa_vstatus.C: status:rusage 3
18877:
18878: * src/types/pa_vstatus.C: status:rusage 2
18879:
18880: * operators.txt: status:rusage described int operators
18881:
18882: * src/types/pa_vstatus.C: status:rusage 1
18883:
18884: * configure.in, src/types/Makefile.am, src/types/pa_vstatus.h,
18885: src/types/types.dsp: status:rusage
18886:
18887: * configure.in, operators.txt, src/classes/file.C,
18888: src/classes/op.C, src/include/pa_common.h,
18889: src/include/pa_config_includes.h, src/main/compile.tab.C,
18890: src/main/pa_common.C: rewritten ^cache to use
18891: non-blocking-exclusive-caches
18892:
18893: * src/main/pa_common.C: text file read mode on win32 adjusted
18894: [speed impact. was off for debugging purpose, but forgotten
18895: afterwards]
18896:
18897: 2002-02-01 paf
18898:
18899: * src/classes/op.C: file_write does EX lock after create, while
18900: file_read does SH after open, so there's a moment after create
18901: but before EX lock when read can sneak into, and read
18902: just-created-for-writing-and-not-yet-locked file, added a check
18903: for that in ^cache...read
18904:
18905: 2002-01-31 paf
18906:
18907: * src/main/: compile.y, compile.tab.C: disabled operator call after
18908: ^xxx:
18909:
18910: * src/main/: compile.tab.C, execute.C: made operators lookup first
18911: in ^xxx situation. so that one could not do $if[1] ^if[xxx]
18912:
18913: * src/: include/pa_opcode.h, include/pa_request.h, main/compile.C,
18914: main/compile.tab.C, main/compile.y, main/compile_tools.C,
18915: main/compile_tools.h, main/execute.C, types/pa_wcontext.h:
18916: operators check 6.1 rewritten. now check is done at compile time
18917:
18918: * src/main/execute.C: operators check 5 floated up old error of
18919: staying in 'entered class/object' state after $a($a..) it
18920: prevented operators from being called thereafter
18921:
18922: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
18923: main/execute.C: operators check 4 floated up old error of staying
18924: in 'entered object' state after ^a.a(a) it prevented operators
18925: from being called thereafter
18926:
18927: * src/main/execute.C: operators check 3 floated up old error of
18928: staying in 'entered class' state after $a:a(a) it prevented
18929: operators from being called thereafter
18930:
18931: * src/: main/execute.C, types/pa_wcontext.h: operators check 2
18932: floated up old error of staying in 'entered class' state after
18933: $a:a[a] it prevented operators from being called thereafter
18934:
18935: * src/main/execute.C: operators check, thay mistakenly seen in
18936: $class:operator $object.operators contexts
18937:
18938: * src/: classes/xdoc.C, targets/cgi/parser3.dsp: now compiles under
18939: win32
18940:
1.116 moko 18941: * INSTALL, configure, configure.in, ident.awk, etc/Makefile.am,
18942: src/classes/Makefile.am, src/main/Makefile.am,
18943: src/targets/cgi/Makefile.am,
1.95 moko 18944: src/targets/cgi/pa_config_paths.h.in, src/targets/cgi/parser3.C,
1.116 moko 18945: src/types/Makefile.am: lowered indent.awk back to src/
1.95 moko 18946:
1.116 moko 18947: * AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, NEWS, README,
18948: acinclude.m4, aclocal.m4, asm.txt, config.guess, config.sub,
18949: configure, configure.in, form.txt, ident.awk, install-sh,
18950: lang.txt, ltconfig, ltmain.sh, missing, mkinstalldirs,
18951: operators.txt, parser3.dsw, sql.txt, types.txt, etc/Makefile.am,
1.95 moko 18952: etc/parser3.charsets/Makefile.am,
18953: etc/parser3.charsets/koi8-r.cfg,
18954: etc/parser3.charsets/windows-1250.cfg,
18955: etc/parser3.charsets/windows-1251.cfg, src/Makefile.am,
1.116 moko 18956: src/classes/Makefile.am, src/include/pa_config_auto.h.in,
18957: src/main/Makefile.am, src/targets/cgi/Makefile.am,
18958: src/targets/cgi/parser3.C, src/types/Makefile.am: moved etc&www
18959: out of src, moved configure&co out of src added windows-1250.cfg
1.95 moko 18960: straightened installation scripts procedure made
18961: targets/cgi/parser3.C be dependant on ./configure --sysconfdir
18962: change
18963:
18964: 2002-01-30 paf
18965:
18966: * src/classes/xdoc.C: acconfig.h changed [comments before #undefs
18967: removed] those comments were a mistake, and prevented libltdl
18968: from function properly
18969:
18970: 2002-01-29 paf
18971:
1.116 moko 18972: * src/: Makefile.am, classes/Makefile.am: removed libltdl/libtool
18973: creation [modified acinclude.m4 which were creating int into just
18974: assignment LIBTOOL=../libtool] added default system
18975: config&charsetts prepared 'make install', now it installs
18976: targets/cgi/parser3 into bin directory etc/parser3.conf &
18977: etc/parser3.charsets/* into $sysconfdir and
1.95 moko 18978: $sysconfdir/parser3.charsets respectively
18979:
18980: * src/: classes/xdoc.C, include/pa_charset.h, include/pa_globals.h,
18981: main/pa_globals.C: few forgotten ifdef XML added
18982:
18983: 2002-01-28 paf
18984:
1.116 moko 18985: * src/: classes/Makefile.am, targets/cgi/Makefile.am: xalan-patch
1.95 moko 18986: removed
18987:
18988: * src/main/pa_exception.C: dom|generic error output fix
18989:
18990: * src/classes/xnode.C: xdoc.importNode 3 [check err]
18991:
18992: * src/classes/xnode.C: xdoc.importNode 2 [mistype err]
18993:
18994: * src/: classes/xnode.C, types/pa_vxdoc.h: xdoc.importNode 1
18995: [fixed as_node helper func to accept docs]
18996:
18997: * src/: classes/xdoc.C, classes/xnode.h, main/pa_exception.C:
18998: xdoc.importNode 0
18999:
19000: * src/classes/xdoc.C: xdoc::set now untaints OK
19001:
19002: 2002-01-25 paf
19003:
19004: * src/main/: compile.tab.C, compile.y: #comment before @ after
19005: @SPECIAL now works OK
19006:
19007: * src/main/: pa_exec.C: unix: exec now does chdir to script dir
19008:
19009: * src/main/pa_exec.C: max arg count now 10, and proper message on
19010: violation that added
19011:
19012: * src/classes/hash.C: unified hash::sql, now
19013: ^hash::sql{query}[[$.limit(2) $.offset(4)]]
19014:
19015: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
19016: ^file:lock[filename]{code}
19017:
19018: * src/: classes/file.C, classes/op.C, classes/string.C,
19019: classes/table.C, classes/xdoc.C, include/pa_common.h,
19020: main/pa_common.C, types/pa_vfile.h: removed redundant pool param
19021: to some pa_common funcs
19022:
19023: * src/: include/pa_charset.h, main/pa_globals.C:
19024: http://localhost/abc -> $ENV{DOCUMENT_ROOT}/abc | ./abc
19025:
19026: * src/: include/pa_charset.h, main/pa_charset.C,
19027: include/pa_config_fixed.h, main/compile.tab.C: typedef XMLCh...
19028: not stupid illegal define
19029:
19030: 2002-01-24 paf
19031:
19032: * src/include/pa_version.h: changed version number
19033:
19034: * src/: classes/hashfile.C, include/pa_db_table.h,
19035: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19036: main/compile_tools.C, main/compile_tools.h, main/execute.C,
19037: main/pa_db_connection.C, main/pa_db_table.C,
19038: types/pa_vhashfile.C, types/pa_vhashfile.h: merged from r17 -
19039: hashfile without logfiles
19040:
19041: * src/: classes/hashfile.C, include/pa_db_table.h,
19042: main/compile.tab.C, main/pa_db_connection.C, main/pa_db_table.C,
19043: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile: removed use
19044: of transactions [libdb removed DB_INIT_LOCK, DB_INIT_LOG,
19045: DB_INIT_TXN init bits, thus got rid of huge log files, which
19046: cluttered disk without huge need]
19047:
19048: * src/classes/: xdoc.C, xnode.C, xnode.h: gdome_xml_doc_get_xmlDoc
19049: handy macro, which is strangly abscent in dome lib
19050:
19051: * src/classes/xdoc.C: xsltSaveResultTo checked <0 response
19052:
19053: * src/classes/xdoc.C: checked empty response
19054:
19055: * src/classes/xnode.C: xdoc.select fixed context node [were always
19056: /, not self node]
19057:
19058: * src/classes/xnode.C: xnode.select returns array always now, in
19059: case 'nothing found' returns empty array
19060:
19061: * src/classes/xnode.C: xpath nodes select bug [0] instead of [i],
19062: be more tender with ctrl/c/v
19063:
19064: 2002-01-23 paf
19065:
19066: * src/: classes/xdoc.C, main/pa_globals.C: xdoc::load/set entities
19067: substituted. // 2. when dom tree with entites goes under
19068: transform text nodes // got [erroreosly] cut on first
19069: entity occurance
19070:
19071: * src/types/pa_vdouble.h: double prec. todo: get rid of
19072: twice-converting
19073:
19074: * src/types/pa_vdouble.h: %.20E now float format when %g produced
19075: 'e' in output this is for regretful twice-converting here:
19076: $a(double value) when they write double falue they convert it to
19077: string first, thus %g were losing precesion.
19078:
19079: todo: think up some way to remove double->string string->double
19080: twice-converting
19081:
19082: * src/: classes/xdoc.C, main/pa_globals.C, types/pa_vdouble.h:
19083: %.20E now default float format this is for regretful
19084: twice-converting here: $a(double value) when they write double
19085: falue they convert it to string first, thus %g were losing
19086: precesion.
19087:
19088: todo: think up some way to remove double->string string->double
19089: twice-converting
19090:
19091: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19092: main/pa_globals.C: xmlSubstituteEntitiesDefault(1) now global,
19093: reasons in comment inside
19094:
19095: * src/main/pa_globals.C: xslt linked dynamically. [mistekenly were
19096: statically linked]
19097:
19098: * src/: include/pa_exception.h, main/compile.tab.C,
19099: main/pa_exception.C: removed exception va_list constructor. 1.
19100: not needed anymore 2. there were a conflict[causing errors]
19101: between ctor(, va_list) ctor(, ...) compiler[both msvc and gcc]
19102: never detected an ambiguilty here, compiling ctor(, "hello") into
19103: ctor(, va_list) which, of course, caused gpf
19104:
19105: * src/main/pa_globals.C: removed debug xslt messages
19106:
19107: 2002-01-22 paf
19108:
19109: * src/: classes/xdoc.C, include/pa_stylesheet_connection.h,
19110: main/pa_globals.C: xsl stylesheet load: parsed entities, this
19111: helps compiling stylesheet properly. example: this refused to
19112: work, <b>«<xsl:value-of select="@title"
19113: />»</b> stranly worked only this way:
19114: <b>«<xsl:value-of select="@title" />»</b>
19115:
19116: docs says "set it to 1", never going into details, so I decided
19117: to try NOT to do that
19118:
19119: * src/classes/table.C: join behaived badly in case named tables
19120: structure mismatched: 0 strings sneaked into dest failing
19121: afterwards. replaced them with empty strings
19122:
19123: 2002-01-21 paf
19124:
19125: * src/main/pa_charset.C: checked empty transcoders in
19126: transcode_cstr|buf
19127:
19128: * src/classes/xdoc.C: xdoc::load error source = filespec
19129:
19130: * src/classes/xdoc.C: transform error source now
19131: stylesheet_filespec
19132:
1.116 moko 19133: * src/: classes/xdoc.C, classes/xnode.C,
1.95 moko 19134: include/pa_stylesheet_connection.h, main/pa_charset.C,
19135: main/pa_globals.C, main/pa_sql_driver_manager.C,
1.116 moko 19136: main/pa_stylesheet_manager.C, targets/cgi/Makefile.am: autoconf
19137: gnome
1.95 moko 19138:
19139: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
19140: include/pa_globals.h, include/pa_stylesheet_connection.h,
19141: main/pa_exception.C, main/pa_globals.C, targets/cgi/pa_threads.C:
19142: xslt generic error 1
19143:
19144: * src/: include/pa_stylesheet_connection.h, main/pa_exception.C:
19145: xml generic message 1
19146:
19147: * src/classes/table.C: ^table::load empty lines or #comments before
19148: headline
19149:
19150: * src/: include/pa_array.h, include/pa_globals.h,
19151: include/pa_request.h, include/pa_threads.h, main/pa_array.C,
19152: main/pa_exception.C, main/pa_globals.C, main/pa_request.C,
19153: targets/cgi/pa_threads.C, targets/isapi/pa_threads.C: xml generic
19154: errors 0
19155:
19156: 2002-01-16 paf
19157:
19158: * src/: classes/hash.C, classes/op.C, classes/string.C,
19159: classes/table.C, classes/void.C, classes/xdoc.C,
19160: include/pa_db_connection.h, include/pa_request.h,
19161: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19162: include/pa_stylesheet_connection.h,
19163: include/pa_stylesheet_manager.h, main/pa_request.C,
19164: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19165: targets/cgi/pool_storage.h: auto closers to sql_connection,
19166: stylesheet_connection auto destroyers to remaining gnome objects
19167:
19168: * src/classes/xdoc.C: few comments
19169:
19170: 2002-01-15 paf
19171:
19172: * src/classes/xdoc.C: xdoc file save string
19173:
19174: ready. todo: error handling
19175:
19176: * src/classes/xdoc.C: xdoc save rewritten using
19177: xmlAllocOutputBuffer less mallocs, more reallocs. less fragmented
19178: result
19179:
19180: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C:
19181: started output options parsing
19182:
19183: 2002-01-14 paf
19184:
19185: * src/classes/xdoc.C: method
19186:
19187: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19188: include/pa_pool.h, include/pa_stylesheet_connection.h,
19189: main/main.dsp, main/pa_charset.C, main/pa_globals.C,
19190: main/pa_pool.C, main/pa_stylesheet_manager.C, types/pa_vxdoc.h:
19191: xslt transform0. TODO: use output options handle errors
19192:
19193: * src/classes/: xdoc.C, xnode.C: ^xdoc.file
19194:
19195: 2002-01-11 paf
19196:
19197: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19198: main/compile_tools.C, main/compile_tools.h, main/execute.C:
19199: partial logical && || evaluation
19200:
19201: * src/classes/xnode.C: xpath selectNodes
19202:
19203: * src/: classes/xnode.C, include/pa_charset.h: xpath selectNode 3:
19204: string/number/bool
19205:
19206: * src/classes/xnode.C: xpath selectNode 2
19207:
19208: * src/: classes/xnode.C, include/pa_charset.h, main/pa_charset.C:
19209: xpath selectNode 1
19210:
19211: 2002-01-10 paf
19212:
19213: * src/classes/xnode.C: xpath selectNode -100 [just written]
19214:
19215: * src/: classes/xdoc.C, classes/xnode.C, include/pa_charset.h,
19216: include/pa_exception.h, include/pa_pool.h, main/pa_charset.C,
19217: main/pa_pool.C: GdomeDOMString_auto_ptr c++ wrapper [calls
19218: refcounter]
19219:
19220: 2001-12-29 paf
19221:
19222: * src/: classes/xdoc.C, include/pa_exception.h, main/pa_charset.C,
19223: main/pa_exception.C, main/pa_globals.C: xdoc ^set ^string with
19224: glib works 0
19225:
19226: 2001-12-28 paf
19227:
19228: * src/: classes/xdoc.C, include/pa_charset.h, main/pa_charset.C,
19229: main/pa_exception.C: started glib transcoders
19230:
19231: * src/main/pa_globals.C: renamed gdome to libgdome.dll
19232:
19233: * src/: classes/classes.dsp, classes/mail.C, classes/xdoc.C,
19234: classes/xnode.C, classes/xnode.h, include/pa_exception.h,
19235: include/pa_globals.h, main/compile.tab.C, main/main.dsp,
19236: main/pa_charset.C, main/pa_dir.C, main/pa_exception.C,
19237: main/pa_exec.C, main/pa_globals.C, main/pa_socks.C,
19238: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vxdoc.C,
19239: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: gnome
19240: libs just compiled in. no refcounting no xpath no xslt yet
19241:
19242: 2001-12-27 paf
19243:
19244: * src/: include/pa_charset.h, include/pa_common.h,
19245: include/pa_exception.h, include/pa_globals.h, include/pa_pool.h,
19246: main/main.dsp, main/pa_charset.C, main/pa_charsets.C,
19247: main/pa_globals.C, main/pa_pool.C, targets/cgi/parser3.C,
19248: targets/cgi/parser3.dsp, types/pa_vxdoc.C, types/pa_vxdoc.h,
19249: types/pa_vxnode.C, types/pa_vxnode.h, types/types.dsp: going away
19250: from xalan&xerces, started the process. globals [initialization
19251: pool [charset update charset [transcodings vxnode vxdoc [DOM
19252: calls
19253:
19254: * src/classes/Makefile.am: going away from xalan&xerces, not needed
19255: anymore
19256:
19257: 2001-12-26 paf
19258:
19259: * src/: include/pa_charset.h, include/pa_charsets.h,
19260: main/pa_charset.C, main/pa_charsets.C, main/pa_request.C: charset
19261: key globalized [bug]
19262:
19263: 2001-12-25 paf
19264:
19265: * src/: classes/mail.C, classes/table.C, include/pa_string.h,
19266: main/pa_string.C: table set & append changed splitting languages,
19267: separators now can be clean AND as-is same to mail command line
19268: $MAIN:MAIL.progX arguments
19269:
19270: 2001-12-24 paf
19271:
19272: * src/classes/mail.C: one parted text messages - no multipart
19273: mime-type anymore. for convinient if $.attach-ments
19274:
19275: * src/: classes/hashfile.C, classes/op.C, main/pa_db_table.C,
19276: main/pa_string.C: read from cache size check updated
19277:
19278: * src/main/: pa_string.C: String::join_chain another ugly bug :(
19279:
19280: 2001-12-21 paf
19281:
19282: * src/classes/date.C: date:sql-string now returns localtime
19283:
19284: * src/main/pa_request.C: $result in @main actually not working, to
19285: hell with it for now
19286:
19287: * src/: include/pa_request.h, main/execute.C, main/pa_request.C,
19288: types/pa_vmethod_frame.h, types/pa_wcontext.h: $result in @main
19289: @postprocess @exception
19290:
19291: * src/main/execute.C: junction evaluation canceled - endless
19292: recursion detected
19293:
19294: 2001-12-19 paf
19295:
19296: * src/main/pa_charset.C: charset->charset transcoding via unicode
19297: intermediate
19298:
19299: * src/main/pa_request.C: CLASS_PATH now / = DOCUMENT_ROOT
19300:
19301: * src/classes/hashfile.C: ^hashfile.open DB_HOME now relative
19302:
19303: * src/classes/op.C: ^cache keypath now relative
19304:
19305: * src/classes/mail.C: changed weighting prior to sort
19306:
19307: * src/: classes/mail.C, include/pa_config_fixed.h: to/from 0 check
19308: were missing
19309:
19310: 2001-12-17 paf
19311:
19312: * src/main/pa_charset.C: ifndef XML were bad type
19313:
19314: * src/: include/pa_db_table.h, main/pa_db_table.C: db_table used
19315: outdated unset services_pool
19316:
19317: * src/: classes/mail.C, include/pa_charsets.h, include/pa_string.h,
19318: main/pa_charsets.C, main/untaint.C, types/pa_vrequest.C,
19319: types/pa_vresponse.C: ^mail:send[ $.charset[zzz] addded
19320:
19321: * src/main/untaint.C: allowed space in filespec
19322:
19323: * src/main/pa_charset.C: empty bufs transcode [forgot check :(]
19324:
19325: * src/classes/image.C: no govno
19326:
19327: * src/classes/image.C: govno
19328:
19329: 2001-12-16 paf
19330:
19331: * src/include/: pa_charset.h, pa_charsets.h: forgot to add
19332:
19333: * src/: main/Makefile.am, main/pa_charset.C, types/Makefile.am:
19334: charset_connection&manager replaced by charset&charsets
19335:
19336: * src/main/pa_charset.C: name_cstr 0
19337:
19338: * src/main/untaint.C: uri lang now knows about client/source
19339: charsets
19340:
19341: * src/: classes/file.C, classes/math.C, classes/op.C,
19342: classes/string.C, classes/table.C, classes/xdoc.C,
19343: include/pa_array.h, include/pa_cache_managers.h,
19344: include/pa_charset_connection.h, include/pa_charset_manager.h,
19345: include/pa_common.h, include/pa_db_connection.h,
19346: include/pa_db_manager.h, include/pa_db_table.h,
19347: include/pa_dictionary.h, include/pa_exception.h,
19348: include/pa_exec.h, include/pa_globals.h, include/pa_hash.h,
19349: include/pa_opcode.h, include/pa_pool.h, include/pa_request.h,
19350: include/pa_sapi.h, include/pa_socks.h,
19351: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19352: include/pa_string.h, include/pa_stylesheet_connection.h,
19353: include/pa_stylesheet_manager.h, include/pa_table.h,
19354: include/pa_transcoder.h, main/compile_tools.h, main/main.dsp,
19355: main/pa_charset.C, main/pa_charset_connection.C,
19356: main/pa_charset_manager.C, main/pa_charsets.C, main/pa_globals.C,
19357: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
19358: main/pa_transcoder.C, main/untaint.C, types/pa_vfile.C,
19359: types/pa_vform.C, types/pa_vform.h, types/pa_vrequest.C,
19360: types/pa_vrequest.h, types/pa_vresponse.C, types/pa_vresponse.h,
19361: types/types.dsp: introducing Charset
19362:
19363: 2001-12-14 paf
19364:
19365: * src/: include/pa_request.h, include/pa_transcoder.h,
19366: main/pa_request.C, main/pa_transcoder.C, types/pa_vform.C,
19367: types/pa_vform.h: transcodeToUTF8[were FromUTF8] for forms todo:
19368: uri lang
19369:
19370: * src/main/pa_transcoder.C: transcodeToUTF8, now form&uri lang
19371:
19372: * src/targets/cgi/Makefile.am: -I../../pcre to .am
19373:
19374: * src/: include/pa_globals.h, main/pa_globals.C: removed unused
19375: defalts_name global
19376:
19377: * src/: include/pa_charset_connection.h, include/pa_pool.h,
19378: include/pa_request.h, main/main.dsp,
19379: main/pa_charset_connection.C, main/pa_charset_manager.C,
19380: main/pa_request.C, types/Makefile.am, types/pa_vrequest.C,
19381: types/pa_vrequest.h, types/pa_vresponse.h, types/types.dsp,
19382: include/pa_transcoder.h, main/pa_transcoder.C, main/Makefile.am:
19383: changed charset model. now important: $request:charset
19384: $response:charset while $response:content-type.charset become
19385: unimportant [informational]
19386:
19387: 2001-12-13 paf
19388:
19389: * src/targets/: cgi/pa_pool.C, isapi/pa_pool.C: EOL@EOF
19390:
19391: * src/classes/xdoc.C: rewritten auto_ptr part other way2, because
19392: of stupid gcc 2.96 /usr/include/g++-3/memory:40: candidates are:
19393: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with
19394: _Tp = FormatterListener] /usr/include/g++-3/memory:48:
19395: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &)
19396: [with _Tp1 = FormatterListener, _Tp = FormatterListener]
19397:
19398: * src/: classes/xdoc.C, main/pa_sql_driver_manager.C: rewritten
19399: auto_ptr part other way, because of stupid gcc 2.96
19400: /usr/include/g++-3/memory:40: candidates are: auto_ptr<_Tp>
19401: &auto_ptr<_Tp>::operator= (auto_ptr<_Tp> &) [with _Tp =
19402: FormatterListener] /usr/include/g++-3/memory:48:
19403: auto_ptr<_Tp> &auto_ptr<_Tp>::operator= (auto_ptr<_Tp1> &) [with
19404: _Tp1 = FormatterListener, _Tp = FormatterListener]
19405:
19406: * src/classes/xdoc.C: removed extra inc
19407:
19408: * src/targets/cgi/: pa_pool.C, parser3.C: msvc heap debugging flag
19409:
19410: * src/include/pa_types.h: msvc head debugging flag
19411:
19412: * src/classes/xdoc.C: freed up listener
19413:
19414: * src/classes/string.C: change msg '... code is not code'
19415:
19416: * src/: main/pa_db_connection.C, main/pa_db_manager.C,
19417: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19418: targets/cgi/pool_storage.h: couple cache expiratiors were wrong
19419: [past/future prob]
19420:
19421: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19422: include/pa_config_fixed.h, include/pa_db_manager.h,
19423: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19424: main/pa_cache_managers.C, main/pa_globals.C: ~Cache_managers
19425:
19426: * src/: include/pa_config_fixed.h, main/pa_common.C,
19427: main/pa_string.C: removed signed mismatch warnings
19428:
19429: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: removed
19430: 'expires' from header outputs
19431:
19432: * src/main/pa_string.C: string::recustruct erroreusly used outdated
19433: row ptr
19434:
19435: * src/classes/file.C: file::cgi bug, request_method were passed to
19436: SERVER_PROTOCOL but SERVER_PROTOCOL were forgotten
19437:
19438: * src/classes/xdoc.C: lang list updated
19439:
19440: 2001-12-10 paf
19441:
19442: * src/classes/math.C: ^math:random(n) now yields[0;n) not [0;n]
19443:
19444: * src/main/untaint.C: FILE_SPEC untainting changed so that one can
19445: erase files like that, knowing their full name introducing //
19446: theoretical problem with, for instance, "_2B" and "." fragments,
19447: // they would yield the same // because
19448: need_file_encode('_')=false // but we need to delete such files
19449: somehow, getting names from ^index
19450:
19451: * src/main/pa_string.C: ^string.replace bug fixed [bad
19452: string::join_chank break]
19453:
19454: 2001-12-07 paf
19455:
19456: * src/: classes/hashfile.C, classes/op.C, classes/table.C,
19457: include/pa_common.h, include/pa_config_auto.h.in,
19458: include/pa_config_fixed.h, include/pa_config_includes.h,
19459: include/pa_db_table.h, include/pa_request.h, main/pa_common.C,
19460: main/pa_db_table.C, main/pa_request.C, main/pa_string.C,
19461: types/pa_vhashfile.C: merged from r14_simple_cache
19462:
19463: * src/main/pa_string.C: stupid sparc architecture failed to access
19464: short at odd address 0x311f0 <deserialize__6StringUiPvUiPCc+16>:
19465: lduh [ %i2 + 1 ], %l0
19466:
19467: bus error, fixed that
19468:
19469: * src/main/pa_string.C: strange string deserialize bug on
19470: client[pmts], a bit shortened,
19471:
19472: * src/include/pa_config_auto.h.in: makes
19473:
19474: * src/: include/pa_common.h, include/pa_config_fixed.h,
19475: include/pa_config_includes.h, main/pa_common.C: exclusive lock
19476: file write shared lock file read
19477:
19478: * src/: classes/op.C, include/pa_common.h,
19479: include/pa_config_fixed.h, main/pa_common.C: ^cache operator
19480:
19481: 2001-12-06 paf
19482:
19483: * src/: classes/op.C, classes/table.C, include/pa_request.h,
19484: main/pa_request.C: #ifdef RESOURCES_DEBUG
19485:
19486: * src/: main/compile.tab.C, targets/cgi/parser3.C: removed debug
19487: info
19488:
19489: * src/classes/hashfile.C: removed transaction from ^cache
19490:
19491: 2001-12-05 paf
19492:
19493: * src/targets/cgi/: parser3.C: fatal error reporting fixed. in
19494: IIS5 there were a prob with illegal call check
19495:
19496: 2001-12-04 paf
19497:
19498: * src/: classes/op.C, classes/table.C, include/pa_request.h,
19499: main/pa_request.C: measures to log
19500:
19501: 2001-11-23 paf
19502:
19503: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
19504: main/pa_common.C, main/pa_db_table.C, main/pa_string.C,
19505: types/pa_vhashfile.C: merged from _0014, 1
19506:
19507: * src/: classes/hashfile.C, classes/table.C, include/pa_db_table.h,
19508: main/pa_common.C, main/pa_db_table.C, types/pa_vhashfile.C:
19509: hashfile bugfix2 more wrong sizes. ^cache behaviour changed: if
19510: ^cache(33) would change
19511:
19512: 0660 bits in file_write & hashfile create
19513:
19514: * src/main/: pa_db_table.C, pa_string.C: cache bugfix [wrong types
19515: after pa_string optimization]
19516:
19517: 2001-11-22 paf
19518:
19519: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
19520: table.offset[whence]
19521:
19522: * src/classes/op.C: process cstr(,connection)
19523:
19524: * src/classes/op.C: process now gets its body on current language,
19525: not as-is
19526:
19527: * src/main/untaint.C: ORIGINS mode removed UHTML
19528:
19529: * src/main/untaint.C: ORIGINS mode was bad - forgot about optimize
19530: bit
19531:
1.116 moko 19532: * src/classes/xdoc.C: cached xslt [removed nocache forcing]
1.95 moko 19533:
19534: 2001-11-21 paf
19535:
19536: * src/: classes/xdoc.C, types/pa_vxdoc.C, types/pa_vxdoc.h:
19537: <xsl:output output options made identical to xsl:output
19538: attributes exclusion: cdata-section-elements what xalan can do
19539: but that not used now: it can escape and remove CDATA sections
19540:
19541: * src/: main/untaint.C, targets/cgi/parser3.C: optimized \r
19542: produced by xslt
19543:
19544: * src/targets/cgi/parser3.C: removed debug cgi||1
19545:
19546: * src/main/: pa_string.C, untaint.C: cached some string::size() es
19547:
19548: * src/: classes/table.C, main/pa_string.C, main/untaint.C,
19549: targets/cgi/parser3.C: table.append bug fixed: forgot to switch
19550: default language for {code}, it happen to change it's language
19551: from CLEAN, so later refused to split by CLEAN \t
19552:
19553: 2001-11-20 paf
19554:
1.116 moko 19555: * src/: classes/Makefile.am, classes/table.C, main/Makefile.am,
19556: main/pa_exception.C, types/Makefile.am: moved ident.C & co to
1.95 moko 19557: bottom of dependeces, so that errors would popup quicklier, fixed
19558: line numbering in table::sql
19559:
19560: 2001-11-19 paf
19561:
19562: * src/: classes/op.C, include/pa_request.h, include/pa_string.h,
19563: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
19564: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
19565: targets/isapi/parser3isapi.C, types/pa_wcontext.C,
19566: types/pa_wcontext.h: UL_CLEAN pieces now inherit UL_OPTIMIZED_BIT
19567: at wcontext.write
19568:
1.116 moko 19569: * src/targets/: Makefile.am, cgi/parser3.C: #if _MSC_VER
1.95 moko 19570: _set_new_handler
19571:
1.116 moko 19572: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C:
19573: set_new_handler in apache&isapi
1.95 moko 19574:
19575: 2001-11-16 paf
19576:
19577: * src/targets/cgi/parser3.C: pool debug @ die
19578:
19579: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
19580: removed 8 bytes from String, 2 bytes from
19581: string::chunk::row::item
19582:
19583: * src/main/pa_string.C: removed 1+4 bytes from String
19584:
19585: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19586: types/pa_vstring.C: removed 1+4 bytes from String
19587:
19588: * src/main/pa_pool.C: introducing estimating String::cstr_bufsize,
19589: 0
19590:
19591: * src/: include/pa_globals.h, include/pa_string.h,
19592: include/pa_types.h, main/pa_globals.C, main/pa_pool.C,
19593: main/pa_request.C, main/untaint.C, sql/pa_sql_driver.h,
19594: targets/cgi/parser3.C: introducing estimating
19595: String::cstr_bufsize, 0
19596:
19597: * src/: main/pa_pool.C, include/pa_pool.h: die in pool::fail
19598:
19599: * src/: targets/cgi/parser3.C, main/pa_pool.C: die in pool::fail
19600:
19601: * src/: main/execute.C, main/pa_pool.C, targets/cgi/parser3.C,
19602: include/pa_pool.h: die in pool::fail
19603:
19604: 2001-11-15 paf
19605:
19606: * src/: include/pa_exception.h, main/execute.C, main/main.dsp,
19607: main/pa_exception.C, targets/cgi/parser3.C: exception with
19608: dynamic buffer re-back now with counter
19609:
19610: * src/: include/pa_exception.h, main/pa_exception.C: exception with
19611: static buffer back
19612:
19613: * src/targets/cgi/parser3.C: std::
19614:
19615: * src/: classes/classes.awk, include/pa_config_auto.h.in,
19616: include/pa_config_includes.h: setnewhandler check
19617:
1.116 moko 19618: * src/include/pa_config_auto.h.in: makes
1.95 moko 19619:
19620: * src/targets/cgi/parser3.C: set_new_handler started
19621:
19622: 2001-11-14 paf
19623:
19624: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
19625: was wrong
19626:
19627: * src/: include/pa_common.h, main/pa_common.C: snprintf replacement
19628: was wrong
19629:
19630: * src/main/pa_request.C: z
19631:
19632: * src/: include/pa_common.h, main/pa_common.C: snprintf on buffer
19633: full returns win32 -1 solaris >buffer_size
19634:
19635: checked all that
19636:
19637: * src/classes/op.C: ^untaint{body} as-is default now
19638:
19639: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
19640: types/pa_vstateless_class.h, types/pa_vstateless_object.h: merged
19641: with no_bad_constructors_try
19642:
19643: * src/: main/execute.C, types/pa_vclass.h, types/pa_vobject.h,
19644: types/pa_vstateless_class.h, types/pa_vstateless_object.h: fixed
19645: this: $bred[^string::length[]] $bred[^response::clear[]]
19646: $bred[^int::int[]]
19647:
19648: now VObject creation moved into overriden
19649: VClass::create_new_value, thus 0 from create_new_value means that
19650: class has no ctors
19651:
19652: 2001-11-13 paf
19653:
19654: * src/classes/classes.C: returned accedently removed if in foreach
19655: callbacks [when hash no-0-restructure]
19656:
19657: 2001-11-12 paf
19658:
19659: * src/main/pa_pool.C: changed xdoc createXXX politics, now string
19660: passed as-is to method, xalan makes & into & itself
19661:
19662: * src/classes/date.C: date.roll parser2 alg used
19663:
19664: * src/: classes/classes.C, classes/hash.C, classes/xdoc.C,
19665: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
19666: main/pa_dictionary.C, main/pa_hash.C,
19667: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C: hash
19668: now does not containt 0 values. put 0 actullay removes. no check
19669: on 0 value in foreach now required
19670:
19671: 2001-11-11 paf
19672:
19673: * src/sql/pa_sql_driver.h: removed extra constructor, doc
19674:
19675: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: CRLF
19676:
19677: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql
19678: driver initialize not const
19679:
19680: 2001-11-10 paf
19681:
19682: * src/main/pa_exec.C: doc
19683:
19684: 2001-11-09 paf
19685:
19686: * src/classes/: string.C, xdoc.C: xdoc::set{code} now untaints
19687: param properly
19688:
19689: * src/classes/string.C: string.save now does untainting before
19690: saving
19691:
19692: * src/main/pa_common.C: line endings fixing fixed last piece[was
19693: still cstr oriented]
19694:
19695: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19696: line endings fixing got rid of cstr, now must work ok with post
19697: multipart
19698:
19699: * src/types/pa_vform.C: line endings fixed at post / multipart /
19700: not file also now
19701:
19702: 2001-11-08 paf
19703:
19704: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19705: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
19706: include/pa_stylesheet_manager.h, main/pa_charset_manager.C,
19707: main/pa_db_manager.C, main/pa_sql_driver_manager.C,
19708: main/pa_stylesheet_manager.C: restructured Cache manager to be
19709: simple parent, not second parent [gcc 2.96 strangly refused to
19710: call virtual from second parent]
19711:
1.116 moko 19712: * src/: include/pa_common.h, main/Makefile.am,
19713: targets/cgi/pa_pool.C: makes
1.95 moko 19714:
19715: * src/: include/pa_request.h, main/pa_request.C,
19716: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: apache
19717: 'status' class enabler
19718:
19719: <Location /parser-status.html> ParserStatusAllowed </Location>
19720:
19721: * src/: include/pa_cache_managers.h, include/pa_charset_manager.h,
19722: include/pa_db_manager.h, include/pa_sql_driver_manager.h,
19723: include/pa_stylesheet_manager.h, main/main.dsp,
19724: main/pa_cache_managers.C, main/pa_charset_manager.C,
19725: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
19726: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
19727: types/pa_vstatus.h: cache_managers, maybe-expiring every request
19728: todo: apache 'status' class enabler
19729:
19730: 2001-11-05 paf
19731:
19732: * src/main/: pa_db_connection.C, pa_db_manager.C: expiration from
19733: debug to normal
19734:
19735: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_request.C:
19736: hence i removed skipping 0 values in hash::for_each-es we need to
19737: check cleaned cache items manually. few more checks.
19738:
19739: expiring to 0 time was wrong, changed to 'now' time
19740:
19741: * src/targets/cgi/parser3.C: read can return 0, that means sort of
19742: sig_pipe on freebsd [moko's experiments]. checked that in cgi,
19743: on apache already done :)
19744:
19745: * src/main/: pa_db_connection.C, pa_db_manager.C: hence i removed
19746: skipping 0 values in hash::for_each-es we need to check cleaned
19747: cache items manually
19748:
19749: * src/main/: pa_db_connection.C, pa_db_table.C:
19750: parser_multithreaded check was wrong
19751:
19752: * src/: classes/classes.C, classes/classes.h, classes/date.C,
19753: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
19754: classes/hashfile.C, classes/image.C, classes/int.C,
19755: classes/mail.C, classes/math.C, classes/op.C, classes/response.C,
19756: classes/string.C, classes/table.C, classes/void.C,
19757: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
19758: include/pa_array.h, include/pa_charset_connection.h,
19759: include/pa_charset_manager.h, include/pa_common.h,
19760: include/pa_config_fixed.h, include/pa_config_includes.h,
19761: include/pa_db_connection.h, include/pa_db_manager.h,
19762: include/pa_db_table.h, include/pa_dictionary.h, include/pa_dir.h,
19763: include/pa_exception.h, include/pa_exec.h, include/pa_globals.h,
19764: include/pa_hash.h, include/pa_opcode.h, include/pa_pool.h,
19765: include/pa_pragma_pack_begin.h, include/pa_pragma_pack_end.h,
19766: include/pa_request.h, include/pa_sapi.h, include/pa_socks.h,
19767: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
19768: include/pa_stack.h, include/pa_string.h,
19769: include/pa_stylesheet_connection.h,
19770: include/pa_stylesheet_manager.h, include/pa_table.h,
19771: include/pa_threads.h, include/pa_types.h, main/compile.C,
19772: main/compile.tab.C, main/compile_tools.C, main/compile_tools.h,
19773: main/execute.C, main/pa_array.C, main/pa_charset_connection.C,
19774: main/pa_charset_manager.C, main/pa_common.C,
19775: main/pa_db_connection.C, main/pa_db_manager.C,
19776: main/pa_db_table.C, main/pa_dictionary.C, main/pa_dir.C,
19777: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
19778: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
19779: main/pa_socks.C, main/pa_sql_driver_manager.C,
19780: main/pa_status_provider.C, main/pa_string.C,
19781: main/pa_stylesheet_manager.C, main/pa_table.C, main/untaint.C,
19782: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
19783: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
19784: targets/cgi/pool_storage.h, targets/isapi/pa_pool.C,
19785: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
19786: targets/isapi/pool_storage.h, types/pa_valiased.C,
19787: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
19788: types/pa_vclass.h, types/pa_vcode_frame.h, types/pa_vcookie.C,
19789: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vdouble.h,
19790: types/pa_venv.h, types/pa_vfile.C, types/pa_vfile.h,
19791: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
19792: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vimage.C,
19793: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
19794: types/pa_vmath.h, types/pa_vmethod_frame.h, types/pa_vobject.h,
19795: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
19796: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
19797: types/pa_vstateless_object.h, types/pa_vstatus.h,
19798: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.C,
19799: types/pa_vtable.h, types/pa_vvoid.h, types/pa_vxdoc.C,
19800: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
19801: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
19802: $status:db fixed used not initialized in db_connection & db_table
19803:
19804: * src/: include/pa_charset_connection.h, main/pa_charset_manager.C:
19805: $status:charset
19806:
19807: * src/: classes/xdoc.C, include/pa_db_connection.h,
19808: include/pa_stylesheet_connection.h,
19809: include/pa_stylesheet_manager.h, main/pa_stylesheet_manager.C,
19810: types/pa_vstatus.h: $status:stylesheet
19811:
19812: * src/: include/pa_charset_manager.h, include/pa_db_manager.h,
19813: include/pa_request.h, include/pa_sql_connection.h,
19814: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19815: main/main.dsp, main/pa_charset_manager.C, main/pa_common.C,
19816: main/pa_db_manager.C, main/pa_globals.C, main/pa_request.C,
19817: main/pa_sql_driver_manager.C, main/pa_status_provider.C,
19818: main/pa_stylesheet_manager.C, types/pa_vstatus.h,
19819: types/pa_vxnode.C, types/types.dsp: started status parser class
19820:
19821: 2001-11-01 paf
19822:
19823: * src/include/pa_config_auto.h.in: makes
19824:
19825: * src/main/pa_hash.C: removed old extra include
19826:
19827: * src/: classes/math.C, include/pa_common.h: HAVE_TRUNC HAVE_ROUND
19828: checks [for hp, there are such in math.h]
19829:
19830: * src/classes/op.C: ^for endless loop check strightened
19831:
19832: * src/: classes/hash.C, classes/op.C, main/execute.C: changed root
19833: behavior in native calls. it left unchanged, so ^for ^foreach &
19834: co can use r.root to write their i & key,value there
19835:
19836: * src/classes/op.C: detected for var storage bug, fixed.
19837: todo:foreach
19838:
19839: * src/: classes/hash.C, classes/xdoc.C, classes/xnode.C,
19840: include/pa_hash.h, main/pa_hash.C, main/pa_request.C,
19841: types/pa_vhash.h, types/pa_vxnode.C: hash locking disabled
19842: changing of hash inside of foreach
19843:
19844: * src/: classes/hash.C, classes/hashfile.C, types/pa_vhashfile.C:
19845: ^hashfile.foreach[key|value]{body}[[separator]|{separator}] prev
19846: were hash.foreach
19847:
19848: * src/: classes/hash.C, classes/op.C, types/pa_vmethod_frame.h,
19849: types/pa_vstring.C, types/pa_vstring.h:
19850: ^foreach[key|value]{body}[[separator]|{separator}]
19851:
19852: * src/: classes/hash.C, include/pa_hash.h, main/pa_hash.C,
19853: types/pa_vcookie.C: ^hash.delete[key]
19854:
19855: 2001-10-31 paf
19856:
19857: * src/main/: compile.C, pa_common.C: completely empty file now
19858: considered "read", not ignored [not perfect trick used]
19859:
19860: * src/main/pa_common.C: simplier common ifdefs
19861:
19862: * src/main/pa_common.C: typing bug in common - bad ifdeff
19863:
19864: * src/main/pa_db_connection.C: z
19865:
19866: * src/main/: pa_db_connection.C, pa_sql_driver_manager.C: //
19867: lockdetector flags
19868: dbenv.lk_detect=DB_LOCK_RANDOM;
19869:
19870: * src/main/pa_sql_driver_manager.C: hiding passwords and addresses
19871: from accidental show [imagine user forgot @exception]
19872:
19873: * src/classes/table.C: ^table.save[[nameless|+append;]path]
19874:
19875: * src/: classes/file.C, classes/image.C, classes/mail.C,
19876: classes/string.C, classes/xnode.C, include/pa_common.h,
19877: main/pa_common.C: ^string.save[[append;]path]
19878:
19879: * src/: include/pa_opcode.h, main/compile.tab.C, main/compile.y,
19880: main/execute.C: \ in expression: int divide 10/3=3
19881:
19882: * src/types/pa_vhashfile.h: hashfile ^delete to do something only
19883: inside of ^cache
19884:
19885: * src/: include/pa_threads.h, main/pa_db_connection.C,
19886: main/pa_db_table.C, targets/cgi/pa_threads.C,
19887: targets/isapi/pa_threads.C: libdb DB_THREAD flag only when really
19888: needed
19889:
19890: 2001-10-30 paf
19891:
19892: * src/: classes/classes.dsp, main/main.dsp,
19893: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
19894: types/types.dsp: enabled debug incremental compile
19895:
19896: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C:
19897: form post data line endings not reformatted now.
19898:
19899: * src/types/: pa_vform.C, pa_vform.h: AppendFormEntry length param
19900: now required [had bug when file= has no value]
19901:
19902: * src/main/: pa_db_connection.C, pa_db_manager.C, pa_db_table.C,
19903: pa_exec.C, pa_request.C, pa_sql_driver_manager.C, pa_string.C:
19904: cstr(asis) default param removed
19905:
19906: * src/classes/xdoc.C: rolled back {} in xdoc.createTextNode for now
19907:
19908: * src/classes/xdoc.C: rolled back {} in xdoc.createElement for now
19909:
19910: * src/include/pa_dir.h: LOAD_DIR fixed
19911:
19912: * src/types/pa_vform.C: VForm::AppendFormEntry {length convention
19913: was broken} fix_line_breaks
19914:
19915: * src/include/: pa_config_fixed.h, pa_pragma_pack_begin.h,
19916: pa_pragma_pack_end.h, pa_string.h, pa_types.h: String & Origin
19917: packed with #pragma pack
19918:
1.116 moko 19919: * src/include/pa_config_auto.h.in: pragma detection
1.95 moko 19920:
19921: 2001-10-29 paf
19922:
19923: * src/types/pa_wcontext.h: bitfield syntax stricter
19924:
19925: * src/: classes/file.C, types/pa_vimage.C: image&file couple stack
19926: string hash.puts
19927:
19928: * src/include/pa_sql_connection.h: SQL_CONNECTION_FUNC_GUARDED name
19929:
19930: * src/include/pa_sql_connection.h: there were one wrong
19931: SQL_CONNECTION_FUNC_GUARDED [failed]
19932:
19933: * src/targets/isapi/pa_pool.C: added isapi&apache real_malloc debug
19934: param.someday either ifdef or remove it
19935:
19936: * src/targets/cgi/: pa_pool.C, parser3.C: removed debug defines
19937:
19938: * src/main/untaint.C: optimizing returned after debugging
19939:
19940: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C,
19941: main/untaint.C: memory hunging #pragma pack(1)
19942:
19943: 16 419 844 13 169 394
19944:
19945: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
19946: targets/cgi/pa_pool.C: String size_t replace to uint in proper
19947: places [todo:Array]
19948:
19949: * src/: main/execute.C, targets/cgi/pa_pool.C,
19950: targets/cgi/parser3.dsp, types/pa_wcontext.h,
19951: types/pa_wwrapper.h: debugging memory WContext flags to bits
19952:
19953: total 5 652 652/158731 total 5 469 332/158731
19954:
19955: * src/: include/pa_array.h, main/pa_array.C: debugging memory
19956: Array:: without cache in get/put now
19957:
19958: [Mon Oct 29 18:23:02 2001] total 5 796 092/158731 [Mon Oct 29
19959: 18:25:27 2001] total 5 652 652/158731
19960:
19961: * src/: include/pa_string.h, main/pa_string.C,
19962: targets/cgi/pa_pool.C: debugging memory String::fused_rows func
19963: now
19964:
19965: [Mon Oct 29 17:55:45 2001] total 5917436/158731 [Mon Oct 29
19966: 18:11:53 2001] total 5796092/158731
19967:
19968: * src/: classes/file.C, include/pa_hash.h, include/pa_string.h,
19969: main/pa_globals.C, targets/cgi/pa_pool.C: debugging memory hash
19970: key ref now
19971:
19972: [Mon Oct 29 16:01:17 2001] total 17050496/202647 [Mon Oct 29
19973: 17:11:17 2001] total 16867948/202658
19974:
19975: * src/: classes/file.C, classes/image.C, classes/string.C,
19976: classes/xdoc.C, include/pa_pool.h, include/pa_string.h,
19977: main/execute.C, main/pa_array.C, main/pa_common.C,
19978: main/pa_hash.C, main/pa_sql_driver_manager.C, main/pa_string.C,
19979: main/untaint.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C,
19980: types/pa_vcookie.C, types/pa_vstring.h: debuggging memory.
19981: string::as_int/double now usually uses stack, not heap [200K out
19982: of 17M :)] VString(String&) not copies reference [29M -> 17M]
19983:
19984: * src/main/pa_sql_driver_manager.C: ping to have services [old
19985: hiding bug]
19986:
19987: * src/Makefile.am: .am order
19988:
19989: * src/: include/pa_array.h, include/pa_charset_manager.h,
19990: include/pa_db_connection.h, include/pa_db_manager.h,
19991: include/pa_db_table.h, include/pa_hash.h, include/pa_request.h,
19992: include/pa_sql_driver_manager.h, include/pa_stylesheet_manager.h,
19993: include/pa_threads.h, types/pa_valiased.h, types/pa_vhashfile.h,
19994: types/pa_vstateless_class.h, types/pa_wcontext.h: gcc 3.0.1
19995: required "friend class"
19996:
19997: ../include/pa_request.h:51: friend declaration requires
19998: class-key, i.e. `friend class Temp_lang'
19999:
20000: * src/: include/pa_exception.h, include/pa_sql_connection.h,
20001: main/pa_exception.C, main/pa_sql_driver_manager.C,
20002: sql/pa_sql_driver.h: sql driver impl changed in _throw part.
20003:
20004: the idea is to #1 jump to C++ some function to main body, where
20005: every function stack frame has exception unwind information and
20006: from there... #2 propagate_exception()
20007:
20008: 2001-10-28 paf
20009:
20010: * src/main/pa_db_connection.C: removed old consts
20011:
20012: * src/main/pa_db_connection.C: expire table [was accidently pasted
20013: with wrong type/cast]
20014:
20015: * src/main/: pa_db_connection.C, pa_db_table.C: exception
20016: translation
20017:
1.116 moko 20018: * src/: classes/Makefile.am, targets/cgi/Makefile.am: db makes.
1.95 moko 20019: remember to build DB2 with -fexceptions!!!
20020:
20021: * src/main/pa_db_table.C: DB_RMW defed
20022:
20023: * src/: include/pa_config_auto.h.in, include/pa_config_fixed.h,
20024: include/pa_db_connection.h, include/pa_db_manager.h,
20025: include/pa_db_table.h, main/pa_db_connection.C,
20026: main/pa_db_table.C: db2 on linux with DB 2.4.14: (6/2/98)
20027:
20028: 2001-10-27 paf
20029:
20030: * src/: classes/hashfile.C, include/pa_db_connection.h,
20031: include/pa_db_table.h, main/pa_db_connection.C,
20032: main/pa_db_manager.C, main/pa_db_table.C, main/pa_globals.C,
20033: types/pa_vhashfile.C: DB2 ifdefs
20034:
1.116 moko 20035: * src/: classes/Makefile.am, include/pa_config_fixed.h,
20036: main/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
1.95 moko 20037: makes with DB2
20038:
1.116 moko 20039: * src/: include/pa_config_auto.h.in, main/Makefile.am,
20040: types/Makefile.am: makes db
1.95 moko 20041:
20042: * src/: main/pa_globals.C, targets/cgi/parser3.dsp,
20043: targets/isapi/parser3isapi.dsp: vc projects libdb ifdefed into
20044: globals.C
20045:
20046: * src/: classes/hashfile.C, include/pa_db_connection.h,
20047: include/pa_db_table.h, main/pa_db_connection.C,
20048: main/pa_db_table.C: ^hashfile.clear[]
20049:
20050: * src/classes/classes.awk: no $ in var names
20051:
20052: * src/main/: pa_db_connection.C, pa_db_manager.C: db expiration
20053: connection&table [forgotten calls]
20054:
20055: 2001-10-26 paf
20056:
20057: * src/main/pa_db_connection.C: db checkpoints
20058:
20059: * src/: include/pa_db_connection.h, main/pa_db_connection.C: db
20060: checkpoints
20061:
20062: * src/classes/xdoc.C: xdoc createTextNode createElement UL_XML
20063: default. but entities still reparsed. todo: tothink
20064:
20065: * src/main/pa_db_connection.C: db recover mech 2
20066:
20067: * src/: classes/hashfile.C, include/pa_db_connection.h,
20068: include/pa_db_manager.h, include/pa_db_table.h,
20069: include/pa_hash.h, main/pa_db_connection.C, main/pa_db_manager.C,
20070: main/pa_db_table.C, main/pa_hash.C, types/pa_vhashfile.C,
20071: types/pa_vhashfile.h: db connections & tables now cached at
20072: create time & multithreaded
20073:
20074: * src/: classes/xdoc.C, types/pa_vxdoc.h: transform2 for
20075: parsed_source
20076:
20077: * src/main/pa_db_connection.C: about to remove connection from
20078: vhashfile
20079:
20080: * src/: main/pa_db_table.C, classes/hashfile.C: db: child
20081: transaction commit/rollback responsibility left to parent [as it
20082: sould - else there were a bug with double free]
20083:
20084: * src/include/pa_db_table.h: db: child transaction commit/rollback
20085: responsibility left to parent [as it sould - else there were a
20086: bug with double free]
20087:
20088: 2001-10-25 paf
20089:
20090: * src/: classes/hashfile.C, include/pa_common.h,
20091: include/pa_db_connection.h, include/pa_db_manager.h,
20092: main/main.dsp, main/pa_db_connection.C, main/pa_db_manager.C,
20093: types/pa_vhashfile.C, types/pa_vhashfile.h,
20094: include/pa_db_table.h, main/pa_db_table.C: started db_home
20095: [multiple, cached] todo: autorecover [tried, but not succeded,
20096: yet]
20097:
20098: * src/include/pa_dir.h: ancient gpf on dir not found fixed
20099:
20100: * src/: include/pa_db_connection.h, main/pa_db_manager.C:
20101: transaction parent passed
20102:
20103: 2001-10-24 parser
20104:
1.116 moko 20105: * src/classes/Makefile.am: makes
1.95 moko 20106:
20107: * src/targets/: cgi/pool_storage.h, isapi/parser3isapi.C,
20108: isapi/pool_storage.h: pool_storage fixed
20109:
20110: * src/: include/pa_common.h, main/pa_common.C, types/pa_vform.C,
20111: types/pa_vform.h: form fix_line_breaks
20112:
1.116 moko 20113: * src/targets/cgi/pool_storage.h: makes
1.95 moko 20114:
20115: * src/: classes/Makefile.am, targets/cgi/Makefile.am,
20116: targets/cgi/pool_storage.h: makes
20117:
20118: * src/sql/pa_sql_driver.h: version
20119:
20120: * src/: include/pa_common.h, main/Makefile.am, main/pa_common.C,
20121: types/pa_vform.C, types/pa_vform.h: .am
20122:
20123: * src/main/: pa_db_connection.C, pa_db_manager.C: hashfile setted
20124: this: DB_RMW Acquire write locks instead of read locks when doing
20125: the retrieval. Setting this flag may decrease the likelihood of
20126: deadlock during a read-modify-write cycle by immediately
20127: acquiring the write lock during the read part of the cycle so
20128: that another thread of control acquiring a read lock for the same
20129: item, in its own read-modify-write cycle, will not result in
20130: deadlock
20131:
20132: * src/targets/isapi/parser3isapi.dsp: doc
20133:
20134: * src/: classes/hashfile.C, types/pa_vhashfile.h: hashfile 1
20135:
20136: * src/: classes/hashfile.C, include/pa_request.h: hashfile.cache 0
20137:
20138: * src/: classes/hashfile.C, include/pa_db_connection.h,
20139: main/pa_db_connection.C: hashfile expired deleted from db when
20140: get & iterate
20141:
20142: * src/: main/pa_db_connection.C, types/pa_vhashfile.C: hashfile
20143: expiring 1
20144:
20145: * src/types/: pa_vhashfile.C, pa_vhashfile.h: hashfile expiring 0
20146:
20147: * src/: main/pa_db_connection.C, types/pa_vhashfile.C:
20148: db_connection not bothers with key when not returning expired
20149: data
20150:
20151: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20152: types/pa_vhashfile.C: db_cursor constructor public now
20153:
20154: * src/: include/pa_db_connection.h, main/pa_db_connection.C,
20155: types/pa_vhashfile.C, types/pa_vhashfile.h: hashfile data
20156: stamped, todo: put_element analize
20157:
20158: * src/: include/pa_db_connection.h, include/pa_string.h,
20159: main/pa_db_connection.C, main/pa_string.C: hashfile pieced
20160: serialize. todo stamp
20161:
20162: 2001-10-23 parser
20163:
20164: * src/: classes/file.C, classes/hash.C, classes/hashfile.C,
20165: classes/image.C, classes/mail.C, classes/response.C,
20166: classes/string.C, classes/table.C, classes/xdoc.C,
20167: include/pa_config_fixed.h, include/pa_db_connection.h,
20168: main/pa_common.C, main/pa_db_connection.C, main/pa_request.C,
20169: types/pa_value.h, types/pa_vcookie.C, types/pa_vhash.h,
20170: types/pa_vhashfile.C, types/pa_vhashfile.h, types/pa_vresponse.h,
20171: types/pa_vtable.C: ^hashfile.hash[]
20172:
20173: * src/: classes/hashfile.C, classes/xdoc.C,
20174: include/pa_config_fixed.h, main/pa_db_manager.C,
20175: main/pa_globals.C: ifdefs so it compiled without db
20176:
20177: * src/: classes/hashfile.C, include/pa_db_connection.h,
20178: include/pa_db_manager.h, main/pa_db_connection.C,
20179: main/pa_db_manager.C, types/pa_vhashfile.h:
20180: ^hashfile.transaction{code} ^hashfile:clear[filename]
20181: ^hashfile.delete[key]
20182:
20183: 2001-10-22 parser
20184:
20185: * src/targets/: cgi/pa_pool.C, cgi/parser3.C, cgi/parser3.dsp,
20186: cgi/pool_storage.h, isapi/pool_storage.h: cgi += pool cleanups
20187:
20188: * src/: classes/classes.dsp, classes/hashfile.C, classes/xdoc.C,
20189: classes/xnode.C, include/pa_charset_connection.h,
20190: include/pa_db_connection.h, include/pa_db_manager.h,
20191: include/pa_exception.h, include/pa_sapi.h,
20192: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
20193: include/pa_stylesheet_connection.h,
20194: include/pa_stylesheet_manager.h,
20195: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20196: main/pa_db_connection.C, main/pa_db_manager.C,
20197: main/pa_exception.C, main/pa_globals.C, main/pa_pool.C,
20198: main/pa_sql_driver_manager.C, main/pa_stylesheet_manager.C,
20199: main/pa_xslt_stylesheet_manager.C, targets/cgi/parser3.C,
20200: targets/isapi/parser3isapi.C, types/pa_vhashfile.C,
20201: types/pa_vhashfile.h, types/pa_vxdoc.C, types/pa_vxnode.C,
20202: types/types.dsp: hashfile 0
20203:
20204: * src/types/pa_vhashfile.C: z
20205:
20206: * src/: classes/classes.dsp, classes/hashfile.C,
20207: include/pa_config_fixed.h, main/execute.C,
20208: targets/cgi/parser3.dsp, types/pa_vhashfile.C,
20209: types/pa_vhashfile.h, types/types.dsp: hashfile -100
20210:
20211: * src/targets/isapi/parser3isapi.C: SEH minor ifdef changes
20212:
20213: * src/: include/pa_exception.h, include/pa_request.h,
20214: main/execute.C, main/pa_exception.C, main/pa_request.C,
20215: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20216: types/pa_vclass.h, types/pa_vobject.h: stack backtrace
20217:
20218: 2001-10-19 parser
20219:
20220: * src/include/pa_pool.h: header
20221:
20222: * src/main/pa_pool.C: auto compiled on gcc
20223:
20224: * src/classes/image.C: comment
20225:
1.116 moko 20226: * src/: include/pa_pool.h, main/pa_common.C: makes
1.95 moko 20227:
20228: * src/: classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20229: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20230: types/pa_vxnode.h: xnode clone got freed
20231:
20232: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20233: include/pa_types.h, main/pa_pool.C: first c++ exceptions result:
20234: can free up xalandomstring resulting from pool::transcode
20235:
20236: * src/: classes/Makefile.am, classes/xdoc.C, classes/xnode.C,
20237: include/pa_config_fixed.h, include/pa_exception.h,
20238: include/pa_stylesheet_connection.h, main/pa_charset_connection.C,
20239: main/pa_exception.C, main/pa_pool.C, types/pa_vxdoc.C,
20240: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h: switched
20241: to c++ exceptions 1xml configure fixed to exclude xalan-patch
20242: from non-xml compile
20243:
20244: * src/main/pa_request.C: pool:: context - get_context
20245:
20246: * src/: classes/classes.h, classes/date.C, classes/double.C,
20247: classes/file.C, classes/form.C, classes/hash.C, classes/image.C,
20248: classes/int.C, classes/mail.C, classes/math.C, classes/op.C,
20249: classes/string.C, classes/table.C, classes/void.C,
20250: include/pa_config_fixed.h, include/pa_exception.h,
20251: include/pa_pool.h, include/pa_request.h, include/pa_types.h,
20252: main/compile.C, main/compile_tools.C, main/execute.C,
20253: main/pa_array.C, main/pa_common.C, main/pa_dictionary.C,
20254: main/pa_exception.C, main/pa_exec.C, main/pa_pool.C,
20255: main/pa_request.C, main/pa_socks.C, main/pa_sql_driver_manager.C,
20256: main/pa_string.C, main/pa_table.C, main/untaint.C,
20257: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20258: types/pa_value.h, types/pa_vbool.h, types/pa_vdouble.h,
20259: types/pa_vfile.h, types/pa_vform.C, types/pa_vhash.h,
20260: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
20261: types/pa_vstateless_class.h, types/pa_vtable.C,
20262: types/pa_wcontext.C, types/pa_wwrapper.h: switched to c++
20263: exceptions 0
20264:
20265: * src/classes/classes.awk: $ removed
20266:
20267: 2001-10-18 parser
20268:
20269: * src/types/pa_vcookie.C: cookie:CLASS
20270:
20271: * src/main/main.dsp: project
20272:
20273: * src/: classes/xdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C: vxdoc
20274: set_document & ctor question "who owns document" solved
20275:
20276: * src/: classes/xdoc.C, main/pa_pool.C: extra free removed
20277:
20278: * src/: classes/xdoc.C, classes/xnode.C, include/pa_pool.h,
20279: main/pa_pool.C: encoding in dom creating funcs
20280:
20281: * src/: classes/xdoc.C, types/pa_vxdoc.h: dom created by create can
20282: be transformed now
20283:
20284: * src/classes/xdoc.C: dom created by create can be transformed now
20285:
20286: * src/classes/xdoc.C: z
20287:
20288: * src/classes/xdoc.C: comment
20289:
20290: * src/: classes/xdoc.C, classes/xnode.C, main/compile.tab.C: xdoc
20291: create now uses XercesDocumentBridge, appendChild&co now works
20292:
20293: * src/include/pa_stylesheet_connection.h: prev stylesheet destroyed
20294: @ recompile
20295:
20296: * src/main/: compile.tab.C, compile.y, pa_request.C: ^: no colon in
20297: $origin @exception[
20298:
20299: * src/classes/: xdoc.C, xnode.C: xdoc::create[] now. and all dom
20300: tag names forced to XML lang
20301:
20302: * src/: classes/classes.dsp, classes/xdoc.C, types/types.dsp: fiew
20303: leechy-found bugs in code&doc fixed
20304:
20305: 2001-10-17 parser
20306:
20307: * src/: classes/classes.dsp, classes/string.C, main/pa_string.C,
20308: types/pa_vxnode.h, types/types.dsp: string::mid fixed, string.mid
20309: n functionality preserved
20310:
20311: * src/types/pa_vimage.h: removed unused vimage::save
20312:
20313: 2001-10-16 parser
20314:
20315: * src/: classes/string.C, main/pa_string.C: $string.mid(p[;n])
20316:
20317: * src/classes/: xnode.C: removed few dom returns & changed op.txt
20318:
20319: * src/types/: pa_vhash.h, pa_vtable.h: hash can be used as boolean
20320:
20321: * src/classes/image.C: image.copy tolerance
20322:
20323: * src/classes/image.C: ::CopyResampled made gd2beta+my hands, very
20324: ineffective, but works for small paleted image
20325:
20326: * src/types/pa_vimage.C: comment
20327:
20328: * src/classes/image.C: gd size/resize bugfix
20329:
20330: * src/: classes/classes.dsp, main/main.dsp,
20331: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20332: types/types.dsp: ident >nul 2>&1
20333:
20334: * src/main/pa_common.C: \r\n -> \n DOS \r -> \n Macintosh on all
20335: systems
20336:
20337: * src/: classes/image.C, types/pa_vimage.h: ^image.copy[source](src
20338: x;src y;src w;src h;dst x;dst y[;dest w[;dest h]])
20339:
20340: 2001-10-15 parser
20341:
20342: * src/main/execute.C: z
20343:
20344: * src/classes/: xdoc.C: !::create{qualifiedName}
20345:
20346: * src/types/pa_vxnode.C: document_type_node.
20347: !readonly attribute DOMString name
20348: !notation_node.
20349: !readonly attribute DOMString publicId
20350: !readonly attribute DOMString systemId
20351:
1.116 moko 20352: * src/types/: pa_vcode_frame.h, pa_wcontext.C: code_frame fixed -
20353: ::write badly passed string too transparently [failed to
20354: intercept it]
1.95 moko 20355:
20356: * src/: classes/xdoc.C, classes/xnode.C, include/pa_config_fixed.h,
20357: include/pa_request.h, main/pa_sql_driver_manager.C,
20358: types/pa_vxdoc.C, types/pa_vxdoc.h, types/pa_vxnode.C,
20359: types/pa_vxnode.h: DOM1 major addtion, only few
20360: attributes/methods left
20361:
20362: 2001-10-13 parser
20363:
20364: * src/: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20365: targets/isapi/parser3isapi.C: isapi&cgi couple non-pooled mallocs
20366: in main handler
20367:
20368: * src/targets/isapi/pool_storage.h: isapi pool storage reverse
20369: cleanups & frees order
20370:
20371: * src/types/pa_vcode_frame.h: couple comments
20372:
20373: * src/: main/execute.C, types/pa_vcode_frame.h: vcodeframe made
20374: transparent enough to handle hash if creation&passing
20375:
20376: * src/: include/pa_config_fixed.h, main/execute.C,
20377: main/pa_exception.C: noticed that vcodeframe not transparent
20378: enough, would change now
20379:
20380: 2001-10-12 parser
20381:
20382: * src/targets/isapi/parser3isapi.C: xalan&xerces multithread bug
20383: fixed. initialization&free on each thread!
20384:
20385: * src/classes/: double.C, int.C, string.C: sql{}[$.default[({})]]
20386: handling changed: now type of default param analized always, not
20387: only at problem time, thus helping early problem spotting
20388:
20389: * src/: classes/classes.dsp, classes/xdoc.C, main/compile.tab.C,
20390: main/main.dsp, main/pa_globals.C, targets/cgi/parser3.C,
20391: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
20392: targets/isapi/parser3isapi.dsp, types/types.dsp: xalan&xerces
20393: multithread bug fixed. initialization&free on each thread!
20394:
20395: 2001-10-11 parser
20396:
20397: * src/classes/xnode.C: xnode.selectSingle now
20398:
20399: * src/: classes/xdoc.C, classes/xnode.C, include/pa_exception.h,
20400: include/pa_pool.h, include/pa_stylesheet_connection.h,
20401: main/pa_exception.C, main/pa_pool.C: moved xslt exceptions
20402: convertors out of Pool into Exception
20403:
20404: * src/main/pa_string.C: const
20405:
20406: * src/: include/pa_string.h, main/pa_string.C: restructured string:
20407: linked pieces of same language together prior to String::replace
20408:
20409: * src/classes/hash.C: !^hash.add[addme]
20410: !^hash.sub[subme]
20411: !^a.union[b] = new
20412: !^a.intersection[b] = new
20413: !^a.intersects[b] = bool
20414:
20415: * src/classes/hash.C: !^hash::append[append_from]
20416:
20417: * src/: classes/hash.C, types/pa_vhash.h:
20418: !^hash::create[[copy_from]]
20419:
20420: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
20421: include/pa_string.h, main/pa_globals.C, main/pa_string.C,
20422: main/untaint.C, types/pa_vvoid.h: untaint lang origins table
20423: fixed. got rid of empty_string, which caused errors - it hasnt
20424: exception but somebody[value.bark] tried to throw it on it's pool
20425:
1.116 moko 20426: * src/include/pa_config_auto.h.in: makes
1.95 moko 20427:
20428: 2001-10-10 parser
20429:
20430: * src/: classes/op.C, main/compile.tab.C: ^error[msg]
20431:
20432: * src/main/: compile.tab.C, compile.y: ^a[
20433:
20434: @next_method << now unclosed ] would be reported here
20435:
20436: * src/main/: compile.tab.C, compile.y: ^a[^b] more informative
20437: compile error
20438:
20439: 2001-10-09 parser
20440:
1.116 moko 20441: * src/: classes/Makefile.am, main/Makefile.am,
20442: targets/cgi/Makefile.am, types/Makefile.am: makes
1.95 moko 20443:
20444: * src/classes/Makefile.am: makes
20445:
20446: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: xml transform
20447: win32 errors intercepted [xalan transformer patched and
20448: incorporated]
20449:
20450: * src/: classes/classes.dsp, classes/xdoc.C,
20451: include/pa_stylesheet_connection.h, main/main.dsp,
20452: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20453: types/pa_vxdoc.h, types/pa_vxnode.h, types/types.dsp: xalan
20454: patches starting
20455:
20456: * src/classes/: string.C, table.C: ^string.save[file]
20457:
20458: * src/classes/: date.C, table.C: calendar moved to date
20459:
20460: * src/classes/: op.C, table.C: table.hash[key field;value field(s)
20461: string/table] now
20462:
20463: * src/classes/: op.C, table.C: z
20464:
20465: * src/: classes/op.C, classes/table.C, types/pa_vfile.h,
20466: types/pa_vimage.h, types/pa_vjunction.h, types/pa_vxdoc.h,
20467: types/pa_vxnode.h: table:menu & op for delims made allowed not to
20468: be code [be string..]
20469:
20470: * src/classes/: double.C, file.C, image.C, int.C, op.C, string.C,
20471: table.C: lots of
20472: params->as_int/double/as_string/as_junction/as_no_junction
20473: messages added
20474:
20475: 2001-10-08 parser
20476:
20477: * src/: classes/date.C, classes/image.C, classes/string.C,
20478: classes/table.C, classes/void.C, include/pa_request.h:
20479: params->as_int/double message added
20480:
20481: * src/classes/image.C: image:circle [and round arc] uses Bresenham
20482:
20483: * src/: classes/image.C, types/pa_vcookie.C, types/pa_vimage.C:
20484: image:sector removed image:html internal "line-*" attribs
20485:
20486: * src/: classes/image.C, include/pa_common.h, main/pa_common.C,
20487: types/pa_vcookie.C: cookie urlencoded [netscape doc reread]
20488:
20489: * src/types/pa_vcookie.C: removing cookie made more netscape-like
20490: way
20491:
20492: * src/: classes/file.C, classes/form.C, main/pa_common.C,
20493: main/untaint.C: header untainting to UL_HTTP_HEADER,
20494: UL_MAIL_HEADER made nonforced [only tainted pieces]
20495:
20496: * src/: include/pa_common.h, main/pa_common.C, main/untaint.C,
20497: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: remove_crlf
20498: @ SAPI::log
20499:
20500: * src/main/untaint.C: \r to ' ' in origins mode
20501:
20502: * src/classes/xdoc.C: xdoc:load exceptions intercepted [like in
20503: set]
20504:
20505: * src/: classes/xdoc.C, include/pa_config_fixed.h,
20506: main/compile.tab.C, types/pa_vxdoc.h: parsedSource produced by
20507: nonstandard liaison freed up
20508:
20509: 2001-10-07 parser
20510:
20511: * src/: include/pa_config_fixed.h, main/compile.tab.C: restored
20512: project
20513:
20514: 2001-10-05 parser
20515:
20516: * src/: classes/xdoc.C, include/pa_pool.h, main/main.dsp,
20517: main/pa_pool.C: changed xdoc:set to prevent SAXParseException
20518: from outputing to cerr. lots of "todos"
20519:
20520: * src/main/untaint.C: http_header tainting more gentle with
20521: enquoting now
20522:
20523: * src/: classes/xdoc.C, include/pa_dictionary.h, main/main.dsp,
20524: main/pa_dictionary.C, main/pa_string.C, types/pa_vxdoc.h: started
20525: xml errorhandler. fixed string.replace a little, read @test
20526:
20527: * src/main/pa_string.C: found replace bug - first_that_starts(char
20528: *) does not have limit, and looks further eos, fixing....
20529:
20530: * src/doc/: doxygen.cfg, html2chm.cmd, sources2html.cmd: paths
20531:
20532: * src/: classes/xdoc.C, main/compile.tab.C: xdoc.transform now
20533:
20534: * src/main/: pa_charset_connection.C: ctype another mem clear
20535: bugfix
20536:
1.116 moko 20537: * src/main/: compile.tab.C, compile.y: disabled ^literals in names
20538: $result[^[$p^]z] now works fine
1.95 moko 20539:
20540: * src/: include/pa_hash.h, main/pa_hash.C: Hash::size() calculated
20541: wrong. fixed it
20542:
20543: * src/main/pa_charset_connection.C: unicode zero pair at the beging
20544: of totable appered to be vital
20545:
20546: 2001-10-04 parser
20547:
20548: * src/classes/image.C: ^image.length[text]
20549:
20550: 2001-10-03 parser
20551:
20552: * src/main/pa_request.C: DEFAULT...charset was ignored when !XML
20553:
20554: * src/main/pa_request.C: restored pcre defaulting in request
20555: [mindlessly "optimized" yesterday] comment left
20556:
20557: 2001-10-02 parser
20558:
20559: * src/: main/pa_charset_manager.C,
20560: include/pa_stylesheet_connection.h: forgot non-xml pool.*charset
20561: needed
20562:
20563: * src/: include/pa_pool.h, main/pa_pool.C, types/pa_vresponse.h:
20564: forgot non-xml pool.*charset needed
20565:
20566: * src/classes/table.C: # config comments fixed
20567:
20568: * src/: classes/table.C, main/pa_charset_connection.C: table:load &
20569: charset_connection #comment now
20570:
20571: * src/: classes/classes.dsp, types/types.dsp: release projects
20572: options fixed to use release msvcrt lib
20573:
20574: * src/main/pa_charset_connection.C: pcre tables now const inside
20575: removed default - pcre handles that internally fixed bug on
20576: not-cleaning tables [previously was calloced, now member]
20577:
20578: * src/: include/pa_request.h, main/pa_charset_connection.C,
20579: main/pa_request.C, types/pa_vstring.h: pcre tables now const
20580: inside removed default - pcre handles that internally fixed bug
20581: on not-cleaning tables [previously was calloced, now member]
20582:
20583: * src/: include/pa_config_fixed.h, main/pa_charset_connection.C:
20584: tested charset reload on file change @ apache version = OK tested
20585: freeing up prev encoding on adding new = OK
20586:
20587: 2001-10-01 parser
20588:
20589: * src/main/pa_charset_connection.C: removed entitify external hack
20590: [internal installed]
20591:
1.116 moko 20592: * src/main/Makefile.am: makes+removed dtd
1.95 moko 20593:
20594: * src/: include/pa_charset_connection.h,
20595: include/pa_charset_manager.h,
20596: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20597: main/pa_charset_connection.C, main/pa_charset_manager.C,
20598: main/pa_request.C: charset loading & caching mech 0
20599:
20600: * src/: include/pa_stylesheet_connection.h,
20601: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20602: main/pa_globals.C, main/pa_request.C: would make charset loading
20603: & caching mech now
20604:
20605: 2001-09-30 parser
20606:
20607: * src/main/pa_request.C: forgot to fill toTable
20608:
20609: * src/: include/pa_config_fixed.h, main/pa_request.C: started
20610: hack_s_maximumCharacterValues to XALAN_HACK_DIGITAL_ENTITIES but
20611: failed on win32 for now..
20612:
20613: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
20614: now charsets table configuration variable is: CHARSETS
20615:
20616: * src/: classes/xdoc.C, include/pa_request.h, main/pa_request.C:
20617: ctype with unicode 1. todo: no П entities on output somehow
20618:
20619: * src/: classes/file.C, classes/op.C, classes/string.C,
20620: include/pa_request.h, main/pa_request.C: started ctype with
20621: unicode values
20622:
20623: 2001-09-28 parser
20624:
20625: * src/: main/pa_request.C, classes/mail.C, classes/op.C,
20626: classes/xdoc.C, include/pa_stylesheet_connection.h: letter body
20627: string passed AS-IS now
20628:
20629: * src/classes/: xdoc.C, xnode.C: xdoc addencoding works! invented a
20630: way of user-configuring... todo: implement
20631:
20632: 2001-09-27 parser
20633:
20634: * src/classes/table.C: table.sort changed to sort table itself
20635:
20636: * src/: classes/xdoc.C, targets/isapi/parser3isapi.dsp:
20637: X^.getElementsByTagName[tagname] = array of xnode
20638: X^.getElementsByTagNameNS[namespaceURI;localName] = array of
20639: nodes removed - regretfully not supported @ xalan. maybe someday
20640: would reimplement, if needed.
20641:
20642: win32build system: solved long waiting anti-non-started-apache
20643: problem
20644:
20645: * src/: classes/classes.dsp, classes/xdoc.C, main/main.dsp,
20646: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.dsp,
20647: types/types.dsp: win32 ident make system so not to rebuild
20648: library [ident.C.new]
20649:
20650: 2001-09-26 parser
20651:
20652: * src/: classes/classes.dsp, classes/xdoc.C, classes/xnode.C,
20653: classes/xnode.h, include/pa_config_fixed.h, main/main.dsp,
20654: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
20655: types/pa_vxnode.C, types/types.dsp: z
20656:
20657: * src/classes/classes.C: forgot one non-xml check
20658:
1.116 moko 20659: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
20660: targets/cgi/Makefile.am, types/Makefile.am: makes with clases.awk
1.95 moko 20661:
20662: * src/targets/cgi/parser3.C: z
20663:
20664: * src/: include/pa_config_fixed.h, targets/cgi/parser3.C,
20665: targets/isapi/parser3isapi.C: #ifdef SMTP
20666:
20667: * src/: classes/classes.dsp, classes/dnode.C, classes/dnode.h,
20668: classes/dom.C, classes/xdoc.C, classes/xnode.C, classes/xnode.h,
20669: main/compile.tab.C, types/pa_vdnode.C, types/pa_vdnode.h,
20670: types/pa_vdom.C, types/pa_vdom.h, types/pa_vxdoc.C,
20671: types/pa_vxdoc.h, types/pa_vxnode.C, types/pa_vxnode.h,
20672: types/types.dsp: xdoc&xnode now
20673:
20674: * src/: classes/classes.C, classes/classes.awk,
20675: classes/classes.dsp, classes/classes.h, classes/date.C,
20676: classes/dnode.C, classes/dnode.h, classes/dom.C,
20677: classes/double.C, classes/file.C, classes/form.C, classes/hash.C,
20678: classes/image.C, classes/int.C, classes/mail.C, classes/math.C,
20679: classes/op.C, classes/response.C, classes/string.C,
20680: classes/table.C, classes/void.C, include/pa_array.h,
20681: include/pa_common.h, include/pa_config_fixed.h,
20682: include/pa_config_includes.h, include/pa_dictionary.h,
20683: include/pa_dir.h, include/pa_exception.h, include/pa_exec.h,
20684: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
20685: include/pa_socks.h, include/pa_sql_connection.h,
20686: include/pa_sql_driver_manager.h, include/pa_stack.h,
20687: include/pa_string.h, include/pa_stylesheet_connection.h,
20688: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
20689: include/pa_xslt_stylesheet_manager.h, main/compile.C,
20690: main/compile.y, main/compile_tools.C, main/compile_tools.h,
20691: main/execute.C, main/main.dsp, main/pa_array.C, main/pa_common.C,
20692: main/pa_dictionary.C, main/pa_dir.C, main/pa_exception.C,
20693: main/pa_exec.C, main/pa_globals.C, main/pa_hash.C,
20694: main/pa_pool.C, main/pa_request.C, main/pa_socks.C,
20695: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20696: main/pa_xslt_stylesheet_manager.C, main/untaint.C,
20697: sql/pa_sql_driver.h, targets/cgi/pa_pool.C,
20698: targets/cgi/pa_threads.C, targets/cgi/parser3.C,
20699: targets/cgi/parser3.dsp, targets/isapi/pa_pool.C,
20700: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.C,
20701: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h,
20702: types/pa_valiased.C, types/pa_valiased.h, types/pa_value.h,
20703: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
20704: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdate.h,
20705: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vdom.C,
20706: types/pa_vdom.h, types/pa_vdouble.h, types/pa_venv.h,
20707: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C,
20708: types/pa_vform.h, types/pa_vimage.C, types/pa_vimage.h,
20709: types/pa_vint.h, types/pa_vjunction.h, types/pa_vmath.h,
20710: types/pa_vmethod_frame.h, types/pa_vobject.h,
20711: types/pa_vrequest.C, types/pa_vrequest.h, types/pa_vresponse.h,
20712: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
20713: types/pa_vstateless_object.h, types/pa_vstring.C,
20714: types/pa_vstring.h, types/pa_vtable.C, types/pa_vtable.h,
20715: types/pa_vvoid.h, types/pa_wcontext.C, types/pa_wcontext.h,
20716: types/pa_wwrapper.h, types/types.dsp: added ident.awk and
20717: main.dsp splitted to main+classes+types along to .am
20718:
20719: * src/classes/Makefile.am: removed useless var
20720:
20721: * src/: classes/classes.cmd, main/main.dsp,
20722: targets/cgi/parser3.dsp: moved classes.inc generation on win32 to
20723: main.dsp
20724:
20725: 2001-09-25 parser
20726:
20727: * src/include/pa_config_auto.h.in: xml on linux[elik] works! no
20728: 1251 though, todo ICU
20729:
1.116 moko 20730: * src/: Makefile.am, classes/Makefile.am, classes/dom.C,
1.95 moko 20731: include/pa_stylesheet_connection.h, main/Makefile.am,
1.116 moko 20732: main/pa_pool.C, targets/cgi/Makefile.am, types/Makefile.am,
20733: types/pa_vdom.h: xml configure makes
1.95 moko 20734:
20735: 2001-09-24 parser
20736:
1.116 moko 20737: * src/: classes/Makefile.am, include/pa_config_auto.h.in,
20738: types/Makefile.am: makes
1.95 moko 20739:
1.116 moko 20740: * src/targets/cgi/Makefile.am: makefiles
1.95 moko 20741:
20742: * src/: Makefile.am, targets/Makefile.am, targets/cgi/pa_pool.C:
20743: started unix makes update
20744:
20745: * src/: Makefile.am, main/Makefile.am, targets/cgi/Makefile.am:
20746: started unix makes update
20747:
20748: * src/types/: pa_vdnode.C, pa_vvoid.h, pa_vtable.C: z
20749:
20750: * src/types/pa_value.h: z
20751:
20752: * src/types/: pa_vhash.h, pa_vtable.h, pa_vclass.h: fixed small
20753: bugs with usinge hash/table in expressions
20754:
20755: * src/types/: pa_vfile.h, pa_vimage.h, pa_vstring.h: fiew wrong
20756: resolved conflicts fixed [const]
20757:
20758: * src/: classes/classes.cmd, classes/image.C, classes/op.C,
20759: classes/table.C, include/pa_request.h, include/pa_sapi.h,
20760: main/compile.C, main/compile.tab.C, main/compile.y,
20761: main/compile_tools.h, main/main.dsp, main/pa_common.C,
20762: main/pa_sql_driver_manager.C, targets/cgi/parser3.C,
20763: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vbool.h,
20764: types/pa_vdate.h, types/pa_vdouble.h, types/pa_vform.C,
20765: types/pa_vhash.h, types/pa_vimage.h, types/pa_vint.h,
20766: types/pa_vstring.h, types/pa_vtable.h, types/pa_vvoid.h: merged3
20767: with before_xml [merge2 actually didn't happen - i've created
20768: tags on wrong branch. so this merge is in fact re-merge]
20769:
20770: 2001-09-21 parser
20771:
20772: * src/: main/main.dsp, targets/cgi/parser3.dsp,
20773: targets/isapi/parser3isapi.dsp: updated project files [/ sadly
20774: produced "" in make file and sadly wrong interpreted on load]
20775:
1.116 moko 20776: * src/: classes/classes.h, classes/hash.C, classes/op.C,
20777: classes/table.C, doc/doxygen.cfg, include/pa_common.h,
20778: include/pa_globals.h, include/pa_request.h, include/pa_sapi.h,
20779: include/pa_sql_driver_manager.h, include/pa_string.h,
20780: main/compile.tab.C, main/main.dsp, main/pa_common.C,
20781: main/pa_exec.C, main/pa_globals.C, targets/cgi/parser3.dsp,
20782: targets/isapi/parser3isapi.dsp: merged with before_xml
1.95 moko 20783:
20784: * src/: classes/classes.C, classes/date.C, classes/dnode.C,
20785: classes/dom.C, classes/file.C, classes/form.C, classes/int.C,
20786: classes/mail.C, doc/doxygen.cfg, include/pa_config_fixed.h,
20787: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20788: main/pa_pool.C, main/pa_request.C,
20789: main/pa_xslt_stylesheet_manager.C, targets/cgi/pa_pool.C,
20790: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
20791: targets/isapi/pa_pool.C, targets/isapi/pa_threads.C,
20792: targets/isapi/parser3isapi.dsp, types/pa_valiased.C,
20793: types/pa_vcookie.C, types/pa_vdnode.C, types/pa_vdom.C,
20794: types/pa_vfile.C, types/pa_vform.C, types/pa_vimage.C,
20795: types/pa_vrequest.C, types/pa_vresponse.h,
20796: types/pa_vstateless_class.C, types/pa_vstring.C,
20797: types/pa_vtable.C, types/pa_wcontext.C: zillions of #ifdef XML
20798: created new projects for sql drivers [planning to remove sql
20799: drivers from main cvs project] first, will join latest changes
20800:
20801: * src/classes/: dom.C: defaulted dom writing methods encoding to
20802: pool.get_charset
20803:
20804: * src/classes/dom.C: defaulted dom writing methods encoding to
20805: pool.get_charset
20806:
20807: * src/include/pa_pool.h: defaulted dom writing methods encoding to
20808: pool.get_charset
20809:
20810: * src/: classes/dom.C, include/pa_pool.h, main/pa_pool.C,
20811: types/pa_vdnode.C, types/pa_vresponse.h: defaulted dom writing
20812: methods encoding to pool.get_charset
20813:
20814: * src/: include/pa_pool.h, main/pa_pool.C: checked whether
20815: transcoder were created right "unsupported encoding" message.
20816: not @ set time, but @ use time, so until xml output functions
20817: .string, .file, .save used - no encoding name check occur
20818:
20819: reduced transcode buffer size to 60 fixed pool cleanup - no
20820: registration needed, pools are officially destructured
20821:
20822: 2001-09-20 parser
20823:
20824: * src/classes/image.C: 20K preload on jpg measure [image::measure]
20825:
20826: * src/main/: pa_pool.C, pa_request.C: Pool::transcode defaults from
20827: $MAIN:DEFAULTS.content-type[$.charset[here]]
20828:
20829: * src/: classes/dnode.C, classes/dom.C,
20830: include/pa_config_includes.h, include/pa_globals.h,
20831: include/pa_pool.h, main/main.dsp, main/pa_globals.C,
20832: main/pa_pool.C, targets/cgi/parser3.dsp,
20833: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
20834: types/pa_vdnode.C, types/pa_vdnode.h, types/pa_vresponse.h:
20835: Pool::transcode 0
20836:
20837: * src/classes/dom.C: dom. string save file moved output xml options
20838: to last param and made it optional
20839:
20840: * src/types/pa_vdnode.C: !$elementnode.attributes = hash of
20841: dnodes
20842: !$attributenode.specified = boolean
20843: true if the attribute received its value explicitly
20844: in the XML document,
20845: or if a value was assigned programatically with the
20846: setValue function.
20847: false if the attribute value came from the default value
20848: declared in the document's DTD.
20849: !$pinode.target = target of this processing instruction
20850: XML defines this as being the first token following the
20851: markup
20852: that begins the processing instruction.
20853: XPath:
20854: !^node.select[xpath/query/expression] = hash of 0->node0
20855: 1->node1
20856: !^node.select-single[xpath/query/expression] = first node if
20857: any
20858:
20859: * src/types/: pa_value.h, pa_vbool.h, pa_vdate.h, pa_vdouble.h,
20860: pa_vhash.h, pa_vint.h, pa_vstring.h, pa_vtable.h, pa_vvoid.h:
20861: some 'const's added
20862:
20863: * src/types/: pa_vhash.h, pa_vtable.h: table/hash can be used in
20864: expression context now, there value = size and boolean value
20865: size!=0
20866:
20867: * src/types/: pa_vhash.h, pa_vstring.h, pa_vtable.h: table/hash
20868: can be used in expression context now, there value = size and
20869: boolean value size!=0
20870:
20871: * src/: classes/dnode.C, classes/dom.C, targets/cgi/parser3.dsp,
20872: types/pa_vstring.h: dnode .file .string .save moved back to dom
20873: due to strange xalan bug
20874:
20875: 2001-09-18 parser
20876:
20877: * src/: classes/dnode.C, classes/dom.C, classes/hash.C,
20878: classes/image.C, classes/op.C, classes/table.C,
20879: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
20880: include/pa_sql_driver_manager.h, main/compile.C,
20881: main/compile.tab.C, main/compile.y, main/compile_tools.h,
20882: main/execute.C, main/pa_common.C, main/pa_request.C,
20883: main/pa_sql_driver_manager.C, main/pa_string.C, main/pa_table.C,
20884: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
20885: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vform.C,
20886: types/pa_vform.h, types/pa_vhash.h, types/pa_vimage.C,
20887: types/pa_vimage.h, types/pa_vtable.h: merged latest bugfixes from
20888: before_xml branch ^if(def $hash) now true only when
20889: ^hash:_count[]!=0 moved .string .save .file from dom to dnode
20890:
20891: * src/: classes/op.C, main/execute.C: operators self changed to
20892: root ^for variable context changed to self
20893:
20894: * src/types/: pa_vdnode.C, pa_vdom.h, pa_vhash.h, pa_vtable.h: dom,
20895: dnode 1
20896:
20897: * src/: classes/dnode.C, classes/dnode.h, main/main.dsp,
20898: types/pa_vdnode.C, types/pa_vdnode.h: dom, dnode 0
20899:
20900: * src/: classes/image.C, main/pa_string.C, main/pa_table.C: image:
20901: poly* fixed
20902:
20903: 2001-09-17 parser
20904:
20905: * src/: classes/dom.C, main/main.dsp, main/pa_globals.C,
20906: types/pa_vdom.h: started dnode+dom
20907:
20908: dnode DOM methods: $node.name $node.value
20909: ...others...
20910:
20911: ^node.xpath[/rates/USD] = hash
20912: $hash[
20913: $.0[node0]
20914: $.1[node1]
20915: ]
20916:
20917: * src/: classes/image.C, types/pa_vimage.C: $image.line-style now
20918: applies to all linear primitives
20919:
20920: * src/: classes/classes.h, classes/dom.C, classes/hash.C,
20921: include/pa_stylesheet_connection.h, main/main.dsp,
20922: targets/cgi/pa_pool.C, types/pa_vdom.h, types/pa_vfile.h,
20923: types/pa_vimage.h: started dnode DOM: $node.name
20924: $node.value ...others... ^node.xpath[/rates/USD] = hash
20925: dom(dnode)
20926:
20927: * src/: classes/hash.C, main/compile.C, main/compile.tab.C,
20928: main/compile.y, main/compile_tools.h, main/execute.C,
20929: targets/cgi/parser3.C: expressions unary+ ^hash.count[] bugfix:
20930: in expression compound($aa.zz.xx) names now can have minus '-' in
20931: name after '.'
20932:
20933: 2001-09-15 parser
20934:
20935: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h:
20936: image: $line-width ^line(...)[**** style]
20937:
20938: * src/: classes/dom.C, targets/isapi/parser3isapi.C,
20939: targets/isapi/pool_storage.h, types/pa_vdom.h: fixed bug in isapi
20940: pool_storage - cleanups first, allocations second. apache wisely
20941: does just like that
20942:
20943: * src/targets/isapi/: parser3isapi.C, pool_storage.h: pool_storage
20944: rewritten using template, no bugs now
20945:
20946: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/pa_pool.C,
20947: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
20948: targets/isapi/parser3isapi.dsp, targets/isapi/pool_storage.h:
20949: poorly started isapi pool_storage, would rewrite using template
20950: now
20951:
20952: * src/: classes/dom.C, classes/image.C, include/pa_pool.h,
20953: include/pa_stylesheet_connection.h, main/main.dsp,
20954: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
20955: targets/isapi/pool_storage.h, types/pa_vdom.C, types/pa_vdom.h:
20956: xalan objects freed up [introducing Pool::register_cleanup]
20957:
20958: * src/: doc/doxygen.cfg, include/pa_sapi.h, types/pa_vdom.h:
20959: comments
20960:
20961: 2001-09-14 parser
20962:
20963: * src/main/: pa_sql_driver_manager.C, pa_xslt_stylesheet_manager.C:
20964: z
20965:
20966: * src/: classes/dom.C, classes/file.C, classes/image.C,
20967: classes/mail.C, include/pa_common.h,
20968: include/pa_sql_driver_manager.h, include/pa_string.h,
20969: include/pa_stylesheet_connection.h,
20970: include/pa_xslt_stylesheet_manager.h, main/main.dsp,
20971: main/pa_common.C, main/pa_exec.C, main/pa_globals.C,
20972: main/pa_sql_driver_manager.C, main/pa_xslt_stylesheet_manager.C,
20973: main/untaint.C, types/pa_vfile.C: dom.xslt stylesheet
20974: compiled&cached
20975:
20976: 2001-09-13 parser
20977:
20978: * src/: classes/dom.C, classes/file.C, classes/image.C,
20979: types/pa_vfile.C, types/pa_vfile.h: ^dom.file[] charset
20980:
20981: * src/classes/dom.C: dom:file content-type(.method)
20982:
20983: * src/: include/pa_common.h, include/pa_globals.h,
20984: main/pa_common.C, main/pa_request.C: $MAIN:CLASS_PATH now can be
20985: string now more informative error messages
20986:
20987: * src/: include/pa_globals.h, include/pa_request.h,
20988: main/pa_request.C, targets/cgi/parser3.C,
20989: targets/isapi/parser3isapi.C: ParserRootConfig .../parser3.conf
20990: ParserSiteConfig .../parser3.conf
20991:
20992: cgi&isapi looks for {configure|c:\windows}/parser3.conf
20993:
20994: 2001-09-12 parser
20995:
20996: * src/: classes/op.C, include/pa_sql_driver_manager.h,
20997: main/pa_sql_driver_manager.C: ^connect[] ^connect[aaa] more
20998: precise error reporting: "connection string must start with
20999: protocol://" now
21000:
21001: * src/main/compile.tab.C: fixed - subname code parts actually []
21002: braced
21003:
21004: * src/main/: compile.y, compile_tools.h: name.[part].xxx syntax
21005: lexer on LS_USER level did [] matching without setting nestage,
21006: introduced special LS_NAME_SQUARE_PART state
21007:
21008: 2001-09-11 parser
21009:
21010: * src/: classes/dom.C, include/pa_string.h, main/pa_globals.C,
21011: main/untaint.C: ^dom:set{<some>xml</some>} default language XML
21012: languages+=xml
21013:
21014: * src/: classes/dom.C, types/pa_vdom.h: ^dom:set[<some>xml</some>]
21015:
21016: * src/classes/dom.C: ^dom:save/string/file[output options] output
21017: options: $.method[xml|html|text] detection fixed
21018:
21019: * src/types/pa_vdom.h: messages
21020:
21021: * src/classes/dom.C: ^dom:save/string/file[output options] output
21022: options: $.method[xml|html|text] detection fixed
21023:
21024: 2001-09-10 parser
21025:
21026: * src/classes/dom.C: ^dom:save/string/file[output options] output
21027: options: $.method[xml|html|text] $.encoding[windows-1251|...]
21028:
21029: * src/classes/dom.C: ^dom.xslt[stylesheet filename][params hash
21030: added]
21031:
21032: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21033: ^dom.xslt[stylesheet filename] 0
21034:
21035: * src/: classes/dom.C, main/main.dsp, types/pa_vdom.h:
21036: ^dom.xslt[stylesheet filename] -1 doc is lying
21037:
21038: * src/classes/dom.C: ^dom.file[encoding] = file
21039:
21040: * src/classes/: dom.C: ^dom.string[encoding] 1
21041: ^dom.save[encoding;filename]
21042:
21043: * src/classes/dom.C: ^dom.string[] 0
21044:
21045: * src/classes/dom.C: ^dom.save[b.xml] 1:error handling
21046:
21047: * src/: classes/dom.C, main/main.dsp, types/pa_vform.C,
21048: types/pa_vform.h: ^dom.save[b.xml] 0
21049:
21050: 2001-09-08 parser
21051:
21052: * src/types/pa_vform.C: $form:tables.name.field
21053:
21054: 2001-09-07 parser
21055:
21056: * src/classes/table.C: table:empty removed, superceded by ^if(def
21057: $table)...
21058:
21059: * src/targets/cgi/parser3.C: z
21060:
21061: * src/main/pa_string.C: $a[] ^if($a){y;n} is 'n' now [conversion
21062: from '' to int/double is 0]
21063:
21064: * src/: classes/dom.C, types/pa_value.h, types/pa_vtable.h: (def
21065: $table) is false when table is empty
21066:
21067: * src/: main/pa_request.C, types/pa_vform.C, types/pa_vform.h:
21068: !$form:tables $atable[$form:tables.a]
21069: ^atable.menu{a=$atable.element}[,]
21070:
21071: * src/: targets/cgi/parser3.dsp, types/pa_vform.C,
21072: types/pa_vform.h, types/pa_vhash.h: !$form:fields
21073:
1.116 moko 21074: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21075: types/pa_vdom.h, types/pa_vform.C: merged with successful start
21076: of dom
21077:
21078: * src/: include/pa_hash.h, main/pa_hash.C, types/pa_vfile.h,
21079: types/pa_vform.C, types/pa_vform.h: z
21080:
21081: * src/: main/pa_exception.C, types/pa_vform.C: getting FIRST form
21082: element [not last]
21083:
1.116 moko 21084: * src/: classes/dom.C, classes/table.C, main/main.dsp,
1.95 moko 21085: types/pa_vdom.h: introducing dom. dom:load[a.xml]
21086:
21087: 2001-09-06 parser
21088:
21089: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21090: table with one column 'element' and two rows: 1 and 2
21091:
21092: * src/types/pa_vform.C: ?a=1&a=2 would result in $form:a being a
21093: table with one column 'element' and two rows: 1 and 2
21094:
21095: * src/: classes/void.C, main/pa_string.C, main/pa_table.C: fixed up
21096: bad int/double conversions, and now $form:nonexistent.int(88)
21097: would return 88
21098:
21099: * src/: classes/hash.C, include/pa_globals.h, main/pa_globals.C,
21100: types/pa_vhash.h: now there's special hash key '_default'
21101: [instead of ^_default method] $hash[ $.a[1] $.b[2]
21102: $._default[xx] ] $hash.c
21103:
21104: * src/main/: compile.tab.C, compile.y: ^if(0){}{ ^if(1){}^; } bug
21105: fixed [thanks, fif], ^; were treated there non-literally
21106:
21107: * src/doc/doxygen.cfg: merged new default options from 1.2.10
21108: doxygen
21109:
21110: * src/: classes/image.C, classes/op.C, classes/string.C,
21111: classes/table.C, doc/doxygen.cfg, targets/isapi/parser3isapi.C,
21112: types/pa_vtable.C: few #ifndef DOXYGEN
21113:
21114: 2001-09-05 parser
21115:
21116: * src/classes/: string.C, table.C: sql options can be void [same as
21117: image:html the other day]
21118:
21119: * src/targets/cgi/Makefile.am: .am undo
21120:
21121: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21122: targets/cgi/parser3.C: #define STRINGIZE(name) #name does not
21123: macro expantion on param, simply qoutes whatever passed, undone
21124:
21125: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
21126: targets/cgi/Makefile.am, targets/cgi/parser3.C: #define
21127: STRINGIZE(name) #name invented
21128:
21129: * src/: classes/op.C, include/pa_sql_driver_manager.h,
21130: main/pa_sql_driver_manager.C: #define MAIN_SQL_NAME "SQL" #define
21131: MAIN_SQL_DRIVERS_NAME "drivers"
21132:
21133: moved to be availible to all users
21134:
21135: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h:
21136: SQL_DRIVER_CREATE_FUNC_NAME
21137:
21138: * src/classes/mail.C: MAIN:MAIL check fixed
21139:
21140: 2001-09-04 parser
21141:
21142: * src/classes/image.C: image.html now can accept void params
21143:
21144: * src/targets/isapi/parser3isapi.C: z
21145:
21146: * src/targets/cgi/parser3.C: full_file_spec bug
21147:
21148: * src/targets/cgi/parser3.C: getenvcheck
21149:
21150: * src/targets/cgi/parser3.C: zz
21151:
21152: * src/targets/cgi/parser3.C: zzz
21153:
21154: * src/classes/date.C: date
21155:
21156: * src/classes/date.C: date:sql-string is now without ''
21157:
1.116 moko 21158: * src/: include/pa_config_auto.h.in, targets/cgi/Makefile.am,
1.95 moko 21159: targets/cgi/parser3.C: configure --sysconfdir=sysadmin-controlled
21160: auto.p location for targets/cgi/parser3, default[/usr/local/etc]
21161:
1.116 moko 21162: * src/include/pa_config_auto.h.in: makes
1.95 moko 21163:
21164: 2001-09-03 parser
21165:
21166: * src/targets/cgi/parser3.C: /configure cgi SYSCONFDIR
21167:
21168: 2001-09-01 parser
21169:
21170: * src/classes/image.C: letter_spacing
21171:
21172: * src/classes/image.C: image: font params changed
21173:
21174: * src/classes/image.C: image: as_int as_string used
21175:
21176: * src/types/pa_vmethod_frame.h: $result[] now gets properly
21177: analized
21178:
21179: 2001-08-31 parser
21180:
21181: * src/targets/cgi/parser3.C: z
21182:
1.116 moko 21183: * src/: include/pa_dir.h, targets/cgi/parser3.C: compiled under
21184: cygwin
1.95 moko 21185:
21186: * src/classes/void.C: void:int/double += (default)
21187:
21188: * src/classes/image.C: image:font added space param image:font
21189: changed charwidth alg, added kerning const[for now]
21190:
21191: * src/classes/: string.C, table.C: string:int/double (defaults)
21192:
21193: 2001-08-29 parser
21194:
21195: * src/main/pa_exception.C: exception redundant debug info
21196:
21197: 2001-08-28 parser
21198:
21199: * src/classes/image.C: image error msgs
21200:
21201: * src/classes/image.C: image: gifsize little endian
21202:
21203: * src/doc/doxygen.cfg: doxygen conf removed some garbage from under
21204: doxygeneration
21205:
21206: * src/: classes/Makefile.am, main/Makefile.am,
21207: targets/cgi/Makefile.am, types/Makefile.am: .am-s
21208:
21209: * src/: include/pa_dictionary.h, main/pa_dictionary.C,
21210: main/pa_sql_driver_manager.C: NO_STRING_ORIGIN check3
21211:
21212: * src/main/compile.C: NO_STRING_ORIGIN check2
21213:
21214: * src/classes/table.C: NO_STRING_ORIGIN check
21215:
21216: * src/include/pa_dictionary.h: gcc: ../include/pa_dictionary.h:19:
21217: storage class specifiers invalid in friend function declarations
21218:
21219: * src/: classes/op.C, main/compile.tab.C, main/pa_dir.C,
21220: main/untaint.C, targets/cgi/parser3.C,
21221: targets/isapi/parser3isapi.C: strncpy forced with zero ending in
21222: case of limit
21223:
21224: * src/: classes/file.C, main/pa_common.C: file:move
21225: autocreate/remove dest/src dir
21226:
21227: * src/: classes/string.C, include/pa_dictionary.h,
21228: include/pa_string.h, main/pa_dictionary.C, main/pa_string.C,
21229: main/untaint.C: pa_directory speeded up. moved zero 'from' check
21230: to directory constructor. string:replace
21231:
21232: 2001-08-27 parser
21233:
21234: * src/classes/image.C: fixed jpgsize alg
21235:
21236: * src/classes/image.C: fixed jpgsize alg
21237:
21238: * src/main/pa_exception.C: z
21239:
21240: * src/main/pa_common.C: removed debug info from pa_common
21241:
21242: * src/: main/pa_request.C, targets/cgi/parser3.C: parser3 test.html
21243: [auto.p from current dir loading]
21244:
1.116 moko 21245: * src/: main/pa_common.C, main/pa_exception.C,
21246: main/pa_sql_driver_manager.C, targets/cgi/Makefile.am: configure
21247: for solaris -lsocket
1.95 moko 21248:
21249: 2001-08-24 parser
21250:
21251: * src/targets/cgi/parser3.C: not cgi extra \n 3
21252:
21253: * src/targets/cgi/parser3.C: not cgi extra \n 2
21254:
21255: * src/targets/cgi/parser3.C: not cgi extra \n
21256:
21257: * src/main/pa_sql_driver_manager.C: z
21258:
21259: * src/: include/pa_sql_connection.h, main/pa_sql_driver_manager.C:
21260: sql* removed services from disconnect - cross-request ideological
21261: probs.
21262:
21263: * src/sql/pa_sql_driver.h: sql* removed services from disconnect -
21264: cross-request ideological probs. oracle - fixed bug: cs
21265: allocated on request.pool and got freed before disconnect
21266:
21267: * src/classes/: file.C, form.C, mail.C, table.C: fiew non-pool
21268: mallocs fixed
21269:
21270: 2001-08-23 parser
21271:
21272: * src/classes/file.C: minor bug in file:save fixed
21273:
21274: * src/main/pa_sql_driver_manager.C: oracle: dlink
21275:
21276: 2001-08-22 parser
21277:
21278: * src/: classes/file.C, main/compile.tab.C, types/pa_vfile.C,
21279: types/pa_vfile.h: file:load|save[text|binary;
21280:
21281: * src/main/: compile.tab.C, compile.y: ^method[]^[^] literals []
21282:
21283: 2001-08-21 parser
21284:
21285: * src/classes/: file.C, table.C: ^file:list
21286:
21287: 2001-08-20 parser
21288:
21289: * src/: main/compile.tab.C, main/compile.y,
21290: main/pa_sql_driver_manager.C, types/pa_value.h, types/pa_vbool.h,
21291: types/pa_vdouble.h, types/pa_vint.h: $var(123) ^var.inc[]
21292: recousively caused problems: inc incremeted 123 literal!! fixed
21293:
21294: 2001-08-10 parser
21295:
21296: * src/main/: compile.tab.C, compile.y: [codes] name part syntax now
21297:
21298: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21299: added
21300:
21301: * src/main/: compile.tab.C, compile.y: (codes) name part syntax
21302: added
21303:
21304: * src/classes/table.C: table:sort restored [it was bad test :(]
21305:
21306: * src/types/: pa_value.h, pa_vstring.h: string now def only when ne
21307: ''
21308:
21309: * src/main/: pa_request.C: wanted to make const int
21310: MAX_EXECUTE_SECONDS=1;
21311:
21312: but couldnt, set_callback_and_alarm appeared to be not exported
21313: :(
21314:
21315: * src/main/pa_string.C: string.match hanged on. there were a hang
21316: check but it weren't wise enough
21317:
21318: @parse[dateString][tmp]
21319: $tmp[^dateString.match[(\d\d\d\d-)?(\d\d-)?][g]] $tmp.1 $tmp.2
21320: #end
21321:
21322: @main[] ^parse[2001-02-03]
21323:
21324: * src/classes/: table.C: table:sort now default desc
21325:
21326: * src/: classes/table.C, include/pa_table.h, main/pa_table.C:
21327: table.sort now creates new sorted table
21328:
21329: 2001-08-09 parser
21330:
21331: * src/main/pa_string.C: $a[010] now ^if($a==10){true} were octal
21332:
21333: * src/classes/hash.C: hash:_default now [was hash:default]
21334:
21335: * src/classes/op.C: case without switch check added
21336:
21337: * src/types/pa_vcookie.C: cookie name&value origins added, more
21338: precise $ORIGINS(1)
21339:
21340: * src/main/Makefile.am: .am
21341:
21342: * src/classes/void.C: void: int double copy/paste from int: bug
21343: fixed
21344:
21345: * src/classes/void.C: void: int double copy/paste from int: bug
21346: fixed
21347:
21348: 2001-08-07 parser
21349:
21350: * src/: classes/double.C, classes/int.C, classes/string.C,
21351: classes/table.C, include/pa_globals.h, main/pa_globals.C:
21352: !^int/double:sql{query}[[$.limit(2) $.offset(4) $.default(0)]]
21353: string, table
21354:
21355: * src/: classes/math.C, main/pa_request.C: math:random fixed. win32
21356: srand made working
21357:
21358: 2001-08-06 parser
21359:
21360: * src/: classes/mail.C, classes/op.C, include/pa_array.h,
21361: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
21362: main/compile.tab.C, main/compile.y, main/pa_array.C,
21363: main/pa_dictionary.C, main/pa_exec.C, main/pa_globals.C,
21364: main/pa_hash.C, main/pa_request.C, main/pa_string.C: class_path
21365:
21366: * src/main/pa_exec.C: exec win32 real filename
21367:
21368: * src/classes/file.C: exec stderr out
21369:
21370: * src/classes/hash.C: hash:keys renamed to hash:_keys :(
21371:
21372: 2001-08-03 parser
21373:
21374: * src/: classes/table.C, types/pa_vtable.h: vtable.locks killed
21375:
21376: 2001-08-02 parser
21377:
21378: * src/: classes/string.C, classes/table.C, include/pa_array.h,
21379: main/execute.C, main/pa_exec.C: introducing Array_iter
21380:
21381: * src/main/execute.C: detected quick_get recursion bug. changed to
21382: get@execute, but needs array iterator, separate from array to
21383: avoid it & use caching
21384:
21385: * src/main/: pa_dictionary.C, pa_globals.C: memset dictionary minor
21386: bug fixed
21387:
21388: * src/: classes/classes.h, classes/op.C, include/pa_globals.h,
21389: main/execute.C, main/pa_globals.C: found another multithread bug
21390: in op.C (last, last global var killed) :)
21391:
21392: 2001-08-01 parser
21393:
21394: * src/: include/pa_dictionary.h, include/pa_globals.h,
21395: include/pa_string.h, main/main.dsp, main/pa_dictionary.C,
21396: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
21397: main/untaint.C: speeded up typo-html replacements. introducing
21398: Dictionary with first-char caching
21399:
21400: 2001-07-31 parser
21401:
21402: * src/types/Makefile.am: pa_vtable.C added to .am
21403:
21404: * src/main/compile.tab.C: added, so that could be compiled even on
21405: non-bison-enabled platforms
21406:
21407: 2001-07-28 parser
21408:
21409: * src/classes/table.C: table:hash always produces hash, when can't
21410: - empty
21411:
21412: * src/main/: compile.y, untaint.C: bug fix @ untaint when \r
21413: skipped \n
21414:
21415: 2001-07-27 parser
21416:
21417: * src/classes/: double.C, int.C, string.C: provided meaningful msg
21418: on int/double/string :sql without result and default
21419:
21420: 2001-07-26 parser
21421:
21422: * src/classes/op.C: fixed bad multithread bug with strangly global
21423: OP
21424:
21425: * src/main/compile.y: $man[$.age[zzz]] 0
21426:
21427: * src/: include/pa_opcode.h, main/compile.y, main/execute.C: hash
21428: creation syntax problem persists. restored $: for a while.
21429: thinking of $man[$.age[zzz]] syntax now
21430:
21431: * src/: classes/double.C, classes/int.C, classes/string.C,
21432: include/pa_opcode.h, main/compile.C, main/compile.y,
21433: main/compile_tools.h, main/execute.C, types/pa_vcode_frame.h,
21434: types/pa_vmethod_frame.h, types/pa_wcontext.h,
21435: types/pa_wwrapper.h: fixing :: realization #1
21436:
21437: * src/: include/pa_opcode.h, main/compile.C, main/compile.y,
21438: main/compile_tools.h, main/execute.C, main/pa_request.C,
21439: types/pa_vmethod_frame.h: introducing :: this is constructor call
21440: prefix. ordinary : remains for static accesses
21441:
21442: 2001-07-25 parser
21443:
21444: * src/types/pa_vtable.C: table: get_element order changeed. now: 1.
21445: fields 2. methods 3. columns
21446:
21447: * src/types/: pa_vdouble.h, pa_vint.h: odbc: no result queries;
21448: quote. optimized double&int tostring-s
21449:
21450: * src/main/: compile.C, compile.y, compile_tools.h: allowed
21451: whitespace before first method decl
21452:
21453: * src/classes/table.C: allowed nontable result in table:sql,
21454: results in empty table
21455:
21456: * src/main/: compile.C, compile.y, compile_tools.h: allowed empty
21457: lines before first method decl
21458:
21459: * src/: classes/table.C, main/main.dsp, types/pa_vtable.C,
21460: types/pa_vtable.h: ^table.record[] now $table.fields
21461:
21462: * src/main/compile.y: $var[] is now empty string, not void
21463:
21464: * src/main/: compile.y, execute.C: $var[] is now empty string, not
21465: void
21466:
21467: * src/: classes/string.C, include/pa_globals.h, main/execute.C,
21468: main/pa_globals.C: match replace code context moved to implicit
21469: $match context
21470:
21471: * src/: include/pa_opcode.h, main/compile.y, main/compile_tools.C,
21472: main/compile_tools.h, main/execute.C: with killed, code storage
21473: introduced with former 'with' syntax
21474:
21475: 2001-07-24 parser
21476:
21477: * src/: main/compile.C, main/execute.C, main/pa_string.C,
21478: types/pa_value.h: first get_element, next get operator
21479:
21480: * src/main/compile.y: removed @end handling
21481:
21482: * src/main/: compile.C, compile.y: @end handling method2
21483:
21484: * src/: classes/file.C, include/pa_common.h, main/pa_common.C:
21485: file:move
21486:
21487: * src/main/pa_common.C: file_read close @ eof when imgsize bug
21488: fixed
21489:
21490: 2001-07-23 parser
21491:
21492: * src/: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql odbc
21493: driver
21494:
21495: * src/classes/hash.C: changed sql driver query interface
21496:
21497: * src/: classes/hash.C, classes/string.C, classes/table.C,
21498: classes/void.C, include/pa_sql_connection.h, sql/pa_sql_driver.h:
21499: changed sql driver query interface
21500:
21501: 2001-07-20 parser
21502:
21503: * src/types/pa_vrequest.C: X!$browser:type
21504:
21505: * src/: classes/file.C, classes/string.C, include/pa_string.h,
21506: main/execute.C, main/pa_string.C, types/pa_valiased.C,
21507: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.h,
21508: types/pa_vcookie.h, types/pa_vdate.h, types/pa_vfile.h,
21509: types/pa_vform.h, types/pa_vhash.h, types/pa_vmath.h,
21510: types/pa_vobject.h, types/pa_vrequest.C,
21511: types/pa_vstateless_class.h, types/pa_vstateless_object.h: only
21512: ^class:method dynamic calls allowed. ^BASE.method call disabled.
21513: BASE element globally removed
21514:
21515: 2001-07-18 parser
21516:
21517: * src/classes/file.C: file:exec/cgi msg
21518:
21519: * src/classes/file.C: $file:exit-code renamed to 'status'
21520:
21521: * src/: classes/file.C, main/pa_exec.C: file:exec
21522:
1.116 moko 21523: * src/: Makefile.am, classes/Makefile.am, main/Makefile.am,
21524: targets/Makefile.am, targets/cgi/Makefile.am, types/Makefile.am:
21525: removed $id from *.in *.am
1.95 moko 21526:
21527: * src/main/: pa_request.C, untaint.C: ORIGINS langs name
21528: abbrevations
21529:
21530: * src/: classes/date.C, classes/mail.C, classes/math.C,
21531: classes/string.C, classes/table.C, include/pa_globals.h,
21532: include/pa_string.h, main/execute.C, main/pa_globals.C,
21533: main/pa_request.C, main/pa_string.C, main/untaint.C,
21534: types/pa_value.h, types/pa_vdouble.h, types/pa_vfile.h,
21535: types/pa_vint.h, types/pa_vstring.C, types/pa_vstring.h:
21536: $ORIGINS(1) output tracing mode
21537:
21538: 2001-07-13 parser
21539:
21540: * src/: classes/double.C, classes/int.C, classes/string.C,
21541: include/pa_request.h, main/execute.C, main/pa_request.C:
21542: auto.p[@auto], /news/auto.p[no @auto], so that initializing
21543: second would not call first @auto
21544:
21545: * src/main/: execute.C, pa_request.C: order of MAIN parents was
21546: wrong, fixed
21547:
21548: 2001-07-12 parser
21549:
21550: * src/types/pa_value.h: pa_value.putelement modification of system
21551: classes prevented
21552:
21553: 2001-07-11 parser
21554:
21555: * src/: classes/string.C, doc/sources2html.cmd: lr split now yelds
21556: table $piece
21557:
21558: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
21559: types/pa_vstateless_class.h: $file created by file:state +=
21560: .atime .mtime .ctime +found&fixed bug with exceptions on
21561: get_junction-created objects [they were on wrong pool]
21562:
21563: 2001-07-09 parser
21564:
21565: * src/main/untaint.C: qp wrong name
21566:
21567: * src/: classes/date.C, classes/string.C, classes/table.C,
21568: main/compile.y: date format 0
21569:
21570: 2001-07-07 parser
21571:
21572: * src/: classes/date.C, classes/table.C, include/pa_common.h,
21573: include/pa_string.h, main/pa_common.C, types/pa_vdate.h: date
21574: roll table calendar
21575:
21576: * src/: classes/Makefile.am, classes/date.C, classes/file.C,
21577: classes/hash.C, classes/image.C, classes/mail.C, classes/math.C,
21578: classes/op.C, classes/string.C, classes/table.C, classes/void.C,
21579: include/pa_request.h, main/main.dsp, types/pa_value.h,
21580: types/pa_vdate.h, types/pa_wcontext.C: date now set $fields roll
21581: string. todo: sql, calendar
21582:
21583: 2001-07-06 parser
21584:
21585: * src/: classes/math.C, include/pa_request.h, main/execute.C,
21586: main/main.dsp, main/pa_request.C, types/pa_vmath.h: math 0
21587:
21588: 2001-07-03 parser
21589:
21590: * src/: classes/Makefile.am, classes/math.C, classes/op.C,
21591: classes/random.C, main/main.dsp: class random renamed to math,
21592: operators became methods
21593:
21594: * src/classes/op.C: pow sqrt
21595:
21596: * src/: classes/op.C, main/execute.C: sin asin cos acos tan atan
21597:
21598: 2001-07-02 parser
21599:
21600: * src/classes/table.C: ^table.columns column renamed from 'name' to
21601: 'column'
21602:
21603: * src/classes/hash.C: ^hash.keys[]
21604:
21605: * src/: classes/table.C, main/pa_table.C: ^table:columns[]
21606:
21607: * src/main/: compile.y, compile_tools.h: in expressions now allowed
21608: 'strings'
21609:
21610: 2001-06-29 parser
21611:
21612: * src/main/: execute.C: /0 %0 checkes ver 2
21613:
21614: * src/main/execute.C: /0 %0 checke
21615:
21616: * src/classes/Makefile.am: nothing - void
21617:
21618: * src/classes/table.C: empty strings @ sql
21619:
21620: 2001-06-28 parser
21621:
21622: * src/: classes/double.C, classes/file.C, classes/form.C,
21623: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
21624: classes/op.C, classes/random.C, classes/response.C,
21625: classes/string.C, classes/table.C, classes/void.C,
21626: main/compile.C, main/compile_tools.C, main/execute.C,
21627: main/pa_array.C, main/pa_common.C, main/pa_dir.C,
21628: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
21629: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
21630: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
21631: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
21632: targets/isapi/parser3isapi.C, main/compile.y: */ static const
21633: char *RCSId="$Id: double.C,v 1.31 2001/06/28 07:41:59 parser Exp
21634: $";
21635:
21636: * src/: classes/double.C, classes/file.C, classes/form.C,
21637: classes/hash.C, classes/image.C, classes/int.C, classes/mail.C,
21638: classes/op.C, classes/random.C, classes/response.C,
21639: classes/string.C, classes/table.C, classes/void.C,
21640: main/compile.C, main/compile.y, main/compile_tools.C,
21641: main/execute.C, main/pa_array.C, main/pa_common.C, main/pa_dir.C,
21642: main/pa_exception.C, main/pa_exec.C, main/pa_globals.C,
21643: main/pa_hash.C, main/pa_pool.C, main/pa_request.C,
21644: main/pa_socks.C, main/pa_sql_driver_manager.C, main/pa_string.C,
21645: main/pa_table.C, main/untaint.C, targets/cgi/parser3.C,
1.119 moko 21646: targets/isapi/parser3isapi.C: static char *RCSId="Id";
1.95 moko 21647:
21648: * src/main/: compile.y, compile_tools.h: $:name: == ${name}:
21649: $class:name: == ${class:name}:
21650:
21651: * src/classes/string.C: exactly one
21652:
21653: 2001-06-27 parser
21654:
21655: * src/: classes/nothing.C, classes/void.C, types/pa_vnothing.h,
21656: types/pa_vvoid.h: nothing renamed to void
21657:
21658: * src/classes/op.C: ^switch ^case
21659:
21660: * src/main/compile.y: nothing renamed to void
21661:
21662: * src/: classes/hash.C, classes/table.C, main/compile.y,
21663: main/execute.C, main/main.dsp, main/pa_request.C,
21664: targets/cgi/pa_pool.C, types/pa_value.h, types/pa_vcode_frame.h,
21665: types/pa_vmethod_frame.h, types/pa_vtable.h: nothing renamed to
21666: void
21667:
21668: * src/main/compile.y: lexer: $zzzz^zzzz were name part
21669:
21670: 2001-05-28 parser
21671:
21672: * src/doc/html2chm.cmd: removed >a
21673:
21674: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: release
21675: project options [some bugs]
21676:
21677: * src/doc/sources2html.cmd: z
21678:
21679: * src/: classes/classes.C, main/compile.C, main/compile.y,
21680: main/execute.C: operators are not in root class again
21681:
21682: 2001-05-24 parser
21683:
21684: * src/targets/cgi/parser3.dsp: project file
21685:
21686: * src/: classes/op.C, main/pa_request.C, targets/cgi/parser3.C:
21687: ^log ^exp
21688:
21689: * src/: main/pa_request.C, targets/cgi/parser3.C: // no _
21690: conversions in @exception[params]
21691:
21692: * src/main/pa_request.C: // no _ conversions in @exception[params]
21693:
21694: 2001-05-23 parser
21695:
21696: * src/main/pa_string.C: string cmp bug
21697:
21698: * src/classes/: mail.C, op.C: rem max 1000
21699:
21700: * src/: classes/op.C, main/compile.y: allow one empty line before
21701: LS_DEF_NAME
21702:
21703: 2001-05-22 parser
21704:
21705: * src/classes/op.C: if params code-required
21706:
21707: 2001-05-21 parser
21708:
21709: * src/types/pa_vstring.C: eoleof
21710:
21711: * src/classes/Makefile.am: .AM
21712:
21713: * src/classes/nothing.C: resultless ^sql moved to nothing:
21714:
21715: * src/classes/: nothing.C, op.C: 'unknown' renamed to 'nothing'
21716:
21717: * src/: classes/double.C, classes/nothing.C, classes/string.C,
21718: classes/unknown.C, main/main.dsp, types/pa_vnothing.h,
21719: types/pa_vunknown.h, classes/hash.C, main/compile.y,
21720: main/execute.C, targets/cgi/pa_pool.C, types/pa_vcode_frame.h,
21721: types/pa_vmethod_frame.h, types/pa_vtable.h, classes/table.C,
21722: main/pa_request.C, types/pa_value.h: 'unknown' renamed to
21723: 'nothing'
21724:
21725: * src/types/: pa_vstring.C, pa_vstring.h: removed unnecessary
21726: vstring::set_string
21727:
21728: * src/classes/: double.C, int.C, string.C: int,double;sql
21729:
21730: * src/: classes/hash.C, classes/int.C, classes/string.C,
21731: classes/table.C, include/pa_string.h, main/pa_string.C,
21732: types/pa_vstring.C, types/pa_vstring.h: started int:sql
21733:
21734: * src/: classes/classes.C, classes/hash.C, classes/op.C,
21735: classes/table.C, main/compile.C, main/compile.y, main/execute.C:
21736: hash:sql moved to main trunc. operators.txt updated
21737:
21738: * src/classes/: hash.C, op.C, table.C: hash:sql
21739:
21740: * src/classes/op.C: z
21741:
21742: * src/: main/compile.C, classes/classes.C: 1
21743:
21744: * src/: classes/classes.C, main/compile.C, main/compile.y,
21745: main/execute.C: 0
21746:
21747: * src/main/execute.C: z
21748:
21749: * src/targets/cgi/parser3.C: z
21750:
21751: * src/targets/cgi/parser3.C: argv can be just "parser3". made
21752: site_auto_path "." in that case
21753:
21754: * src/targets/cgi/: parser3.C: z
21755:
21756: * src/main/pa_request.C: .am
21757:
21758: * src/: main/pa_request.C, targets/cgi/parser3.C:
21759: pcre_tables=pcre_default_tables;
21760:
21761: 2001-05-19 parser
21762:
21763: * src/main/pa_string.C: z
21764:
21765: * src/: include/pa_string.h, main/untaint.C, targets/cgi/pa_pool.C:
21766: introducing String::cstr_bufsize, returns just size+1 for as_is
21767: target.
21768:
21769: * src/: main/untaint.C, targets/cgi/pa_pool.C,
21770: targets/cgi/parser3.C: fixed bug in pre html untaint, wrong size
21771: used, 4* mem wasted
21772:
21773: * src/classes/string.C: root context in match replace body now
21774: unchanged
21775:
21776: * src/types/pa_value.h: parameter # 1 based
21777:
21778: * src/main/pa_common.C: common: actual filename '%s'
21779:
21780: * src/classes/string.C: z
21781:
21782: * src/classes/Makefile.am: classes/.am
21783:
21784: * src/classes/: Makefile.am: classes/.am
21785:
21786: * src/: classes/Makefile.am, main/pa_sql_driver_manager.C,
21787: targets/cgi/pa_pool.C: classes/.am
21788:
21789: 2001-05-18 parser
21790:
1.116 moko 21791: * src/: include/pa_config_auto.h.in, targets/cgi/pa_pool.C: .am
21792: pa_threads.C ins
1.95 moko 21793:
21794: * src/targets/cgi/Makefile.am: .am pa_threads.C added
21795:
21796: 2001-05-17 parser
21797:
21798: * src/: classes/string.C, include/pa_config_fixed.h,
21799: include/pa_config_includes.h, main/compile.y,
21800: main/compile_tools.h, main/execute.C, main/pa_array.C,
21801: main/pa_common.C, main/pa_dir.C, main/pa_hash.C, main/pa_pool.C,
21802: main/untaint.C, types/pa_vcookie.C, types/pa_vfile.C,
21803: types/pa_vform.C: #include "pa_config_includes.h" removed from
21804: most .C
21805:
21806: * src/doc/html2chm.cmd: z
21807:
21808: * src/doc/: chm.cmd, doxygen.cmd, html2chm.cmd, sources2html.cmd,
21809: view.cmd, view_chm.cmd, view_html.cmd: doc cmds
21810:
21811: * src/main/pa_sql_driver_manager.C: moved expiration to
21812: get_connection_from_cache
21813:
21814: * src/main/pa_sql_driver_manager.C: cache expiration bf
21815:
21816: * src/: classes/classes.h, include/pa_sql_connection.h,
21817: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C:
21818: cache expiration[use SQL_Driver::disconnect]
21819:
21820: * src/main/pa_table.C: table.locate current restored on "not found"
21821:
21822: * src/: main/execute.C, types/pa_vmethod_frame.h: endless recursion
21823: line no
21824:
21825: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
21826: ANTI_ENDLESS_EXECUTE_RECOURSION
21827:
21828: * src/: classes/op.C, include/pa_sql_connection.h,
21829: include/pa_sql_driver_manager.h, main/pa_sql_driver_manager.C,
21830: sql/pa_sql_driver.h: fixed problem at last: 2connections own
21831: 1driver and set_services fight for driver::fservices. before fix
21832:
21833: * src/: classes/op.C, include/pa_config_fixed.h,
21834: include/pa_sql_connection.h, include/pa_sql_driver_manager.h,
21835: main/pa_sql_driver_manager.C: found problem at last: 2connections
21836: own 1driver and set_services fight for driver::fservices. before
21837: fix
21838:
21839: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21840: targets/cgi/pa_threads.C, targets/cgi/parser3.dsp,
21841: targets/isapi/pa_threads.C, targets/isapi/parser3isapi.dsp: added
21842: pa_threads.C
21843:
21844: * src/include/pa_threads.h: removed targets/parser
21845:
21846: * src/include/: pa_array.h, pa_common.h, pa_config_fixed.h,
21847: pa_config_includes.h, pa_exception.h, pa_exec.h, pa_globals.h,
21848: pa_hash.h, pa_opcode.h, pa_pool.h, pa_request.h, pa_sapi.h,
21849: pa_socks.h, pa_sql_connection.h, pa_stack.h, pa_string.h,
21850: pa_table.h, pa_threads.h: #include "pa_config_includes.h" in all
21851: headers
21852:
21853: * src/: classes/image.C, include/pa_sql_driver_manager.h,
21854: main/pa_sql_driver_manager.C, main/pa_string.C: wrong includes
21855: order prevented sqlmanager to see MULTYTHREAD define
21856:
21857: * src/: include/pa_config_fixed.h, include/pa_threads.h,
21858: main/pa_sql_driver_manager.C: SYNCHRONIZED moved closer to caches
21859: put/gets
21860:
21861: * src/: include/pa_hash.h, main/execute.C: removed /*SYNCHRONIZED*/
21862: from hash.h
21863:
21864: * src/: classes/op.C, include/pa_sql_connection.h,
21865: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: connection
21866: from cache ->set_services(&services);
21867:
21868: 2001-05-16 parser
21869:
21870: * src/targets/cgi/parser3.C: z
21871:
21872: * src/: include/pa_pool.h, targets/cgi/pa_pool.C: removed pool
21873: debug, #ifdefed some. would debug later, on more precise sample
21874: than stupid: @main[] $name[$z[]] ^for[i](0;10000-2){ $tail[9994]
21875: $name.$tail[$tail!] $name.$tail } ok3
21876:
21877: * src/: include/pa_array.h, main/pa_array.C, targets/cgi/parser3.C:
21878: removed array debug. before vstring rebasing
21879:
21880: * src/: include/pa_array.h, include/pa_string.h, main/execute.C,
21881: main/pa_array.C, targets/cgi/pa_pool.C, targets/cgi/parser3.C:
21882: array debugged; adjusted
21883:
21884: * src/main/: pa_sql_driver_manager.C, pa_string.C:
21885: SQL_Driver_manager line no for connect/charset errors
21886:
21887: 2001-05-15 parser
21888:
21889: * src/: include/pa_array.h, include/pa_string.h, main/pa_array.C,
21890: main/pa_string.C: string+array made linear grows
21891:
21892: * src/: include/pa_string.h, main/pa_string.C,
21893: targets/cgi/pa_pool.C, targets/cgi/parser3.C: think that all must
21894: grow lineary, not exponentialy
21895:
21896: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C,
21897: targets/cgi/pa_pool.C, targets/cgi/parser3.C: string fixed bug
21898: with fullchunk cmps
21899:
21900: * src/targets/cgi/: pa_pool.C, parser3.C: main loss here: 5673321/
21901: 70041= 81
21902:
21903: * src/: include/pa_string.h, targets/cgi/pa_pool.C,
21904: targets/cgi/parser3.C: detected huge mem allocation: size/times
21905: malloc 27809390/368771, calloc 3232/83. would test now
21906:
21907: * src/: classes/random.C, main/compile.y, main/execute.C,
21908: main/pa_request.C, types/pa_value.h, types/pa_vmethod_frame.h:
21909: numbered params had wrong name - for instance: bad error message
21910: in ^for[] bad body type. fixed
21911:
21912: 2001-05-14 parser
21913:
21914: * src/: classes/string.C, include/pa_string.h, main/pa_string.C,
21915: main/untaint.C: ^string.upper|lower[]
21916:
21917: 2001-05-11 parser
21918:
21919: * src/: classes/double.C, classes/image.C, classes/op.C,
21920: classes/string.C, classes/table.C, classes/unknown.C,
21921: main/execute.C, types/pa_value.h, types/pa_vbool.h,
21922: types/pa_vdouble.h, types/pa_vint.h, types/pa_vstring.h,
21923: types/pa_vunknown.h: op: MAX_LOOPS as_int
21924:
21925: * src/: main/main.dsp, targets/isapi/parser3isapi.dsp: fixed some
21926: .dsp for win32tools
21927:
21928: 2001-05-11 paf
21929:
21930: * src/: classes/classes.cmd, classes/gawk.exe, classes/ls.exe,
21931: main/bison.exe, targets/isapi/KILL.EXE, targets/isapi/PSTAT.EXE,
21932: targets/isapi/istart.cmd, targets/isapi/istop.cmd,
21933: targets/isapi/kill.pl: moved win32 helpers to /win32tools
21934:
21935: 2001-05-10 paf
21936:
21937: * src/include/: pa_common.h, pa_config_includes.h: inline undefed
21938: for C++, that's all
21939:
1.116 moko 21940: * src/include/: pa_config_auto.h.in, pa_config_fixed.h,
21941: pa_config_includes.h: inline wonders
1.95 moko 21942:
21943: * src/: classes/Makefile.am, classes/hash.C, doc/doxygen.cfg,
21944: doc/doxygen.cmd: hash.C added
21945:
21946: * src/: main/pa_request.C, types/pa_vrequest.C: op configured
21947:
21948: * src/main/compile.y: @end grammar: allowed zero strings in control
21949: menthod
21950:
21951: * src/types/: pa_value.h, pa_vclass.h, pa_vstateless_class.h,
21952: pa_vstateless_object.h: changed priority: field before method
21953: lookup in vclass & vobject
21954:
21955: * src/: doc/doxygen.cmd, main/compile.y, types/pa_vobject.h:
21956: grammar: priorities changes [lowerd && prior] vobject: now first
21957: fields, next methods
21958:
21959: 2001-05-08 paf
21960:
21961: * src/main/pa_table.C: table columnname2item on nameless ignored
21962: bark=false. fixed
21963:
21964: * src/: classes/table.C, types/pa_value.h, types/pa_vhash.h,
21965: types/pa_vmethod_frame.h: hash:default works at last!
21966:
21967: * src/: classes/mail.C, classes/table.C, doc/doxygen.cmd,
21968: main/main.dsp, types/pa_vhash.h, types/pa_vstateless_class.h:
21969: hash:default
21970:
21971: * src/classes/table.C: z
21972:
21973: * src/classes/table.C: table:hash always hash of hash now
21974:
21975: * src/classes/table.C: table:empty return bool now
21976:
21977: * src/: classes/table.C, doc/chm.cmd, include/pa_array.h,
21978: include/pa_table.h, main/pa_table.C, types/pa_value.h,
21979: types/pa_vtable.h: table:hash
21980:
21981: * src/classes/table.C: table:record have name
21982:
21983: * src/: classes/op.C, types/pa_vtable.h: allowed $table.2342734
21984: returns vunknown
21985:
21986: * src/classes/: double.C, int.C, op.C, string.C:
21987: int,double,string:int[] double[] string:length[] results now have
21988: hames
21989:
21990: * src/: classes/op.C, classes/table.C, main/main.dsp,
21991: types/pa_vtable.h: removed table:find. table:locate and op:eval
21992: now return bool
21993:
21994: * src/: doc/chm.cmd, main/execute.C, types/pa_value.h: wrong pool
21995: in method checkparams again. fixed
21996:
21997: 2001-05-07 paf
21998:
21999: * src/doc/chm.cmd: cmd
22000:
22001: * src/: classes/image.C, classes/mail.C, classes/string.C,
22002: doc/chm.cmd, include/pa_table.h, main/pa_table.C,
22003: types/pa_value.h: method reported errors on wrong pool
22004:
22005: * src/main/execute.C: ^var[^class:var.method[]] is not constructor
22006: now
22007:
22008: * src/: doc/ClassExample2.dox, doc/aliased.dox, doc/chm.cmd,
22009: include/code.h, include/pa_opcode.h, main/compile.C,
22010: main/compile_tools.h, main/execute.C, types/pa_value.h,
22011: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22012: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22013: types/pa_vfile.h, types/pa_vform.h, types/pa_vhash.h,
22014: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22015: types/pa_vmethod_frame.h, types/pa_vobject.h,
22016: types/pa_vrequest.h, types/pa_vresponse.h,
22017: types/pa_vstateless_class.h, types/pa_vstring.h,
22018: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22019: types/pa_wwrapper.h: pa_code.h
22020:
22021: * src/doc/: chm.cmd, doxygen.cmd, view.cmd: dox cmd
22022:
22023: * src/: classes/string.C, classes/table.C, doc/ClassExample1.dox,
22024: doc/ClassExample2.dox, doc/ClassExample3.dox, doc/aliased.dox,
22025: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22026: doc/doxygen.cmd, doc/executor.dox, doc/index.dox,
22027: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22028: doc/string.dox, doc/targets.dox, doc/value.dox, include/code.h,
22029: include/pa_hash.h, include/pa_string.h, main/pa_request.C,
22030: main/pa_sql_driver_manager.C, types/pa_vjunction.h,
22031: types/pa_vtable.h: dox, split by not clean parts also
22032:
22033: * src/: include/pa_table.h, main/pa_table.C, types/pa_value.h,
22034: types/pa_vtable.h: table: fields, then methods. so to enable
22035: 'dir' fields & co. more
22036:
22037: * src/types/: pa_value.h, pa_vtable.h: table: fields, then methods.
22038: so to enable 'dir' fields & co.
22039:
22040: * src/main/compile.y: grammar: @end
22041:
22042: 2001-05-04 paf
22043:
22044: * src/: doc/ClassExample1.dox, doc/ClassExample2.dox,
22045: doc/ClassExample3.dox, main/execute.C: dox: example1 updated
22046:
22047: * src/: classes/classes.h, classes/double.C, classes/file.C,
22048: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22049: classes/op.C, classes/random.C, classes/response.C,
22050: classes/string.C, classes/table.C, classes/unknown.C,
22051: doc/doxygen.cfg, doc/index.dox, main/pa_string.C: removed m-
22052: method dox
22053:
22054: 2001-05-03 paf
22055:
22056: * src/: classes/classes.h, classes/double.C, doc/aliased.dox,
22057: doc/class.dox, doc/compiler.dox, doc/doxygen.cfg,
22058: doc/doxygen.txt, doc/executor.dox, doc/index.dox,
22059: doc/methoded.dox, doc/module.dox, doc/object.dox, doc/pooled.dox,
22060: doc/string.dox, doc/targets.dox, doc/value.dox,
22061: main/pa_request.C: dox splitted .dox files and added some
22062:
22063: * src/: classes/Makefile.am, doc/doxygen.txt: classes/am
22064:
22065: 2001-05-02 paf
22066:
22067: * src/classes/: image.C, table.C: table:dir result are not tainted
22068: by file_name language now
22069:
22070: 2001-04-28 paf
22071:
22072: * src/classes/classes.inc: removed classes.inc
22073:
22074: * src/: classes/classes.inc, main/Makefile.am: removed pa_methoded
22075: from .am
22076:
22077: * src/classes/classes.awk: skipped classes in .awk
22078:
22079: * src/: classes/Makefile.am, classes/classes.C, classes/classes.h,
22080: classes/classes.inc, classes/double.C, classes/file.C,
22081: classes/form.C, classes/int.C, classes/op.C, classes/response.C,
22082: classes/string.C, classes/table.C, classes/unknown.C,
22083: include/pa_methoded.h, main/main.dsp, main/pa_methoded.C,
22084: targets/cgi/parser3.C, types/pa_vdouble.h, types/pa_vfile.h,
22085: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h: renamed
22086: pa_methoded back to classes/classes.h
22087:
22088: * src/: classes/Makefile.am, main/main.dsp: classes/Makefile.am
22089:
22090: * src/: classes/Makefile.am, classes/classes.awk,
22091: classes/classes.cmd, classes/classes.inc, classes/gawk.exe,
22092: classes/ls.exe, main/bison.exe: classes.inc autogenerator
22093:
22094: * src/: classes/classes.C, classes/classes.h, classes/double.C,
22095: classes/file.C, classes/form.C, classes/int.C, classes/op.C,
22096: classes/response.C, classes/string.C, classes/table.C,
22097: classes/unknown.C, include/pa_methoded.h, main/Makefile.am,
22098: main/main.dsp, main/pa_methoded.C, targets/cgi/parser3.C,
22099: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vform.h,
22100: types/pa_vimage.h, types/pa_vint.h: classes/classes renamet to
22101: include|main/pa_methoded
22102:
22103: * src/: include/pa_string.h, main/pa_globals.C, main/untaint.C,
22104: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: z
22105:
22106: * src/: classes/form.C, include/pa_globals.h, main/pa_globals.C:
22107: moved some configured data to request::classes_conf moved some
22108: string crations from globals to M... [works]
22109:
22110: * src/: classes/form.C, classes/mail.C, classes/op.C,
22111: include/pa_globals.h, include/pa_request.h, main/pa_globals.C,
22112: main/pa_request.C: moved some configured data to
22113: request::classes_conf moved some string crations from globals to
22114: M...
22115:
22116: * src/: classes/form.C, include/pa_request.h, main/pa_request.C:
22117: about to move configured data to special request hash
22118:
22119: * src/: classes/classes.C, classes/classes.h, classes/file.C,
22120: classes/form.C, classes/mail.C, include/pa_request.h,
22121: main/pa_request.C: configure started
22122:
22123: * src/: main/execute.C, types/pa_wcontext.h: Methoded reorganized
22124: 2. todo: methoded-configure
22125:
22126: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22127: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22128: classes/_random.h, classes/_response.h, classes/_string.h,
22129: classes/_table.h, classes/_unknown.h, classes/classes.inc,
22130: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22131: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22132: classes/random.C, classes/response.C, classes/string.C,
22133: classes/table.C, classes/unknown.C, include/pa_globals.h,
22134: include/pa_request.h, main/compile.y, main/execute.C,
22135: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22136: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22137: types/pa_value.h, types/pa_vcookie.h, types/pa_vdouble.h,
22138: types/pa_venv.h, types/pa_vfile.h, types/pa_vform.C,
22139: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22140: types/pa_vrequest.h, types/pa_vresponse.h,
22141: types/pa_vstateless_class.h, types/pa_vstring.h,
22142: types/pa_vtable.h, types/pa_vunknown.h, types/pa_wcontext.h,
22143: classes/classes.C, classes/classes.h: Methoded reorganized. todo:
22144: methoded-configure
22145:
22146: * src/: classes/file.C, classes/table.C, main/compile.y,
22147: main/execute.C, main/pa_request.C, targets/cgi/parser3.C,
22148: types/pa_vtable.h, types/pa_wcontext.h: removed ^a.menu{$name}
22149: ability. now $a{^menu{$name}} or ^a.menu{$a.name}
22150:
22151: * src/: classes/_string.h, classes/classes.C, classes/classes.h,
22152: classes/double.C, classes/exec.C, classes/file.C, classes/form.C,
22153: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22154: classes/random.C, classes/response.C, classes/string.C,
22155: classes/table.C, classes/unknown.C, include/pa_request.h,
22156: main/compile.y, main/execute.C, main/pa_globals.C,
22157: main/pa_request.C, types/pa_value.h, types/pa_vdouble.h,
22158: types/pa_vfile.h, types/pa_vform.C, types/pa_vform.h,
22159: types/pa_vimage.h, types/pa_vint.h, types/pa_vresponse.h,
22160: types/pa_vstring.h, types/pa_vtable.h, types/pa_vunknown.h:
22161: beautifying just compiled. todo: debug, configure
22162:
22163: 2001-04-27 paf
22164:
22165: * src/: classes/file.C, classes/image.C, classes/table.C,
22166: main/execute.C, main/pa_request.C, types/pa_vstateless_class.h:
22167: beautifying -99
22168:
22169: * src/: classes/_double.h, classes/_form.h, classes/_int.h,
22170: classes/_response.h, classes/_unknown.h, classes/classes.C,
22171: classes/classes.h, classes/double.C, classes/file.C,
22172: classes/form.C, classes/image.C, classes/int.C, classes/mail.C,
22173: classes/op.C, classes/random.C, classes/response.C,
22174: classes/string.C, include/pa_globals.h, main/main.dsp,
22175: main/pa_globals.C, types/pa_vdouble.h, types/pa_vfile.h,
22176: types/pa_vform.h, types/pa_vimage.h, types/pa_vint.h,
22177: types/pa_vresponse.h, types/pa_vstring.h, types/pa_vtable.h,
22178: types/pa_vunknown.h: beautifying -100
22179:
22180: * src/main/compile.y: serge@ found @CLASS bug. fixed
22181:
22182: * src/: classes/_file.h, classes/_image.h, classes/_mail.h,
22183: classes/_op.h, classes/_random.h, classes/_table.h,
22184: classes/file.C, classes/image.C, classes/int.C, classes/mail.C,
22185: classes/op.C, classes/random.C, classes/response.C,
22186: classes/string.C, classes/table.C, classes/unknown.C,
22187: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22188: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22189: types/pa_vcookie.h, types/pa_venv.h, types/pa_vrequest.h: started
22190: beautifying
22191:
22192: 2001-04-26 paf
22193:
22194: * src/: main/pa_request.C, types/pa_vfile.h: code documentation ++
22195:
22196: * src/: doc/doxygen.cfg, include/pa_socks.h, main/pa_socks.C: code
22197: documentation ++
22198:
22199: * src/: classes/_exec.h, doc/doxygen.cfg,
22200: include/pa_config_fixed.h, include/pa_config_includes.h,
22201: targets/cgi/pa_pool.C: code documentation ++
22202:
22203: * src/: classes/_image.h, classes/op.C, classes/random.C,
22204: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22205: types/pa_vcookie.h, types/pa_vdouble.h, types/pa_venv.h,
22206: types/pa_vform.C, types/pa_vform.h, types/pa_vimage.C,
22207: types/pa_vimage.h, types/pa_vint.h, types/pa_vjunction.h,
22208: types/pa_vmethod_frame.h, types/pa_vobject.h,
22209: types/pa_vrequest.C, types/pa_vrequest.h,
22210: types/pa_vstateless_class.C, types/pa_vstateless_object.h,
22211: types/pa_vstring.C, types/pa_vstring.h, types/pa_vtable.h,
22212: types/pa_vunknown.h, types/pa_wcontext.C, types/pa_wwrapper.h:
22213: code documentation ++
22214:
22215: * src/: classes/image.C, classes/mail.C, classes/string.C,
22216: classes/table.C, doc/doxygen.cfg, doc/doxygen.txt,
22217: include/pa_array.h, include/pa_dir.h, include/pa_string.h,
22218: main/compile_tools.h, main/pa_common.C, sql/pa_sql_driver.h,
22219: types/pa_vbool.h, types/pa_vclass.h, types/pa_vcode_frame.h,
22220: types/pa_vhash.h, types/pa_vjunction.h, types/pa_vmethod_frame.h,
22221: types/pa_vobject.h, types/pa_vstateless_class.h,
22222: types/pa_wcontext.h, types/pa_wwrapper.h: code documentation ++
22223:
22224: * src/main/: pa_request.C, pa_string.C: z
22225:
22226: * src/: include/pa_common.h, include/pa_types.h,
22227: main/pa_sql_driver_manager.C: module [and, guess, isapi]
22228: connection caching fixed. request-pooled-url were stored into
22229: global connectioncache
22230:
22231: 2001-04-25 paf
22232:
22233: * src/: doc/doxygen.cfg, doc/doxygen.txt,
22234: targets/isapi/parser3isapi.C: started doc / [doxygen.txt]
22235:
22236: * src/: include/code.h, include/pa_common.h, main/compile.y,
22237: main/execute.C, main/pa_common.C: -d
22238:
22239: * src/: classes/file.C, main/pa_exec.C, targets/cgi/parser3.C:
22240: illegal call check a bit improved, but still under iis no mapping
22241: of dir with parser allowed!
22242:
22243: 2001-04-24 paf
22244:
22245: * src/targets/Makefile.am: apache module lib .am
22246:
22247: * src/main/pa_exec.C: windows32 buildCommand
22248:
22249: 2001-04-23 paf
22250:
22251: * src/targets/cgi/Makefile.am: win32 conditional
22252:
22253: * src/targets/cgi/Makefile.am: win32 conditional
22254:
22255: * src/targets/cgi/Makefile.am: liblink
22256:
22257: * src/: include/pa_array.h, main/pa_array.C, types/pa_vfile.h:
22258: vfile fields return type
22259:
22260: * src/types/pa_vfile.h: vfile fields return type
22261:
22262: * src/include/pa_config_auto.h.in: .h.in
22263:
22264: * src/: classes/Makefile, main/Makefile, targets/cgi/Makefile,
22265: types/Makefile: makefiles removed
22266:
22267: * src/: classes/Makefile, main/Makefile, main/pa_string.C,
22268: targets/cgi/Makefile, types/Makefile: configure.in + makefiles
22269:
22270: * src/main/pa_string.C: tested OK /// @test really @b test: s x m
22271: [tested: i & g ]
22272:
22273: * src/: classes/random.C, targets/cgi/parser3.C: redo failed ///
22274: @test noticed series in isapi, check how initialize_random_class
22275: is called! [must be called only once]
22276:
22277: * src/main/execute.C: operators first! so that ^table.menu{^rem{}}
22278: would not be 'unknown column'
22279:
22280: * src/: classes/table.C, types/pa_vform.C, types/pa_vtable.h: ///
22281: @test $a.menu{ $a[123] } and $a.menu{^table:set[]...}
22282:
22283: * src/: main/pa_request.C, targets/cgi/parser3.C: /// @test with
22284: commandline start "parser3 a.html" so that ^load[a.cfg] worked!
22285: [now doesnt]
22286:
22287: * src/targets/cgi/parser3.C: cgi cmdline ver
22288:
22289: * src/targets/cgi/parser3.C: cgi /// @test disable
22290: /cgi-bin/parser3/auto.p
22291:
22292: * src/main/untaint.C: untaint without charset
22293:
22294: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22295: main/pa_common.C: common: file_write /// @test mkdirs
22296: file_delete rmdirs
22297:
22298: * src/main/untaint.C: mail header only once to =?
22299:
22300: * src/: classes/image.C, classes/mail.C, include/pa_globals.h,
22301: include/pa_string.h, main/pa_exec.C, main/pa_request.C,
22302: main/untaint.C: untaint - @test optimize whitespaces for
22303: all but 'html'
22304:
22305: * src/: classes/mail.C, include/pa_hash.h, include/pa_string.h,
22306: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
22307: main/untaint.C: untaint - @test mail-header
22308:
22309: 2001-04-20 paf
22310:
22311: * src/: classes/string.C, classes/table.C, include/pa_globals.h,
22312: include/pa_request.h, include/pa_string.h, main/compile.y,
22313: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
22314: targets/cgi/parser3.C: $MAIN:LOCALE
22315:
22316: * src/main/untaint.C: z
22317:
22318: * src/: main/untaint.C, targets/cgi/parser3.C: fixed header "a/a"
22319:
22320: 2001-04-19 paf
22321:
22322: * src/main/compile_tools.h: $a$b bugfix
22323:
22324: * src/targets/cgi/parser3.C: z
22325:
22326: * src/classes/file.C: z
22327:
22328: * src/: classes/file.C, include/pa_common.h, types/pa_vcookie.C:
22329: done: header to $fields. waits for header '\' tricks
22330:
22331: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
22332: main/untaint.C, targets/isapi/parser3isapi.C, types/pa_vcookie.C:
22333: changed urlencode here and in untaint.C to HTTP standard's " and
22334: \" mech
22335:
22336: * src/: main/pa_request.C, targets/isapi/parser3isapi.C: fixed
22337: http://alx/~paf/ doesnt load /auto.p
22338:
22339: 2001-04-18 paf
22340:
22341: * src/main/pa_request.C: 1
22342:
22343: * src/: main/Makefile.am, main/main.dsp, targets/cgi/Makefile.am:
22344: linux @alx
22345:
22346: 2001-04-17 paf
22347:
22348: * src/: classes/file.C, classes/image.C, doc/doxygen.cfg,
22349: include/pa_sql_connection.h, main/pa_sql_driver_manager.C,
22350: sql/pa_sql_driver.h: SQL_Driver_services renamed. doxygen statics
22351: enabled
22352:
22353: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22354: classes/_exec.h, classes/_file.h, classes/_form.h,
22355: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22356: classes/_random.h, classes/_response.h, classes/_string.h,
22357: classes/_table.h, classes/_unknown.h, classes/file.C,
22358: classes/image.C, classes/mail.C, classes/op.C, classes/random.C,
22359: include/pa_config_fixed.h, include/pa_config_includes.h,
22360: include/pa_hash.h, include/pa_sql_driver_manager.h,
22361: include/pa_version.h, main/Makefile.am, main/compile.y,
22362: main/pa_common.C, main/pa_exec.C, main/pa_socks.C,
22363: main/pa_sql_driver_manager.C, sql/Makefile.am,
22364: sql/pa_sql_driver.h, targets/cgi/Makefile.am,
22365: targets/cgi/parser3.C, types/Makefile.am, types/pa_vcookie.C,
22366: types/pa_vform.C, types/pa_vimage.h: exec @jav
22367:
22368: * src/: include/pa_sql_driver_manager.h,
22369: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h,
22370: types/pa_vimage.h: sql driver interface now has initialize(client
22371: .so)
22372:
22373: 2001-04-16 paf
22374:
22375: * src/Makefile.am: compile2 cygwin
22376:
22377: * src/: include/pa_config_includes.h, main/pa_exec.C,
22378: main/pa_socks.C, targets/cgi/Makefile.am: compile1 cygwin
22379:
22380: * src/targets/cgi/Makefile.am: compile0 jav
22381:
22382: * src/: Makefile.am, classes/Makefile.am, classes/_double.h,
22383: classes/_exec.h, classes/_file.h, classes/_form.h,
22384: classes/_image.h, classes/_int.h, classes/_mail.h, classes/_op.h,
22385: classes/_random.h, classes/_response.h, classes/_string.h,
22386: classes/_table.h, classes/_unknown.h, classes/image.C,
22387: classes/mail.C, classes/op.C, classes/random.C,
22388: include/pa_config_fixed.h, include/pa_config_includes.h,
22389: include/pa_hash.h, include/pa_version.h, main/Makefile.am,
22390: main/compile.y, main/pa_common.C, main/pa_exec.C,
22391: sql/Makefile.am, targets/cgi/Makefile.am, targets/cgi/parser3.C,
22392: types/Makefile.am, types/pa_vcookie.C, types/pa_vform.C:
22393: compile-1
22394:
22395: 2001-04-15 paf
22396:
22397: * src/classes/op.C: z
22398:
22399: * src/classes/table.C: table:empty +=process
22400:
22401: * src/types/pa_value.h: MethodParams !junction
22402:
22403: * src/: classes/_string.h, classes/double.C, classes/file.C,
22404: classes/image.C, classes/int.C, classes/mail.C, classes/op.C,
22405: classes/random.C, classes/response.C, classes/string.C,
22406: classes/table.C, classes/unknown.C, main/pa_request.C:
22407: MethodParams everywhere
22408:
22409: * src/: classes/op.C, include/pa_request.h, types/pa_value.h,
22410: types/pa_vmethod_frame.h: MethodParams in op.C
22411:
22412: 2001-04-12 paf
22413:
22414: * src/: classes/image.C, types/pa_vimage.h: image:font :text
22415:
22416: * src/: classes/_unknown.h, classes/unknown.C,
22417: include/pa_globals.h, main/main.dsp, main/pa_globals.C,
22418: types/pa_vunknown.h: ^unknown:int[]=0 double[]=0
22419:
22420: * src/: classes/image.C, main/pa_hash.C: hash bug fixed
22421:
22422: * src/classes/image.C: image:gif now does not have params
22423:
22424: * src/classes/image.C:
22425: image:line/fill/rectangle/bar/replace/polygon/polybar
22426:
22427: * src/: classes/image.C, classes/op.C, main/execute.C,
22428: types/pa_value.h, types/pa_vmethod_frame.h, types/pa_wcontext.h:
22429: for var now written not to r.wcontext, but to r.root cleared
22430: "entered_object" state
22431:
22432: 2001-04-11 paf
22433:
22434: * src/classes/image.C: image:create image:load
22435:
22436: * src/: classes/image.C, main/main.dsp: gd with mem write + image
22437: just compiled
22438:
22439: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
22440: todo: gif without file
22441:
22442: * src/: classes/image.C, types/pa_vimage.C, types/pa_vimage.h: gd
22443: started porting to Pooled descendant
22444:
22445: * src/: classes/image.C, main/execute.C, main/main.dsp,
22446: main/pa_request.C, types/pa_vcframe.h, types/pa_vcode_frame.h,
22447: types/pa_vimage.C, types/pa_vimage.h, types/pa_vmethod_frame.h,
22448: types/pa_vmframe.h: libimaging dead end: pil parses header in .py
22449:
22450: * src/: classes/image.C, include/pa_globals.h, main/main.dsp,
22451: main/pa_globals.C, types/pa_vimage.C, types/pa_vimage.h: gd dead
22452: end. switching to python imaging lib
22453:
22454: * src/main/main.dsp: gd+smtp made separate libs
22455:
22456: * src/: include/pa_globals.h, include/pa_string.h,
22457: main/pa_common.C, main/pa_request.C, main/untaint.C,
22458: types/pa_vfile.C, types/pa_vstring.C: fixed vstring:as_vfile
22459: length
22460:
22461: * src/: classes/mail.C, classes/op.C, targets/cgi/parser3.C,
22462: types/pa_value.h, types/pa_vfile.C, types/pa_vfile.h,
22463: types/pa_vform.C, types/pa_vstring.C, types/pa_vstring.h: forced
22464: UL_FILE_NAME of posted file name
22465:
22466: * src/: classes/image.C, main/pa_request.C, types/pa_vform.C: fixed
22467: post [broke when moved post read to core]
22468:
22469: 2001-04-10 paf
22470:
22471: * src/classes/image.C: image:html done
22472:
22473: * src/: classes/image.C, types/pa_vimage.C: jpg measure bugs fixed
22474:
22475: * src/classes/image.C: z
22476:
22477: * src/: classes/_image.h, classes/image.C, types/pa_vimage.C: image
22478: forgotten!
22479:
22480: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
22481: main/pa_request.C, main/pa_string.C, main/untaint.C,
22482: types/pa_vimage.h: image:measure -90
22483:
22484: * src/: classes/_double.h, classes/_file.h, classes/_form.h,
22485: classes/_int.h, classes/_mail.h, classes/_op.h,
22486: classes/_random.h, classes/_response.h, classes/_string.h,
22487: classes/_table.h, classes/file.C, classes/mail.C,
22488: include/pa_common.h, include/pa_globals.h, main/execute.C,
22489: main/main.dsp, main/pa_common.C, main/pa_globals.C,
22490: targets/isapi/parser3isapi.C, types/pa_value.h, types/pa_vfile.C,
22491: types/pa_vfile.h, types/pa_vhash.h, types/pa_vimage.h,
22492: types/pa_vresponse.h, types/pa_vstring.h: image:measure -100 just
22493: compiled
22494:
22495: * src/classes/mail.C: minor bug with unclear from/to
22496:
22497: * src/classes/mail.C: sendmail unix skipping defaults
22498:
22499: * src/: classes/mail.C, include/pa_common.h, main/pa_common.C:
22500: sendmail unix added defaults
22501:
22502: * src/classes/mail.C: unix sendmail compiled. todo:testing
22503:
22504: * src/: classes/mail.C, main/pa_globals.C: smtp some consts
22505:
22506: 2001-04-09 paf
22507:
22508: * src/: classes/file.C, include/pa_exec.h, include/pa_sapi.h,
22509: main/main.dsp, main/pa_exec.C, targets/cgi/parser3.C,
22510: targets/cgi/parser3.dsp, targets/isapi/parser3isapi.C,
22511: targets/isapi/parser3isapi.dsp: all targets exec
22512:
22513: * src/: include/pa_sapi.h, include/pa_string.h,
22514: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22515: targets/isapi/parser3isapi.dsp: sapi exec dead end. badly parsed
22516: args in apache:util.script
22517:
22518: * src/include/pa_string.h: written but not tested exec with env for
22519: unix
22520:
22521: * src/: classes/file.C, main/main.dsp, main/pa_request.C,
22522: targets/cgi/parser3.C: exec win32 env
22523:
22524: * src/: classes/file.C, include/pa_hash.h, main/pa_hash.C: exec env
22525: 0
22526:
22527: * src/: classes/exec.C, classes/file.C, include/pa_globals.h,
22528: main/execute.C, main/main.dsp, main/pa_globals.C,
22529: main/pa_request.C, types/pa_vfile.C, types/pa_vfile.h,
22530: types/pa_vform.C, types/pa_vstring.C: exec4. todo env
22531:
22532: * src/: classes/exec.C, include/pa_common.h, main/pa_common.C,
22533: main/untaint.C: exec3. decided exec:cgi to move to file:cgi
22534:
22535: * src/: classes/_exec.h, main/execute.C, main/pa_globals.C,
22536: main/pa_request.C, types/pa_vcookie.C, types/pa_vfile.C: exec -2
22537:
22538: * src/: classes/_exec.h, classes/exec.C, include/pa_common.h,
22539: include/pa_request.h, include/pa_sapi.h, include/pa_string.h,
22540: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22541: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22542: targets/isapi/parser3isapi.C, types/pa_vform.C, types/pa_vform.h:
22543: exec class just compiled. moved post read to request core
22544:
22545: * src/: classes/_op.h, include/pa_dir.h, include/pa_globals.h,
22546: include/pa_sapi.h, main/main.dsp, main/pa_dir.C,
22547: main/pa_globals.C, targets/cgi/parser3.C,
22548: targets/cgi/parser3.dsp: problems with ^exec:cgi post data. they
22549: are already read by vform
22550:
22551: 2001-04-08 paf
22552:
22553: * src/: classes/file.C, classes/mail.C, classes/string.C,
22554: include/pa_request.h, include/pa_string.h, main/pa_request.C:
22555: uuencode. string<<
22556:
22557: 2001-04-07 paf
22558:
22559: * src/classes/mail.C: z
22560:
22561: * src/classes/mail.C: z
22562:
22563: * src/classes/mail.C: ^mail[$attach
22564:
22565: * src/classes/mail.C: ^attach dead end
22566:
22567: * src/: include/pa_socks.h, main/main.dsp, main/pa_socks.C,
22568: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
22569: targets/isapi/parser3isapi.C: mail:send 1
22570:
22571: * src/: classes/mail.C, main/pa_request.C: z
22572:
22573: * src/: classes/mail.C, include/pa_globals.h, include/pa_request.h,
22574: main/main.dsp, main/pa_globals.C, main/pa_request.C: smtp just
22575: compiled
22576:
22577: * src/classes/mail.C: +=
22578:
22579: * src/: classes/mail.C, include/pa_string.h: mail:send -1 text
22580: prepared
22581:
22582: * src/: classes/_mail.h, classes/mail.C, include/pa_common.h,
22583: include/pa_globals.h, include/pa_string.h, main/main.dsp,
22584: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22585: main/untaint.C, types/pa_vcookie.C: mail:send -10 just compiled
22586:
22587: 2001-04-06 paf
22588:
22589: * src/: classes/table.C, include/pa_globals.h, main/pa_globals.C,
22590: main/pa_string.C: table:dir 1
22591:
22592: * src/: classes/table.C, include/pa_dir.h, main/execute.C,
22593: main/main.dsp, main/pa_dir.C: table:dir 0 [without regexp]
22594:
22595: * src/: classes/_op.h, classes/_root.h, classes/op.C,
22596: classes/root.C, include/pa_globals.h, include/pa_request.h,
22597: main/compile.C, main/execute.C, main/main.dsp, main/pa_globals.C,
22598: main/pa_request.C: renamed 'root' to 'op'
22599:
22600: * src/classes/: _op.h, op.C: renamed from 'root'
22601:
22602: * src/types/pa_valiased.C: another root inherititance skipped
22603:
22604: * src/main/: compile.C, compile.y, execute.C: operators are now not
22605: root methods of parent class. just 'ROOT' class
22606:
22607: * src/: classes/random.C, classes/table.C, main/pa_globals.C:
22608: @office
22609:
22610: * src/: main/pa_request.C, sql/pa_sql_driver.h: mysql limit
22611:
22612: 2001-04-05 paf
22613:
22614: * src/: main/execute.C, main/pa_request.C, main/pa_string.C,
22615: types/pa_value.h, types/pa_vmframe.h, types/pa_wcontext.h:
22616: constructor flag dropped at get_method_frame and remembered into
22617: method_frame
22618:
22619: * src/: classes/file.C, classes/root.C, classes/string.C,
22620: classes/table.C, main/pa_request.C: junction to code&expression
22621: in errors
22622:
22623: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
22624: main/pa_string.C, targets/isapi/parser3isapi.dsp:
22625: $LOCALE:ctype[Russian_Russia.1251]
22626:
22627: * src/: include/pa_config_fixed.h, include/pa_config_includes.h,
22628: include/pa_hash.h, include/pa_string.h, main/pa_hash.C,
22629: main/pa_table.C: hash now not thread-safe.
22630:
22631: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
22632: main/untaint.C: z
22633:
22634: * src/: classes/random.C, classes/root.C, classes/table.C,
22635: include/pa_sql_connection.h, include/pa_string.h, main/execute.C,
22636: main/pa_sql_driver_manager.C, main/pa_string.C, main/untaint.C,
22637: sql/pa_sql_driver.h, types/pa_vmframe.h, types/pa_wcontext.C,
22638: types/pa_wcontext.h: sql quote. string untaint UL_SQL
22639:
22640: * src/: classes/table.C, include/pa_sql_connection.h,
22641: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql ping
22642:
22643: * src/classes/table.C: select * from hren error contains statement
22644:
22645: * src/: classes/table.C, include/pa_sql_connection.h,
22646: include/pa_types.h, main/pa_sql_driver_manager.C, main/untaint.C,
22647: sql/pa_sql_driver.h, targets/cgi/parser3.dsp: mysql 0
22648:
22649: * src/: classes/root.C, include/pa_sql_connection.h,
22650: include/pa_sql_driver.h, main/main.dsp,
22651: main/pa_sql_driver_manager.C, sql/pa_sql_driver.h: sql driver
22652: services for conv memory & error reporting
22653:
22654: 2001-04-04 paf
22655:
22656: * src/doc/doxygen.cfg: z
22657:
22658: * src/include/pa_sql_driver.h: mysql connect
22659:
22660: * src/include/pa_sql_driver.h: mysql info
22661:
22662: * src/: classes/root.C, include/pa_sql_driver.h,
22663: include/pa_sql_driver_manager.h, main/main.dsp,
22664: main/pa_sql_driver_manager.C: more manager&connection&driver
22665:
22666: * src/sql/Makefile.am: forgot to add mysql client
22667:
22668: * src/: include/pa_sql_driver.h, include/pa_sql_driver_manager.h,
22669: main/pa_sql_driver_manager.C: connect&sql -1000 just compiled
22670: [forgot to add libltdl, added]
22671:
22672: * src/: Makefile.am, classes/root.C, classes/string.C,
22673: classes/table.C, include/pa_globals.h, include/pa_hash.h,
22674: include/pa_pool.h, include/pa_request.h, include/pa_sapi.h,
22675: include/pa_string.h, include/pa_table.h, main/main.dsp,
22676: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
22677: main/pa_string.C, main/pa_table.C, main/untaint.C: connect&sql
22678: -1000 just compiled
22679:
22680: * src/: classes/random.C, classes/root.C, classes/table.C,
22681: include/pa_globals.h, include/pa_pool.h, include/pa_request.h,
22682: main/pa_request.C, types/pa_vclass.h: sql frame -10
22683:
22684: 2001-04-03 paf
22685:
22686: * src/types/pa_vform.C: z
22687:
22688: * src/: classes/string.C, types/pa_vform.C: string:match replace
22689: assigned lang
22690:
22691: * src/: classes/string.C, main/compile.y: grammar: fixed to allow
22692: {}[]< empty []
22693:
22694: * src/: classes/file.C, classes/string.C, classes/table.C,
22695: include/pa_string.h, main/pa_common.C, main/pa_string.C,
22696: main/untaint.C: string:match replace 2. string.cstr(forced lang)
22697:
22698: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22699: string:match replace strange matches
22700:
22701: * src/classes/string.C: string:match replace 0
22702:
22703: * src/: classes/string.C, main/pa_string.C: string:match replace
22704: prepared 2
22705:
22706: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22707: string:match replace prepared
22708:
22709: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22710: string:match replace -11
22711:
22712: * src/: classes/string.C, include/pa_globals.h,
22713: include/pa_string.h, include/pa_threads.h, main/pa_globals.C,
22714: main/pa_string.C, targets/isapi/parser3isapi.dsp: string:match 0
22715:
22716: * src/: classes/string.C, include/pa_globals.h,
22717: include/pa_string.h, main/main.dsp, main/pa_globals.C,
22718: main/pa_string.C: string:match [search] -1 just compiled
22719:
22720: * src/types/pa_vstring.C: z
22721:
22722: * src/: classes/double.C, classes/file.C, classes/form.C,
22723: classes/int.C, classes/response.C, classes/root.C,
22724: classes/string.C, classes/table.C, include/pa_string.h,
22725: main/pa_string.C: string:match -10 [frame]
22726:
22727: * src/: classes/file.C, main/compile_tools.C, main/pa_common.C,
22728: main/pa_request.C: z
22729:
22730: * src/: main/pa_common.C, main/untaint.C, targets/cgi/parser3.C,
22731: targets/isapi/parser3isapi.C, targets/isapi/pool_storage.h:
22732: todo/tests
22733:
22734: * src/include/pa_common.h: z
22735:
22736: * src/: include/pa_globals.h, include/pa_hash.h, main/pa_globals.C,
22737: main/pa_request.C, targets/cgi/parser3.C,
22738: targets/isapi/parser3isapi.C, types/pa_vfile.C:
22739: content-disposition
22740:
22741: * src/: include/pa_common.h, include/pa_globals.h,
22742: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
22743: targets/isapi/parser3isapi.C, types/pa_value.h: main:post-process
22744:
22745: * src/: include/pa_common.h, include/pa_request.h,
22746: include/pa_sapi.h, main/main.dsp, main/pa_common.C,
22747: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
22748: types/pa_vfile.C, types/pa_vfile.h, types/pa_vstring.h: vfile in
22749: response:body
22750:
22751: * src/classes/table.C: table:append now uses string::split
22752:
22753: * src/classes/table.C: z
22754:
22755: * src/: classes/file.C, classes/root.C, classes/string.C,
22756: classes/table.C, doc/doxygen.cmd, doc/doxygen.txt,
22757: doc/generate.cmd, include/pa_array.h, include/pa_request.h,
22758: include/pa_string.h, main/execute.C, main/pa_string.C,
22759: main/untaint.C, targets/cgi/parser3.C, types/pa_vcookie.C:
22760: string::pos & cmp & piece bugs fixed. string::split new
22761: table:load separated from set table:set implemented with clean \n
22762: \t searches
22763:
22764: 2001-04-02 paf
22765:
22766: * src/: classes/table.C, include/pa_string.h, main/pa_string.C,
22767: types/pa_valiased.C, types/pa_valiased.h, types/pa_vdouble.h,
22768: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22769: types/pa_vstring.h, types/pa_vtable.h: string::pos. about to use
22770: it in table:set/load
22771:
22772: * src/: classes/table.C, include/pa_array.h, include/pa_string.h,
22773: include/pa_table.h, main/execute.C, types/pa_value.h: table:join
22774:
22775: * src/classes/random.C: random:generate 1
22776:
22777: * src/: classes/_random.h, classes/random.C, include/pa_globals.h,
22778: main/main.dsp, main/pa_globals.C, main/pa_request.C,
22779: types/pa_value.h: random:generate
22780:
22781: 2001-03-30 paf
22782:
22783: * src/: classes/table.C, include/pa_string.h, main/pa_string.C:
22784: todo: table flip and append. string::pos
22785:
22786: * src/: classes/double.C, classes/file.C, classes/int.C,
22787: classes/response.C, classes/root.C, classes/string.C,
22788: classes/table.C, main/compile.y, main/execute.C,
22789: types/pa_value.h, types/pa_vstateless_class.C,
22790: types/pa_vstateless_class.h: static|dynamic|any method
22791: registration
22792:
22793: * src/: classes/file.C, classes/table.C, include/pa_table.h,
22794: main/pa_table.C, types/pa_vstring.h, types/pa_wwrapper.h:
22795: table:flip
22796:
22797: 2001-03-29 paf
22798:
22799: * src/classes/string.C: string:xsplit forgot that they must result
22800: in 1 row N column [not vice versa]
22801:
22802: * src/classes/string.C: z
22803:
22804: * src/classes/string.C: string: rsplit
22805:
22806: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22807: string: lsplit
22808:
22809: * src/: classes/string.C, include/pa_string.h, main/execute.C,
22810: main/pa_array.C, main/pa_string.C, types/pa_vtable.h: string:
22811: lsplit -1
22812:
22813: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C:
22814: string: pos
22815:
22816: * src/: classes/string.C, include/pa_string.h, main/pa_string.C:
22817: string: pos -1
22818:
22819: * src/: classes/string.C, classes/table.C, include/pa_string.h,
22820: main/compile.y, main/pa_request.C, main/pa_string.C,
22821: main/untaint.C: string: left right mid
22822:
22823: * src/: classes/string.C, main/compile.y, main/compile_tools.C,
22824: main/compile_tools.h, main/main.dsp, types/pa_value.h,
22825: types/pa_vstring.h, types/pa_vunknown.h: empty params allowed. []
22826: and [;] are different now.
22827:
22828: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22829: main/untaint.C: pool.request undone
22830:
22831: * src/: include/pa_pool.h, include/pa_request.h, main/pa_request.C,
22832: main/untaint.C: pool.request
22833:
22834: 2001-03-28 paf
22835:
22836: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22837: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22838: types/pa_value.h, types/pa_vrequest.C, types/pa_vunknown.h:
22839: $request:browser [.type .version]; unknown.get_double now = 0.
22840:
22841: * src/: classes/file.C, include/pa_globals.h, include/pa_request.h,
22842: include/pa_table.h, main/pa_globals.C, main/pa_request.C,
22843: main/pa_table.C, types/pa_vfile.C, types/pa_vfile.h,
22844: types/pa_vform.C: file:load autodetection of mime-type by
22845: user-file-name
22846:
22847: * src/: classes/file.C, main/execute.C, main/pa_common.C,
22848: main/untaint.C, targets/cgi/parser3.C, types/pa_vfile.C,
22849: types/pa_vfile.h, types/pa_vform.C: file:load 1. tainted
22850:
22851: * src/: classes/file.C, include/pa_common.h, main/pa_common.C,
22852: types/pa_vfile.C, types/pa_vfile.h: started file:load. wrong
22853: write. must be self.set
22854:
22855: * src/: classes/file.C, classes/root.C, classes/table.C,
22856: include/pa_table.h, main/pa_table.C: table:locate1, file:test
22857:
22858: * src/: classes/table.C, include/pa_array.h, include/pa_hash.h,
22859: include/pa_table.h, main/pa_array.C, main/pa_table.C,
22860: types/pa_vtable.h: table:locate just compiled
22861:
22862: 2001-03-27 paf
22863:
22864: * src/main/: execute.C, pa_common.C: fixed r/w context of
22865: code-params2, fixed ntfs hardlink slow dir update
22866:
22867: * src/: main/execute.C, types/pa_value.h, types/pa_vmframe.h,
22868: types/pa_wcontext.h: fixed r/w context of code-params
22869:
22870: * src/: classes/table.C, main/execute.C: about to change junction
22871: rcontext!!
22872:
22873: * src/: classes/double.C, classes/int.C, classes/root.C,
22874: classes/string.C, classes/table.C, main/compile_tools.C,
22875: main/execute.C, main/pa_request.C, main/untaint.C,
22876: types/pa_value.h, types/pa_vbool.h, types/pa_vcookie.C,
22877: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22878: types/pa_vmframe.h, types/pa_vstring.h, types/pa_vtable.h,
22879: types/pa_vunknown.h: sort 0
22880:
22881: * src/types/: pa_valiased.C, pa_valiased.h, pa_vdouble.h,
22882: pa_vfile.h, pa_vint.h, pa_vresponse.h, pa_vstring.h, pa_vtable.h:
22883: renamed to are_static_calls_disabled
22884:
22885: * src/: classes/table.C, main/pa_common.C, main/pa_request.C,
22886: targets/cgi/parser3.C, types/pa_value.h, types/pa_vbool.h,
22887: types/pa_vdouble.h, types/pa_vfile.h, types/pa_vint.h,
22888: types/pa_vstring.h, types/pa_vunknown.h: continue on sort
22889:
22890: * src/main/compile.y: fixed minor bug in @mn[][] ...^{
22891:
22892: * src/: classes/table.C, include/pa_common.h, main/compile.y:
22893: started table:sort fixed minor bug in #...^{
22894:
22895: * src/: classes/table.C, include/pa_common.h, main/compile.y,
22896: main/execute.C, main/pa_common.C, main/pa_table.C: table:save
22897: decided to have as it were. stepped back. grammar: added 'in'
22898: 'is' 'lt'&co follow-space check
22899:
22900: 2001-03-26 paf
22901:
22902: * src/: classes/file.C, classes/root.C, classes/table.C,
22903: include/pa_common.h, include/pa_globals.h, include/pa_table.h,
22904: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
22905: main/pa_table.C: moved ::save to pa_table. disabled @auto
22906: invocation in ^process
22907:
22908: * src/main/compile.y: grammar: [] 0params [;] 2 params (was 0)
22909:
22910: * src/: classes/table.C, include/pa_array.h, include/pa_table.h,
22911: main/pa_array.C: table:record
22912:
22913: * src/: main/untaint.C, targets/cgi/parser3.C,
22914: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
22915: targets/isapi/pool_storage.h, types/pa_valiased.h,
22916: types/pa_vcookie.C, types/pa_vdouble.h, types/pa_vfile.h,
22917: types/pa_vint.h, types/pa_vresponse.h, types/pa_vstring.h,
22918: types/pa_vtable.h: z
22919:
22920: * src/: include/pa_pool.h, main/execute.C, types/pa_valiased.C,
22921: types/pa_valiased.h, types/pa_value.h, types/pa_vdouble.h,
22922: types/pa_vfile.h, types/pa_vint.h, types/pa_vresponse.h,
22923: types/pa_vstring.h, types/pa_vtable.h: disabled $a(123)
22924: $b[$a.CLASS] ^b.inc[123] shit. allowed no checks in native
22925: method realisations on 'self' validity - they now can simply
22926: assume that 'self' is V{Proper} .
22927:
22928: 2001-03-25 paf
22929:
22930: * src/main/untaint.C: z
22931:
22932: * src/main/: pa_request.C, untaint.C: moved default typo-table to
22933: lowlevel - it initialization could be skipped if failed in @auto.
22934: so that exception report would use some table
22935:
22936: * src/main/pa_request.C: table empty lines ignored. system-default
22937: content type assigned in output:result [can fail in main:auto and
22938: skipped normal defaults extraction]
22939:
22940: * src/: include/pa_string.h, main/compile.y: #comment fixed minor
22941: bug
22942:
22943: * src/main/: pa_globals.C, untaint.C: html-typo - moved all
22944: processing to table [except preliminary \r\n \r \n replacements
22945: to "\n"]
22946:
22947: * src/: classes/table.C, main/untaint.C: html-typo - decided to
22948: move all the processing to table
22949:
22950: * src/: classes/table.C, include/pa_table.h, main/pa_globals.C,
22951: main/pa_table.C, main/untaint.C: returned table originating.
22952: useful for reporting typo table problems origin. think would be
22953: useful somewhere else
22954:
22955: * src/main/untaint.C: typo \r \r\n \n properly handled
22956:
22957: * src/: classes/table.C, include/pa_globals.h, include/pa_string.h,
22958: include/pa_table.h, main/compile.y, main/compile_tools.C,
22959: main/compile_tools.h, main/pa_globals.C, main/pa_request.C,
22960: main/pa_string.C, main/pa_table.C, main/untaint.C,
22961: types/pa_vcookie.h: typo & typo-default
22962:
22963: 2001-03-24 paf
22964:
22965: * src/main/pa_common.C: z
22966:
22967: * src/: include/pa_string.h, main/pa_string.C, main/untaint.C,
22968: targets/cgi/parser3.C: html-typo 2
22969:
22970: * src/: doc/doxygen.cfg, doc/doxygen.txt, doc/generate.cmd,
22971: doc/view.cmd, include/pa_array.h, include/pa_globals.h,
22972: include/pa_pool.h, include/pa_string.h, include/pa_table.h,
22973: main/execute.C, main/pa_array.C, main/pa_globals.C,
22974: main/pa_request.C, main/pa_string.C, main/untaint.C,
22975: targets/cgi/parser3.C, targets/isapi/parser3isapi.C,
22976: types/pa_value.h, types/pa_vtable.h: html-typo 0 html-typo 1.
22977: noticed double default content-type prob. run cgi.cmd tomorrow
22978: first html-typo sample. detected << problem: they become ltlt too
22979: fast
22980:
22981: * src/main/compile.y: z
22982:
22983: * src/main/: compile.y, compile_tools.h: #comment
22984:
22985: * src/: classes/file.C, classes/root.C, classes/table.C,
22986: include/pa_common.h, include/pa_request.h, main/compile.y,
22987: main/pa_common.C, main/pa_request.C, main/pa_string.C,
22988: targets/isapi/parser3isapi.C, types/pa_vfile.h: file_read
22989: stringified
22990:
22991: * src/types/pa_valiased.C: decided to String-ify file_read
22992:
22993: * src/targets/: cgi/parser3.C, isapi/nt_log_events.mc,
22994: isapi/parser3isapi.dsp: cgi: sapi::log
22995:
22996: * src/: include/pa_sapi.h, main/pa_common.C, main/pa_request.C,
22997: targets/cgi/parser3.C, targets/isapi/nt_log_events.mc,
22998: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp: nt
22999: error log experiments failed - cgi under iis got no access to
23000: log. registereventsource simply failed with 5(illegal call) code,
23001: while worked OK as standalone executable. isapi: used
23002: HSE_APPEND_LOG_PARAMETER feature
23003:
23004: * src/: include/pa_common.h, include/pa_globals.h,
23005: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23006: targets/isapi/parser3isapi.C: fixed default content-type
23007: allocation storage
23008:
23009: * src/: include/pa_globals.h, include/pa_request.h,
23010: main/pa_globals.C, main/pa_request.C: z
23011:
23012: * src/: include/pa_array.h, include/pa_hash.h,
23013: include/pa_request.h, main/compile.y, main/pa_array.C,
23014: main/pa_common.C, main/pa_hash.C, main/pa_request.C,
23015: types/pa_vcookie.C: cyclic uses ignored. defaulted default
23016: content-type
23017:
23018: * src/main/: compile.y, execute.C, main.dsp: @CLASS equals @BASE.
23019: sanity
23020:
23021: * src/: main/pa_globals.C, types/pa_vclass.C, types/pa_vclass.h,
23022: types/pa_vstateless_class.C, types/pa_vstateless_class.h: thrown
23023: away freeze mech. no danger now for you can't do
23024: ^request:process[@new-method[] body] trick anymore. still
23025: remains $some_instance.process[@new-method[] possibility] but
23026: would leave it as a feature. see index for sample
23027:
23028: * src/: include/pa_common.h, main/pa_common.C,
23029: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: auto.p
23030: monkey every target
23031:
23032: * src/: include/pa_common.h, main/pa_common.C, main/pa_request.C,
23033: targets/cgi/parser3.C, targets/isapi/pool_storage.h,
23034: types/pa_vform.C, types/pa_vform.h: auto.p monkey
23035:
23036: 2001-03-23 paf
23037:
23038: * src/: include/pa_pool.h, main/pa_request.C,
23039: targets/cgi/pa_pool.C, targets/isapi/pa_pool.C,
23040: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23041: targets/isapi/pool_storage.h: isapi: dumb pool storage
23042:
23043: * src/targets/isapi/pa_pool.C: decided to continue with extension
23044:
23045: * src/targets/: cgi/parser3.C, isapi/parser3isapi.C: isapi: think
23046: it would be better to rewrite as filter then to deal with pool
23047:
23048: * src/: main/main.dsp, targets/isapi/parser3isapi.C: isapi: docroot
23049: now like in cgi, not from APPL_PHYSICAL_PATH
23050:
23051: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23052: include/pa_config_fixed.h, include/pa_config_includes.h,
23053: include/pa_string.h, include/pa_threads.h, include/pa_types.h,
23054: include/pa_version.h, main/compile.y, main/execute.C,
23055: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
23056: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23057: main/untaint.C, targets/cgi/parser3.C,
23058: targets/isapi/parser3isapi.C, types/pa_vfile.C, types/pa_vform.C:
23059: cgi: reinvent document_root and request_uri under iis. autoconf
23060: updated. introducing ap_config_includes
23061:
23062: * src/targets/cgi/parser3.C: cgi: reinvent document_root under iis
23063:
23064: * src/targets/cgi/parser3.C: cgi: only one pool now
23065:
23066: * src/: include/pa_globals.h, include/pa_sapi.h, main/main.dsp,
23067: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23068: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23069: types/pa_venv.h, types/pa_vform.C: sapi made object
23070:
23071: * src/: include/pa_globals.h, main/pa_request.C,
23072: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23073: targets/isapi/parser3isapi.C, types/pa_vcookie.C,
23074: types/pa_venv.h, types/pa_vform.C: all: sapi beauty
23075:
23076: * src/: main/pa_request.C, targets/cgi/parser3.C,
23077: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23078: isapi minor env beauty
23079:
23080: * src/: main/pa_request.C, targets/cgi/parser3.C,
23081: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp:
23082: isapi document_root 0
23083:
23084: 2001-03-22 paf
23085:
23086: * src/targets/isapi/parser3isapi.C: isapi keep-alive
23087:
23088: * src/targets/: cgi/vform_fields_fill.C, cgi/vform_fields_fill.h,
23089: isapi/parser3isapi.C: z
23090:
23091: * src/: include/pa_pool.h, main/pa_request.C,
23092: targets/cgi/parser3.C, targets/isapi/parser3isapi.C: isapi 1
23093:
23094: * src/targets/isapi/: KILL.EXE, PSTAT.EXE, istart.cmd, istop.cmd,
23095: kill.pl: isapi added utils
23096:
23097: * src/: include/pa_pool.h, main/pa_pool.C, targets/cgi/parser3.C,
23098: targets/isapi/parser3isapi.C, targets/isapi/parser3isapi.dsp,
23099: types/pa_vform.C: isapi 0
23100:
23101: * src/: include/pa_pool.h, targets/cgi/pa_pool.C,
23102: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23103: targets/isapi/pa_pool.C, targets/isapi/parser3isapi.C,
23104: targets/isapi/parser3isapi.def, targets/isapi/parser3isapi.dsp:
23105: started isapi
23106:
23107: * src/: include/pa_globals.h, main/pa_common.C, main/pa_request.C:
23108: some comments
23109:
23110: * src/: include/pa_globals.h, include/pa_request.h,
23111: include/pa_types.h, main/pa_globals.C, main/pa_request.C,
23112: targets/cgi/parser3.C, types/pa_vcookie.C: config of auto.p path:
23113: parser_root_auto_path parser_site_auto_path
23114:
23115: * src/types/pa_vcookie.C: cookie attr decoded
23116:
23117: 2001-03-21 paf
23118:
23119: * src/targets/cgi/parser3.C: z
23120:
23121: * src/include/pa_globals.h: post. todo: config of auto.p path
23122:
23123: * src/: include/pa_globals.h, targets/cgi/parser3.C,
23124: types/pa_venv.h: in cookie & env. todo:post
23125:
23126: * src/: Makefile.am, classes/Makefile.am, classes/file.C,
23127: classes/root.C, classes/table.C, include/pa_array.h,
23128: include/pa_common.h, include/pa_globals.h, include/pa_pool.h,
23129: include/pa_request.h, include/pa_string.h, main/Makefile.am,
23130: main/compile.y, main/execute.C, main/main.dsp, main/pa_common.C,
23131: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23132: main/pa_table.C, main/untaint.C, targets/Makefile.am,
23133: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23134: targets/cgi/parser3.dsp, types/Makefile.am, types/pa_vcookie.C,
23135: types/pa_vform.C, types/pa_vstring.h, types/pa_wwrapper.h:
23136: shifted apache branch on main trunc
23137:
23138: * src/: include/pa_common.h, include/pa_globals.h,
23139: include/pa_pool.h, include/pa_request.h, main/main.dsp,
23140: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.dsp,
23141: types/pa_vcookie.C, types/pa_vform.C, types/pa_vstring.h:
23142: starting mod_parser3
23143:
23144: * src/targets/cgi/parser3.C: starting mod_parser3
23145:
23146: 2001-03-20 paf
23147:
23148: * src/: main/pa_common.C, targets/cgi/Makefile.am,
23149: targets/cgi/parser3.C: automake compiled and works. todo:make
23150: win32 ifdefs work and add ifdef unistd
23151:
23152: * src/: classes/table.C, include/pa_common.h, include/pa_request.h,
23153: main/Makefile.am, main/pa_common.C, main/pa_request.C,
23154: main/pa_table.C, targets/cgi/Makefile.am, targets/cgi/parser3.C:
23155: z
23156:
23157: * src/: include/pa_request.h, main/Makefile.am, main/compile.y,
23158: main/execute.C, main/pa_common.C, types/Makefile.am: removing
23159: locking
23160:
23161: * src/: classes/Makefile.am, types/Makefile.am: z
23162:
23163: * src/: Makefile.am, classes/file.C, classes/root.C,
23164: classes/table.C, include/pa_array.h, include/pa_request.h,
23165: include/pa_string.h, main/Makefile.am, main/execute.C,
23166: main/pa_common.C, main/pa_globals.C, main/pa_request.C,
23167: main/pa_string.C, main/untaint.C, targets/Makefile.am,
23168: targets/cgi/Makefile.am, targets/cgi/parser3.C,
23169: types/pa_vcookie.C, types/pa_wwrapper.h: String::UL_
23170:
23171: * src/: classes/table.C, include/pa_common.h, main/pa_common.C,
23172: main/pa_request.C, types/pa_vfile.h: ^table:save
23173:
23174: * src/: classes/file.C, classes/table.C, include/pa_array.h,
23175: include/pa_common.h, include/pa_request.h, include/pa_string.h,
23176: include/pa_table.h, include/pa_threads.h, main/pa_globals.C,
23177: main/untaint.C, types/pa_valiased.h, types/pa_value.h,
23178: types/pa_vform.h: z
23179:
23180: * src/include/pa_string.h: z
23181:
23182: * src/: classes/_request.h, classes/request.C, main/main.dsp,
23183: main/pa_globals.C, types/pa_value.h, types/pa_vform.h,
23184: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23185: :Value
23186:
23187: * src/: classes/_request.h, classes/request.C, main/pa_globals.C,
23188: types/pa_vrequest.C, types/pa_vrequest.h: VRequest moved to
23189: :VStateless_object
23190:
23191: * src/: classes/_response.h, classes/response.C, main/pa_globals.C,
23192: types/pa_vform.h, types/pa_vresponse.h: VResponse moved to
23193: :VStateless_object
23194:
23195: * src/: main/main.dsp, targets/cgi/parser3.dsp,
23196: types/pa_valiased.C, types/pa_vform.h: commented VForm
23197:
23198: * src/: targets/cgi/pa_vform.C, types/pa_valiased.C,
23199: types/pa_valiased.h, types/pa_value.h,
23200: types/pa_vstateless_class.C, types/pa_vstateless_class.h,
23201: types/pa_vstateless_object.h: moved common get_element part from
23202: stateless object&class into VAliased
23203:
23204: * src/: classes/_env.h, classes/_table.h, classes/env.C,
23205: classes/table.C, main/execute.C, main/main.dsp,
23206: main/pa_globals.C, main/pa_request.C, types/pa_value.h,
23207: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_venv.h: VEnv is
23208: now :Value
23209:
23210: * src/: classes/_cookie.h, classes/_table.h, classes/cookie.C,
23211: main/execute.C, main/main.dsp, main/pa_globals.C,
23212: types/pa_vcookie.C, types/pa_vcookie.h: VCookie is now :Value
23213:
23214: * src/types/: pa_vfile.C, pa_vfile.h, pa_vstateless_object.h: vfile
23215: doxx
23216:
23217: * src/: classes/_file.h, classes/file.C, include/pa_types.h,
23218: main/pa_globals.C, main/pa_request.C, targets/cgi/parser3.C,
23219: types/pa_valiased.h, types/pa_vfile.C, types/pa_vfile.h,
23220: types/pa_vstateless_class.h, types/pa_vstateless_object.h: \ to /
23221: and ^file:save
23222:
23223: 2001-03-19 paf
23224:
23225: * src/types/pa_vfile.C: z
23226:
23227: * src/: classes/file.C, classes/request.C, classes/table.C,
23228: include/pa_string.h, main/main.dsp, main/pa_pool.C,
23229: main/pa_request.C, main/untaint.C, types/pa_value.h,
23230: types/pa_vfile.C, types/pa_vfile.h, types/pa_vform.C: file 1
23231:
23232: * src/: classes/table.C, include/pa_common.h, include/pa_globals.h,
23233: include/pa_string.h, include/pa_table.h, main/main.dsp,
23234: main/pa_common.C, main/pa_globals.C, types/pa_value.h,
23235: types/pa_vcookie.h, types/pa_venv.h, types/pa_vform.C,
23236: types/pa_vform.h, types/pa_vrequest.h, types/pa_vtable.h,
23237: classes/_file.h, classes/file.C, types/pa_vfile.C,
23238: types/pa_vfile.h: file class just compiled
23239:
23240: * src/: classes/table.C, include/pa_pool.h, include/pa_request.h,
23241: include/pa_table.h, include/pa_types.h, main/execute.C,
23242: main/pa_request.C, targets/cgi/parser3.C, types/pa_value.h,
23243: types/pa_vclass.h, types/pa_vform.C, types/pa_vstateless_class.h,
23244: types/pa_vstateless_object.h: ^table:set{default level: TABLE}
23245:
23246: * src/include/pa_pool.h: z
23247:
23248: * src/: include/pa_hash.h, include/pa_types.h, main/pa_common.C,
23249: main/pa_hash.C, main/pa_request.C, types/pa_vcookie.C: renamed
23250: Hash::Value to Val so to doxygen would finlly stop confusing
23251: those Value-s
23252:
23253: * src/: include/code.h, include/pa_array.h, include/pa_common.h,
23254: include/pa_exception.h, include/pa_globals.h, include/pa_hash.h,
23255: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23256: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23257: include/pa_types.h, main/compile.C, main/compile.y,
23258: main/compile_tools.C, main/compile_tools.h, main/execute.C,
23259: main/pa_array.C, main/pa_common.C, main/pa_exception.C,
23260: main/pa_globals.C, main/pa_hash.C, main/pa_pool.C,
23261: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23262: main/untaint.C, types/pa_valiased.h, types/pa_value.h: z
23263:
23264: * src/types/: pa_valiased.h, pa_vbool.h: doc: Value and it's
23265: derivates somehow unlinked. don't know why yet
23266:
23267: * src/: include/code.h, include/pa_array.h, include/pa_pool.h,
23268: include/pa_string.h, include/pa_threads.h, main/compile.C,
23269: main/compile.y, main/compile_tools.C, main/compile_tools.h,
23270: main/execute.C, main/pa_array.C, main/pa_common.C,
23271: main/pa_exception.C, main/pa_globals.C, main/pa_hash.C,
23272: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23273: main/pa_table.C, main/untaint.C, types/pa_value.h: auto @brief
23274:
23275: * src/: classes/root.C, classes/table.C, main/pa_exception.C,
23276: main/pa_request.C, targets/cgi/parser3.C, types/pa_vbool.h,
23277: types/pa_vcookie.C, types/pa_vcookie.h, types/pa_vdouble.h,
23278: types/pa_venv.h, types/pa_vform.h, types/pa_vint.h,
23279: types/pa_vrequest.h: doc: detected Value derivates prob
23280:
23281: * src/include/pa_globals.h: z
23282:
23283: * src/: classes/_request.h, classes/request.C, include/code.h,
23284: include/pa_array.h, include/pa_common.h, include/pa_exception.h,
23285: include/pa_globals.h, include/pa_hash.h, include/pa_pool.h,
23286: include/pa_request.h, include/pa_stack.h, include/pa_string.h,
23287: include/pa_table.h, include/pa_threads.h, include/pa_types.h,
23288: main/execute.C, main/pa_pool.C, main/pa_request.C,
23289: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23290: types/pa_value.h, types/pa_vform.C: doxygen include/, Value
23291:
23292: 2001-03-18 paf
23293:
23294: * src/: classes/cookie.C, types/pa_vcookie.C, types/pa_vcookie.h:
23295: cookie: allowed access to hash-assigned
23296:
23297: * src/targets/cgi/parser3.C: z
23298:
23299: * src/: classes/_cookie.h, classes/cookie.C, include/pa_common.h,
23300: include/pa_globals.h, include/pa_request.h, include/pa_string.h,
23301: include/pa_types.h, main/main.dsp, main/pa_common.C,
23302: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23303: main/pa_string.C, main/untaint.C, targets/cgi/parser3.C,
23304: types/pa_value.h, types/pa_vcookie.C, types/pa_vcookie.h,
23305: types/pa_vform.C, types/pa_vform.h, types/pa_vhash.h,
23306: types/pa_vunknown.h: cookie class
23307:
23308: * src/main/pa_request.C: zero length output allowed
23309:
23310: * src/: classes/response.C, main/pa_request.C, types/pa_value.h,
23311: types/pa_vhash.h, types/pa_vresponse.h: ^response:clear[]
23312:
23313: * src/: classes/root.C, main/pa_request.C: taint forgotten forced
23314: lang switch
23315:
23316: * src/: classes/root.C, include/pa_globals.h, include/pa_string.h,
23317: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23318: types/pa_value.h, types/pa_vhash.h:
23319: $defautl[$content-type[$value[text/html] $charset[windows-1251]]
23320:
23321: * src/main/execute.C: z
23322:
23323: * src/: classes/root.C, main/pa_request.C, main/untaint.C,
23324: targets/cgi/parser3.C: taint[uri
23325:
23326: * src/: classes/request.C, classes/response.C, classes/root.C,
23327: include/pa_common.h, include/pa_globals.h, include/pa_request.h,
23328: include/pa_string.h, main/pa_common.C, main/pa_globals.C,
23329: main/pa_request.C, targets/cgi/parser3.C: ^taint 0
23330:
23331: * src/: classes/root.C, classes/string.C, include/pa_string.h,
23332: main/pa_globals.C, main/pa_request.C, main/pa_string.C,
23333: types/pa_vdouble.h, types/pa_vform.C, types/pa_vint.h,
23334: types/pa_vstateless_class.C: convinient string(pool, char *src,
23335: bool tainted) ctor
23336:
23337: * src/: include/pa_hash.h, include/pa_request.h,
23338: include/pa_string.h, main/pa_globals.C, main/pa_hash.C,
23339: main/pa_request.C, main/pa_string.C, main/untaint.C,
23340: targets/cgi/parser3.C: proper @exceptions params tainting
23341:
23342: * src/: include/pa_hash.h, main/pa_hash.C, targets/cgi/parser3.C:
23343: response fields to header
23344:
23345: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C:
23346: z
23347:
23348: * src/: classes/_response.h, classes/response.C,
23349: include/pa_globals.h, include/pa_hash.h, include/pa_request.h,
23350: main/compile.C, main/compile.y, main/execute.C, main/main.dsp,
23351: main/pa_globals.C, main/pa_hash.C, main/pa_request.C,
23352: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_value.h,
23353: types/pa_vhash.h, types/pa_vrequest.h, types/pa_vresponse.h:
23354: $response: 0 request::core exception rethrow
23355:
23356: 2001-03-16 paf
23357:
23358: * src/: main/execute.C, main/main.dsp, types/pa_value.h,
23359: types/pa_vrequest.h: native method' class call with less params
23360: then needed error reporting
23361:
23362: * src/: classes/_request.h, classes/request.C,
23363: include/pa_globals.h, include/pa_request.h, main/execute.C,
23364: main/main.dsp, main/pa_globals.C, main/pa_request.C,
23365: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vrequest.C,
23366: types/pa_vrequest.h: $request : query :uri
23367:
23368: * src/: include/pa_globals.h, main/execute.C, main/pa_globals.C,
23369: types/pa_value.h, types/pa_vcframe.h, types/pa_vmframe.h,
23370: types/pa_wcontext.h: $result
23371:
23372: * src/: main/execute.C, types/pa_vmframe.h: if(in "/news/")
23373:
23374: * src/: classes/double.C, include/code.h, main/compile.y,
23375: main/compile_tools.C, main/compile_tools.h, main/execute.C: ()
23376: and {} param wcontext conflict fixed by OP_EXPR_CODE__STORE_PARAM
23377:
23378: * src/: include/code.h, include/pa_hash.h, include/pa_request.h,
23379: main/compile.y, main/execute.C, types/pa_value.h,
23380: types/pa_vhash.h, types/pa_vstring.h, types/pa_vtable.h,
23381: types/pa_wcontext.C, types/pa_wcontext.h: see () and {} param
23382: wcontext conflict
23383:
23384: * src/: main/execute.C, types/pa_value.h,
23385: types/pa_vstateless_object.h, types/pa_vstring.h: disabled
23386: $string.field
23387:
23388: 2001-03-15 paf
23389:
23390: * src/main/pa_request.C: news sample
23391:
23392: * src/: main/compile.y, main/execute.C, main/pa_request.C,
23393: targets/cgi/parser3.C, types/pa_vstring.h: @exception
23394:
23395: * src/main/: compile.y, execute.C: z
23396:
23397: * src/: main/compile.y, main/pa_request.C, targets/cgi/parser3.C,
23398: types/pa_vstring.h: pre-pre-pre-beta cgi under win32 apache pre
23399: pre pre works
23400:
23401: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23402: targets/cgi/parser3.C, types/pa_vform.C, types/pa_vform.h: vform
23403: fillfields just compiled
23404:
23405: 2001-03-14 paf
23406:
23407: * src/: include/pa_request.h, main/pa_request.C,
23408: targets/cgi/parser3.C: z
23409:
23410: * src/: include/pa_globals.h, main/pa_globals.C, main/pa_request.C,
23411: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h,
23412: types/pa_vstring.h: limits -1
23413:
23414: * src/: include/pa_globals.h, include/pa_request.h,
23415: include/pa_types.h, main/main.dsp, main/pa_globals.C,
23416: main/pa_request.C, targets/cgi/parser3.C,
23417: targets/cgi/parser3.dsp, types/pa_vform.C, types/pa_vform.h:
23418: request_info -1
23419:
23420: * src/: include/pa_globals.h, main/pa_globals.C,
23421: targets/cgi/parser3.C, targets/cgi/parser3.dsp,
23422: targets/cgi/vform_fields_fill.C, targets/cgi/vform_fields_fill.h:
23423: vform_fields_fill
23424:
23425: * src/targets/cgi/parser3.C: # if MSVC
23426:
23427: * src/: include/pa_common.h, include/pa_types.h, main/pa_request.C,
23428: targets/cgi/parser3.C: PATH_DELIMITER_CHAR
23429:
23430: * src/targets/cgi/parser3.C: z
23431:
23432: * src/: include/core.h, include/pa_globals.h, include/pa_pool.h,
23433: include/pa_string.h, include/pa_types.h, main/compile.y,
23434: main/core.C, main/main.dsp, main/pa_globals.C, main/pa_request.C,
23435: targets/cgi/pa_vform.C, targets/cgi/parser3.C,
23436: targets/cgi/parser3.dsp, types/pa_value.h, types/pa_vform.h,
23437: types/pa_vunknown.h: global handler, exceptions in parser3
23438:
23439: 2001-03-13 paf
23440:
23441: * src/: classes/form.C, main/compile.y, main/core.C,
23442: types/pa_value.h, types/pa_vclass.h, types/pa_venv.h,
23443: types/pa_vform.h, types/pa_vstateless_class.C,
23444: types/pa_vstateless_class.h: form:fields removed. use $form.CLASS
23445: instead
23446:
23447: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
23448: main/core.C, main/execute.C, main/main.dsp, main/pa_request.C,
23449: targets/cgi/parser3.C, targets/cgi/parser3.dsp, types/pa_vform.h:
23450: started cgi target
23451:
23452: * src/: include/core.h, include/pa_common.h, include/pa_request.h,
23453: main/pa_common.C, main/pa_request.C, targets/cgi/parser3.C:
23454: before error show with parser
23455:
23456: * src/: classes/_form.h, classes/form.C, include/core.h,
23457: include/pa_request.h, main/core.C, main/pa_request.C,
23458: targets/cgi/parser3.C, targets/cgi/parser3.dsp: z
23459:
23460: * src/targets/cgi/: parser.dsp, parser3.dsp: z
23461:
23462: * src/targets/cgi/: Makefile.am, pa_pool.C, pa_vform.C, parser.dsp,
23463: parser3.C: renamed targets/ parser to cgi
23464:
23465: * src/: classes/double.C, classes/env.C, classes/int.C,
23466: classes/root.C, classes/string.C, classes/table.C,
23467: include/pa_request.h, types/pa_vhash.h: z
23468:
23469: * src/: classes/_env.h, classes/env.C, classes/root.C,
23470: include/core.h, include/pa_pool.h, include/pa_request.h,
23471: main/compile.C, main/compile.y, main/core.C, main/main.dsp,
23472: main/pa_common.C, main/pa_request.C, types/pa_value.h,
23473: types/pa_venv.h, types/pa_vstateless_class.h: started $form:
23474: [historical moment :)]
23475:
23476: * src/: include/code.h, include/pa_string.h, main/compile.y,
23477: main/execute.C, main/pa_string.C: 'value is type' expr operator
23478:
23479: * src/types/pa_venv.h: $ENV 1
23480:
23481: * src/main/execute.C: z
23482:
23483: * src/: main/execute.C, types/pa_value.h, types/pa_venv.h: for
23484: future methods of ENV constructor if
23485:
23486: * src/: include/pa_request.h, types/pa_venv.h: $ENV 0.1 stateless
23487: class
23488:
23489: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23490: classes/_root.h, classes/_string.h, classes/_table.h,
23491: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
23492: classes/string.C, classes/table.C, include/pa_request.h,
23493: main/compile.C, main/compile_tools.h, main/core.C,
23494: main/execute.C, main/main.dsp, main/pa_request.C,
23495: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
23496: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
23497: types/pa_vobject.h, types/pa_vstateless_class.C,
23498: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
23499: types/pa_wcontext.h: $ENV: re 0, stateless classes
23500:
23501: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23502: classes/_root.h, classes/_string.h, classes/_table.h,
23503: classes/double.C, classes/env.C, classes/int.C, classes/root.C,
23504: classes/string.C, classes/table.C, include/pa_request.h,
23505: main/compile.C, main/compile_tools.h, main/core.C,
23506: main/execute.C, main/main.dsp, main/pa_request.C,
23507: types/pa_valiased.h, types/pa_value.h, types/pa_vclass.C,
23508: types/pa_vclass.h, types/pa_venv.h, types/pa_vmframe.h,
23509: types/pa_vobject.h, types/pa_vstateless_class.C,
23510: types/pa_vstateless_class.h, types/pa_vstateless_object.h,
23511: types/pa_wcontext.h: $ENV: re 0, stateless classes
23512:
23513: * src/: include/pa_request.h, main/compile.C, main/execute.C,
23514: main/pa_request.C, types/pa_value.h, types/pa_vmframe.h: fixed
23515: yesterdays bad decision on execute_static_method
23516:
23517: * src/: classes/table.C, include/pa_types.h, main/pa_request.C: z
23518:
23519: * src/: classes/double.C, classes/int.C, classes/root.C,
23520: types/pa_vdouble.h, types/pa_vint.h: Int,Double dec mul div mod
23521:
23522: * src/main/pa_request.C: z
23523:
23524: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
23525: include/pa_pool.h: skipped_restructure_exceptions_dead_end
23526:
23527: * src/: classes/root.C, classes/table.C, include/pa_exception.h,
23528: include/pa_pool.h, main/pa_request.C:
23529: restructure_exceptions_dead_end
23530:
23531: * src/: classes/root.C, main/compile.y: ^if required junctions.
23532: allowed ; inside {} to break params
23533:
23534: * src/classes/root.C: ^eval
23535:
23536: * src/: classes/_string.h, classes/double.C, classes/int.C,
23537: classes/string.C, main/execute.C, types/pa_wcontext.h: int doube
23538: string ^format
23539:
23540: * src/: main/execute.C, types/pa_wcontext.h: constructing flag not
23541: 'bad' but not 'enough'
23542:
23543: * src/: classes/double.C, classes/root.C, classes/table.C,
23544: include/pa_common.h, include/pa_types.h, main/compile.y,
23545: main/pa_common.C, main/pa_request.C, main/untaint.C,
23546: types/pa_vdouble.h, types/pa_vint.h, types/pa_vtable.h,
23547: types/pa_wwrapper.h: think constructing flag as is is bad
23548:
23549: * src/: classes/double.C, classes/int.C, classes/root.C,
23550: classes/string.C, classes/table.C, main/core.C, main/execute.C,
23551: types/pa_vint.h: ^for
23552:
23553: 2001-03-12 paf
23554:
23555: * src/classes/table.C: table ^empty
23556:
23557: * src/: classes/table.C, include/pa_table.h: table ^menu
23558:
23559: * src/: classes/root.C, classes/table.C, types/pa_vtable.h: table
23560: ^offset ^line ^count
23561:
23562: * src/classes/root.C: ^round() ^floor() ^ceiling()
23563: ^abs() ^sign()
23564:
23565: * src/classes/: root.C, table.C: ^use
23566:
23567: * src/: classes/root.C, classes/table.C, include/pa_request.h,
23568: main/compile.y, main/core.C, main/execute.C, types/pa_vclass.h,
23569: types/pa_wcontext.C, types/pa_wcontext.h, types/pa_wwrapper.h:
23570: ^while. switched off wcontext.constructing after write(value) or
23571: auto-vhash-constructing
23572:
23573: * src/: classes/root.C, classes/table.C, include/pa_request.h,
23574: main/pa_request.C: fail_if_junction_ helper func
23575:
23576: * src/: classes/root.C, classes/table.C, include/pa_common.h,
23577: include/pa_request.h, main/execute.C, main/main.dsp,
23578: main/pa_common.C, main/pa_request.C: ^process error point by
23579: actual method_name, not source. ^load
23580:
23581: * src/types/pa_vtable.h: table: no, better with string in cells...
23582:
23583: * src/: include/pa_array.h, include/pa_table.h, main/pa_table.C,
23584: classes/_table.h, classes/table.C, main/untaint.C: z
23585:
23586: * src/: classes/root.C, include/pa_common.h, include/pa_string.h,
23587: include/pa_table.h, main/core.C, main/execute.C,
23588: main/pa_common.C, main/pa_request.C, main/pa_table.C,
23589: types/pa_value.h: table:set 0
23590:
23591: * src/: classes/root.C, include/core.h, include/pa_array.h,
23592: include/pa_request.h, include/pa_table.h, main/core.C,
23593: main/main.dsp, main/pa_request.C, main/pa_table.C,
23594: types/pa_value.h, types/pa_vclass.C, types/pa_vclass.h,
23595: types/pa_vdouble.h, types/pa_vint.h, types/pa_vmframe.h,
23596: types/pa_vstring.h: freeze, ^table:create[] -1
23597:
23598: * src/: classes/root.C, types/pa_value.h: z
23599:
23600: * src/: classes/root.C, main/execute.C, types/pa_vclass.h: used
23601: get_method in couple places optimizing them
23602:
23603: * src/classes/root.C: z
23604:
23605: * src/: classes/root.C, types/pa_vclass.h: process temp main
23606: zeroing
23607:
23608: * src/: classes/double.C, classes/int.C, classes/root.C,
23609: classes/string.C, include/pa_common.h, include/pa_request.h,
23610: include/pa_string.h, include/pa_types.h, main/compile.C,
23611: main/compile.y, main/compile_tools.h, main/execute.C,
23612: main/pa_common.C, main/pa_request.C, types/pa_value.h,
23613: types/pa_vmframe.h: ^process. actual names to store param and
23614: check_actual_numbered_params for better place diagnostics
23615:
23616: * src/: classes/root.C, main/execute.C, main/main.dsp: setname for
23617: method-junctions bug fixed
23618:
23619: * src/types/: pa_vdouble.h, pa_vint.h, pa_vobject.h,
23620: pa_vstateless_object.h, pa_vstring.h: stateless_object
23621:
23622: 2001-03-11 paf
23623:
23624: * src/: main/main.dsp, types/pa_value.h, types/pa_vdouble.h,
23625: types/pa_vint.h, types/pa_vobject.h, types/pa_vstring.h: VString
23626: VDouble VInt base now VObject_base - without fields
23627:
23628: * src/: classes/root.C, include/core.h, main/core.C: z
23629:
23630: * src/: classes/double.C, classes/int.C, classes/root.C,
23631: classes/string.C, include/core.h, include/pa_hash.h,
23632: include/pa_pool.h, include/pa_request.h, include/pa_string.h,
23633: main/compile.C, main/core.C, main/pa_request.C: ^untaint 0
23634:
23635: * src/: classes/double.C, classes/int.C, classes/root.C,
23636: include/pa_request.h, main/execute.C: intercept_string
23637:
23638: * src/: classes/double.C, classes/int.C, classes/root.C,
23639: types/pa_vclass.C, types/pa_vclass.h: add_native_method helper
23640:
23641: * src/: classes/double.C, classes/int.C, include/pa_request.h:
23642: ^inc-s(expr)
23643:
23644: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23645: classes/_root.h, classes/_string.h, classes/double.C,
23646: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
23647: include/code.h, include/core.h, include/pa_array.h,
23648: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
23649: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23650: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23651: include/pa_types.h, main/compile.C, main/compile.y,
23652: main/compile_tools.C, main/compile_tools.h, main/core.C,
23653: main/execute.C, main/pa_array.C, main/pa_common.C,
23654: main/pa_exception.C, main/pa_hash.C, main/pa_pool.C,
23655: main/pa_request.C, main/pa_string.C, main/pa_table.C,
23656: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
23657: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
23658: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
23659: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
23660: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
23661: types/pa_wcontext.h, types/pa_wwrapper.h: headers updated
23662:
23663: * src/: main/pa_request.C, types/pa_vhash.h: z
23664:
23665: * src/: include/core.h, include/pa_request.h, main/core.C,
23666: main/main.dsp, main/pa_request.C: renamed AUTO: to MAIN:
23667:
23668: * src/: include/pa_valiased.h, include/pa_value.h,
23669: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
23670: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
23671: include/pa_vjunction.h, include/pa_vmframe.h,
23672: include/pa_vobject.h, include/pa_vstring.h,
23673: include/pa_vunknown.h, include/pa_wcontext.h,
23674: include/pa_wwrapper.h, main/compile.y, main/core.C,
23675: main/main.dsp, main/pa_cframe.C, main/pa_request.C,
23676: main/pa_value.C, main/pa_vclass.C, main/pa_wcontext.C,
23677: types/pa_valiased.h, types/pa_value.h, types/pa_vbool.h,
23678: types/pa_vcframe.h, types/pa_vclass.C, types/pa_vclass.h,
23679: types/pa_vdouble.h, types/pa_vhash.h, types/pa_vint.h,
23680: types/pa_vjunction.h, types/pa_vmframe.h, types/pa_vobject.h,
23681: types/pa_vstring.h, types/pa_vunknown.h, types/pa_wcontext.C,
23682: types/pa_wcontext.h, types/pa_wwrapper.h: splitted types from
23683: include/
23684:
23685: 2001-03-10 paf
23686:
23687: * src/: include/core.h, include/pa_request.h, main/core.C,
23688: main/pa_request.C: run+auto=run
23689:
23690: * src/: classes/root.C, include/pa_request.h: minor if junction bug
23691:
23692: * src/: classes/_double.h, classes/_env.h, classes/_int.h,
23693: classes/_root.h, classes/_string.h, classes/double.C,
23694: classes/env.C, classes/int.C, classes/root.C, classes/string.C,
23695: include/code.h, include/core.h, include/pa_array.h,
23696: include/pa_common.h, include/pa_exception.h, include/pa_hash.h,
23697: include/pa_pool.h, include/pa_request.h, include/pa_stack.h,
23698: include/pa_string.h, include/pa_table.h, include/pa_threads.h,
23699: include/pa_types.h, include/pa_valiased.h, include/pa_value.h,
23700: include/pa_vbool.h, include/pa_vcframe.h, include/pa_vclass.h,
23701: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vint.h,
23702: include/pa_vjunction.h, include/pa_vmframe.h,
23703: include/pa_vobject.h, include/pa_vstring.h,
23704: include/pa_vunknown.h, include/pa_wcontext.h,
23705: include/pa_wwrapper.h, main/compile.C, main/compile.y,
23706: main/compile_tools.C, main/compile_tools.h, main/core.C,
23707: main/execute.C, main/pa_array.C, main/pa_cframe.C,
23708: main/pa_common.C, main/pa_exception.C, main/pa_hash.C,
23709: main/pa_pool.C, main/pa_request.C, main/pa_string.C,
23710: main/pa_table.C, main/pa_value.C, main/pa_vclass.C,
23711: main/pa_wcontext.C: sources header
23712:
23713: * src/main/pa_request.C: auto..
23714:
23715: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23716: main/pa_request.C: auto tree0
23717:
23718: * src/: include/core.h, include/pa_request.h, main/compile.y,
23719: main/core.C, main/pa_request.C: names to core.C
23720:
23721: * src/: include/core.h, include/pa_common.h, include/pa_pool.h,
23722: include/pa_request.h, main/core.C, main/execute.C,
23723: main/pa_common.C, main/pa_request.C: root auto.p loaded
23724:
23725: * src/: include/code.h, include/pa_request.h, include/pa_vint.h,
23726: include/pa_vjunction.h, include/pa_vstring.h, main/compile.y,
23727: main/compile_tools.C, main/compile_tools.h, main/execute.C:
23728: optimized from OP_STRING+OP_WRITE to OP_STRING__WRITE
23729:
23730: * src/: include/pa_request.h, main/execute.C, main/pa_request.C:
23731: @auto[] realised. auto.p scan togo
23732:
23733: * src/: include/pa_request.h, main/execute.C: autocalc
23734: code-junctions result now have names
23735:
23736: * src/: classes/double.C, classes/int.C, classes/root.C,
23737: classes/string.C, include/pa_request.h, include/pa_string.h,
23738: include/pa_wcontext.h, main/compile.y, main/execute.C,
23739: main/pa_string.C, main/pa_wcontext.C: tainting 0
23740:
23741: * src/classes/env.C: env:file/line
23742:
23743: * src/: include/core.h, include/pa_array.h, include/pa_hash.h,
23744: include/pa_request.h, include/pa_value.h, include/pa_vcframe.h,
23745: include/pa_vdouble.h, include/pa_vint.h, include/pa_vstring.h,
23746: include/pa_vunknown.h, include/pa_wcontext.h, main/compile.y,
23747: main/compile_tools.C, main/compile_tools.h, main/core.C,
23748: main/execute.C, main/main.dsp, main/pa_cframe.C,
23749: main/pa_request.C, main/pa_wcontext.C: const fight finished
23750:
23751: * src/include/pa_vclass.h: const fight to go
23752:
23753: * src/: classes/_env.h, classes/env.C, classes/root.C,
23754: include/pa_request.h, include/pa_vclass.h, main/core.C,
23755: main/main.dsp: env0
23756:
23757: * src/: classes/_double.h, classes/_int.h, classes/_root.h,
23758: classes/_string.h, classes/double.C, classes/int.C,
23759: classes/root.C, classes/string.C, include/pa_request.h,
23760: include/pa_string.h, include/pa_types.h, include/pa_vcframe.h,
23761: include/pa_wcontext.h, main/core.C, main/main.dsp,
23762: main/pa_cframe.C, main/pa_string.C, main/pa_vclass.C,
23763: main/pa_wcontext.C: ^lang prepare0
23764:
23765: 2001-03-09 paf
23766:
23767: * src/: include/pa_vmframe.h, main/compile.C, main/execute.C: expr
23768: construct proper naming
23769:
23770: * src/: classes/_double.h, classes/_int.h, classes/_string.h,
23771: classes/double.C, classes/int.C, classes/root.C,
23772: classes/string.C, include/code.h, include/pa_value.h,
23773: include/pa_vbool.h, include/pa_vdouble.h, include/pa_vint.h,
23774: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23775: main/compile.y, main/compile_tools.C, main/core.C,
23776: main/execute.C, main/main.dsp: Int and Double classes with ^int[]
23777: and ^double[]. fixed expr type
23778:
23779: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23780: ^string.length[]
23781:
23782: 2001-03-08 paf
23783:
23784: * src/include/pa_vmframe.h: fixed forgotten method_frame my check
23785:
23786: * src/: include/pa_vclass.h, include/pa_vstring.h,
23787: include/pa_wcontext.h, main/compile.y, main/core.C,
23788: main/execute.C, main/main.dsp: dead end: vstring can't be
23789: derivated from vobject
23790:
23791: * src/: include/pa_vclass.h, include/pa_vhash.h,
23792: include/pa_vobject.h, include/pa_vstring.h, main/main.dsp: z
23793:
23794: * src/include/: pa_vclass.h, pa_vhash.h, pa_vobject.h: removes some
23795: remained clone conseqs
23796:
23797: * src/main/pa_vclass.C: that were ok... [vclass were out of vcs]
23798:
23799: * src/main/pa_vclass.C: wow! vclass were out of vcs
23800:
23801: * src/: include/pa_bool.h, include/pa_double.h, include/pa_value.h,
23802: include/pa_vbool.h, include/pa_vclass.h, include/pa_vdouble.h,
23803: include/pa_vhash.h, include/pa_vjunction.h, include/pa_vmframe.h,
23804: include/pa_vobject.h, include/pa_vstring.h,
23805: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
23806: main/execute.C: withoud cloning. didn't need it actually, params
23807: got passed from out unnamed ewpool
23808:
23809: * src/: include/pa_vdouble.h, include/pa_vhash.h,
23810: include/pa_vjunction.h, include/pa_vobject.h,
23811: include/pa_vunknown.h, main/compile.y: cloning dead end
23812:
23813: * src/: include/pa_bool.h, include/pa_double.h,
23814: include/pa_valiased.h, include/pa_value.h, include/pa_vbool.h,
23815: include/pa_vclass.h, include/pa_vdouble.h, include/pa_vhash.h,
23816: include/pa_vjunction.h, include/pa_vmframe.h,
23817: include/pa_vobject.h, include/pa_vstring.h,
23818: include/pa_vunknown.h, main/compile.y, main/compile_tools.C,
23819: main/execute.C, main/main.dsp, main/pa_value.C: value.cloning so
23820: to give params proper names
23821:
23822: * src/main/pa_wcontext.C: z
23823:
23824: * src/: include/pa_vmframe.h, main/execute.C: added names to
23825: unknown values in get_element and unfilled params. removed wrong
23826: name change in get_element
23827:
23828: * src/main/execute.C: z
23829:
23830: * src/main/execute.C: fixed problems calling operators in
23831: constructors
23832:
23833: * src/: classes/root.C, include/pa_stack.h, main/execute.C:
23834: detected problems calling operators in constructors
23835:
23836: * src/: classes/root.C, include/pa_request.h, main/execute.C:
23837: autocalc def to string
23838:
23839: * src/: classes/root.C, include/pa_request.h, include/pa_value.h,
23840: include/pa_vbool.h, include/pa_wwrapper.h, main/execute.C: ^if 0
23841:
23842: * src/classes/root.C: added root.c
23843:
23844: * src/: include/pa_request.h, include/pa_value.h,
23845: include/pa_vcframe.h, include/pa_vmframe.h,
23846: include/pa_wcontext.h, main/compile.C, main/compile.y,
23847: main/core.C, main/execute.C, main/pa_cframe.C,
23848: main/pa_wcontext.C: 'if' just compiled
23849:
23850: * src/: include/pa_vbool.h, include/pa_vdouble.h,
23851: include/pa_vjunction.h, include/pa_vmframe.h,
23852: include/pa_vstring.h, include/pa_wcontext.h, main/execute.C,
23853: main/pa_wcontext.C: z
23854:
23855: * src/: include/pa_value.h, include/pa_vmframe.h, main/compile.y,
23856: main/core.C, main/execute.C, main/main.dsp: z. detected probs
23857: with parameter names in operator methods
23858:
23859: * src/main/compile.y: minor renamings in .y
23860:
23861: * src/: include/pa_request.h, main/compile.C, main/compile.y,
23862: main/core.C, main/main.dsp: introducing ROOT_CLASS. it's default
23863: @BASE. changed 'RUN' assignment mech
23864:
23865: * src/main/execute.C: z
23866:
23867: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23868: main/compile_tools.h, main/execute.C: made class: dynamic, not
23869: static. so to enable runtime ^use
23870:
23871: * src/main/compile.y: minor grammar bug with OP_CODE__STORE_PARAM
23872:
23873: * src/: include/code.h, main/compile.y, main/compile_tools.C,
23874: main/execute.C: joined 2 into one OP_CODE__STORE_PARAM
23875:
23876: * src/main/execute.C: root root in code-junction
23877:
23878: 2001-03-07 paf
23879:
23880: * src/include/: pa_value.h, pa_vclass.h, pa_vhash.h, pa_vmframe.h,
23881: pa_vobject.h, pa_wwrapper.h: const in Value.get_element
23882:
23883: * src/: include/pa_stack.h, include/pa_value.h,
23884: include/pa_vclass.h, include/pa_vhash.h, include/pa_vmframe.h,
23885: include/pa_vobject.h, include/pa_wwrapper.h, main/execute.C:
23886: fixed rwcontext of {} params up
23887:
23888: * src/main/: compile.y, compile_tools.h: ^func(params)
23889:
23890: * src/main/compile.y: .y priorities syntax shaped up a bit
23891:
23892: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vhash.h,
23893: include/pa_vunknown.h, main/compile.y, main/execute.C,
23894: main/pa_hash.C: expr def in -f
23895:
23896: * src/main/: compile.y, execute.C: expr calls
23897:
23898: * src/main/: compile.y, execute.C, pa_string.C: bug in string.cmp
23899: fixed
23900:
23901: * src/main/compile.y: expr quoted code
23902:
23903: * src/main/: compile.y, execute.C: expr whitespace solved. added ""
23904: support0
23905:
23906: * src/main/compile.y: expr string comparisons 0
23907:
23908: * src/: include/pa_string.h, main/compile.y, main/execute.C,
23909: main/pa_string.C: just compiled lt&co
23910:
23911: * src/main/execute.C: ^var.menu{$field} problem detected. that
23912: $field not a $var.field
23913:
23914: 2001-03-06 paf
23915:
23916: * src/main/compile.y: .y expr visible-shorter
23917:
23918: * src/: include/code.h, main/compile.y, main/execute.C: 1 problems
23919: with skipping whitespace in yylex fixed 2 xors: # bitwise ##
23920: logical
23921:
23922: * src/: include/pa_vstring.h, main/compile.y: problems with
23923: skipping whitespace in yylex
23924:
23925: * src/include/pa_vbool.h: forgot this
23926:
23927: * src/: include/code.h, main/compile.y, main/execute.C: without
23928: string ops in expressions 0
23929:
23930: * src/: include/pa_value.h, include/pa_vdouble.h,
23931: include/pa_vstring.h, include/pa_vunknown.h, main/compile.y,
23932: main/execute.C, main/main.dsp: !~
23933:
23934: * src/: include/pa_vcframe.h, include/pa_vclass.h,
23935: include/pa_vdouble.h, include/pa_vhash.h, include/pa_vjunction.h,
23936: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23937: include/pa_vunknown.h, include/pa_wcontext.h,
23938: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
23939: main/compile_tools.h, main/execute.C: +-*/
23940:
23941: * src/: include/pa_vdouble.h, main/compile.y, main/compile_tools.C,
23942: main/compile_tools.h: grammar-1.1 $a(z) $a=0
23943:
23944: * src/: include/pa_value.h, include/pa_vdouble.h, main/compile.y,
23945: main/execute.C: expr grammar-1 2*2=4.000000 :)
23946:
23947: * src/main/compile.y: expr grammar-1
23948:
23949: * src/main/compile.y: expr lexx1
23950:
23951: * src/main/: compile.y, execute.C, main.dsp: z
23952:
23953: * src/: include/code.h, include/pa_valiased.h, include/pa_value.h,
23954: include/pa_vdouble.h, include/pa_vstring.h, main/compile.y,
23955: main/execute.C: expr lex0 exec-1
23956:
23957: * src/: include/code.h, main/compile.y, main/compile_tools.h: g
23958:
23959: 2001-02-26 paf
23960:
23961: * src/main/compile.y: max_string in yyerror bug fix
23962:
23963: 2001-02-25 paf
23964:
23965: * src/: include/pa_value.h, include/pa_vmframe.h,
23966: include/pa_wcontext.h, main/execute.C: VAliased3
23967:
23968: * src/include/: pa_value.h, pa_vmframe.h: VAliased2
23969:
23970: * src/main/execute.C: VAliased1
23971:
23972: * src/: include/pa_request.h, include/pa_value.h,
23973: include/pa_vmframe.h, include/pa_wcontext.h, main/execute.C:
23974: VAliased0
23975:
23976: * src/: include/pa_pool.h, include/pa_request.h,
23977: include/pa_value.h, include/pa_vclass.h, include/pa_vmframe.h,
23978: include/pa_vobject.h, main/core.C, main/execute.C, main/main.dsp:
23979: VAliased just compiled
23980:
23981: * src/: include/pa_pool.h, include/pa_value.h, include/pa_vclass.h,
23982: include/pa_vobject.h, main/execute.C: alias dead end
23983:
23984: * src/: include/pa_value.h, include/pa_vclass.h,
23985: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
23986: main/main.dsp: no not get fields into interm VFielded class.
23987: fields & staticfields 1
23988:
23989: * src/: include/pa_vcframe.h, include/pa_vmframe.h,
23990: include/pa_vobject.h, include/pa_wcontext.h,
23991: include/pa_wwrapper.h, main/core.C, main/execute.C,
23992: main/main.dsp: would now get fields into interm VFielded class
23993:
23994: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
23995: include/pa_vmframe.h, include/pa_vobject.h, include/pa_vstring.h,
23996: include/pa_wcontext.h, main/compile.y, main/core.C,
23997: main/execute.C, main/main.dsp, main/pa_hash.C, main/pa_value.C,
23998: main/pa_wcontext.C: virtuals2
23999:
24000: * src/main/compile.y: : 1
24001:
24002: * src/main/compile.y: rethought to $class:static.field.subfield
24003:
24004: * src/: include/pa_vclass.h, main/compile.y, main/execute.C:
24005: $class:element
24006:
24007: * src/: include/pa_value.h, include/pa_vmframe.h,
24008: include/pa_wwrapper.h, main/compile.y, main/execute.C,
24009: main/pa_wcontext.C: before execute class calls rewrite
24010:
24011: * src/: include/pa_request.h, main/compile.C, main/core.C: default
24012: name RUN, also alias
24013:
24014: * src/main/compile.y: escaping bug
24015:
24016: * src/: include/pa_request.h, include/pa_value.h,
24017: include/pa_vobject.h, main/compile.y, main/compile_tools.h,
24018: main/core.C, main/execute.C, main/pa_common.C: vobject1
24019:
24020: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24021: include/pa_vmframe.h, include/pa_vobject.h,
24022: include/pa_wwrapper.h, main/compile.y, main/compile_tools.C,
24023: main/compile_tools.h, main/execute.C: ^class:method() just
24024: compiled
24025:
24026: 2001-02-24 paf
24027:
24028: * src/main/main.dsp: no bison -d
24029:
24030: * src/main/: compile.y, compile_tools.h: use0 line no on 'undef
24031: class' err msg wrong
24032:
24033: * src/main/compile.y: z
24034:
24035: * src/main/: compile.y, core.C: yylex need some @special lines adj
24036:
24037: * src/: include/pa_request.h, include/pa_vclass.h, main/compile.C,
24038: main/compile.y, main/compile_tools.h, main/core.C: modules0
24039:
24040: * src/: include/pa_vclass.h, main/core.C: z
24041:
24042: * src/: include/pa_value.h, include/pa_vclass.h,
24043: include/pa_vobject.h, main/main.dsp: vobject00
24044:
24045: * src/main/pa_array.C: minor bug in expanding very small arrays.
24046: 60% from 1 were 0
24047:
24048: * src/: include/pa_value.h, include/pa_wcontext.h,
24049: include/pa_wwrapper.h, main/execute.C, main/pa_value.C: it works
24050: as bad as you've named it: wcontext.value() was not a perfect
24051: idea
24052:
24053: * src/main/execute.C: codeframe1
24054:
24055: * src/: include/pa_value.h, include/pa_vcframe.h,
24056: include/pa_vclass.h, include/pa_vframe.h, include/pa_vhash.h,
24057: include/pa_vjunction.h, include/pa_vmframe.h,
24058: include/pa_wcontext.h, include/pa_wwrapper.h, main/execute.C,
24059: main/main.dsp, main/pa_cframe.C, main/pa_wcontext.C: codeframe
24060: just compiled
24061:
24062: * src/: include/pa_vframe.h, main/compile.y: found junction
24063: ideology @: ^x{$a()) must construct current wcontext element, so
24064: smart wcontext handling needed
24065:
24066: * src/main/compile.y: fixed grammar bugs in constructor/params
24067: klinch
24068:
24069: * src/main/: compile.y, execute.C: fixed empty constructor
24070: optimized empty case. failed on calls - produced empty string
24071: param
24072:
24073: * src/main/compile.y: fixed last \n macrotemplate strip bug
24074:
24075: * src/: include/code.h, include/pa_request.h, include/pa_value.h,
24076: include/pa_vclass.h, include/pa_vframe.h, main/compile.y,
24077: main/compile_tools.C, main/compile_tools.h, main/core.C,
24078: main/execute.C: code junctions0. something wrong with last \n
24079: macrotemplate strip
24080:
24081: * src/: include/pa_value.h, main/compile.C, main/core.C,
24082: main/pa_value.C: minor error reporting format beautifyings
24083:
24084: * src/: include/pa_value.h, include/pa_vclass.h,
24085: include/pa_vframe.h, main/core.C, main/execute.C,
24086: main/pa_value.C: get_method RIP. junctions everywhere. call with
24087: junctions0
24088:
24089: 2001-02-23 paf
24090:
24091: * src/include/: pa_value.h, pa_vclass.h, pa_vframe.h,
24092: pa_wwrapper.h: lara came, can't work, sorry :(
24093:
24094: * src/main/: compile.y, execute.C, main.dsp: rethought some. before
24095: junction
24096:
24097: * src/: include/pa_vframe.h, include/pa_vunknown.h,
24098: include/pa_wcontext.h, include/pa_wwrapper.h, main/core.C,
24099: main/execute.C, main/main.dsp, main/pa_value.C: call0
24100:
24101: * src/: include/pa_hash.h, include/pa_value.h,
24102: include/pa_wcontext.h, main/core.C, main/execute.C,
24103: main/main.dsp, main/pa_hash.C: started call. store param, vframe
24104: done
24105:
24106: * src/include/pa_wcontext.h: z
24107:
24108: * src/main/: compile.y, compile_tools.C, compile_tools.h: fixed
24109: wrong grammar in complex constructor case
24110:
24111: * src/main/: compile.y, execute.C: empty constructor bug fixed
24112:
24113: * src/main/execute.C: with result rwpool
24114:
24115: * src/: include/pa_value.h, main/core.C, main/execute.C,
24116: main/main.dsp: value named
24117:
24118: * src/: include/pa_value.h, include/pa_vstring.h, main/execute.C:
24119: strign 2 value in 2 places in execute
24120:
24121: * src/: include/pa_value.h, include/pa_wcontext.h, main/compile.y,
24122: main/execute.C, main/main.dsp, main/pa_array.C: auto VHash on
24123: wcontext.put_element when wcontext fvalue==0
24124:
24125: 2001-02-22 paf
24126:
24127: * src/: include/pa_hash.h, include/pa_value.h, include/pa_vclass.h,
24128: include/pa_vhash.h, include/pa_vstring.h, include/pa_wcontext.h,
24129: main/execute.C, main/main.dsp: auto VHash in pa.th.cre.at.e
24130:
24131: * src/: include/pa_wcontext.h, main/compile.y, main/execute.C:
24132: erroreos checkout
24133:
24134: * src/: include/pa_request.h, main/compile.y: $self.put(val)
24135:
24136: * src/: include/pa_array.h, main/compile.y, main/compile_tools.C,
24137: main/compile_tools.h, main/pa_array.C: $self.get
24138:
24139: * src/main/: compile.C, compile.y, compile_tools.C: z
24140:
24141: * src/main/compile.y: $: wasn't finished - $:sdf(sdf) troubled a
24142: bit. finished now.
24143:
24144: * src/main/compile.y: $: finished
24145:
24146: * src/main/: compile.C, compile.y, execute.C: started : with $a.$:f
24147:
24148: * src/: include/code.h, main/compile_tools.C, main/compile_tools.h,
24149: main/execute.C: OP_STRING better then some xxx _VALUE
24150:
24151: * src/: include/code.h, include/pa_vstring.h, main/compile.y,
24152: main/compile_tools.C, main/compile_tools.h, main/execute.C:
24153: string to vstring it .y all
24154:
24155: * src/: include/pa_request.h, include/pa_stack.h,
24156: include/pa_wcontext.h, main/execute.C: z about to vstring it .y
24157: all
24158:
24159: * src/main/: compile.C, core.C, execute.C, pa_string.C: more
24160: precise parse error line:col
24161:
24162: * src/: include/pa_pool.h, include/pa_vclass.h, main/core.C,
24163: main/pa_hash.C, main/pa_pool.C: TRY...
24164:
24165: * src/: include/pa_exception.h, include/pa_pool.h,
24166: include/pa_request.h, include/pa_value.h, include/pa_wcontext.h,
24167: main/compile.C, main/compile.y, main/compile_tools.C,
24168: main/core.C, main/pa_array.C, main/pa_exception.C,
24169: main/pa_hash.C, main/pa_pool.C, main/pa_string.C,
24170: main/pa_table.C: removed exception from request
24171:
24172: * src/: include/pa_vstring.h, main/compile.C, main/core.C: added
24173: some forgotten
24174:
24175: * src/: include/code.h, include/pa_value.h, include/pa_vclass.h,
24176: include/pa_wcontext.h, main/compile.y, main/compile_tools.C,
24177: main/compile_tools.h, main/execute.C, main/main.dsp: iiieeyys!
24178: get/put simple vars to VClass works0
24179:
24180: * src/: include/pa_array.h, include/pa_wcontext.h,
24181: main/pa_string.C: in process, but found that exceptions are too
24182: global
24183:
24184: * src/: include/code.h, include/pa_string.h, include/pa_value.h,
24185: include/pa_vclass.h, include/pa_wcontext.h, main/compile.y,
24186: main/execute.C, main/pa_string.C: write_value write_string 0 it
24187: seems wcontext must write strings regardles of fvalue!=0
24188:
24189: 2001-02-21 paf
24190:
24191: * src/main/execute.C: tired :)
24192:
24193: * src/main/: compile.C, compile.y, execute.C: store0
24194:
24195: * src/: include/compile.h, include/execute.h, include/pa_array.h,
24196: include/pa_request.h, include/pa_stack.h, include/pa_vclass.h,
24197: include/pa_wcontext.h, main/compile.C, main/compile.y,
24198: main/execute.C, main/main.dsp, main/pa_array.C,
24199: main/pa_request.C: get put -1 [just compiled]
24200:
24201: * src/: include/core.h, include/pa_context.h, include/pa_request.h,
24202: include/pa_vclass.h, include/pa_wcontext.h, main/core.C,
24203: main/main.dsp, main/pa_request.C: request core methods0
24204:
24205: * src/: include/compile.h, include/pa_array.h, main/compile.C,
24206: main/compile.y, main/execute.C: MAIN_METHOD_NAME ready to write
24207: execute
24208:
24209: * src/: include/pa_exception.h, include/pa_value.h, main/compile.C,
24210: main/compile.y, main/compile_tools.C, main/compile_tools.h: .y
24211: methods and one_big_piece. now compile returns array<method*>
24212:
24213: * src/main/compile.y: more straightforward yylex[end]
24214:
24215: * src/: include/pa_string.h, include/pa_types.h, main/pa_string.C:
24216: string.operator==(char*)
24217:
24218: * src/: include/execute.h, include/pa_array.h, include/pa_value.h,
24219: main/execute.C, main/pa_array.C: after array.const get wonders
24220:
24221: * src/include/: compile.h, pa_context.h, pa_hash.h, pa_request.h,
24222: pa_string.h, pa_value.h: struck with const array.gets
24223:
24224: * src/main/: execute.C: z
24225:
24226: * src/main/: compile.y, execute.C: z
24227:
24228: * src/main/: compile.C, compile.y, compile_tools.h: error
24229: processing in eval & yyerror so it wouldn't cause memleaks.
24230:
24231: * src/main/: compile.C, compile.y: failed to add absolute precies
24232: parse error positions. leaving RIGHTMOST position as
24233: @file[line:col]
24234:
24235: * src/: include/compile.h, main/compile.C, main/compile.y,
24236: main/compile_tools.h: line numbers needed. would add them to .y
24237: now internally. externally it's not as precise as needed
24238:
24239: * src/: include/code.h, include/pa_types.h, main/compile.C,
24240: main/compile.y, main/compile_tools.C, main/compile_tools.h,
24241: main/execute.C, main/main.dsp: .y to c++ hierarchy output fix.
24242: compiler works ok
24243:
24244: 2001-02-20 paf
24245:
24246: * src/main/: compile.C, compile.y, compile_tools.C,
24247: compile_tools.h, execute.C, main.dsp: nestage probs, eof yylex
24248: not perfect
24249:
24250: * src/: include/code.h, include/compile.h, include/execute.h,
24251: include/pa_array.h, include/pa_common.h, include/pa_pool.h,
24252: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24253: main/compile.C, main/compile.y, main/compile_tools.C,
24254: main/compile_tools.h, main/core.C, main/execute.C, main/main.dsp,
24255: main/pa_array.C, main/pa_common.C, main/pa_hash.C,
24256: main/pa_string.C, main/pa_table.C: bison[yacc] first time
24257: compiled. execute=dump for now
24258:
24259: * src/main/core.C: core rewrite using yacc investigations now will
24260: be compile[yacc]/execute[opcodes]
24261:
24262: 2001-02-15 paf
24263:
24264: * src/: include/pa_value.h, main/core.C: maybe a-la yacc those ifs
24265: rewrite as turing machine? for it seems it would be it's too many
24266: ifs with this syntax now
24267:
24268: 2001-02-14 paf
24269:
24270: * src/main/core.C: get_params 1
24271:
24272: * src/main/core.C: get_params figured ^menu[UNEVALUATED unthinked
24273: :( ]
24274:
24275: * src/main/core.C: varios breaks
24276:
24277: * src/main/core.C: get names 3
24278:
24279: * src/main/core.C: get names 2
24280:
24281: * src/main/core.C: get names 1
24282:
24283: * src/: include/pa_string.h, main/core.C, main/pa_string.C: get
24284: names 0
24285:
24286: * src/: include/pa_value.h, main/core.C, main/pa_string.C: process
24287: text repassing2 operator static vars
24288:
24289: * src/: include/pa_context.h, include/pa_string.h, main/core.C,
24290: main/pa_string.C: process text repassing
24291:
24292: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24293: module:calls changes
24294:
24295: 2001-02-13 paf
24296:
24297: * src/: include/pa_context.h, include/pa_value.h, main/core.C:
24298: ^class:calls[] started
24299:
24300: * src/: include/pa_value.h, main/core.C: z
24301:
24302: * src/main/core.C: operators : and self. prefixes
24303:
24304: * src/main/core.C: z
24305:
24306: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24307: tested
24308:
24309: * src/: include/pa_string.h, main/pa_string.C: String_iterator
24310: optimized
24311:
24312: * src/main/pa_string.C: String_iterator::skip_to optimized a bit.
24313: would change privates to better support optimization
24314:
24315: * src/: include/pa_string.h, main/pa_string.C:
24316: String_iterator::skip_to todo:optimize
24317:
24318: 2001-02-12 paf
24319:
24320: * src/: include/pa_string.h, main/core.C, main/pa_string.C: started
24321: String_iterator
24322:
24323: * src/: include/pa_context.h, include/pa_value.h, main/core.C: some
24324: comments
24325:
24326: * src/: include/pa_context.h, include/pa_value.h, main/core.C: get
24327: self/methodref joined
24328:
24329: 2001-02-11 paf
24330:
24331: * src/: include/pa_context.h, include/pa_value.h, main/core.C,
24332: main/main.dsp: core started. core.C, context&value .h
24333:
24334: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24335: include/pa_string.h, main/main.dsp, main/pa_array.C,
24336: main/pa_hash.C, main/pa_pool.C, main/pa_string.C: :pooled
24337:
24338: 2001-01-30 paf
24339:
24340: * src/: Makefile.am, main/Makefile.am, targets/Makefile.am: .am
24341: comments
24342:
24343: * src/: include/pa_pool.h, main/Makefile.am, main/main.dsp,
24344: main/pa_pool.C: moved pa_pool.C to be target specific
24345:
24346: * src/: include/pa_exception.h, include/pa_pool.h,
24347: include/pa_table.h, main/pa_exception.C, main/pa_table.C: minor *
24348: to & changes
24349:
24350: * src/: include/pa_exception.h, include/pa_pool.h,
24351: include/pa_request.h, include/pa_table.h, main/pa_array.C,
24352: main/pa_exception.C, main/pa_pool.C, main/pa_table.C: error
24353: re-associated. that's much better even removed 'die' necessety
24354:
24355: * src/: include/pa_error.h, include/pa_exception.h,
24356: include/pa_pool.h, include/pa_request.h, main/main.dsp,
24357: main/pa_error.C, main/pa_exception.C, main/pa_pool.C,
24358: targets/Makefile.am: lowered targets/parser into subdir, added
24359: parser_Pool(Pool) failed to add. would think..
24360:
24361: * src/: include/pa_error.h, include/pa_hash.h, include/pa_string.h,
24362: include/pa_table.h, main/pa_error.C, main/pa_hash.C,
24363: main/pa_string.C, main/pa_table.C: Table more like C++ style
24364: hence lots of 'const'
24365:
24366: * src/: include/pa_error.h, include/pa_request.h,
24367: include/pa_string.h, include/pa_table.h, main/pa_error.C,
24368: main/pa_table.C: Error fixed
24369:
24370: 2001-01-29 paf
24371:
24372: * src/: include/pa_array.h, include/pa_common.h,
24373: include/pa_error.h, include/pa_hash.h, include/pa_pool.h,
24374: include/pa_request.h, include/pa_string.h, include/pa_table.h,
24375: main/Makefile.am, main/pa_array.C, main/pa_common.C,
24376: main/pa_error.C, main/pa_hash.C, main/pa_table.C: added forgotten
24377:
24378: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24379: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24380: main/Makefile.am, main/main.dsp, main/pa_array.C, main/pa_hash.C,
24381: main/pa_string.C, main/pa_table.C: Request Error Table
24382:
24383: * src/: include/pa_pool.h, main/pa_array.C: tested - decision "no
24384: templates"
24385:
24386: * src/: include/pa_array.h, include/pa_pool.h, main/Makefile.am,
24387: main/main.dsp, main/pa_array.C: templates failed no template
24388: specializations [VC6], no library auto instantation [VC6, GNU c++
24389: 2.95.2-6 from latest cygwin]
24390:
24391: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24392: include/pa_string.h, include/pa_table.h, include/pa_types.h,
24393: main/main.dsp, main/pa_array.C, main/pa_string.C,
24394: main/pa_table.C: Table started would test template Array now
24395:
24396: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
24397: String originating
24398:
24399: * src/: include/pa_hash.h, include/pa_pool.h, include/pa_threads.h,
24400: main/pa_hash.C: made local Hash-es not thread safe=quicker by
24401: SYNCHRONIZED(thread_safe)
24402:
24403: * src/include/: pa_array.h, pa_hash.h, pa_string.h: moved .h public
24404: parts to top
24405:
24406: * src/: include/pa_hash.h, include/pa_threads.h, main/pa_hash.C,
24407: main/pa_threads.C: decided on one global_mutex, like PHP as I can
24408: see: needed only in global Hash now, made Hash:: put/get
24409: SYNCHRONIZED
24410:
24411: * src/: include/pa_hash.h, include/pa_threads.h, main/main.dsp,
24412: main/pa_threads.C: added pa_threads
24413:
24414: Mutex
24415:
24416: * src/include/pa_hash.h: some comments
24417:
24418: * src/: main/pa_array.C, include/pa_array.h, include/pa_pool.h:
24419: Array& operator += (Array& src)
24420:
24421: * src/main/pa_array.C: expand not convinient, would rewrite
24422:
24423: * src/: include/pa_array.h, main/pa_array.C: Array::operator +=
24424: (Array& src)
24425:
24426: rethought, would change now
24427:
24428: 2001-01-27 paf
24429:
24430: * src/: include/pa_array.h, main/pa_array.C: array [] with chunk
24431: caching
24432:
24433: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24434: include/pa_string.h, main/pa_array.C, main/pa_string.C: array
24435: cache rethought to chunk caching
24436:
24437: * src/: include/pa_array.h, include/pa_hash.h, include/pa_pool.h,
24438: include/pa_string.h, main/main.dsp, main/pa_array.C,
24439: main/pa_hash.C, main/pa_string.C: Array 0
24440:
24441: * src/main/pa_string.C: String::operator ==
24442:
24443: * src/main/pa_hash.C: String(&String)
24444:
24445: * src/main/pa_hash.C: added pa_hash.C [forgotten]
24446:
24447: * src/: include/pa_hash.h, include/pa_string.h, include/pa_types.h,
24448: main/main.dsp, main/pa_string.C: uint, and added pa_types &
24449: pa_hash[forgotten]
24450:
24451: 2001-01-26 paf
24452:
24453: * src/: include/pa_pool.h, include/pa_string.h, main/pa_string.C:
24454: removed templates [vc++ suxx]
24455:
24456: * src/: include/pa_pool.h, include/pa_string.h, main/main.dsp,
24457: main/pa_pool.C, main/pa_string.C: templates in VC++ suxx.
24458:
24459: * src/include/: pa_pool.h, pa_string.h: pa_pool split
24460:
1.119 moko 24461: * src/main/: main.dsp, pa_string.C: Id check
1.95 moko 24462:
1.119 moko 24463: * src/: main/pa_pool.C, main/pa_string.C, include/pa_pool.h: Id
1.95 moko 24464: check
24465:
24466: * src/: include/pa_pool.h, main/pa_string.C: String prealloc &
24467: dynamic row_count
24468:
24469: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
24470: main/main.dsp, main/pa_pool.C, main/pa_string.C,
24471: targets/Makefile.am: Initial revision
24472:
24473: * src/: Makefile.am, include/pa_pool.h, main/Makefile.am,
24474: main/main.dsp, main/pa_pool.C, main/pa_string.C,
24475: targets/Makefile.am: creating parser3 module
24476:
E-mail: