def eplist(sender, pageUrl):<br />
dir = MediaContainer(title2=sender.itemTitle)<br />
content = XML.ElementFromURL(pageUrl, True)<br />
page = HTTP.Request(pageUrl)<br />
for item in page:<br />
titleUrl=re.compile('index.jhtml?episodeId="(.+?)",').findall(item)<br />
Log(titleUrl)<br />
thumb=re.compile('thumbNail: "(.+?)",').findall(item)<br />
title=re.compile('title: "(.+?)",').findall(item)<br />
dir.Append(WebVideoItem(titleUrl, title=title, thumb=thumb))<br />
return dir
Any regex wizards out there want to give me a hint as to why none of my regex variables have any values? Once this is done Plex will have great syndication episodes.
If you are still having issues with Regex, I have a TVLand plugin which is currently working in a beta version. I began working on the plugin back in March but have not had any time recently to continue it. The progess of my plugin thus far allows for the full episodes to be played, I haven’t however worked on getting any of the clips to play. When I get home this afternoon I will upload the progress that I have made and maybe you can incorporate into yours to continue with development. I just don’t have the time.