Fix application descriptions.
This commit is contained in:
parent
4ad11c46c7
commit
c7ff4640a0
17 changed files with 25 additions and 26 deletions
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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'}
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
|
||||
|
|
|
|||
|
|
@ -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'}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue