Author: sebb
Date: Sat Mar 25 17:08:59 2006
New Revision: 388867
URL: http://svn.apache.org/viewcvs?rev=388867&view=rev
Log:
Used wrong image constant - just as well we have the Junit tests...
Modified:
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/HTMLParser.java
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/JTidyHTMLParser.java
Modified:
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/HTMLParser.java
URL:
http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/HTMLParser.java?rev=388867&r1=388866&r2=388867&view=diff
==============================================================================
---
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/HTMLParser.java
(original)
+++
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/HTMLParser.java
Sat Mar 25 17:08:59 2006
@@ -47,6 +47,7 @@
protected static final String TAG_BGSOUND = "bgsound";// $NON-NLS-1$
protected static final String TAG_EMBED = "embed";// $NON-NLS-1$
protected static final String TAG_FRAME = "frame";// $NON-NLS-1$
+ protected static final String TAG_IMAGE = "img";// $NON-NLS-1$
protected static final String TAG_INPUT = "input";// $NON-NLS-1$
protected static final String TAG_LINK = "link";// $NON-NLS-1$
protected static final String TAG_SCRIPT = "script";// $NON-NLS-1$
Modified:
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/JTidyHTMLParser.java
URL:
http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/JTidyHTMLParser.java?rev=388867&r1=388866&r2=388867&view=diff
==============================================================================
---
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/JTidyHTMLParser.java
(original)
+++
jakarta/jmeter/branches/rel-2-1/src/protocol/http/org/apache/jmeter/protocol/http/parser/JTidyHTMLParser.java
Sat Mar 25 17:08:59 2006
@@ -34,7 +34,6 @@
/**
* HtmlParser implementation using JTidy.
*
- * @version $Revision$ updated on $Date$
*/
class JTidyHTMLParser extends HTMLParser {
private static final Logger log = LoggingManager.getLoggerForClass();
@@ -109,7 +108,7 @@
break;
}
- if (name.equalsIgnoreCase(ATT_IS_IMAGE) ||
name.equalsIgnoreCase(TAG_EMBED)) {
+ if (name.equalsIgnoreCase(TAG_IMAGE) ||
name.equalsIgnoreCase(TAG_EMBED)) {
urls.addURL(getValue(attrs, ATT_SRC), baseUrl);
break;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]