View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006527 | JEDI VCL | 00 JVCL Components | public | 2016-09-27 10:51 | 2019-05-02 08:33 |
Reporter | tas | Assigned To | jfudickar | ||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | ||||
Summary | 0006527: TJvHTMLParser | ||||
Description | Doesn't parse correct. This is html example text: <body>Paragraph</body> The problem occurs when tags starting with the same symbol and one of them have length 1 (for example tag ) | ||||
Tags | No tags attached. | ||||
|
Example html text: <'body'><'b'>Paragraph<'/b'><'/body'> The problem occurs when tags starting with the same symbol and one of them have length 1 (for example tag 'b') |
|
fixed: change J := StrFind(StartTag1, Str, J); to if trim(StartTag2) = '' then J := StrFind(StartTag1, Str, J) else begin J1 := J; J := StrFind(StartTag1 + ' ', Str, J); if J = 0 then begin J := J1; J := StrFind(StartTag1 + '>', Str, J); end; end; |
|
Could you check if the issue is still present in the latest GIT content? If yes, please provide the zipped sources of an application showing this. |
|
Pull request created: https://github.com/project-jedi/jvcl/pull/108 |
|
Pull request superceeded by https://github.com/project-jedi/jvcl/pull/112 |
|
Fixed in Repository |
Date Modified | Username | Field | Change |
---|---|---|---|
2016-09-27 10:51 | tas | New Issue | |
2016-09-27 10:56 | tas | Note Added: 0021400 | |
2016-09-27 14:20 | tas | Note Added: 0021401 | |
2018-07-18 15:45 | obones | Note Added: 0021497 | |
2018-07-18 15:45 | obones | Status | new => feedback |
2019-04-28 10:59 | mh | Note Added: 0021774 | |
2019-04-30 21:52 | mh | Note Added: 0021781 | |
2019-05-02 08:33 | jfudickar | Note Added: 0021792 | |
2019-05-02 08:33 | jfudickar | Status | feedback => resolved |
2019-05-02 08:33 | jfudickar | Resolution | open => fixed |
2019-05-02 08:33 | jfudickar | Assigned To | => jfudickar |