--- parser3/ChangeLog 2008/05/30 13:27:05 1.67 +++ parser3/ChangeLog 2008/06/17 15:59:50 1.71 @@ -1,4 +1,238 @@ +2008-06-17 misha + * src/main/compile.tab.C 1.118: + * src/main/compile.y 1.225: + - bugfix in 'def' compilation: ^if(default){true. it's + incorrect. must be exception} + +2008-06-16 misha + * tests/181.ent 1.1: + * tests/181.html 1.1: + * tests/results/181.processed 1.1: + - test for checking external reference loading with 'http:// + localhost' prefix while creating xdoc + + * src/classes/Makefile.in 1.65: + *** empty log message *** + + * tests/180.html 1.2: + - use ^inet:ntoa[] and ^inet:aton[] instead of ^math:long2ip[] + and ^math:ip2long[] + + * src/types/pa_vobject.C 1.26: + * src/types/pa_vobject.h 1.49: + - get_scalar_value method added which use scalar stateless class method when user object used in + scalar context + - use get_scalar_value when user object requested in scalar context + + * src/main/pa_common.C 1.235: + - size must be int but not size_t or we can't compare with 0 + sprintf result + + * src/main/execute.C 1.321: + * src/main/pa_request.C 1.297: + * src/types/pa_vmethod_frame.C 1.9: + * src/types/pa_vmethod_frame.h 1.64: + - go back to one VMethodFrame with internal switch between local/ + global vars + + * src/types/pa_vclass.C 1.36: + - register scalar if method @GET[] was specified + + * src/types/pa_vstateless_class.C 1.33: + * src/types/pa_vstateless_class.h 1.60: + * src/types/pa_vstateless_object.h 1.38: + - stateless class and object now has private scalar field and + getter/setter for working with it + + * src/classes/math.C 1.53: + - methods math:long2ip & math:ip2long were moved to inet static + class + + * src/classes/Makefile.am 1.51: + * src/classes/classes.vcproj 1.17: + * src/classes/inet.C 1.1: + - inet static class added (^inet:aton[IP], ^inet:ntoa(number)) + + * tests/180.html 1.1: + * tests/results/180.processed 1.1: + - tests for ^math:long2ip(long) and ^math:ip2long[IP] + + * src/classes/math.C 1.52: + - ^math:ip2long[IP] added + +2008-06-11 misha + * src/main/pa_xml_io.C 1.22: + - use file_read_text again because of we need cut BOM code and + remove DOS newline chars. but don't transcode it anyway. + + * src/include/pa_common.h 1.123: + * src/include/pa_http.h 1.2: + * src/main/pa_common.C 1.234: + * src/main/pa_http.C 1.15: + - option for disable transcoding while file_read and + file_read_text added + +2008-06-10 misha + * tests/179.html 1.1: + * tests/179.p 1.1: + * tests/results/179.processed 1.1: + - test for many classes in 1 file + + * src/main/compile.tab.C 1.117: + * src/main/compile.y 1.224: + - compile return list of classes now. internals. + + * src/main/compile.C 1.79: + * src/main/compile_tools.h 1.78: + - compile return list of classes now. + + * src/main/pa_request.C 1.295: + - compile return list of classes now. try call @conf and @auto + for each returned class + + * src/include/pa_request.h 1.189: + - compile return list of classes now + + * src/types/pa_vstateless_class.h 1.59: + - typedef ArrayClass added (for return list of classes when + compile buf) + +2008-06-07 misha + * src/main/pa_request.C 1.294: + - constructing VRequest object with 3rd param -- form + + * src/types/pa_vrequest.C 1.40: + * src/types/pa_vrequest.h 1.35: + - constructor acceps 3rd param: form. needed for get + post_charset + + * src/types/pa_vform.C 1.93: + * src/types/pa_vform.h 1.54: + - VForm::get_post_charset() added + + * src/include/pa_common.h 1.122: + * src/main/pa_common.C 1.233: + * src/main/pa_http.C 1.14: + * src/types/pa_vform.C 1.92: + * src/types/pa_vform.h 1.53: + - some polish + +2008-06-06 misha + * src/types/pa_vform.C 1.91: + * src/types/pa_vform.h 1.52: + - if POST -- try detec charset and decode chars from it but not + from response:charset + + * src/main/pa_http.C 1.13: + - detect_charset moved out of here + + * src/include/pa_common.h 1.121: + * src/main/pa_common.C 1.232: + - more helpers methods moved here + - unescape_chars accepn one charset now + + * src/main/pa_http.C 1.12: + - new constants used + - don't allow $.content-type in ^file::load[;http://;$.method[POST]] + - add charset info while ^file::load[;http://;$.method[POST]] + - option $.omit-post-charset(true) added to ^file::load[;http://] for disabling charset during post + + * src/types/pa_vform.C 1.90: + - new constants used + + * src/include/pa_common.h 1.120: + - some constants were added + + * src/classes/form.C 1.41: + * src/types/pa_vform.C 1.89: + - use StrStartFromNC instead of StrEqNc + + * src/main/pa_common.C 1.231: + - new method for caseless search c-substring in c-string + - use isxdigit instead of is_hex_digit + + * src/include/pa_common.h 1.119: + - new method for caseless search c-substring in c-string + +2008-06-05 misha + * tests/178.html 1.1: + * tests/results/178.processed 1.1: + - test for testing default getter + + * tests/178_dir/178a.p 1.1: + * tests/178_dir/178b.p 1.1: + * tests/178_dir/178c.p 1.1: + * tests/178_dir/178d.p 1.1: + * tests/178_dir/178e.p 1.1: + - classes for test for testing default getter + + * src/main/execute.C 1.320: + - default getter soul + + * src/types/pa_vobject.C 1.25: + * src/types/pa_vobject.h 1.48: + - get default getter if requested objects' field not found + + * src/types/pa_vclass.C 1.35: + - register default getter if defined + - get default getter if requested field not found + + * src/types/pa_vstateless_object.h 1.37: + - method get_default_getter was added + + * src/types/pa_vstateless_class.C 1.32: + * src/types/pa_vstateless_class.h 1.58: + - pointer to default getter and methods for get/set it were + added + + * src/types/pa_junction.h 1.8: + * src/types/pa_vjunction.h 1.26: + - junction has auto_name field (for default getter) + +2008-06-04 misha + * src/main/pa_xml_io.C 1.21: + - load external xml in binary mode (no transcoding, no cutting + BOM code, no fixing line breaks) and get it to libxml "as is" + +2008-06-03 misha + * src/main/pa_common.C 1.230: + - use store_Char instead of transcodeCharFromUTF8 + + * src/include/pa_charset.h 1.34: + * src/main/pa_charset.C 1.58: + - method store_Char added, transcodeCharFromUTF8 -- removed + +2008-06-02 misha + * tests/177.html 1.1: + * tests/results/177.processed 1.1: + - test for checking .[acm]date after local ^file::load[] was + added + + * tests/176.html 1.1: + * tests/results/176.processed 1.1: + - test for checking @OPTION\locals + @method[vars][locals] added + + * tests/results/auto.p 1.3: + - CLASS_PATH specified for checking use + 2008-05-30 misha + * Makefile.am 1.55: + * Makefile.am 1.56: + * Makefile.in 1.70: + * Makefile.in 1.71: + * acinclude.m4 1.41: + * acinclude.m4 1.42: + * aclocal.m4 1.44: + * aclocal.m4 1.45: + * acsite.m4 1.19: + * acsite.m4 1.20: + * configure 1.97: + * configure 1.98: + * configure.in 1.100: + * configure.in 1.99: + * src/types/Makefile.in 1.63: + *** empty log message *** + * src/main/compile.tab.C 1.116: * src/main/compile.y 1.223: - changes in compiler: @OPTION\nlocals + @method[vars][;locals;]