RSS Feeds
#1
any chance of adding an option to completely disable rss feeds without the need to remove them from a skin xml file?

**edit**

i was looking over the source and sorta figured it could be done in the guicontrolfactoy.cpp by having cguicontrol* cguicontrolfactory::create return null within the rss creation block if some global boolean setting is true. this would stop all rss controls from being built.

something like this:

if (strtype=="rss")
{
 if (g_stsettings.m_bdisablerss)
 {
   return null;
 }

 // else create the cguirsscontrol* pcontrol as normal
}

the problem is that i'm not sure how to implement a new settings variable and make it a checkmark control type.  i guess an option like this would be configuratble thru guiwindowsettingsuserinterface.cpp.
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
Reply
#2
i got this implemented as a new save-able setting. see patch 1013484 on sourceforge. (you need to restart after disabling rss feeds because this actually stops the creation of those controls when the system loads the skin.)
Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
Reply

Logout Mark Read Team Forum Stats Members Help
RSS Feeds0