diff --git a/weboob/applications/boobank/boobank.py b/weboob/applications/boobank/boobank.py index 1c505b2994d2cdc6cdb91750de3419cb6c956c2b..f48570fb608fe8faa5062e5f86112c8fb72d0057 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 988d55252c53fb26d5946547724149afb1a1dd86..7bccc5b0c3940c1a0c5302581a2fa940c4d6bb4d 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 bebe96b02a7f5c83093c12ae2a2cbc9226c1304b..ea1fa47064242c06c20c53217710146424925814 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 e763c7aa56b9f56ac29b0d8e39348665bc6d92cc..72016a053a804df4d326b3bb6d598fbb40d16962 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 3abf42b6102e4c629bc70182ac01226c99f1ad4a..21bf68caeaa2b1165f4204e6724ca4010e195f43 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 5dfa34122cc9141a3830683225ae71d5988bf516..8e508304d53821fdae4a4e5098d0250d62f2cdb3 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 49d391400506a1e3f1829b07aac727f0a2451bf4..d87e607510cd988f7c6d5059104373163247f5ee 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 401736b0d6a1c61691c7bdb22f478d6c74ca9c58..36bdd3b04b71b8d9d8e73ce58e2d207e4f1c575d 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 7e66a2b1ba39fa17dc76c8be8870d4a87ad0b56d..7ec593a85f4c5aa13b8fad53c2855f1df2437da6 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 ae1167b3efa716bd3f3f50e616144a99ddfdf30f..dc78d735ccd735979967007dae6a624f384bfc37 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 a1e3f97b3da4e5d77a20b3ae846cc9cbd1f9c1b7..28572a258e94a578667231f0aaec2cfecb5ac75f 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 29e6416893e4cde1b15da646794ff57ce1cf0d31..f1f7cefd320ac1f9ac32748566cf5c2af100cfc7 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 ed1dd202ed223c5bfc57b808a02a17f4b17dd4dd..61d2680badb2b6081154942dd0ecb5593a4374ae 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 78ab6d3677b5730f304a4407e599ac7061b8b509..35891ba1ff122894476e5c299667a98b91e6fa9a 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 315ef59b46f3dfc530fcd52c3bac318bb5ec1e3b..1756b449f560106aaebab9b39dd9159232c226d4 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 a32562fc4626511bc46e0b93ce704054a19bb284..49ed7d5203d331656eee3b1737df3f2ab569ab58 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 1b496821b6d6f303de5a62a944ed1d61fc708ab4..c83a43f253d45a40e04be5474d96acc9b6612bb6 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 9b02cdfbc6bac32c4e5820cdb9624b997a0f7aa4..c796c168bcc015bb3b46644ee3f71f42b47c2d23 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 d80507c2038b11f2f801cadb130527d9b1598026..7f4838ec22121440a6419bb54fa15200536f2b06 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,