mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-06 21:28:32 +02:00
- webepg: align new keys/values to the existing keys/values
By courtesy of TangoCash. :) Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
@@ -714,15 +714,15 @@ int CNeutrinoApp::loadSetup(const char * fname)
|
|||||||
g_settings.webtv_xml.push_back(webtv_xml);
|
g_settings.webtv_xml.push_back(webtv_xml);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_settings.web_epg.clear();
|
g_settings.webepg_xml.clear();
|
||||||
int webepg_count = configfile.getInt32("webepg_count", 0);
|
int webepg_count = configfile.getInt32("webepg_xml_count", 0);
|
||||||
if (webepg_count) {
|
if (webepg_count) {
|
||||||
for (int i = 0; i < webepg_count; i++) {
|
for (int i = 0; i < webepg_count; i++) {
|
||||||
std::string k = "webepg_" + to_string(i);
|
std::string k = "webepg_xml_" + to_string(i);
|
||||||
std::string web_epg = configfile.getString(k, "");
|
std::string webepg_xml = configfile.getString(k, "");
|
||||||
if (web_epg.empty())
|
if (webepg_xml.empty())
|
||||||
continue;
|
continue;
|
||||||
g_settings.web_epg.push_back(web_epg);
|
g_settings.webepg_xml.push_back(webepg_xml);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1426,12 +1426,12 @@ void CNeutrinoApp::saveSetup(const char * fname)
|
|||||||
configfile.setInt32 ( "webtv_xml_count", g_settings.webtv_xml.size());
|
configfile.setInt32 ( "webtv_xml_count", g_settings.webtv_xml.size());
|
||||||
|
|
||||||
int webepg_count = 0;
|
int webepg_count = 0;
|
||||||
for (std::list<std::string>::iterator it = g_settings.web_epg.begin(); it != g_settings.web_epg.end(); ++it) {
|
for (std::list<std::string>::iterator it = g_settings.webepg_xml.begin(); it != g_settings.webepg_xml.end(); ++it) {
|
||||||
std::string k = "webepg_" + to_string(webepg_count);
|
std::string k = "webepg_xml_" + to_string(webepg_count);
|
||||||
configfile.setString(k, *it);
|
configfile.setString(k, *it);
|
||||||
webepg_count++;
|
webepg_count++;
|
||||||
}
|
}
|
||||||
configfile.setInt32 ( "webepg_count", g_settings.web_epg.size());
|
configfile.setInt32 ( "webepg_xml_count", g_settings.webepg_xml.size());
|
||||||
|
|
||||||
saveKeys();
|
saveKeys();
|
||||||
|
|
||||||
@@ -2583,7 +2583,7 @@ TIMER_STOP("################################## after all #######################
|
|||||||
delete hintBox;
|
delete hintBox;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (std::list<std::string>::iterator it = g_settings.web_epg.begin(); it != g_settings.web_epg.end(); ++it)
|
for (std::list<std::string>::iterator it = g_settings.webepg_xml.begin(); it != g_settings.webepg_xml.end(); ++it)
|
||||||
g_Sectionsd->readSIfromIPTVXML((*it).c_str());
|
g_Sectionsd->readSIfromIPTVXML((*it).c_str());
|
||||||
|
|
||||||
RealRun();
|
RealRun();
|
||||||
|
@@ -324,7 +324,7 @@ struct SNeutrinoSettings
|
|||||||
|
|
||||||
std::list<std::string> webtv_xml;
|
std::list<std::string> webtv_xml;
|
||||||
std::list<std::string> webradio_xml;
|
std::list<std::string> webradio_xml;
|
||||||
std::list<std::string> web_epg;
|
std::list<std::string> webepg_xml;
|
||||||
|
|
||||||
//personalize
|
//personalize
|
||||||
enum PERSONALIZE_SETTINGS //settings.h
|
enum PERSONALIZE_SETTINGS //settings.h
|
||||||
|
Reference in New Issue
Block a user