mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-09 05:21:13 +02:00
Correct getSiteExampleURLs method def--it's a classmethod.
This commit is contained in:
parent
3b62e77c01
commit
5de217a0e3
101 changed files with 101 additions and 101 deletions
|
|
@ -53,7 +53,7 @@ class AdAstraFanficComSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.adastrafanfic.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class ArchiveOfOurOwnOrgAdapter(BaseSiteAdapter):
|
|||
return 'archiveofourown.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/works/123456 http://"+self.getSiteDomain()+"/collections/Some_Archive/works/123456 http://"+self.getSiteDomain()+"/works/123456/chapters/78901"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class ArchiveSkyeHawkeComAdapter(BaseSiteAdapter):
|
|||
return ['archive.skyehawke.com','www.skyehawke.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://archive.skyehawke.com/story.php?no=1234 http://www.skyehawke.com/archive/story.php?no=1234 http://skyehawke.com/archive/story.php?no=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class AshwinderSycophantHexComAdapter(BaseSiteAdapter):
|
|||
return 'ashwinder.sycophanthex.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class Asr3SlashzoneOrgAdapter(BaseSiteAdapter):
|
|||
return 'asr3.slashzone.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/archive/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ class BdsmGeschichtenAdapter(BaseSiteAdapter):
|
|||
return ['www.bdsm-geschichten.net', 'www.bdsm-geschichten.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.bdsm-geschichten.net/title-of-story-1 http://bdsm-geschichten.net/title-of-story-1"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ class BloodTiesFansComAdapter(BaseSiteAdapter): # XXX
|
|||
return 'bloodties-fans.com' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fiction/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class BuffyNFaithNetAdapter(BaseSiteAdapter):
|
|||
self.opener.addheaders.append(('Referer', 'http://'+self.getSiteDomain()+'/'))
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfictions/index.php?act=vie&id=1234 http://buffynfaith.net/fanfictions/index.php?act=ovr&id=1234 http://buffynfaith.net/fanfictions/index.php?act=vie&id=1234&ch=2"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class CastleFansOrgAdapter(BaseSiteAdapter): # XXX
|
|||
return 'castlefans.org' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfic/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class ChaosSycophantHexComAdapter(BaseSiteAdapter):
|
|||
return 'chaos.sycophanthex.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ class CheckmatedComAdapter(BaseSiteAdapter):
|
|||
return 'www.checkmated.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/story.php?story=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class DarkSolaceOrgAdapter(BaseSiteAdapter):
|
|||
return ['www.dark-solace.org','dark-solace.org']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/elysian/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class DestinysGatewayComAdapter(BaseSiteAdapter):
|
|||
return 'www.destinysgateway.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ class DokugaComAdapter(BaseSiteAdapter):
|
|||
return 'www.dokuga.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfiction/story/1234/1 http://"+self.getSiteDomain()+"/spark/story/1234/1"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class DotMoonNetAdapter(BaseSiteAdapter):
|
|||
return 'www.dotmoon.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/library_view.php?storyid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class DracoAndGinnyComAdapter(BaseSiteAdapter):
|
|||
return 'www.dracoandginny.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class DramioneOrgAdapter(BaseSiteAdapter):
|
|||
return 'dramione.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class EfictionEstelielDeAdapter(BaseSiteAdapter):
|
|||
return 'efiction.esteliel.de'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class EFPFanFicNet(BaseSiteAdapter):
|
|||
return 'www.efpfanfic.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class ErosnSapphoSycophantHexComAdapter(BaseSiteAdapter):
|
|||
return 'erosnsappho.sycophanthex.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class FanFictionNetSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.fanfiction.net','m.fanfiction.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "https://www.fanfiction.net/s/1234/1/ https://www.fanfiction.net/s/1234/12/ http://www.fanfiction.net/s/1234/1/Story_Title http://m.fanfiction.net/s/1234/1/"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ class FanFiktionDeAdapter(BaseSiteAdapter):
|
|||
return 'www.fanfiktion.de'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/s/46ccbef30000616306614050 http://"+self.getSiteDomain()+"/s/46ccbef30000616306614050/1 http://"+self.getSiteDomain()+"/s/46ccbef30000616306614050/1/story-name"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class FicBookNetAdapter(BaseSiteAdapter):
|
|||
return 'www.ficbook.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/readfic/12345 http://"+self.getSiteDomain()+"/readfic/93626/246417#part_content"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class FictionAlleyOrgSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.fictionalley.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/authors/drt/DA.html http://"+self.getSiteDomain()+"/authors/drt/JOTP01a.html"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class FictionPadSiteAdapter(BaseSiteAdapter):
|
|||
return 'fictionpad.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "https://fictionpad.com/author/Author/stories/1234/Some-Title"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ class FictionPressComSiteAdapter(FanFictionNetSiteAdapter):
|
|||
return ['www.fictionpress.com','m.fictionpress.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "https://www.fictionpress.com/s/1234/1/ https://www.fictionpress.com/s/1234/12/ http://www.fictionpress.com/s/1234/1/Story_Title http://m.fictionpress.com/s/1234/1/"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class FicwadComSiteAdapter(BaseSiteAdapter):
|
|||
return 'ficwad.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://ficwad.com/story/1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class FimFictionNetSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.fimfiction.net','mobile.fimfiction.net', 'www.fimfiction.com', 'mobile.fimfiction.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.fimfiction.net/story/1234/story-title-here http://www.fimfiction.net/story/1234/ http://www.fimfiction.com/story/1234/1/ http://mobile.fimfiction.net/story/1234/1/story-title-here/chapter-title-here"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class FineStoriesComAdapter(BaseSiteAdapter):
|
|||
return 'finestories.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/s/1234 http://"+self.getSiteDomain()+"/s/1234:4010 http://"+self.getSiteDomain()+"/library/storyInfo.php?id=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class GrangerEnchantedCom(BaseSiteAdapter):
|
|||
return ['grangerenchanted.com','malfoymanor.grangerenchanted.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://grangerenchanted.com/enchant/viewstory.php?sid=1234 http://malfoymanor.grangerenchanted.com/themanor/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ class HarryPotterFanFictionComSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.harrypotterfanfiction.com','harrypotterfanfiction.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.harrypotterfanfiction.com/viewstory.php?psid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class HennethAnnunNetAdapter(BaseSiteAdapter):
|
|||
return 'www.henneth-annun.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/stories/chapter.cfm?stid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class HLFictionNetAdapter(BaseSiteAdapter):
|
|||
return 'hlfiction.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class HPFandomNetAdapterAdapter(BaseSiteAdapter): # XXX
|
|||
return 'www.hpfandom.net' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/eff/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class HPFanficArchiveComAdapter(BaseSiteAdapter):
|
|||
return 'www.hpfanficarchive.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/stories/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class IkEternalNetAdapter(BaseSiteAdapter):
|
|||
return 'www.ik-eternal.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class ImagineEFicComAdapter(BaseSiteAdapter):
|
|||
return 'imagine.e-fic.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class InDeathNetAdapter(BaseSiteAdapter):
|
|||
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/blog/archive/123-story-in-death/"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class KSArchiveComAdapter(BaseSiteAdapter): # XXX
|
|||
return 'ksarchive.com' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class LibraryOfMoriaComAdapter(BaseSiteAdapter):
|
|||
return 'www.libraryofmoria.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/a/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ class LiteroticaSiteAdapter(BaseSiteAdapter):
|
|||
'other.i.literotica.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.literotica.com/s/story-title https://www.literotica.com/s/story-title http://portuguese.literotica.com/s/story-title http://german.literotica.com/s/story-title"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class LumosSycophantHexComAdapter(BaseSiteAdapter):
|
|||
return 'lumos.sycophanthex.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class MediaMinerOrgSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.mediaminer.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfic/view_st.php/123456 http://"+self.getSiteDomain()+"/fanfic/view_ch.php/1234123/123444#fic_c"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class MerlinFicDtwinsCoUk(BaseSiteAdapter):
|
|||
return 'merlinfic.dtwins.co.uk'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class MidnightwhispersCaAdapter(BaseSiteAdapter): # XXX
|
|||
return 'www.midnightwhispers.ca' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ class MuggleNetComAdapter(BaseSiteAdapter): # XXX
|
|||
return ['fanfiction.mugglenet.com','fanfic.mugglenet.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class NationalLibraryNetAdapter(BaseSiteAdapter):
|
|||
return ['www.national-library.net','national-library.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
# ONLY the stories archived on or after June 17, 2006 and that are hosted on the website:
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?storyid=1234"
|
||||
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class NCISFicComAdapter(BaseSiteAdapter):
|
|||
return ['www.ncisfic.com','ncisfic.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?storyid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class NCISFictionNetAdapter(BaseSiteAdapter):
|
|||
return ['www.ncisfiction.net','www.ncisfiction.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/story.php?stid=01234 http://"+self.getSiteDomain()+"/chapters.php?stid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class NetRaptorOrgAdapter(BaseSiteAdapter):
|
|||
return 'netraptor.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfiction/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class NfaCommunityComAdapter(BaseSiteAdapter): # XXX
|
|||
return 'nfacommunity.com' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class NHAMagicalWorldsUsAdapter(BaseSiteAdapter):
|
|||
return 'nha.magical-worlds.us'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class NickAndGregNetAdapter(BaseSiteAdapter):
|
|||
return 'www.nickandgreg.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/desert_archive/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class OcclumencySycophantHexComAdapter(BaseSiteAdapter):
|
|||
return 'occlumency.sycophanthex.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class OneDirectionFanfictionComAdapter(BaseSiteAdapter):
|
|||
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class PhoenixSongNetAdapter(BaseSiteAdapter):
|
|||
return 'www.phoenixsong.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfiction/story/1234/"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ class PommeDeSangComAdapter(BaseSiteAdapter):
|
|||
return 'pommedesang.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/efiction/viewstory.php?sid=1234 http://"+self.getSiteDomain()+"/sds/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class PonyFictionArchiveNetAdapter(BaseSiteAdapter):
|
|||
return ['www.ponyfictionarchive.net','ponyfictionarchive.net','explicit.ponyfictionarchive.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234 http://explicit."+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class PortkeyOrgAdapter(BaseSiteAdapter): # XXX
|
|||
return 'fanfiction.portkey.org' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/story/1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class PotionsAndSnitchesNetSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.potionsandsnitches.net','potionsandsnitches.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.potionsandsnitches.net/fanfiction/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class PotterFicsComAdapter(BaseSiteAdapter):
|
|||
return 'www.potterfics.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.potterfics.com/historias/12345 http://www.potterfics.com/historias/12345/capitulo-1 "
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class PotterHeadsAnonymousComAdapter(BaseSiteAdapter):
|
|||
return 'fanfic.potterheadsanonymous.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class PretenderCenterComAdapter(BaseSiteAdapter):
|
|||
return ['www.pretendercentre.com','pretendercentre.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/missingpieces/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class PsychFicComAdapter(BaseSiteAdapter):
|
|||
return 'www.psychfic.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class QafFicComAdapter(BaseSiteAdapter):
|
|||
return 'www.qaf-fic.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/atp/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ class RestrictedSectionOrgSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.restrictedsection.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/story.php?story=1234 http://"+self.getSiteDomain()+"/file.php?file=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class SamDeanArchiveNuAdapter(BaseSiteAdapter):
|
|||
return ['www.samdean.archive.nu','samdean.archive.nu']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class ScarHeadNetAdapter(BaseSiteAdapter):
|
|||
return 'scarhead.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class ScarvesAndCoffeeNetAdapter(BaseSiteAdapter):
|
|||
return 'www.scarvesandcoffee.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class SG1HeliopolisComAdapter(BaseSiteAdapter):
|
|||
return 'sg1-heliopolis.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/archive/viewstory.php?sid=1234 http://"+self.getSiteDomain()+"/adult/viewstory.php?sid=1234 http://"+self.getSiteDomain()+"/atlantis/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class SheppardWeirComAdapter(BaseSiteAdapter): # XXX
|
|||
return 'sheppardweir.com' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfics/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class SimplyUndeniableComAdapter(BaseSiteAdapter):
|
|||
return 'www.simplyundeniable.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class SinfulDesireOrgAdapter(BaseSiteAdapter):
|
|||
return 'www.sinful-desire.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/archive/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class SiyeCoUkAdapter(BaseSiteAdapter): # XXX
|
|||
return ['www.siye.co.uk','siye.co.uk']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/siye/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class SquidgeOrgPejaAdapter(BaseSiteAdapter):
|
|||
return cls.getSiteDomain()+'/peja'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "https://"+self.getSiteDomain()+"/peja/cgi-bin/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class StargateAtlantisOrgAdapter(BaseSiteAdapter):
|
|||
return 'stargate-atlantis.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/fanfics/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class StoriesOfArdaComAdapter(BaseSiteAdapter):
|
|||
return 'www.storiesofarda.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/chapterlistview.asp?SID=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ class StoriesOnlineNetAdapter(BaseSiteAdapter):
|
|||
return 'storiesonline.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/s/1234 http://"+self.getSiteDomain()+"/s/1234:4010"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TenhawkPresentsComSiteAdapter(BaseSiteAdapter):
|
|||
return 'fanfiction.tenhawkpresents.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ class TestSiteAdapter(BaseSiteAdapter):
|
|||
return 'test1.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class TheAlphaGateComAdapter(BaseSiteAdapter):
|
|||
return 'www.thealphagate.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class TheHexFilesNetAdapter(BaseSiteAdapter):
|
|||
return ['www.thehexfiles.net','thehexfiles.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@ class TheHookupZoneNetAdapter(BaseSiteAdapter): # XXX
|
|||
return 'thehookupzone.net' # XXX
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/CriminalMinds/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class TheMapleBookshelfComSiteAdapter(BaseSiteAdapter):
|
|||
return 'themaplebookshelf.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.themaplebookshelf.com/Literati/viewstory.php?sid=227 http://themaplebookshelf.com/Literati/viewstory.php?sid=227&chapter=2"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class TheMasqueNetAdapter(BaseSiteAdapter):
|
|||
return 'themasque.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://themasque.net/wiktt/efiction/viewstory.php?sid=1234 http://themasque.net/efiction/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class ThePetulantPoetessComAdapter(BaseSiteAdapter):
|
|||
return 'www.thepetulantpoetess.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class TheQuidditchPitchOrgAdapter(BaseSiteAdapter): # XXX
|
|||
return ['www.thequidditchpitch.org','thequidditchpitch.org']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ class TheWritersCoffeeShopComSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.thewriterscoffeeshop.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/library/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class TokraFandomnetComAdapter(BaseSiteAdapter):
|
|||
return 'tokra.fandomnet.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ class TolkienFanfictionAdapter(BaseSiteAdapter):
|
|||
return ['tolkienfanfiction.com', 'www.tolkienfanfiction.com']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return 'http://www.tolkienfanfiction.com/Story_Read_Head.php?STid=1034 http://www.tolkienfanfiction.com/Story_Read_Chapter.php?CHid=4945'
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class TrekiverseOrgAdapter(BaseSiteAdapter):
|
|||
return ['trekiverse.org','efiction.trekiverse.org']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/efiction/viewstory.php?sid=1234 http://efiction."+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ class TwistingTheHellmouthSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.tthfanfic.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.tthfanfic.org/Story-1234 http://www.tthfanfic.org/Story-1234/Author+Story+Title.htm http://www.tthfanfic.org/T-99999999/Story-1234-1/Author+Story+Title.htm http://www.tthfanfic.org/story.php?no=12345"
|
||||
|
||||
# http://www.tthfanfic.org/T-999999999999/Story-12345-1/Author+Story+Title.htm
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class TwilightArchivesComAdapter(BaseSiteAdapter):
|
|||
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/read/1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ class TwilightedNetSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.twilighted.net','twilighted.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.twilighted.net/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ class TwiwriteNetSiteAdapter(BaseSiteAdapter):
|
|||
return ['www.twiwrite.net','twiwrite.net']
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://www.twiwrite.net/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ class WalkingThePlankOrgAdapter(BaseSiteAdapter):
|
|||
return 'www.walkingtheplank.org'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/archive/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ class WhoficComSiteAdapter(BaseSiteAdapter):
|
|||
return 'www.whofic.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class WizardTalesNetAdapter(BaseSiteAdapter):
|
|||
return 'www.wizardtales.net'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ class WolverineAndRogueComAdapter(BaseSiteAdapter):
|
|||
return 'www.wolverineandrogue.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/wrfa/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ class WraithBaitComAdapter(BaseSiteAdapter):
|
|||
return 'www.wraithbait.com'
|
||||
|
||||
@classmethod
|
||||
def getSiteExampleURLs(self):
|
||||
def getSiteExampleURLs(cls):
|
||||
return "http://"+self.getSiteDomain()+"/viewstory.php?sid=1234"
|
||||
|
||||
def getSiteURLPattern(self):
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue