From: <lan...@us...> - 2003-03-23 02:01:06
|
Update of /cvsroot/webmacro/webmacro In directory sc8-pr-cvs1:/tmp/cvs-serv5682 Modified Files: WebMacro.defaults Log Message: Updates include: RelaxedDirectiveBuilding Property. Test Cases for above property. assert() --> assertTrue() allowing compilation under java1.4 some additions/improvements to the standard macro library all tests run without error under jdk 1.3, solaris 2.8. some work needs to be done on test cases to remove unix dependencies. Index: WebMacro.defaults =================================================================== RCS file: /cvsroot/webmacro/webmacro/WebMacro.defaults,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** WebMacro.defaults 3 Jan 2003 17:38:13 -0000 1.36 --- WebMacro.defaults 23 Mar 2003 02:00:31 -0000 1.37 *************** *** 100,104 **** - # # Error Handling --- 100,103 ---- *************** *** 163,166 **** --- 162,177 ---- # Don't change these values unless you know what you're doing. They # allow you to fine-tune, extend, and customize WebMacro's behavior. + + # + # Relaxed Directive Building. + # + # If set to true, text blocks produced by tools such as DreamWeaver + # and other html editors will not choke the parse/build phase + # when they introduce strings with a preceding # such as + # #ffffff, #BeginDirective and #Comment. By default the property is + # set to false. Therefore, WebMacro will fail fast on this type of text. + + RelaxedDirectiveBuilding: False + |