View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0003299 | JEDI VCL | 00 JVCL Components | public | 2005-11-03 12:19 | 2006-04-05 01:23 |
| Reporter | dsiders | Assigned To | obones | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 3.00 | ||||
| Target Version | Fixed in Version | 3.30 | |||
| Summary | 0003299: TJvMarkupViewer.ParseHtml error in nested ParseTag | ||||
| Description | The parse tag procedure in TJvMarkupViewer.ParseHtml contains an error. // handle LTag LTag := LowerCase(LTag); ... if LTag = 'I' then begin // italic PushTag; FStyle := FStyle + [fsItalic]; end else if LTag = '/I' then begin // cancel italic FStyle := FStyle - [fsItalic]; PopTag; end ... As you can see, neither nor tagsd are handled properly because the value in the comparision is uppercase while the tag is lowercase. | ||||
| Additional Information | Line 321 in JvMarkupViewer.pas | ||||
| Tags | No tags attached. | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2005-11-03 12:19 | dsiders | New Issue | |
| 2006-04-04 05:09 | obones | Note Added: 0008867 | |
| 2006-04-04 05:09 | obones | Status | new => confirmed |
| 2006-04-05 01:23 | obones | Status | confirmed => resolved |
| 2006-04-05 01:23 | obones | Resolution | open => fixed |
| 2006-04-05 01:23 | obones | Assigned To | => obones |
| 2006-04-05 01:23 | obones | Note Added: 0008944 |