Advertisement
Guest User

AmaderForum.xml

a guest
Mar 12th, 2010
1,306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.74 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="Ar!yaN">
  7.     <Settings>
  8.         <SiteName>Amader Forum</SiteName>
  9.         <BaseUrl>http://www.amaderforum.com</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 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="English Movies" id="8" />
  26.         <Section title="Movies for FREE [Direct Download]" id="71" />
  27.         <Section title="Music Videos" id="10" />
  28.         <Section title="English music" id="21" />
  29.         <Section title="TV Shows - Download " id="13" />
  30.         <Section title="Anime &amp; Cartoon Zone" id="69" />
  31.         <Section title="Documentaries" id="151" />
  32.         <Section title="Bollywood Zone" id="7" />
  33.         <Section title="Hindi Movies DVD Rips" id="122" />
  34.         <Section title="DVD Releases" id="168" />
  35.         <Section title="Indian TV Shows" id="114" />
  36.         <Section title="Movie Trailers" id="131" />
  37.         <Section title="Hindi Film Video" id="65" />
  38.         <Section title="Download Hindi Songs" id="19" />
  39.         <Section title="English Movies Dubbed in Hindi" id="157" />
  40.         <Section title="International zone" id="156" />
  41.         <Section title="Tollywood Movies - Telugu Cinemalu" id="124" />
  42.         <Section title="Pakistan Zone" id="154" />
  43.         <Section title="Tamil Movie Download" id="146" />
  44.         <Section title="Bangladesh Entertainment" id="116" />
  45.         <Section title="Game Zone" id="40" />
  46.         <Section title="Mobile Zone" id="28" />
  47.         <Section title="Softwares" id="45" />
  48.         <Section title="Non-Windows Stuff" id="61" />
  49.         <Section title="All-In-One (AIO) &amp; Freewares and Betas" id="78" />
  50.         <Section title="eBookz and Tutorialz" id="46" />
  51.         <Section title="Adult Videos" id="50" />
  52.         <Section title="Adult Movies" id="133" />
  53.         <Section title="Desi Videos" id="145" />
  54.         <Section title="Mixed Adult Zone" id="162" />
  55.  
  56.     </Sections>
  57.    
  58.     <!-- Edit this when the site requires custom parsing -->
  59.     <Code>
  60.         <![CDATA[
  61.        
  62.        protected override void Init()
  63.        {
  64.            base.Init();
  65.        }
  66.  
  67.        public override void LoginUser(string username, string password)
  68.        {
  69.            base.LoginUser(username, password);
  70.        }
  71.  
  72.        public override void LogoutUser()
  73.        {
  74.            base.LogoutUser();
  75.        }
  76.  
  77.        public override string[] GetTopicUrls(string html)
  78.        {
  79.            return base.GetTopicUrls(html);
  80.        }
  81.  
  82.        public override SiteTopic GetTopic(string url)
  83.        {
  84.            return base.GetTopic(url);
  85.        }
  86.  
  87.        public override SiteTopic GetTopic(int topicId)
  88.        {
  89.            return base.GetTopic(topicId);
  90.        }
  91.        
  92.        public override HttpWebRequest GetPage(int sectionId, int page, int siteTopicsPerPage)
  93.        {
  94.            return base.GetPage(sectionId, page, siteTopicsPerPage);
  95.        }
  96.  
  97.        public override void MakeReady(int sectionId)
  98.        {
  99.            base.MakeReady(sectionId);
  100.        }
  101.        
  102.        ]]>
  103.     </Code>
  104. </SiteReader>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement