View | Details | Raw Unified | Return to bug 434259
Collapse All | Expand All

(-)qt-pkg/src/YQPkgTechnicalDetailsView.cc (-1 / +1 lines)
Lines 85-91 Link Here
85
QString
85
QString
86
YQPkgTechnicalDetailsView::authorsListCell( ZyppPkg pkg ) const
86
YQPkgTechnicalDetailsView::authorsListCell( ZyppPkg pkg ) const
87
{
87
{
88
    QString html = "<td align=top>";
88
    QString html = "<td align='top'>";
89
    QString line;
89
    QString line;
90
    list<string> authors = pkg->authors();
90
    list<string> authors = pkg->authors();
91
    list<string>::const_iterator it = authors.begin();
91
    list<string>::const_iterator it = authors.begin();
(-)qt-pkg/src/YQPkgSelDescriptionView.cc (-4 / +4 lines)
Lines 132-141 Link Here
132
    }
132
    }
133
133
134
134
135
    QString html = "<table width=100%";
135
    QString html = "<table width='100%'";
136
136
137
    if ( ! YQUI::ui()->usingVisionImpairedPalette() )
137
    if ( ! YQUI::ui()->usingVisionImpairedPalette() )
138
	html += " bgcolor=#C8C8F8";	// or #E0E0F8 (very light blueish grey)
138
	html += " bgcolor='#C8C8F8'";	// or #E0E0F8 (very light blueish grey)
139
139
140
    html += "><tr><td>"
140
    html += "><tr><td>"
141
	+ ( useBigFont ? QString( "<h2>" ) : QString( "<b>" ) )
141
	+ ( useBigFont ? QString( "<h2>" ) : QString( "<b>" ) )
Lines 146-154 Link Here
146
146
147
    if ( ! icon.isEmpty() )
147
    if ( ! icon.isEmpty() )
148
    {
148
    {
149
	html = QString( "<table width=100%><tr>" )
149
	html = QString( "<table width='100%'><tr>" )
150
	    + "<td><img src=\"" + icon + "\"></td>"
150
	    + "<td><img src=\"" + icon + "\"></td>"
151
	    + "<td width=100%>" + html + "</td>"
151
	    + "<td width='100%'>" + html + "</td>"
152
	    + "</tr></table>";
152
	    + "</tr></table>";
153
    }
153
    }
154
154
(-)qt-pkg/src/YQPackageSelectorHelp.cc (-4 / +4 lines)
Lines 136-142 Link Here
136
    QString html = YQPkgTextDialog::htmlHeading( _( "Symbols Overview" ) );
136
    QString html = YQPkgTextDialog::htmlHeading( _( "Symbols Overview" ) );
137
137
138
    html += "<br>";
138
    html += "<br>";
139
    html += "<table border=1>";
139
    html += "<table border='1'>";
140
140
141
    html += symHelp( "noinst.xpm",
141
    html += symHelp( "noinst.xpm",
142
		     // Translators: Package status short (!) description
142
		     // Translators: Package status short (!) description
Lines 224-230 Link Here
224
			    const QString & explanation		)
224
			    const QString & explanation		)
225
{
225
{
226
    QString imgPath = HELPIMAGEDIR;
226
    QString imgPath = HELPIMAGEDIR;
227
    QString html = "<tr valign=top>";
227
    QString html = "<tr valign='top'>";
228
    html += "<td><img src=\"" + imgPath + "/" + imgFileName + "\"></td>"
228
    html += "<td><img src=\"" + imgPath + "/" + imgFileName + "\"></td>"
229
	+ "<td>" + summary 	+ "</td>"
229
	+ "<td>" + summary 	+ "</td>"
230
	+ "<td>" + explanation 	+ "</td>"
230
	+ "<td>" + explanation 	+ "</td>"
Lines 317-325 Link Here
317
			    const QString & summary,
317
			    const QString & summary,
318
			    const QString & explanation		)
318
			    const QString & explanation		)
319
{
319
{
320
    QString html = "<tr valign=top>";
320
    QString html = "<tr valign='top'>";
321
    html +=
321
    html +=
322
	"<td><table bgcolor=#E0E0E0><tr><td align=center><b>"
322
	"<td><table bgcolor='#E0E0E0'><tr><td align='center'><b>"
323
	+ key
323
	+ key
324
	+ "</b></td></tr></table></td>"
324
	+ "</b></td></tr></table></td>"
325
	+ "<td>" + summary 	+ "</td>"
325
	+ "<td>" + summary 	+ "</td>"
(-)qt-pkg/src/YQPkgChangeLogView.cc (-1 / +1 lines)
Lines 87-93 Link Here
87
	html += row(
87
	html += row(
88
		    cell( (*it).date()   ) +
88
		    cell( (*it).date()   ) +
89
		    cell( (*it).author() ) +
89
		    cell( (*it).author() ) +
90
		    "<td valign=top>" + changes + "</td>" // cell() calls htmlEscape() !
90
		    "<td valign='top'>" + changes + "</td>" // cell() calls htmlEscape() !
91
		    );
91
		    );
92
    }
92
    }
93
93

Return to bug 434259