mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 08:51:04 +02:00
Merge branch 'cst-next' into nmp-cst-next
Conflicts: src/gui/dboxinfo.cpp
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2175a0f327
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2016-01-29 (Fri, 29 Jan 2016)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -317,7 +317,6 @@ void CDBoxInfoWidget::paint()
|
||||
nameWidth += diff;
|
||||
}
|
||||
height = h_max(height, 0);
|
||||
x = getScreenStartX(width);
|
||||
y = getScreenStartY(height);
|
||||
|
||||
// fprintf(stderr, "CDBoxInfoWidget::CDBoxInfoWidget() x = %d, y = %d, width = %d height = %d\n", x, y, width, height);
|
||||
@@ -348,15 +347,23 @@ void CDBoxInfoWidget::paint()
|
||||
title += ": ";
|
||||
title + cpuinfo["machine"];
|
||||
}
|
||||
char ss[17];
|
||||
sprintf(ss, "%016llx", cs_get_serial());
|
||||
title += ", S/N ";
|
||||
title += ss;
|
||||
#endif
|
||||
title += ": ";
|
||||
title += g_info.hw_caps->boxvendor;
|
||||
title += " ";
|
||||
title += g_info.hw_caps->boxname;
|
||||
#if HAVE_COOL_HARDWARE
|
||||
title += " - ";
|
||||
title += " (";
|
||||
title += g_info.hw_caps->boxarch;
|
||||
title += ") - ";
|
||||
title += g_info.hw_caps->frontend;
|
||||
#endif
|
||||
width = max(width, g_Font[SNeutrinoSettings::FONT_TYPE_MENU_TITLE]->getRenderWidth(title, true) + 50);
|
||||
x = getScreenStartX(width);
|
||||
|
||||
CComponentsHeader header(x, ypos, width, hheight, title, NEUTRINO_ICON_SHELL);
|
||||
header.paint(CC_SAVE_SCREEN_NO);
|
||||
|
@@ -74,7 +74,7 @@ main.info=Info
|
||||
main.info_desc=Information über das yWeb, Version
|
||||
main.live_tv_desc=LiveTV
|
||||
main.live_tv_popup_desc=LiveTV Popup
|
||||
main.remote_full_desc=Fernbedinung & OSD Vollbild
|
||||
main.remote_full_desc=Fernbedienung & OSD Vollbild
|
||||
main.stream_to_vlc_client_desc=Live TV direkt im VLC Client
|
||||
main.version=Version
|
||||
|
||||
@@ -85,7 +85,7 @@ bc.menue.control_desc=Box Funktionen (Neustart, Aufnahmemodus, ...)
|
||||
bc.menue.control=Steuerung
|
||||
bc.menue.messages_desc=Nachricht an die Box senden
|
||||
bc.menue.messages=Nachrichten
|
||||
bc.menue.remote_desc=Fernbedinung
|
||||
bc.menue.remote_desc=Fernbedienung
|
||||
bc.menue.remote=Fernbedienung
|
||||
bc.menue.lcd_screenshot_desc=LCD Screenshot erstellen
|
||||
bc.menue.lcd_screenshot=LCD Screenshot
|
||||
|
@@ -528,10 +528,14 @@ std::string CyParser::YWeb_cgi_cmd(CyhookHandler *hh, std::string ycmd) {
|
||||
} else
|
||||
yresult = "ycgi-type unknown";
|
||||
} else if (!hh->ParamList[ycmd].empty()) {
|
||||
#if 0
|
||||
if ((hh->ParamList[ycmd]).find("script") == std::string::npos)
|
||||
yresult = hh->ParamList[ycmd];
|
||||
else
|
||||
yresult = "<!--Not Allowed script in " + ycmd + " -->";
|
||||
#else
|
||||
yresult = hh->ParamList[ycmd];
|
||||
#endif
|
||||
}
|
||||
|
||||
return yresult;
|
||||
|
Reference in New Issue
Block a user