mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-06 16:17:56 +01:00
64 lines
2.1 KiB
Python
64 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2011 Fanficdownloader team
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
import ConfigParser
|
|
|
|
# All of the writers(epub,html,txt) and adapters(ffnet,twlt,etc)
|
|
# inherit from Configurable. The config file(s) uses ini format:
|
|
# [sections] with key:value settings.
|
|
#
|
|
# There's a [defaults] section which is overriden by the writer's
|
|
# section [epub], which is overriden by the adapter's section for each
|
|
# site.
|
|
#
|
|
# [defaults]
|
|
# titlepage_entries: category,genre, status
|
|
# [epub]
|
|
# titlepage_entries: category,genre, status,datePublished,dateUpdated,dateCreated
|
|
# [www.whofic.com]
|
|
# titlepage_entries: category,genre, status,dateUpdated,rating
|
|
|
|
class Configurable(object):
|
|
|
|
def __init__(self, config):
|
|
self.config = config
|
|
self.sectionslist = ['defaults']
|
|
|
|
def addConfigSection(self,section):
|
|
self.sectionslist.insert(0,section)
|
|
|
|
def getConfig(self, key):
|
|
val = ""
|
|
for section in self.sectionslist:
|
|
try:
|
|
val = self.config.get(section,key)
|
|
if val and val.lower() == "false":
|
|
val = False
|
|
#print "getConfig(%s)=[%s]%s" % (key,section,val)
|
|
return val
|
|
except (ConfigParser.NoOptionError, ConfigParser.NoSectionError), e:
|
|
pass
|
|
|
|
return val
|
|
|
|
# split and strip each.
|
|
def getConfigList(self, key):
|
|
vlist = self.getConfig(key).split(',')
|
|
vlist = [ v.strip() for v in vlist ]
|
|
#print "vlist("+key+"):"+str(vlist)
|
|
return vlist
|
|
|