mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-17 02:13:41 +02:00
Merge branch 'uncool/dvbsi++' commit '7ea3a20a808'
...needs buildfixing... Conflicts: data/Makefile.am src/driver/volume.cpp src/gui/infoviewer.cpp src/gui/miscsettings_menu.cpp src/gui/movieplayer.cpp src/gui/scan.cpp src/gui/widget/buttons.cpp src/gui/widget/menue.cpp src/gui/widget/stringinput.cpp src/neutrino.cpp src/nhttpd/tuxboxapi/coolstream/controlapi.cpp src/system/setting_helpers.cpp src/zapit/src/capmt.cpp
This commit is contained in:
@@ -39,6 +39,8 @@
|
||||
#ifdef SCREENSHOT
|
||||
#include <driver/screenshot.h>
|
||||
#endif
|
||||
#include "gui/rc_lock.h"
|
||||
|
||||
// yhttpd
|
||||
#include "yhttpd.h"
|
||||
#include "ytypes_globals.h"
|
||||
@@ -429,12 +431,14 @@ void CControlAPI::StandbyCGI(CyhookHandler *hh)
|
||||
{
|
||||
if (hh->ParamList["1"] == "on") // standby mode on
|
||||
{
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::STANDBY_ON, CEventServer::INITID_HTTPD);
|
||||
if(CNeutrinoApp::getInstance()->getMode() != 4)
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::STANDBY_ON, CEventServer::INITID_HTTPD);
|
||||
hh->SendOk();
|
||||
}
|
||||
else if (hh->ParamList["1"] == "off")// standby mode off
|
||||
{
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::STANDBY_OFF, CEventServer::INITID_HTTPD);
|
||||
if(CNeutrinoApp::getInstance()->getMode() == 4)
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::STANDBY_OFF, CEventServer::INITID_HTTPD);
|
||||
hh->SendOk();
|
||||
}
|
||||
else
|
||||
@@ -452,12 +456,18 @@ void CControlAPI::RCCGI(CyhookHandler *hh)
|
||||
{
|
||||
if (!(hh->ParamList.empty()))
|
||||
{
|
||||
if (hh->ParamList["1"] == "lock") // lock remote control
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::LOCK_RC, CEventServer::INITID_HTTPD);
|
||||
else if (hh->ParamList["1"] == "unlock")// unlock remote control
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::UNLOCK_RC, CEventServer::INITID_HTTPD);
|
||||
else
|
||||
if (hh->ParamList["1"] == "lock"){ // lock remote control
|
||||
if(!CRCLock::locked)
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::LOCK_RC, CEventServer::INITID_HTTPD);
|
||||
}
|
||||
else if (hh->ParamList["1"] == "unlock"){// unlock remote control
|
||||
if(CRCLock::locked)
|
||||
NeutrinoAPI->EventServer->sendEvent(NeutrinoMessages::UNLOCK_RC, CEventServer::INITID_HTTPD);
|
||||
|
||||
}
|
||||
else{
|
||||
hh->SendError();
|
||||
}
|
||||
}
|
||||
hh->SendOk();
|
||||
}
|
||||
@@ -1478,15 +1488,19 @@ void CControlAPI::ZaptoCGI(CyhookHandler *hh)
|
||||
SendAllCurrentVAPid(hh);
|
||||
else if (hh->ParamList["1"] == "stopplayback")
|
||||
{
|
||||
NeutrinoAPI->Zapit->stopPlayBack();
|
||||
NeutrinoAPI->Sectionsd->setPauseScanning(true);
|
||||
if(NeutrinoAPI->Zapit->isPlayBackActive()){
|
||||
NeutrinoAPI->Zapit->stopPlayBack();
|
||||
NeutrinoAPI->Sectionsd->setPauseScanning(true);
|
||||
}
|
||||
hh->SendOk();
|
||||
}
|
||||
else if (hh->ParamList["1"] == "startplayback")
|
||||
{
|
||||
NeutrinoAPI->Zapit->startPlayBack();
|
||||
NeutrinoAPI->Sectionsd->setPauseScanning(false);
|
||||
dprintf("start playback requested..\n");
|
||||
if(!NeutrinoAPI->Zapit->isPlayBackActive()){
|
||||
NeutrinoAPI->Zapit->startPlayBack();
|
||||
NeutrinoAPI->Sectionsd->setPauseScanning(false);
|
||||
dprintf("start playback requested..\n");
|
||||
}
|
||||
hh->SendOk();
|
||||
}
|
||||
else if (hh->ParamList["1"] == "statusplayback")
|
||||
|
@@ -5,9 +5,13 @@
|
||||
//<![CDATA[
|
||||
function rcsim(_key)
|
||||
{
|
||||
if(_key == "KEY_POWER")
|
||||
if(confirm("{=L:bc.control.shutdown.ask=}") != true)
|
||||
if(_key == "KEY_POWER"){
|
||||
var __result = trim(loadSyncURL("/control/standby"));
|
||||
if (__result == "off") {
|
||||
if(confirm("{=L:bc.control.shutdown.ask=}") != true)
|
||||
return;
|
||||
}
|
||||
}
|
||||
loadSyncURL("/control/rcem?"+_key);
|
||||
}
|
||||
//]]>
|
||||
|
@@ -44,6 +44,7 @@ void correctTime(struct tm *zt) {
|
||||
zt->tm_hour = minmax(zt->tm_hour, 0, 23);
|
||||
zt->tm_min = minmax(zt->tm_min, 0, 59);
|
||||
zt->tm_sec = minmax(zt->tm_sec, 0, 59);
|
||||
zt->tm_isdst = -1;
|
||||
}
|
||||
//=============================================================================
|
||||
// Strings
|
||||
|
Reference in New Issue
Block a user