set description
This commit is contained in:
parent
68ccd1b6d9
commit
dc706132ab
6 changed files with 7 additions and 0 deletions
|
|
@ -27,6 +27,7 @@ class AuMBackend(Backend, ICapMessages, ICapMessagesReply):
|
||||||
EMAIL = 'romain@peerfuse.org'
|
EMAIL = 'romain@peerfuse.org'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
DESCRIPTION = "French dating website"
|
||||||
|
|
||||||
def iter_messages(self, thread=None):
|
def iter_messages(self, thread=None):
|
||||||
return dict().iteritems()
|
return dict().iteritems()
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ class BNPorcBackend(Backend, ICapBank):
|
||||||
EMAIL = 'romain@peerfuse.org'
|
EMAIL = 'romain@peerfuse.org'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
DESCRIPTION = 'BNP Paribas french bank\' website'
|
||||||
|
|
||||||
CONFIG = {'login': Backend.ConfigField(description='Account ID'),
|
CONFIG = {'login': Backend.ConfigField(description='Account ID'),
|
||||||
'password': Backend.ConfigField(description='Password of account', is_masked=True)
|
'password': Backend.ConfigField(description='Password of account', is_masked=True)
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ class CanalTPBackend(Backend, ICapTravel):
|
||||||
EMAIL = 'romain@peerfuse.org'
|
EMAIL = 'romain@peerfuse.org'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
DESCRIPTION = "French trains"
|
||||||
|
|
||||||
def iter_station_search(self, pattern):
|
def iter_station_search(self, pattern):
|
||||||
canaltp = CanalTP()
|
canaltp = CanalTP()
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ class CragrBackend(Backend, ICapBank):
|
||||||
MAINTAINER = 'Romain Bignon'
|
MAINTAINER = 'Romain Bignon'
|
||||||
EMAIL = 'romain@peerfuse.org'
|
EMAIL = 'romain@peerfuse.org'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
|
DESCRIPTION = 'Credit Agricole french bank\'s website'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
|
||||||
CONFIG = {'login': Backend.ConfigField(description='Account ID'),
|
CONFIG = {'login': Backend.ConfigField(description='Account ID'),
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,8 @@ class DLFPBackend(Backend, ICapMessages, ICapMessagesReply, ICapUpdatable):
|
||||||
EMAIL = 'romain@peerfuse.org'
|
EMAIL = 'romain@peerfuse.org'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
DESCRIPTION = "Da Linux French Page"
|
||||||
|
|
||||||
CONFIG = {'username': Backend.ConfigField(description='Username on website'),
|
CONFIG = {'username': Backend.ConfigField(description='Username on website'),
|
||||||
'password': Backend.ConfigField(description='Password of account', is_masked=True),
|
'password': Backend.ConfigField(description='Password of account', is_masked=True),
|
||||||
'get_news': Backend.ConfigField(default=True, description='Get newspapers'),
|
'get_news': Backend.ConfigField(default=True, description='Get newspapers'),
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ class TransilienBackend(Backend, ICapTravel):
|
||||||
EMAIL = 'juke@free.fr'
|
EMAIL = 'juke@free.fr'
|
||||||
VERSION = '1.0'
|
VERSION = '1.0'
|
||||||
LICENSE = 'GPLv3'
|
LICENSE = 'GPLv3'
|
||||||
|
DESCRIPTION = "Transports in Paris"
|
||||||
|
|
||||||
def iter_station_search(self, pattern):
|
def iter_station_search(self, pattern):
|
||||||
pattern = pattern.lower()
|
pattern = pattern.lower()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue