From c7ff4640a065e9ac9c163123e3c9ad0b280bc651 Mon Sep 17 00:00:00 2001 From: Christophe Benz Date: Thu, 31 Mar 2011 19:35:46 +0200 Subject: [PATCH] Fix application descriptions. --- weboob/applications/boobank/boobank.py | 5 +++-- weboob/applications/boobmsg/boobmsg.py | 5 ++--- weboob/applications/chatoob/chatoob.py | 2 +- weboob/applications/geolooc/geolooc.py | 2 +- weboob/applications/havesex/havesex.py | 3 ++- weboob/applications/monboob/monboob.py | 4 ++-- weboob/applications/qboobmsg/qboobmsg.py | 3 +-- weboob/applications/qhavesex/qhavesex.py | 3 +-- weboob/applications/qvideoob/qvideoob.py | 2 +- weboob/applications/qwebcontentedit/qwebcontentedit.py | 2 +- weboob/applications/radioob/radioob.py | 4 ++-- weboob/applications/traveloob/traveloob.py | 2 +- weboob/applications/videoob/videoob.py | 4 ++-- weboob/applications/videoob_web/videoob_web.py | 1 + weboob/applications/webcontentedit/webcontentedit.py | 3 +-- weboob/applications/weboorrents/weboorrents.py | 4 ++-- weboob/applications/wetboobs/wetboobs.py | 2 +- 17 files changed, 25 insertions(+), 26 deletions(-) diff --git a/weboob/applications/boobank/boobank.py b/weboob/applications/boobank/boobank.py index 83cff3b4..b040b8b7 100644 --- a/weboob/applications/boobank/boobank.py +++ b/weboob/applications/boobank/boobank.py @@ -85,8 +85,9 @@ class Boobank(ReplApplication): VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon, Christophe Benz' CAPS = ICapBank - DESCRIPTION = "Boobank is a console application to get bank accounts, " \ - "display history and do transfer operations." + DESCRIPTION = "Console application allowing to list your bank accounts and get their balance, " \ + "display accounts history and coming bank operations, and transfer money from an account to " \ + "another (if available)." EXTRA_FORMATTERS = {'account_list': AccountListFormatter, 'transfer': TransferFormatter, } diff --git a/weboob/applications/boobmsg/boobmsg.py b/weboob/applications/boobmsg/boobmsg.py index 01865a4f..74114e6f 100644 --- a/weboob/applications/boobmsg/boobmsg.py +++ b/weboob/applications/boobmsg/boobmsg.py @@ -163,9 +163,8 @@ class Boobmsg(ReplApplication): APPNAME = 'boobmsg' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Christophe Benz' - DESCRIPTION = "Boobmsg is a console application to send messages on " \ - "supported websites and " \ - "to display messages threads and contents." + DESCRIPTION = "Console application allowing to send messages on various websites and " \ + "to display message 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 3550c572..cbad0bfb 100644 --- a/weboob/applications/chatoob/chatoob.py +++ b/weboob/applications/chatoob/chatoob.py @@ -30,7 +30,7 @@ class Chatoob(ReplApplication): APPNAME = 'chatoob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Christophe Benz' - DESCRIPTION = 'Chatoob is a console application to chat with contacts.' + DESCRIPTION = 'Console application allowing to chat with contacts on various websites.' CAPS = ICapChat def on_new_chat_message(self, message): diff --git a/weboob/applications/geolooc/geolooc.py b/weboob/applications/geolooc/geolooc.py index 93aa440f..f17d9eb5 100644 --- a/weboob/applications/geolooc/geolooc.py +++ b/weboob/applications/geolooc/geolooc.py @@ -29,7 +29,7 @@ class Geolooc(ReplApplication): APPNAME = 'geolooc' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Geolooc is a console application to get geolocalization of IP addresses." + DESCRIPTION = 'Console application allowing to geolocalize IP addresses.' CAPS = ICapGeolocIp def main(self, argv): diff --git a/weboob/applications/havesex/havesex.py b/weboob/applications/havesex/havesex.py index d381e86a..d15405c9 100644 --- a/weboob/applications/havesex/havesex.py +++ b/weboob/applications/havesex/havesex.py @@ -72,7 +72,8 @@ class HaveSex(ReplApplication): APPNAME = 'havesex' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Havesex is a console application to interact with dating websites and to help you to seduce women." + DESCRIPTION = 'Console application allowing to interact with various dating websites ' \ + 'and to optimize seduction algorithmically.' STORAGE_FILENAME = 'dating.storage' STORAGE = {'optims': {}} CAPS = ICapDating diff --git a/weboob/applications/monboob/monboob.py b/weboob/applications/monboob/monboob.py index 6eead26e..fd81b5b3 100644 --- a/weboob/applications/monboob/monboob.py +++ b/weboob/applications/monboob/monboob.py @@ -85,8 +85,8 @@ class Monboob(ReplApplication): APPNAME = 'monboob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Monboob is a daemon to send messages on supported website by email, " \ - "and can be used to send replies." + DESCRIPTION = 'Daemon allowing to regularly check for new messages on various websites, ' \ + 'and send an email for each message, and post a reply to a message on a website.' 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 fc6e3ef4..00757227 100644 --- a/weboob/applications/qboobmsg/qboobmsg.py +++ b/weboob/applications/qboobmsg/qboobmsg.py @@ -25,8 +25,7 @@ class QBoobMsg(QtApplication): APPNAME = 'qboobmsg' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "QBoobMsg is a graphical application to read messages on supported " \ - "website and reply to them." + DESCRIPTION = 'Qt application allowing to read messages on various websites and reply to them.' CAPS = ICapMessages def main(self, argv): diff --git a/weboob/applications/qhavesex/qhavesex.py b/weboob/applications/qhavesex/qhavesex.py index f6ff90c4..4d462300 100644 --- a/weboob/applications/qhavesex/qhavesex.py +++ b/weboob/applications/qhavesex/qhavesex.py @@ -25,8 +25,7 @@ class QHaveSex(QtApplication): APPNAME = 'qhavesex' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "QHaveSex is a graphical application to interact with dating websites " \ - "and help you to seduce women." + DESCRIPTION = 'Qt application allowing to interact with various dating websites.' CAPS = ICapDating STORAGE_FILENAME = 'dating.storage' diff --git a/weboob/applications/qvideoob/qvideoob.py b/weboob/applications/qvideoob/qvideoob.py index a1072333..b9f43a77 100644 --- a/weboob/applications/qvideoob/qvideoob.py +++ b/weboob/applications/qvideoob/qvideoob.py @@ -25,7 +25,7 @@ class QVideoob(QtApplication): APPNAME = 'qvideoob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "QVideoob is a graphical application to search videos on supported websites and play them." + DESCRIPTION = 'Qt application allowing to search videos on various websites and play them.' CAPS = ICapVideo CONFIG = {'settings': {'nsfw': 1, 'sfw': 1, diff --git a/weboob/applications/qwebcontentedit/qwebcontentedit.py b/weboob/applications/qwebcontentedit/qwebcontentedit.py index 1077e96c..1a8d6c61 100644 --- a/weboob/applications/qwebcontentedit/qwebcontentedit.py +++ b/weboob/applications/qwebcontentedit/qwebcontentedit.py @@ -24,7 +24,7 @@ class QWebContentEdit(QtApplication): APPNAME = 'qwebcontentedit' VERSION = '0.8' COPYRIGHT = u'Copyright(C) 2011 Clément Schreiner' - DESCRIPTION = "Qt application for managing content on supported websites" + DESCRIPTION = 'Qt application allowing to manage contents of various websites.' CAPS = ICapContent def main(self, argv): diff --git a/weboob/applications/radioob/radioob.py b/weboob/applications/radioob/radioob.py index 0738084a..2733b530 100644 --- a/weboob/applications/radioob/radioob.py +++ b/weboob/applications/radioob/radioob.py @@ -54,8 +54,8 @@ class Radioob(ReplApplication): APPNAME = 'radioob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Radioob is a console application to list radios, play them and get " \ - "informations like the current song." + DESCRIPTION = 'Console application allowing to search for web radio stations, listen to them and get information ' \ + '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 84540df0..be50854c 100644 --- a/weboob/applications/traveloob/traveloob.py +++ b/weboob/applications/traveloob/traveloob.py @@ -29,7 +29,7 @@ class Traveloob(ReplApplication): APPNAME = 'traveloob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Traveloob is a console application to get timelines." + DESCRIPTION = 'Console application allowing to search for train stations and get departure times.' CAPS = ICapTravel DEFAULT_FORMATTER = 'table' diff --git a/weboob/applications/videoob/videoob.py b/weboob/applications/videoob/videoob.py index ef6dc411..3722ab91 100644 --- a/weboob/applications/videoob/videoob.py +++ b/weboob/applications/videoob/videoob.py @@ -57,8 +57,8 @@ class Videoob(ReplApplication): APPNAME = 'videoob' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Christophe Benz, Romain Bignon, John Obbele' - DESCRIPTION = "Videoob is a console application to search videos on supported websites " \ - "and to play them or get informations." + DESCRIPTION = 'Console application allowing to search for videos on various websites, ' \ + 'play and download them and get information.' CAPS = ICapVideo EXTRA_FORMATTERS = {'video_list': VideoListFormatter} COMMANDS_FORMATTERS = {'search': 'video_list'} diff --git a/weboob/applications/videoob_web/videoob_web.py b/weboob/applications/videoob_web/videoob_web.py index 30b6081b..62a7c49c 100644 --- a/weboob/applications/videoob_web/videoob_web.py +++ b/weboob/applications/videoob_web/videoob_web.py @@ -41,6 +41,7 @@ class VideoobWeb(BaseApplication): APPNAME = 'videoob-webserver' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Christophe Benz' + DESCRIPTION = 'WSGI web server application allowing to search for videos on various websites.' CAPS = ICapVideo CONFIG = dict(host='localhost', port=8080) diff --git a/weboob/applications/webcontentedit/webcontentedit.py b/weboob/applications/webcontentedit/webcontentedit.py index 6dac520f..7772d219 100644 --- a/weboob/applications/webcontentedit/webcontentedit.py +++ b/weboob/applications/webcontentedit/webcontentedit.py @@ -35,8 +35,7 @@ class WebContentEdit(ReplApplication): APPNAME = 'webcontentedit' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Webcontentedit is a console application to display and " \ - "edit contents on supported websites." + DESCRIPTION = 'Console application allowing to display and edit contents on various websites.' CAPS = ICapContent def do_edit(self, line): diff --git a/weboob/applications/weboorrents/weboorrents.py b/weboob/applications/weboorrents/weboorrents.py index 5d4a9b2c..61d9cc20 100644 --- a/weboob/applications/weboorrents/weboorrents.py +++ b/weboob/applications/weboorrents/weboorrents.py @@ -80,8 +80,8 @@ class Weboorrents(ReplApplication): APPNAME = 'weboorrents' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Weboorrents is a console application to search torrents on supported trackers " \ - "and to download .torrent files." + DESCRIPTION = 'Console application allowing to search for torrents on various trackers ' \ + 'and 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 c68f1ca6..c7182e7e 100644 --- a/weboob/applications/wetboobs/wetboobs.py +++ b/weboob/applications/wetboobs/wetboobs.py @@ -75,7 +75,7 @@ class WetBoobs(ReplApplication): APPNAME = 'wetboobs' VERSION = '0.8' COPYRIGHT = 'Copyright(C) 2010-2011 Romain Bignon' - DESCRIPTION = "Wetboobs is a console application to display weather and forecasts in your city." + DESCRIPTION = 'Console application allowing to display weather and forecasts in your city.' CAPS = ICapWeather EXTRA_FORMATTERS = {'cities': CitiesFormatter, 'current': CurrentFormatter,