From 78bfa70f233fe5556e60ae32f544cc10c5e4ee6e Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Thu, 9 Dec 2010 12:03:38 +0100 Subject: [PATCH] set a description for every application --- weboob/applications/boobank/boobank.py | 2 ++ weboob/applications/boobmsg/boobmsg.py | 2 ++ weboob/applications/chatoob/chatoob.py | 1 + weboob/applications/geolooc/geolooc.py | 1 + weboob/applications/havesex/havesex.py | 1 + weboob/applications/monboob/monboob.py | 2 ++ weboob/applications/qboobmsg/qboobmsg.py | 3 +++ weboob/applications/qhavesex/qhavesex.py | 3 +++ weboob/applications/qvideoob/qvideoob.py | 2 ++ weboob/applications/qweboobcfg/qweboobcfg.py | 2 ++ weboob/applications/radioob/radioob.py | 2 ++ weboob/applications/traveloob/traveloob.py | 1 + weboob/applications/videoob/videoob.py | 3 ++- weboob/applications/webcontentedit/webcontentedit.py | 2 ++ weboob/applications/weboobcfg/weboobcfg.py | 2 ++ weboob/applications/weboobcli/weboobcli.py | 2 ++ weboob/applications/weboobdebug/weboobdebug.py | 1 + weboob/applications/weboorrents/weboorrents.py | 2 ++ weboob/applications/wetboobs/wetboobs.py | 1 + 19 files changed, 34 insertions(+), 1 deletion(-) diff --git a/weboob/applications/boobank/boobank.py b/weboob/applications/boobank/boobank.py index 1c505b2994..f48570fb60 100644 --- a/weboob/applications/boobank/boobank.py +++ b/weboob/applications/boobank/boobank.py @@ -85,6 +85,8 @@ class Boobank(ReplApplication): VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon, Christophe Benz' CAPS = ICapBank + DESCRIPTION = "Boobank is a console application to get bank accounts, " \ + "display history and do transfer operations." EXTRA_FORMATTERS = {'account_list': AccountListFormatter, 'transfer': TransferFormatter, } diff --git a/weboob/applications/boobmsg/boobmsg.py b/weboob/applications/boobmsg/boobmsg.py index 988d55252c..7bccc5b0c3 100644 --- a/weboob/applications/boobmsg/boobmsg.py +++ b/weboob/applications/boobmsg/boobmsg.py @@ -123,6 +123,8 @@ class Boobmsg(ReplApplication): APPNAME = 'boobmsg' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Christophe Benz' + DESCRIPTION = "Boobmsg is a console application to send messages on supported websites and " \ + "to display messages threads and contents." CAPS = ICapMessages EXTRA_FORMATTERS = {'msglist': MessagesListFormatter, 'msg': MessageFormatter, diff --git a/weboob/applications/chatoob/chatoob.py b/weboob/applications/chatoob/chatoob.py index bebe96b02a..ea1fa47064 100644 --- a/weboob/applications/chatoob/chatoob.py +++ b/weboob/applications/chatoob/chatoob.py @@ -30,6 +30,7 @@ class Chatoob(ReplApplication): APPNAME = 'chatoob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Christophe Benz' + DESCRIPTION = 'Chatoob is a console application to chat with contacts.' CAPS = ICapChat def on_new_chat_message(self, message): diff --git a/weboob/applications/geolooc/geolooc.py b/weboob/applications/geolooc/geolooc.py index e763c7aa56..72016a053a 100644 --- a/weboob/applications/geolooc/geolooc.py +++ b/weboob/applications/geolooc/geolooc.py @@ -29,6 +29,7 @@ class Geolooc(ReplApplication): APPNAME = 'geolooc' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Geolooc is a console application to get geolocalization of IP addresses." CAPS = ICapGeolocIp def main(self, argv): diff --git a/weboob/applications/havesex/havesex.py b/weboob/applications/havesex/havesex.py index 3abf42b610..21bf68caea 100644 --- a/weboob/applications/havesex/havesex.py +++ b/weboob/applications/havesex/havesex.py @@ -72,6 +72,7 @@ class HaveSex(ReplApplication): APPNAME = 'havesex' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Havesex is a console application to interact with dating websites and to help you to seduce women." STORAGE_FILENAME = 'dating.storage' STORAGE = {'optims': {}} CAPS = ICapDating diff --git a/weboob/applications/monboob/monboob.py b/weboob/applications/monboob/monboob.py index 5dfa34122c..8e508304d5 100644 --- a/weboob/applications/monboob/monboob.py +++ b/weboob/applications/monboob/monboob.py @@ -80,6 +80,8 @@ class Monboob(ReplApplication): APPNAME = 'monboob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Monboob is a daemon to send messages on supported website by email, " \ + "and can be used to send replies." CONFIG = {'interval': 300, 'domain': 'weboob.example.org', 'recipient': 'weboob@example.org', diff --git a/weboob/applications/qboobmsg/qboobmsg.py b/weboob/applications/qboobmsg/qboobmsg.py index 49d3914005..d87e607510 100644 --- a/weboob/applications/qboobmsg/qboobmsg.py +++ b/weboob/applications/qboobmsg/qboobmsg.py @@ -25,6 +25,9 @@ class QBoobMsg(QtApplication): APPNAME = 'qboobmsg' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "QBoobMsg is a graphical application to read messages on supported " \ + "website and reply to them." + CAPS = ICapMessages def main(self, argv): self.load_backends(ICapMessages, storage=self.create_storage()) diff --git a/weboob/applications/qhavesex/qhavesex.py b/weboob/applications/qhavesex/qhavesex.py index 401736b0d6..36bdd3b04b 100644 --- a/weboob/applications/qhavesex/qhavesex.py +++ b/weboob/applications/qhavesex/qhavesex.py @@ -25,6 +25,9 @@ class QHaveSex(QtApplication): APPNAME = 'qhavesex' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "QHaveSex is a graphical application to interact with dating websites " \ + "and help you to seduce women." + CAPS = ICapDating STORAGE_FILENAME = 'dating.storage' def main(self, argv): diff --git a/weboob/applications/qvideoob/qvideoob.py b/weboob/applications/qvideoob/qvideoob.py index 7e66a2b1ba..7ec593a85f 100644 --- a/weboob/applications/qvideoob/qvideoob.py +++ b/weboob/applications/qvideoob/qvideoob.py @@ -25,6 +25,8 @@ class QVideoob(QtApplication): APPNAME = 'qvideoob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "QVideoob is a graphical application to search videos on supported websites and play them." + CAPS = ICapVideo CONFIG = {'settings': {'nsfw': 1, 'sfw': 1, 'sortby': 0, diff --git a/weboob/applications/qweboobcfg/qweboobcfg.py b/weboob/applications/qweboobcfg/qweboobcfg.py index ae1167b3ef..dc78d735cc 100644 --- a/weboob/applications/qweboobcfg/qweboobcfg.py +++ b/weboob/applications/qweboobcfg/qweboobcfg.py @@ -25,6 +25,8 @@ class QWeboobCfg(QtApplication): APPNAME = 'qweboobcfg' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "weboob-config-qt is a graphical application to add/edit/remove backends, " \ + "and to register new website accounts." def main(self, argv): self.load_backends() diff --git a/weboob/applications/radioob/radioob.py b/weboob/applications/radioob/radioob.py index a1e3f97b3d..28572a258e 100644 --- a/weboob/applications/radioob/radioob.py +++ b/weboob/applications/radioob/radioob.py @@ -54,6 +54,8 @@ class Radioob(ReplApplication): APPNAME = 'radioob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Radioob is a console application to list radios, play them and get " \ + "informations like the current song." CAPS = ICapRadio EXTRA_FORMATTERS = {'radio_list': RadioListFormatter} COMMANDS_FORMATTERS = {'list': 'radio_list'} diff --git a/weboob/applications/traveloob/traveloob.py b/weboob/applications/traveloob/traveloob.py index 29e6416893..f1f7cefd32 100644 --- a/weboob/applications/traveloob/traveloob.py +++ b/weboob/applications/traveloob/traveloob.py @@ -29,6 +29,7 @@ class Traveloob(ReplApplication): APPNAME = 'traveloob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Traveloob is a console application to get timelines." CAPS = ICapTravel DEFAULT_FORMATTER = 'table' diff --git a/weboob/applications/videoob/videoob.py b/weboob/applications/videoob/videoob.py index ed1dd202ed..61d2680bad 100644 --- a/weboob/applications/videoob/videoob.py +++ b/weboob/applications/videoob/videoob.py @@ -56,7 +56,8 @@ class Videoob(ReplApplication): APPNAME = 'videoob' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Christophe Benz, Romain Bignon, John Obbele' - DESCRIPTION = 'Search and get information about videos' + DESCRIPTION = "Videoob is a console application to search videos on supported websites " \ + "and to play them or get informations." CAPS = ICapVideo EXTRA_FORMATTERS = {'video_list': VideoListFormatter} COMMANDS_FORMATTERS = {'search': 'video_list'} diff --git a/weboob/applications/webcontentedit/webcontentedit.py b/weboob/applications/webcontentedit/webcontentedit.py index 78ab6d3677..35891ba1ff 100644 --- a/weboob/applications/webcontentedit/webcontentedit.py +++ b/weboob/applications/webcontentedit/webcontentedit.py @@ -35,6 +35,8 @@ class WebContentEdit(ReplApplication): APPNAME = 'webcontentedit' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Webcontentedit is a console application to display and " \ + "edit contents on supported websites." CAPS = ICapContent def do_edit(self, line): diff --git a/weboob/applications/weboobcfg/weboobcfg.py b/weboob/applications/weboobcfg/weboobcfg.py index 315ef59b46..1756b449f5 100644 --- a/weboob/applications/weboobcfg/weboobcfg.py +++ b/weboob/applications/weboobcfg/weboobcfg.py @@ -34,6 +34,8 @@ class WeboobCfg(ReplApplication): APPNAME = 'weboob-config' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Christophe Benz, Romain Bignon' + DESCRIPTION = "Weboob-Config is a console application to add/edit/remove backends, " \ + "and to register new website accounts." COMMANDS_FORMATTERS = {'backends': 'table', 'list': 'table', } diff --git a/weboob/applications/weboobcli/weboobcli.py b/weboob/applications/weboobcli/weboobcli.py index a32562fc46..49ed7d5203 100644 --- a/weboob/applications/weboobcli/weboobcli.py +++ b/weboob/applications/weboobcli/weboobcli.py @@ -30,6 +30,8 @@ class WeboobCli(ReplApplication): COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' SYNOPSIS = 'Usage: %prog [-dqv] [-b backends] [-cnfs] capability method [arguments..]\n' SYNOPSIS += ' %prog [--help] [--version]' + DESCRIPTION = "Weboob-Cli is a console application to call a specific method on backends " \ + "which implement the given capability." DISABLE_REPL = True def load_default_backends(self): diff --git a/weboob/applications/weboobdebug/weboobdebug.py b/weboob/applications/weboobdebug/weboobdebug.py index 1b496821b6..c83a43f253 100644 --- a/weboob/applications/weboobdebug/weboobdebug.py +++ b/weboob/applications/weboobdebug/weboobdebug.py @@ -25,6 +25,7 @@ class WeboobDebug(ReplApplication): APPNAME = 'weboobdebug' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Christophe Benz' + DESCRIPTION = "Weboob-Debug is a console application to debug backends." def load_default_backends(self): pass diff --git a/weboob/applications/weboorrents/weboorrents.py b/weboob/applications/weboorrents/weboorrents.py index 9b02cdfbc6..c796c168bc 100644 --- a/weboob/applications/weboorrents/weboorrents.py +++ b/weboob/applications/weboorrents/weboorrents.py @@ -80,6 +80,8 @@ class Weboorrents(ReplApplication): APPNAME = 'weboorrents' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Weboorrents is a console application to search torrents on supported trackers " \ + "and to download .torrent files." CAPS = ICapTorrent EXTRA_FORMATTERS = {'torrent_list': TorrentListFormatter, 'torrent_info': TorrentInfoFormatter, diff --git a/weboob/applications/wetboobs/wetboobs.py b/weboob/applications/wetboobs/wetboobs.py index d80507c203..7f4838ec22 100644 --- a/weboob/applications/wetboobs/wetboobs.py +++ b/weboob/applications/wetboobs/wetboobs.py @@ -75,6 +75,7 @@ class WetBoobs(ReplApplication): APPNAME = 'wetboobs' VERSION = '0.5' COPYRIGHT = 'Copyright(C) 2010 Romain Bignon' + DESCRIPTION = "Wetboobs is a console application to display weather and forecasts in your city." CAPS = ICapWeather EXTRA_FORMATTERS = {'cities': CitiesFormatter, 'current': CurrentFormatter, -- GitLab