Advertisement
Guest User

HD-BB Plugin for SharpLeech 2.0.0 ALPHA

a guest
Apr 18th, 2010
836
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2.  
  3. <!-- SharpLeech 2.x.x SiteReader Plugin -->
  4.  
  5. <!-- Version MUST be in x.x.x.x format! -->
  6. <SiteReader pluginVersion="2.0.0.0" pluginAuthor="Last Word">
  7. <Settings>
  8. <SiteName>HD-BB</SiteName>
  9. <BaseUrl>http://hd-bb.org</BaseUrl>
  10. <TopicsPerPage>40</TopicsPerPage>
  11.  
  12. <!-- Supported type values are: IP.Board 3.x.x, IP.Board 2.x.x,
  13. vBulletin 4.x.x, vBulletin 3.x.x, phpBB 3.x.x, phpBB 2.x.x -->
  14. <Type>phpBB 3.x.x</Type>
  15.  
  16. <!-- If unsure choose ISO-8859-1. Except for phpBB 3 boards, they use UTF-8 by default. -->
  17. <DefaultEncoding>ISO-8859-1</DefaultEncoding>
  18.  
  19. <!-- Set to true if the site uses SEO urls, otherwise false. -->
  20. <AllowRedirects>false</AllowRedirects>
  21. <UseFriendlyLinks>false</UseFriendlyLinks>
  22. </Settings>
  23.  
  24. <Sections>
  25. <Section title="m-720p/1080p Movies" id="60" />
  26. <Section title="m-HD Films" id="14" />
  27. <Section title="m-HD TV Shows" id="25" />
  28. <Section title="m-HD Music Videos and Live Concerts" id="52" />
  29. <Section title="720p/1080p Music Videos" id="55" />
  30. <Section title="Live Concerts" id="57" />
  31. <Section title="300MB Encodes" id="65" />
  32. <Section title="300MB DVDRips" id="69" />
  33. <Section title="1080p | 720P TV Shows" id="45" />
  34. <Section title="1080p | 720P Movies" id="36" />
  35.  
  36. <!-- If you have an account with VIP access you can un-comment this (:
  37. <Section title="VIPs &amp; Donators" id="35" />
  38. -->
  39. </Sections>
  40.  
  41. <!-- Edit this when the site requires custom parsing -->
  42. <Code>
  43. <![CDATA[
  44.  
  45. protected override void Init()
  46. {
  47. base.Init();
  48. }
  49.  
  50. public override void LoginUser(string username, string password)
  51. {
  52. base.LoginUser(username, password);
  53. }
  54.  
  55. public override void LogoutUser()
  56. {
  57. base.LogoutUser();
  58. }
  59.  
  60. public override string[] GetTopicUrls(string html)
  61. {
  62. return base.GetTopicUrls(html);
  63. }
  64.  
  65. public override SiteTopic GetTopic(string url)
  66. {
  67. return base.GetTopic(url);
  68. }
  69.  
  70. public override SiteTopic GetTopic(int topicId)
  71. {
  72. return base.GetTopic(topicId);
  73. }
  74.  
  75. public override HttpWebRequest GetPage(int sectionId, int page, int siteTopicsPerPage)
  76. {
  77. return base.GetPage(sectionId, page, siteTopicsPerPage);
  78. }
  79.  
  80. public override void MakeReady(int sectionId)
  81. {
  82. base.MakeReady(sectionId);
  83. }
  84.  
  85. ]]>
  86. </Code>
  87. </SiteReader>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement