mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
controlapi.cpp: add getubouquetsxml
Origin commit data
------------------
Branch: ni/coolstream
Commit: 11eac1f091
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2015-05-10 (Sun, 10 May 2015)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -158,6 +158,7 @@ const CControlAPI::TyCgiCall CControlAPI::yCgiCallList[]=
|
|||||||
// channel & bouquet & epg & zapping handling
|
// channel & bouquet & epg & zapping handling
|
||||||
{"getservicesxml", &CControlAPI::GetServicesxmlCGI,""},
|
{"getservicesxml", &CControlAPI::GetServicesxmlCGI,""},
|
||||||
{"getbouquetsxml", &CControlAPI::GetBouquetsxmlCGI,""},
|
{"getbouquetsxml", &CControlAPI::GetBouquetsxmlCGI,""},
|
||||||
|
{"getubouquetsxml", &CControlAPI::GetUBouquetsxmlCGI,""},
|
||||||
{"channellist", &CControlAPI::ChannellistCGI, "text/plain"},
|
{"channellist", &CControlAPI::ChannellistCGI, "text/plain"},
|
||||||
{"logolist", &CControlAPI::LogolistCGI, "text/plain"},
|
{"logolist", &CControlAPI::LogolistCGI, "text/plain"},
|
||||||
{"getbouquet", &CControlAPI::GetBouquetCGI, "+xml"},
|
{"getbouquet", &CControlAPI::GetBouquetCGI, "+xml"},
|
||||||
@@ -567,6 +568,13 @@ void CControlAPI::GetBouquetsxmlCGI(CyhookHandler *hh)
|
|||||||
{
|
{
|
||||||
hh->SendFile(CONFIGDIR "/zapit/bouquets.xml");
|
hh->SendFile(CONFIGDIR "/zapit/bouquets.xml");
|
||||||
}
|
}
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// send ubouquets.xml
|
||||||
|
void CControlAPI::GetUBouquetsxmlCGI(CyhookHandler *hh)
|
||||||
|
{
|
||||||
|
hh->SendFile(CONFIGDIR "/zapit/ubouquets.xml");
|
||||||
|
}
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// get actual channel_id
|
// get actual channel_id
|
||||||
|
@@ -70,6 +70,7 @@ private:
|
|||||||
void GetTimeCGI(CyhookHandler *hh);
|
void GetTimeCGI(CyhookHandler *hh);
|
||||||
void GetServicesxmlCGI(CyhookHandler *hh);
|
void GetServicesxmlCGI(CyhookHandler *hh);
|
||||||
void GetBouquetsxmlCGI(CyhookHandler *hh);
|
void GetBouquetsxmlCGI(CyhookHandler *hh);
|
||||||
|
void GetUBouquetsxmlCGI(CyhookHandler *hh);
|
||||||
void GetChannel_IDCGI(CyhookHandler *hh);
|
void GetChannel_IDCGI(CyhookHandler *hh);
|
||||||
void GetTPChannel_IDCGI(CyhookHandler *hh);
|
void GetTPChannel_IDCGI(CyhookHandler *hh);
|
||||||
void MessageCGI(CyhookHandler *hh);
|
void MessageCGI(CyhookHandler *hh);
|
||||||
|
Reference in New Issue
Block a user