From: <se...@us...> - 2007-03-13 03:38:42
|
Revision: 184 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=184&view=rev Author: sergem1 Date: 2007-03-12 20:38:40 -0700 (Mon, 12 Mar 2007) Log Message: ----------- new page format support Modified Paths: -------------- trunk/plugins/ETVNet/ETVNet/ETVBrowser.cs Modified: trunk/plugins/ETVNet/ETVNet/ETVBrowser.cs =================================================================== --- trunk/plugins/ETVNet/ETVNet/ETVBrowser.cs 2007-03-11 20:43:19 UTC (rev 183) +++ trunk/plugins/ETVNet/ETVNet/ETVBrowser.cs 2007-03-13 03:38:40 UTC (rev 184) @@ -84,9 +84,10 @@ ); regexArchivedEntries = new Regex( @"<td[^>]*?>\d\d(\d\d-\d\d-\d\d)\s(\d\d:\d\d)</td>\s*" + "\r\n" + @"<td[^>]" - + @"*?>(\d+)</td>\s*" + "\r\n" + @"<td[^>]*?>\s*\[<a\s+href=""([^""]*?)""\s*>" - + @"[^<]*?</a>\]\s*</td>\s*" + "\r\n" + @"<td[^>]*?>.*?<a\s+href=""([^""]*?)""\s" - + @"*>([^<]*?)</a>.*?</td>\s*" + "\r\n" + @"<td[^>]*?>(.*?)</td>" + "\r\n" + @"", + + @"*?>.*?</td>\s*" + "\r\n" + @"<td[^>]*?>(\d+)</td>\s*" + "\r\n" + @"<td[^>]*?>\s*\[<a\s" + + @"+href=""([^""]*?)""\s*>[^<]*?</a>\]\s*</td>\s*<td[^>]*?>.*?<" + + @"a\s+href=""([^""]*?)""\s*>([^<]*?)</a>.*?</td>\s*" + "\r\n" + @"<td[^>]*?" + + @">(.*?)</td>", RegexOptions.IgnoreCase | RegexOptions.Singleline | RegexOptions.CultureInvariant This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |