|
Bugzilla – Full Text Bug Listing |
| Summary: | Leading "- " in author in change log entry | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE Linux 10.1 | Reporter: | Stefan Hundhammer <shundhammer> |
| Component: | libzypp | Assignee: | Jiri Srain <jsrain> |
| Status: | RESOLVED WONTFIX | QA Contact: | Klaus Kämpf <kkaempf> |
| Severity: | Minor | ||
| Priority: | P5 - None | ||
| Version: | Beta 6 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | SuSE Linux 10.1 | ||
| Whiteboard: | |||
| Found By: | Development | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: | screen shot showing the problem | ||
|
Description
Stefan Hundhammer
2006-03-08 17:51:45 UTC
Check with the "change log" view of yast2-qt-2.13.28 or later. The problem is probably somewhere in zypp/target/rpm/RpmHeader.cc , but I don't know enough of the parsers there to change anything. Created attachment 71941 [details]
screen shot showing the problem
Sample code:
QString YQPkgChangeLogView::changeLogTable( const zypp::Changelog & changeLog ) const
{
QString html;
for ( zypp::Changelog::const_iterator it = changeLog.begin();
it != changeLog.end();
++it )
{
QString changes = htmlEscape( fromUTF8( (*it).text() ) );
changes.replace( "\n", "<br>" );
changes.replace( " ", " " );
html += row(
cell( (*it).date() ) +
cell( (*it).author() ) +
"<td valign=top>" + changes + "</td>" // cell() calls htmlEscape() !
);
}
return html.isEmpty() ? "" : table( html );
}
It's still there (just checked), but it's not that important. I had a look into that already when I reported it, but I don't know enough about that underlying parser to change it, much less this late in the release phase. -> LATER mass reopening all SuSE Linux bugs that are set to REMIND+LATER to change the resolution to WONTFIX (adapting to new policy) mass reopening all SuSE Linux bugs that are set to REMIND+LATER to change the resolution to WONTFIX (adapting to new policy) mass reopening all SuSE Linux bugs that are set to REMIND+LATER to change the resolution to WONTFIX (adapting to new policy) Closing old LATER+REMIND bugs as WONTFIX - if you still plan to work on it, feel free to reopen and set to ASSIGNED. In case the report saw repeated reopen comments, it's due to bugzilla timing out on the huge request ;( |