Hello Alan,
since I have not found another way to contact you I will try it this way.
codemasters has changed the location of the stylesheet for the lotro news, reason for this is that they no longer run the DDO server and you had the DDO stylesheet hardcoded in your source:
http://ddoeugls.com/News/style.css
it now is:
http://lotroeugls.com/News/style.css
however, the stylesheet is also given to you in the xml file you get, I made some changes to MainWindow.py in the GetNews(self) to get that working:
links = doc.getElementsByTagName("link")
for link in links:
if node.nodeType == node.ELEMENT_NODE:
href = link.attributes["href"]
HTMLTEMPLATE = "<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\""
HTMLTEMPLATE += href.value
HTMLTEMPLATE += "\"/><base target=\"_blank\"/></head><body><div class=\"launcherNewsItemsContainer\">"
I have no idea if this works with lotro US but I presume they also send the stylesheet in their xml file, I leave it up to you if you want to use the above to change the hardcoded url you use.
Regards,
Alex