
richter at apache
Dec 23, 2002, 1:47 PM
Post #1 of 1
(115 views)
Permalink
|
|
cvs commit: embperl/test/cmp xhtml.htm
|
|
richter 2002/12/23 12:47:36 Modified: . Changes.pod test.pl test/cmp xhtml.htm Log: fix tests of xhtml and libxslt Revision Changes Path 1.193 +2 -0 embperl/Changes.pod Index: Changes.pod =================================================================== RCS file: /home/cvs/embperl/Changes.pod,v retrieving revision 1.192 retrieving revision 1.193 diff -u -r1.192 -r1.193 --- Changes.pod 26 Nov 2002 10:03:40 -0000 1.192 +++ Changes.pod 23 Dec 2002 20:47:35 -0000 1.193 @@ -48,6 +48,8 @@ connection. - Added EMBPERL_OUTPUT_MODE that allows to change to XML output, which cause generated tags to contains a closing slash, so they are valid XML/XHTML. + - Fix make test to ignore different idention of newer versions of + libxslt. =head1 2.0b8 (BETA) 25. Juni 2002 1.122 +4 -1 embperl/test.pl Index: test.pl =================================================================== RCS file: /home/cvs/embperl/test.pl,v retrieving revision 1.121 retrieving revision 1.122 diff -u -r1.121 -r1.122 --- test.pl 23 Dec 2002 10:08:54 -0000 1.121 +++ test.pl 23 Dec 2002 20:47:36 -0000 1.122 @@ -1343,6 +1343,8 @@ } else { + $l1 =~ s/\s//g ; + $l2 =~ s/\s//g ; $eq = lc ($l1) eq lc ($l2) ; } } @@ -1905,6 +1907,7 @@ $ENV{EMBPERL_EP1COMPAT} = 0 ; delete $ENV{EMBPERL_ALLOW} ; + delete $ENV{QUERY_STRING} ; if ($err == 0) { 1.2 +1 -1 embperl/test/cmp/xhtml.htm Index: xhtml.htm =================================================================== RCS file: /home/cvs/embperl/test/cmp/xhtml.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- xhtml.htm 26 Nov 2002 10:03:45 -0000 1.1 +++ xhtml.htm 23 Dec 2002 20:47:36 -0000 1.2 @@ -20,7 +20,7 @@ </tr> </table> -<input type="hidden" name="a" value="1" /><input type="hidden" name="b" value="'2'" /><input type="hidden" name="c" value=""3"" /> +^(<input type=\"hidden\" name=\"c\" value=\""3"\" \/>|<input type=\"hidden\" name=\"a\" value=\"1\" \/>)(<input type=\"hidden\" name=\"a\" value=\"1\" \/>|<input type=\"hidden\" name=\"b\" value=\"\'2\'\" \/>|<input type=\"hidden\" name=\"c\" value=\""3"\" \/>)(<input type=\"hidden\" name=\"c\" value=\""3"\" \/>|<input type=\"hidden\" name=\"b\" value=\"\'2\'\" \/>) <input type="text" name="b" value="'2'" /> <input type="text" name="c" value=""3"" /> --------------------------------------------------------------------- To unsubscribe, e-mail: embperl-cvs-unsubscribe [at] perl For additional commands, e-mail: embperl-cvs-help [at] perl
|