
richter at apache
Feb 13, 2004, 1:39 PM
Post #1 of 1
(859 views)
Permalink
|
|
cvs commit: embperl/Embperl/Syntax EmbperlHTML.pm
|
|
richter 2004/02/13 12:39:38 Modified: . Changes.pod MANIFEST test.pl Embperl/Syntax EmbperlHTML.pm Log: fix nesting of tab and select Revision Changes Path 1.227 +2 -0 embperl/Changes.pod Index: Changes.pod =================================================================== RCS file: /home/cvs/embperl/Changes.pod,v retrieving revision 1.226 retrieving revision 1.227 diff -u -r1.226 -r1.227 --- Changes.pod 7 Feb 2004 13:41:22 -0000 1.226 +++ Changes.pod 13 Feb 2004 20:39:38 -0000 1.227 @@ -8,6 +8,8 @@ reported by Neil Gunton. - Fixed problem with select and dynamic options when no name attribute is given in select tag. Reported by Michael Stepanov. + - Fixed problem with nesting of dynamic table and dynamic select. + Reported by Doug Rayner. =head1 2.0b10 23. Jan 2004 1.90 +4 -0 embperl/MANIFEST Index: MANIFEST =================================================================== RCS file: /home/cvs/embperl/MANIFEST,v retrieving revision 1.89 retrieving revision 1.90 diff -u -r1.89 -r1.90 --- MANIFEST 7 Feb 2004 13:41:22 -0000 1.89 +++ MANIFEST 13 Feb 2004 20:39:38 -0000 1.90 @@ -333,6 +333,8 @@ test/cmp/rtfmeta.asc test/cmp/safe.htm test/cmp/select.htm +test/cmp/selecttab.htm +test/cmp/selecttab2.htm test/cmp/setbadsess.htm test/cmp/setsdaturlsess.htm test/cmp/setsess.htm @@ -521,6 +523,8 @@ test/html/rtf/rtfmeta.asc test/html/safe/safe.htm test/html/select.htm +test/html/selecttab.htm +test/html/selecttab2.htm test/html/setbadsess.htm test/html/setsess.htm test/html/setunknownsess.htm 1.136 +3 -1 embperl/test.pl Index: test.pl =================================================================== RCS file: /home/cvs/embperl/test.pl,v retrieving revision 1.135 retrieving revision 1.136 diff -u -r1.135 -r1.136 --- test.pl 7 Feb 2004 13:41:23 -0000 1.135 +++ test.pl 13 Feb 2004 20:39:38 -0000 1.136 @@ -212,6 +212,8 @@ 'query_info' => 'sel=2&SEL1=B&SEL3=D&SEL4=cc', }, 'select.htm' => {}, + 'selecttab.htm' => {}, + 'selecttab2.htm' => {}, 'mix.htm' => { }, 'binary.htm' => { 'version' => 1, # needs print OUT 1.5 +4 -3 embperl/Embperl/Syntax/EmbperlHTML.pm Index: EmbperlHTML.pm =================================================================== RCS file: /home/cvs/embperl/Embperl/Syntax/EmbperlHTML.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- EmbperlHTML.pm 23 Jan 2004 06:50:57 -0000 1.4 +++ EmbperlHTML.pm 13 Feb 2004 20:39:38 -0000 1.5 @@ -130,8 +130,9 @@ { perlcode => '{ my $_ep_selectname=%&*\'name%;', perlcodeend => '} %&*-name%', - stackname => 'htmltable', - 'push' => '%$p%', + # push/pop is not (yet) supported in secondary entry, so don't use it!! + #stackname => 'htmltable', + #'push' => '%$p%', } } } --------------------------------------------------------------------- To unsubscribe, e-mail: embperl-cvs-unsubscribe [at] perl For additional commands, e-mail: embperl-cvs-help [at] perl
|