Advertisement
Guest User

Untitled

a guest
Oct 1st, 2010
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 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="l0calh0st">
  7. <Settings>
  8. <SiteName>VIPER</SiteName>
  9. <BaseUrl>http://www.viprasys.org/vb</BaseUrl>
  10. <TopicsPerPage>20</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>vBulletin 4.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>true</AllowRedirects>
  21. <UseFriendlyLinks>false</UseFriendlyLinks>
  22. </Settings>
  23.  
  24. <Sections>
  25. <Section title="24" id="24" />
  26.  
  27. </Sections>
  28.  
  29. <!-- Edit this when the site requires custom parsing -->
  30. <Code>
  31. <![CDATA[
  32.  
  33. protected override void Init()
  34. {
  35. base.Init();
  36. }
  37.  
  38. public override void LoginUser(string username, string password)
  39. {
  40. base.LoginUser(username, password);
  41. }
  42.  
  43. public override void LogoutUser()
  44. {
  45. base.LogoutUser();
  46. }
  47.  
  48. public override string[] GetTopicUrls(string html)
  49. {
  50. return base.GetTopicUrls(html);
  51. }
  52.  
  53. public override SiteTopic GetTopic(string url)
  54. {
  55. return base.GetTopic(url);
  56. }
  57.  
  58. public override SiteTopic GetTopic(int topicId)
  59. {
  60. return base.GetTopic(topicId);
  61. }
  62.  
  63. public override HttpWebRequest GetPage(int sectionId, int page, int siteTopicsPerPage)
  64. {
  65. return base.GetPage(sectionId, page, siteTopicsPerPage);
  66. }
  67.  
  68. public override void MakeReady(int sectionId)
  69. {
  70. base.MakeReady(sectionId);
  71. }
  72.  
  73. ]]>
  74. </Code>
  75. </SiteReader>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement