neutrinoyparser: remove hardcoded css from func_get_bouquets_with_epg()

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9800c5fc20
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-02-19 (Sun, 19 Feb 2023)

Origin message was:
------------------
- neutrinoyparser: remove hardcoded css from func_get_bouquets_with_epg()

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2023-02-19 22:30:08 +01:00
parent 3ff251a1f7
commit 3ee0902f36

View File

@@ -563,8 +563,8 @@ std::string CNeutrinoYParser::func_get_bouquets_with_epg(CyhookHandler *hh, std:
}
yresult += string_printf("<tr><td class=\"%cepg\">",classname);
yresult += string_printf("%s&nbsp;<span class='pointer' title='%s'>%s</span>&nbsp;"
"<span style=\"font-size: 8pt; white-space: nowrap\">(%ld {=L:from=} %d {=L:unit.short.minute=}, %d%%)</span>"
yresult += string_printf("%s&nbsp;<span class='event_description' title='%s'>%s</span>&nbsp;"
"<span class='event_duration'>(%ld {=L:from=} %d {=L:unit.short.minute=}, %d%%)</span>"
, timestr.c_str()
, EPGInfoC.c_str()
, event.description.c_str()
@@ -579,7 +579,7 @@ std::string CNeutrinoYParser::func_get_bouquets_with_epg(CyhookHandler *hh, std:
EPGInfoN += epg.info2;
}
timestr = timeString(currentNextInfo.next_zeit.startzeit);
yresult += string_printf("<br />%s&nbsp;<span class='pointer' title='%s'>%s</span>"
yresult += string_printf("<br />%s&nbsp;<span class='event_description' title='%s'>%s</span>"
, timestr.c_str()
, EPGInfoN.c_str()
, currentNextInfo.next_name.c_str());