mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-04 15:15:01 +01:00
Fixes for lotrfanfiction.com.
This commit is contained in:
parent
3c441e0533
commit
55eb39e8b2
4 changed files with 2 additions and 6 deletions
|
|
@ -724,7 +724,6 @@ cover_exclusion_regexp:/images/.*?ribbon.gif
|
|||
bulk_load:true
|
||||
|
||||
extra_valid_entries: readings
|
||||
extra_titlepage_entries: readings
|
||||
readings_label: Readings
|
||||
|
||||
[dark-solace.org]
|
||||
|
|
@ -1053,7 +1052,6 @@ extra_titlepage_entries: eroticatags
|
|||
bulk_load:true
|
||||
|
||||
extra_valid_entries: readings
|
||||
extra_titlepage_entries: readings
|
||||
readings_label: Readings
|
||||
|
||||
## Site dedicated to these categories/characters/ships
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class TheLOTRFanFictionSiteAdapter(BaseEfictionAdapter):
|
|||
|
||||
@classmethod
|
||||
def getDateFormat(self):
|
||||
return "%m/%d/%y"
|
||||
return "%d/%m/%y"
|
||||
|
||||
def getClass():
|
||||
return TheLOTRFanFictionSiteAdapter
|
||||
|
|
|
|||
|
|
@ -389,7 +389,7 @@ class BaseEfictionAdapter(BaseSiteAdapter):
|
|||
|
||||
## strip whitespace
|
||||
key = key.strip()
|
||||
valueStr = valueStr.strip()
|
||||
valueStr = stripHTML(valueStr)
|
||||
|
||||
self.handleMetadataPair(key, valueStr)
|
||||
|
||||
|
|
|
|||
|
|
@ -700,7 +700,6 @@ cover_exclusion_regexp:/images/.*?ribbon.gif
|
|||
bulk_load:true
|
||||
|
||||
extra_valid_entries: readings
|
||||
extra_titlepage_entries: readings
|
||||
readings_label: Readings
|
||||
|
||||
[dark-solace.org]
|
||||
|
|
@ -1047,7 +1046,6 @@ extra_titlepage_entries: eroticatags
|
|||
bulk_load:true
|
||||
|
||||
extra_valid_entries: readings
|
||||
extra_titlepage_entries: readings
|
||||
readings_label: Readings
|
||||
|
||||
## Site dedicated to these categories/characters/ships
|
||||
|
|
|
|||
Loading…
Reference in a new issue