bump to 0.5
This commit is contained in:
parent
2a1d893f2a
commit
a83a81dde8
51 changed files with 52 additions and 52 deletions
|
|
@ -45,9 +45,9 @@ copyright = u'2010, Romain Bignon, Christophe Benz'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.4'
|
||||
version = '0.5'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.4'
|
||||
release = '0.5'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -134,7 +134,7 @@ if options.xdg:
|
|||
|
||||
setup(
|
||||
name='weboob',
|
||||
version='0.4',
|
||||
version='0.5',
|
||||
description='Weboob, Web Out Of Browsers - development version',
|
||||
author='Romain Bignon',
|
||||
author_email='weboob@weboob.org',
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class AccountListFormatter(IFormatter):
|
|||
|
||||
class Boobank(ReplApplication):
|
||||
APPNAME = 'boobank'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon, Christophe Benz'
|
||||
CAPS = ICapBank
|
||||
EXTRA_FORMATTERS = {'account_list': AccountListFormatter,
|
||||
|
|
|
|||
|
|
@ -121,7 +121,7 @@ class MessagesListFormatter(IFormatter):
|
|||
|
||||
class Boobmsg(ReplApplication):
|
||||
APPNAME = 'boobmsg'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz'
|
||||
CAPS = ICapMessages
|
||||
EXTRA_FORMATTERS = {'msglist': MessagesListFormatter,
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ __all__ = ['Chatoob']
|
|||
|
||||
class Chatoob(ReplApplication):
|
||||
APPNAME = 'chatoob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz'
|
||||
CAPS = ICapChat
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ __all__ = ['Geolooc']
|
|||
|
||||
class Geolooc(ReplApplication):
|
||||
APPNAME = 'geolooc'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapGeolocIp
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ class ProfileFormatter(IFormatter):
|
|||
|
||||
class HaveSex(ReplApplication):
|
||||
APPNAME = 'havesex'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
STORAGE_FILENAME = 'dating.storage'
|
||||
STORAGE = {'optims': {}}
|
||||
|
|
|
|||
|
|
@ -229,7 +229,7 @@ class MasstransitHildon():
|
|||
class Masstransit(BaseApplication):
|
||||
"Application Class"
|
||||
APPNAME = 'masstransit'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Julien Hébert'
|
||||
|
||||
def main(self, argv):
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class MonboobScheduler(Scheduler):
|
|||
|
||||
class Monboob(ReplApplication):
|
||||
APPNAME = 'monboob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CONFIG = {'interval': 300,
|
||||
'domain': 'weboob.example.org',
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from .main_window import MainWindow
|
|||
|
||||
class QBoobMsg(QtApplication):
|
||||
APPNAME = 'qboobmsg'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
|
||||
def main(self, argv):
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from .main_window import MainWindow
|
|||
|
||||
class QHaveSex(QtApplication):
|
||||
APPNAME = 'qhavesex'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
STORAGE_FILENAME = 'dating.storage'
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from .main_window import MainWindow
|
|||
|
||||
class QVideoob(QtApplication):
|
||||
APPNAME = 'qvideoob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CONFIG = {'settings': {'nsfw': 1,
|
||||
'sfw': 1,
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from weboob.tools.application.qt import BackendCfg, QtApplication
|
|||
|
||||
class QWeboobCfg(QtApplication):
|
||||
APPNAME = 'qweboobcfg'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
|
||||
def main(self, argv):
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ class RadioListFormatter(IFormatter):
|
|||
|
||||
class Radioob(ReplApplication):
|
||||
APPNAME = 'radioob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapRadio
|
||||
EXTRA_FORMATTERS = {'radio_list': RadioListFormatter}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ __all__ = ['Traveloob']
|
|||
|
||||
class Traveloob(ReplApplication):
|
||||
APPNAME = 'traveloob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapTravel
|
||||
DEFAULT_FORMATTER = 'table'
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ class VideoListFormatter(IFormatter):
|
|||
|
||||
class Videoob(ReplApplication):
|
||||
APPNAME = 'videoob'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz, Romain Bignon, John Obbele'
|
||||
CAPS = ICapVideo
|
||||
EXTRA_FORMATTERS = {'video_list': VideoListFormatter}
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ template_lookup = TemplateLookup(directories=[os.path.join(os.path.dirname(__fil
|
|||
|
||||
class VideoobWeb(BaseApplication):
|
||||
APPNAME = 'videoob-webserver'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz'
|
||||
CAPS = ICapVideo
|
||||
CONFIG = dict(host='localhost', port=8080)
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ __all__ = ['WebContentEdit']
|
|||
|
||||
class WebContentEdit(ReplApplication):
|
||||
APPNAME = 'webcontentedit'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapContent
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ __all__ = ['WeboobCfg']
|
|||
|
||||
class WeboobCfg(ReplApplication):
|
||||
APPNAME = 'weboob-config'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz, Romain Bignon'
|
||||
COMMANDS_FORMATTERS = {'backends': 'table',
|
||||
'list': 'table',
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ __all__ = ['WeboobCli']
|
|||
|
||||
class WeboobCli(ReplApplication):
|
||||
APPNAME = 'weboob-cli'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
SYNOPSIS = 'Usage: %prog [-dqv] [-b backends] [-cnfs] capability method [arguments..]\n'
|
||||
SYNOPSIS += ' %prog [--help] [--version]'
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ from weboob.tools.application.repl import ReplApplication
|
|||
|
||||
class WeboobDebug(ReplApplication):
|
||||
APPNAME = 'weboobdebug'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Christophe Benz'
|
||||
|
||||
def load_default_backends(self):
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class TorrentListFormatter(IFormatter):
|
|||
|
||||
class Weboorrents(ReplApplication):
|
||||
APPNAME = 'weboorrents'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapTorrent
|
||||
EXTRA_FORMATTERS = {'torrent_list': TorrentListFormatter,
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ __all__ = ['WetBoobs']
|
|||
|
||||
class WetBoobs(ReplApplication):
|
||||
APPNAME = 'wetboobs'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
COPYRIGHT = 'Copyright(C) 2010 Romain Bignon'
|
||||
CAPS = ICapWeather
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class ArteBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'arte'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Arte french TV'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('lang', label='Lang of videos', choices={'fr': 'French', 'de': 'Deutsch', 'en': 'English'}, default='fr'),
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ class AuMBackend(BaseBackend, ICapMessages, ICapMessagesPost, ICapDating, ICapCh
|
|||
NAME = 'aum'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = u"“Adopte un mec” french dating website"
|
||||
CONFIG = ValuesDict(Value('username', label='Username'),
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class BNPorcBackend(BaseBackend, ICapBank):
|
|||
NAME = 'bnporc'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = 'BNP Paribas french bank\' website'
|
||||
CONFIG = ValuesDict(Value('login', label='Account ID'),
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class BouyguesBackend(BaseBackend, ICapMessages, ICapMessagesPost):
|
|||
NAME = 'bouygues'
|
||||
MAINTAINER = 'Christophe Benz'
|
||||
EMAIL = 'christophe.benz@gmail.com'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Bouygues french mobile phone provider'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('login', label='Login'),
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ class BPBackend(BaseBackend, ICapBank):
|
|||
NAME = 'bp'
|
||||
MAINTAINER = 'Nicolas Duhamel'
|
||||
EMAIL = 'nicolas@jombi.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = u'La banque postale, French bank'
|
||||
CONFIG = ValuesDict(Value('login', label='Account ID'),
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class CanalplusBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'canalplus'
|
||||
MAINTAINER = 'Nicolas Duhamel'
|
||||
EMAIL = 'nicolas@jombi.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Canal plus french TV'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('quality', label='Quality of videos', choices=['hd', 'sd'], default='hd'))
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class CanalTPBackend(BaseBackend, ICapTravel):
|
|||
NAME = 'canaltp'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = "French trains"
|
||||
BROWSER = CanalTP
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ class CragrBackend(BaseBackend, ICapBank):
|
|||
NAME = 'cragr'
|
||||
MAINTAINER = 'Xavier Guerrin'
|
||||
EMAIL = 'xavier@tuxfamily.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Credit Agricole french bank\'s website'
|
||||
LICENSE = 'GPLv3'
|
||||
website_choices = OrderedDict([(k, u'%s (%s)' % (v, k)) for k, v in sorted({
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class CreditMutuelBackend(BaseBackend, ICapBank):
|
|||
NAME = 'creditmutuel'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = u'Crédit Mutuel french bank'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('login', label='Account ID', regexp='^\d{1,13}\w$'),
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class DLFPBackend(BaseBackend, ICapMessages, ICapMessagesPost):
|
|||
NAME = 'dlfp'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = "Da Linux French Page"
|
||||
CONFIG = ValuesDict(Value('username', label='Username', regexp='.+'),
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class FourChanBackend(BaseBackend, ICapMessages):
|
|||
NAME = 'fourchan'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = "4chan website"
|
||||
CONFIG = ValuesDict(Value('boards', label='Boards to fetch'))
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class GazelleBackend(BaseBackend, ICapTorrent):
|
|||
NAME = 'gazelle'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'gazelle bittorrent tracker'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('domain', label='Domain (example "ssl.what.cd")'),
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class GeolocIpBackend(BaseBackend, ICapGeolocIp):
|
|||
NAME = 'geolocip'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = u"IP Adresses geolocalisation with the site www.geolocip.com"
|
||||
BROWSER = BaseBrowser
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class InaBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'ina'
|
||||
MAINTAINER = 'Christophe Benz'
|
||||
EMAIL = 'christophe.benz@gmail.com'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'INA french video archives'
|
||||
LICENSE = 'GPLv3'
|
||||
BROWSER = InaBrowser
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class IpinfodbBackend(BaseBackend, ICapGeolocIp):
|
|||
NAME = 'ipinfodb'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = u"IP Adresses geolocalisation with the site ipinfodb.com"
|
||||
BROWSER = BaseBrowser
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class IsohuntBackend(BaseBackend, ICapTorrent):
|
|||
NAME = 'isohunt'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'isohunt.com bittorrent tracker'
|
||||
LICENSE = 'GPLv3'
|
||||
#CONFIG = ValuesDict(Value('domain', label='Domain (example "ssl.what.cd")'),
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class KickassBackend(BaseBackend, ICapTorrent):
|
|||
NAME = 'kickass'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'kickasstorrent.com bittorrent tracker'
|
||||
LICENSE = 'GPLv3'
|
||||
#CONFIG = ValuesDict(Value('domain', label='Domain (example "ssl.what.cd")'),
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class LCLBackend(BaseBackend, ICapBank):
|
|||
NAME = 'lcl'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Le Credit Lyonnais crappy french bank'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('login', label='Account ID', regexp='^\d{1,6}\w$'),
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class NewsfeedBackend(BaseBackend, ICapMessages):
|
|||
NAME = 'newsfeed'
|
||||
MAINTAINER = u"Clément Schreiner"
|
||||
EMAIL = "clemux@clemux.info"
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = "Loads RSS and Atom feeds from any website"
|
||||
LICENSE = "GPLv3"
|
||||
CONFIG = ValuesDict(Value('url', label="Atom/RSS feed's url"))
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class OuiFMBackend(BaseBackend, ICapRadio):
|
|||
NAME = 'ouifm'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = u'The Ouï FM french radio'
|
||||
LICENSE = 'GPLv3'
|
||||
BROWSER = OuiFMBrowser
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ class PiratebayBackend(BaseBackend, ICapTorrent):
|
|||
NAME = 'piratebay'
|
||||
MAINTAINER = 'Julien Veyssier'
|
||||
EMAIL = 'julien.veyssier@aiur.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'the pirate bay bittorrent tracker'
|
||||
LICENSE = 'GPLv3'
|
||||
#CONFIG = ValuesDict(Value('domain', label='Domain (example "ssl.what.cd")'),
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class RedmineBackend(BaseBackend, ICapContent):
|
|||
NAME = 'redmine'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'The Redmine project management web application'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('url', label='URL of the Redmine website'),
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class SfrBackend(BaseBackend, ICapAccount, ICapMessages, ICapMessagesPost):
|
|||
NAME = 'sfr'
|
||||
MAINTAINER = 'Christophe Benz'
|
||||
EMAIL = 'christophe.benz@gmail.com'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'SFR french mobile phone provider'
|
||||
LICENSE = 'GPLv3'
|
||||
CONFIG = ValuesDict(Value('login', label='Login'),
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class TransilienBackend(BaseBackend, ICapTravel):
|
|||
NAME = 'transilien'
|
||||
MAINTAINER = u'Julien Hébert'
|
||||
EMAIL = 'juke@free.fr'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
LICENSE = 'GPLv3'
|
||||
DESCRIPTION = "Transports in Paris"
|
||||
BROWSER = Transilien
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ class YahooBackend(BaseBackend, ICapWeather):
|
|||
NAME = 'yahoo'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Yahoo'
|
||||
LICENSE = 'GPLv3'
|
||||
WEATHER_URL = 'http://weather.yahooapis.com/forecastrss?w=%s&u=%s'
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class YoujizzBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'youjizz'
|
||||
MAINTAINER = 'Roger Philibert'
|
||||
EMAIL = 'roger.philibert@gmail.com'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Youjizz videos website'
|
||||
LICENSE = 'GPLv3'
|
||||
BROWSER = YoujizzBrowser
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ class YoupornBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'youporn'
|
||||
MAINTAINER = 'Romain Bignon'
|
||||
EMAIL = 'romain@weboob.org'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Youporn videos website'
|
||||
LICENSE = 'GPLv3'
|
||||
BROWSER = YoupornBrowser
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ class YoutubeBackend(BaseBackend, ICapVideo):
|
|||
NAME = 'youtube'
|
||||
MAINTAINER = 'Christophe Benz'
|
||||
EMAIL = 'christophe.benz@gmail.com'
|
||||
VERSION = '0.4'
|
||||
VERSION = '0.5'
|
||||
DESCRIPTION = 'Youtube videos website'
|
||||
LICENSE = 'GPLv3'
|
||||
BROWSER = YoutubeBrowser
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue