diff --git a/src/nhttpd/tuxboxapi/neutrinoyparser.cpp b/src/nhttpd/tuxboxapi/neutrinoyparser.cpp
index 367e3ee89..60dbac08a 100644
--- a/src/nhttpd/tuxboxapi/neutrinoyparser.cpp
+++ b/src/nhttpd/tuxboxapi/neutrinoyparser.cpp
@@ -126,7 +126,6 @@ const CNeutrinoYParser::TyFuncCall CNeutrinoYParser::yFuncCallList[]=
{"set_timer_form", &CNeutrinoYParser::func_set_timer_form},
{"bouquet_editor_main", &CNeutrinoYParser::func_bouquet_editor_main},
{"set_bouquet_edit_form", &CNeutrinoYParser::func_set_bouquet_edit_form},
-
};
//-------------------------------------------------------------------------
// y-func : dispatching and executing
@@ -400,7 +399,7 @@ std::string CNeutrinoYParser::func_get_bouquets_with_epg(CyhookHandler *hh, std:
if(event.eventID && event.duration > 0)
{
prozent = 100 * (time(NULL) - event.startTime) / event.duration;
- yresult += string_printf("
\n"
+ yresult += string_printf(" | \n"
"\t"
""
" | "
@@ -414,7 +413,7 @@ std::string CNeutrinoYParser::func_get_bouquets_with_epg(CyhookHandler *hh, std:
}
else
{
- yresult += string_printf("\n"
+ yresult += string_printf(" | \n"
"\t"
""
" | "
@@ -424,27 +423,44 @@ std::string CNeutrinoYParser::func_get_bouquets_with_epg(CyhookHandler *hh, std:
);
}
- /* channel name and buttons */
- yresult += string_printf("\n%s %d. %s%s %s\n",
- ((channel->getChannelID() == current_channel) ? "" : " "),
- channel->getChannelID(),
- channel->number /* num + j */,
- channel->getName().c_str(),
- (channel->getServiceType() == ST_NVOD_REFERENCE_SERVICE) ? " (NVOD)" : "",
- channel->getChannelID(),
- channel->getChannelID() & 0xFFFFFFFFFFFFULL,
- (event.eventID ? " " : ""));
+ /* channel name */
+ yresult += " | \n";
if (channel->getChannelID() == current_channel)
- yresult += string_printf("\n ");
+ yresult += "\n";
- yresult += string_printf(" | \n | \n \n");
+ yresult += string_printf(""
+ "%d. %s%s"
+ "\n"
+ , channel->getChannelID()
+ , channel->number
+ , channel->getName().c_str()
+ , (channel->getServiceType() == ST_NVOD_REFERENCE_SERVICE) ? " (NVOD)" : ""
+ );
+
+ yresult += "\n";
+
+ /* buttons */
+ yresult += "\n";
+
+ if (channel->getChannelID() == current_channel)
+ {
+ yresult += "";
+ yresult += " ";
+ yresult += "\n";
+ }
+
+ if (event.eventID)
+ {
+ yresult += string_printf(""
+ " "
+ "\n"
+ , channel->getChannelID()
+ , channel->getChannelID() & 0xFFFFFFFFFFFFULL
+ );
+ }
+
+ yresult += " | \n | \n \n";
if (channel->getServiceType() == ST_NVOD_REFERENCE_SERVICE)
{
diff --git a/src/nhttpd/web/Y_Main.css b/src/nhttpd/web/Y_Main.css
index b392f10e3..085b8d1c2 100644
--- a/src/nhttpd/web/Y_Main.css
+++ b/src/nhttpd/web/Y_Main.css
@@ -860,6 +860,10 @@ a:hover.clistsmall
font-size:10pt;
padding-left: 10px;
}
+.cslider_cell
+{
+ width: 35px;
+}
.cslider
{
height: 10px;
@@ -884,6 +888,10 @@ a:hover.clistsmall
{
background-color: #FAFAFF;
}
+.title_table
+{
+ width: 100%;
+}
/*EPG*/
.epg
{
diff --git a/src/nhttpd/web/Y_Version.txt b/src/nhttpd/web/Y_Version.txt
index f50d6df12..c933d7fa9 100644
--- a/src/nhttpd/web/Y_Version.txt
+++ b/src/nhttpd/web/Y_Version.txt
@@ -1,4 +1,4 @@
-version=2.9.0.33
-date=03.03.2016
+version=2.9.0.34
+date=14.03.2016
type=Release
info=Port CST
| |
|
|