Thread: [Htmlparser-developer] bug [ 722917 ] AttributeParser not parsing correctly
Brought to you by:
derrickoswald
|
From: Kaarle K. <kaa...@ik...> - 2003-04-19 20:59:21
|
I have been assigned for the [ 722917 ] AttributeParser not parsing correctly error in htmlparser. I have answered my opinion already a few times that why should htmlparser need to be able to parse uncompiled asp or jsp pages. If not I would like to know on what kind of html-page can this text be found? <a href=\"<%=Application(\"sURL\")%>/literature/index.htm> Can you answer this to me before I begin to look into this? Kaarle --------------------------------------------- Kaarle Kaila http://www.iki.fi/kaila mailto:kaa...@ik... tel: +358 50 3725844 |
|
From: Somik R. <so...@ya...> - 2003-04-20 03:06:02
|
Hi Kaarle,
That is actually a different bug - take a look at the test again (look
at results.html).
Regards,
Somik
----- Original Message -----
From: "Kaarle Kaila" <kaa...@ik...>
To: <htm...@li...>
Sent: Saturday, April 19, 2003 1:56 PM
Subject: [Htmlparser-developer] bug [ 722917 ] AttributeParser not parsing
correctly
> I have been assigned for the [ 722917 ] AttributeParser not parsing
correctly
> error in htmlparser. I have answered my opinion already a few times that
> why should
> htmlparser need to be able to parse uncompiled asp or jsp pages.
>
> If not I would like to know on what kind of html-page can this text be
found?
>
> <a href=\"<%=Application(\"sURL\")%>/literature/index.htm>
>
> Can you answer this to me before I begin to look into this?
>
> Kaarle
>
> ---------------------------------------------
> Kaarle Kaila
> http://www.iki.fi/kaila
> mailto:kaa...@ik...
> tel: +358 50 3725844
>
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Htmlparser-developer mailing list
> Htm...@li...
> https://lists.sourceforge.net/lists/listinfo/htmlparser-developer
|
|
From: Kaarle K. <kaa...@ik...> - 2003-04-20 06:58:23
|
At 20:07 19.4.2003 -0700, you wrote: >Hi Kaarle, > That is actually a different bug - take a look at the test again (look >at results.html). Happy eastern to you all! As I run the JUnit I get only error in test org.htmlparser.tests.parserHelperTests.AttributeParserTest The results dir contains AttributeParser.html with a source like this: ============ img src="somepic.jpg" alt="great pic" width="10" height=20 ============= With a new line in the middle of an attribute value. I don't think that's allowed in html?? I guess you have somewhere some instructions on fit that I should know to look at this test? regards Kaarle >Regards, >Somik >----- Original Message ----- >From: "Kaarle Kaila" <kaa...@ik...> >To: <htm...@li...> >Sent: Saturday, April 19, 2003 1:56 PM >Subject: [Htmlparser-developer] bug [ 722917 ] AttributeParser not parsing >correctly > > > > I have been assigned for the [ 722917 ] AttributeParser not parsing >correctly > > error in htmlparser. I have answered my opinion already a few times that > > why should > > htmlparser need to be able to parse uncompiled asp or jsp pages. > > > > If not I would like to know on what kind of html-page can this text be >found? > > > > <a href=\"<%=Application(\"sURL\")%>/literature/index.htm> > > > > Can you answer this to me before I begin to look into this? > > > > Kaarle > > > > --------------------------------------------- > > Kaarle Kaila > > http://www.iki.fi/kaila > > mailto:kaa...@ik... > > tel: +358 50 3725844 > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Htmlparser-developer mailing list > > Htm...@li... > > https://lists.sourceforge.net/lists/listinfo/htmlparser-developer > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Htmlparser-developer mailing list >Htm...@li... >https://lists.sourceforge.net/lists/listinfo/htmlparser-developer --------------------------------------------- Kaarle Kaila http://www.iki.fi/kaila mailto:kaa...@ik... tel: +358 50 3725844 |
|
From: Somik R. <so...@ya...> - 2003-04-20 15:12:16
|
Hi Kaarle,
Happy Easter!
> As I run the JUnit I get only error in test
> org.htmlparser.tests.parserHelperTests.AttributeParserTest
>
> The results dir contains AttributeParser.html
>
> with a source like this:
> ============
> img src="somepic.jpg" alt="great
> pic" width="10" height=20
> =============
> With a new line in the middle of an attribute value. I don't think that's
> allowed in html??
I thought that the parser should be able to figure out when to strip the new
line.. You could always test this in IE and see if it is picked up (I think
it is).
> I guess you have somewhere some instructions on fit that I should know to
> look at this test?
fit.c2.com.
To make life easy, I've added a class that allows you to run fit tests
inside junit - check the resources package - fit.jar, expand it to go to
runner.FitRunner. And simply run that as a testcase. It will run the tests
in the specs directory and put the results in the results directory. It can
flag errors at the file level after which you have to open the results to
get detailed info.
Regards,
Somik
|
|
From: Kaarle K. <kaa...@ik...> - 2003-04-20 17:38:40
|
At 08:13 20.4.2003 -0700, you wrote: >Hi Kaarle, > Happy Easter! I put this in an html page and checked with IE6.0 and it show a picture but the balloon with the text shows great pic i.e. with newline. It does not strip the new line. Kaarle > > As I run the JUnit I get only error in test > > org.htmlparser.tests.parserHelperTests.AttributeParserTest > > > > The results dir contains AttributeParser.html > > > > with a source like this: > > ============ > > img src="somepic.jpg" alt="great > > pic" width="10" height=20 > > ============= > > With a new line in the middle of an attribute value. I don't think that's > > allowed in html?? > >I thought that the parser should be able to figure out when to strip the new >line.. You could always test this in IE and see if it is picked up (I think >it is). > > > I guess you have somewhere some instructions on fit that I should know to > > look at this test? > >fit.c2.com. >To make life easy, I've added a class that allows you to run fit tests >inside junit - check the resources package - fit.jar, expand it to go to >runner.FitRunner. And simply run that as a testcase. It will run the tests >in the specs directory and put the results in the results directory. It can >flag errors at the file level after which you have to open the results to >get detailed info. > >Regards, >Somik > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Htmlparser-developer mailing list >Htm...@li... >https://lists.sourceforge.net/lists/listinfo/htmlparser-developer --------------------------------------------- Kaarle Kaila http://www.iki.fi/kaila mailto:kaa...@ik... tel: +358 50 3725844 |