Weboob 0.j released
This commit is contained in:
parent
7fb0bc3c07
commit
1bee6d6d66
42 changed files with 529 additions and 312 deletions
375
ChangeLog
375
ChangeLog
|
|
@ -1,3 +1,378 @@
|
||||||
|
Weboob 0.j (2014-09-03)
|
||||||
|
|
||||||
|
General:
|
||||||
|
* New module: feedly (CapMessages)
|
||||||
|
* New module: oney (CapBank)
|
||||||
|
* New module: twitter (CapMessages)
|
||||||
|
* New module: wellsfargo (CapBank) (#1430)
|
||||||
|
|
||||||
|
Core
|
||||||
|
* Rename CapBaseObject to BaseObject (#1424)
|
||||||
|
* Rename ICap to Cap (#1424)
|
||||||
|
* Ability to use weboob.function as alias to weboob.do('function') (#1425)
|
||||||
|
|
||||||
|
Core: repositories
|
||||||
|
* Fix HTTP error handling for browser2
|
||||||
|
* Use ConfigParser in priority with python2 (#1393)
|
||||||
|
* Load browser only when needed
|
||||||
|
|
||||||
|
Capabilities
|
||||||
|
* Move DateField/TimeField/Delta out of BaseObject
|
||||||
|
* Add LBP to currencies
|
||||||
|
* Add documentation on object constants
|
||||||
|
|
||||||
|
Capabilities: audio
|
||||||
|
* Add Playlist and Album classes
|
||||||
|
|
||||||
|
Capabilities: audiostream
|
||||||
|
* Fix: get_audiostream does not have pattern name (#1626)
|
||||||
|
|
||||||
|
Capabilities: dating
|
||||||
|
* Add iter_new_contacts method
|
||||||
|
|
||||||
|
Capabilities: files
|
||||||
|
* Fix repr() and str() on File-based objects
|
||||||
|
|
||||||
|
Capabilities: image
|
||||||
|
* Remove data field in to_dict method to avoid json crash during
|
||||||
|
conversion
|
||||||
|
|
||||||
|
Capabilities: messages
|
||||||
|
* Remove required items in Message constructor
|
||||||
|
|
||||||
|
Capabilities: travel
|
||||||
|
* Do not require in id in constructor
|
||||||
|
|
||||||
|
Applications
|
||||||
|
* Remove default import of browser1
|
||||||
|
* Import debug modules only when needed
|
||||||
|
|
||||||
|
Applications: console
|
||||||
|
* Remove the import of SSL exceptions
|
||||||
|
* Add the default value displayed "upper" in aliases (#1319)
|
||||||
|
* Allows shortcuts for modules (#881)
|
||||||
|
* Use shortcut of id in interactive mode (#881)
|
||||||
|
|
||||||
|
Applications: REPL
|
||||||
|
* Allow to browse subfolders with ls
|
||||||
|
* Change formatter when it cannot handle all selected fields
|
||||||
|
* Introduce the DISPLAYED_FIELDS in formatter
|
||||||
|
* Set fields in a consistant way with do()
|
||||||
|
* Introduce parse_fields function
|
||||||
|
* Use fullid parameter for CapObjects
|
||||||
|
* Correct multiple language error
|
||||||
|
* Move format_collection from repl to ifromatter
|
||||||
|
* Remove the 'inspect' command
|
||||||
|
|
||||||
|
Applications: formatters
|
||||||
|
* Remove the '*' special fields in formatter
|
||||||
|
* Table and Json formatters can write output to a file now (#1412)
|
||||||
|
* Handle format_collection with JSON formatter
|
||||||
|
|
||||||
|
Applications: boobank
|
||||||
|
* Do not crash if the account type isn't in list (#1542)
|
||||||
|
* Write the account currency in ofx output
|
||||||
|
|
||||||
|
Applications: radioob
|
||||||
|
* Manage Albums and Playlists
|
||||||
|
* Fix: bug when a radio id contains a dot
|
||||||
|
|
||||||
|
Applications: QHaveDate
|
||||||
|
* Add tab to send queries
|
||||||
|
|
||||||
|
Applications: videoob
|
||||||
|
* Improve m3u8 management in download
|
||||||
|
|
||||||
|
Browser1
|
||||||
|
* Introduce local exception for SSL errors
|
||||||
|
* Only load FirefoxCookies as needed
|
||||||
|
* Update Firefox versions to latest ESR
|
||||||
|
|
||||||
|
Browser2
|
||||||
|
* Add more specialized exceptions
|
||||||
|
* Allow setting query string params on build_url
|
||||||
|
* Matching content with url using is_here
|
||||||
|
* Ability to override the flush() method
|
||||||
|
* Allow for a custom element finder
|
||||||
|
* Add CSV pages
|
||||||
|
* Do not crash if total_seconds() is not implemented
|
||||||
|
* Fix documentation of nr parameter
|
||||||
|
* Update Firefox versions to latest ESR
|
||||||
|
* Add support for forms with multiple "submit" elements
|
||||||
|
* Allow more flexibility for the submit button parameter
|
||||||
|
|
||||||
|
Browser2: ListElement
|
||||||
|
* Move ItemListTable-Element outside of page.py
|
||||||
|
|
||||||
|
Browser2: filters
|
||||||
|
* Overload & and | operators to chain filters (#1426)
|
||||||
|
* Split filters in several files
|
||||||
|
* Fix filters doctest
|
||||||
|
* Force unicode
|
||||||
|
* New RawText filter
|
||||||
|
* New Base filter
|
||||||
|
* New Type filter
|
||||||
|
* Date: use default value for empty input
|
||||||
|
* Date: properly handle defaults that are not datetimes
|
||||||
|
* MultiFilter: allow for a default argument
|
||||||
|
* Dict: manage default
|
||||||
|
* Dict: ability to use Dict['a']['b']['c'] instead of Dict('a/b/c') (#1426)
|
||||||
|
* CleanHTML: manage basestring
|
||||||
|
* CleanDecimal: possibility to set custom separators
|
||||||
|
* CleanDecimal: set replace_dots default value to False
|
||||||
|
* CleanDecimal: do not crash with inputs like NotAvailable
|
||||||
|
* CleanText: handle the non-breaking space thanks to the re.UNICODE flag
|
||||||
|
* CleanText: add an option to keep (but normalize) newlines
|
||||||
|
* CleanText: \t is always in \s so no need to add it
|
||||||
|
* CleanText: add tests
|
||||||
|
* CleanText: fix re flags usage for Python 2.6 (#1444)
|
||||||
|
* Env: add support for a default
|
||||||
|
|
||||||
|
Documentation
|
||||||
|
* New Home Page
|
||||||
|
* Add a "How to contribute" page
|
||||||
|
* Add logo/favicon
|
||||||
|
* Set more customizations
|
||||||
|
* Add instruction for developers missing the first steps (#868)
|
||||||
|
* Define backends/modules
|
||||||
|
* Add local_run in documentation for developers
|
||||||
|
* Fix many docstring issues
|
||||||
|
* Change module documentation to learn browser2 (#1451)
|
||||||
|
* Add __repr__ on NotAvailable, NotLoaded and _NO_DEFAULT constants to be
|
||||||
|
more readable on doc
|
||||||
|
* Import several pages from the wiki
|
||||||
|
* Add documentation to report a bug (#873)
|
||||||
|
|
||||||
|
Tools: AmericanTransaction
|
||||||
|
* Add a transaction amounts cleaner helper for american banks
|
||||||
|
|
||||||
|
Tools: captcha
|
||||||
|
* Refactor VirtKeyboard class
|
||||||
|
* Add a margin attribut
|
||||||
|
* Add a grid based virtual keyboard
|
||||||
|
|
||||||
|
Tools: date
|
||||||
|
* Add more french dates translations
|
||||||
|
* Class methods to convert date[time] objects
|
||||||
|
|
||||||
|
Tools: genericArticle
|
||||||
|
* Fix unicode warning
|
||||||
|
|
||||||
|
Tools: make_man
|
||||||
|
* Tell that it was generated automatically
|
||||||
|
|
||||||
|
Tools: pyflakes
|
||||||
|
* Fix: call of pyflakes on Archlinux (#1404)
|
||||||
|
|
||||||
|
Tools: test
|
||||||
|
* Fix: call of test.py (#1403)
|
||||||
|
|
||||||
|
Tools: yaml
|
||||||
|
* Represent weboob date[time] objects as timestamps
|
||||||
|
|
||||||
|
Misc: local_run script
|
||||||
|
* Allow customizing where the modules are
|
||||||
|
|
||||||
|
Misc: setup
|
||||||
|
* Support python3 (#1417 #1418 #1419)
|
||||||
|
* Add prettytable in dependencies (#929)
|
||||||
|
* Configure isort and flake8
|
||||||
|
|
||||||
|
Misc: Windows Installer
|
||||||
|
* Remove some files
|
||||||
|
* Fix bugs in windows installer scripts
|
||||||
|
|
||||||
|
Contrib: munin
|
||||||
|
* Rename generic-munin to weboob-munin
|
||||||
|
* Move all scripts in the same folder
|
||||||
|
* Encode and decode ID's in weboob-munin
|
||||||
|
|
||||||
|
Contrib: boobot
|
||||||
|
* Add command %delquote
|
||||||
|
* Fix: %searchquote on unicode strings
|
||||||
|
|
||||||
|
Contrib: XBMC/Kodi
|
||||||
|
* Add a xbmc/Kodi plugin that interracts with videoob
|
||||||
|
|
||||||
|
Modules: arte
|
||||||
|
* Fix: Do not crash if 'VDA' fields is missing in json
|
||||||
|
* Use M3U8 format instead of HBBTV
|
||||||
|
* Fill video.url with NotAvailable if url is not found
|
||||||
|
* Improve tests
|
||||||
|
* Improve video quality choice
|
||||||
|
* Handle arte podcasts
|
||||||
|
* Add tests for program categories
|
||||||
|
|
||||||
|
Modules: aum
|
||||||
|
* Implement iter_new_contacts
|
||||||
|
|
||||||
|
Modules: banquepopulaire
|
||||||
|
* Strip displayed balance at end of transaction labels
|
||||||
|
* Display check number in label (#1027)
|
||||||
|
* Fix: remove spaces in IDs (#1368)
|
||||||
|
* Support loan payment type
|
||||||
|
|
||||||
|
Modules: biplan
|
||||||
|
* Handle summer holiday in tests
|
||||||
|
|
||||||
|
Modules: bnporc
|
||||||
|
* Update order regexp
|
||||||
|
* Fix: transfer regexp
|
||||||
|
* Remove space in ids
|
||||||
|
|
||||||
|
Modules: boursorama
|
||||||
|
* Some English fixes in comments
|
||||||
|
* Add new certificat hash
|
||||||
|
|
||||||
|
Modules: bp
|
||||||
|
* Fix: new login image for virtkeyboard
|
||||||
|
|
||||||
|
Modules: bred
|
||||||
|
* Handle space in account number
|
||||||
|
* Switch configuration description strings to unicode
|
||||||
|
|
||||||
|
Modules: caissedepargne
|
||||||
|
* Force use of TLSv1 on lowsslcheck as the web server support of SSLv3 is broken
|
||||||
|
|
||||||
|
Modules: colissimo
|
||||||
|
* Fix: New API key for collisimo (#1617)
|
||||||
|
|
||||||
|
Modules: cragr
|
||||||
|
* Order transactions by date to prevent LinearDateGuesser to be duped by the f*cking website
|
||||||
|
|
||||||
|
Modules: creditmutuel
|
||||||
|
* Fix: set of debit date for card transactions
|
||||||
|
|
||||||
|
Modules: dailymotion
|
||||||
|
* Fix: dailymotion mplayer error "No stream found to handle url"
|
||||||
|
* Fix: use https for test
|
||||||
|
|
||||||
|
Modules: francetelevisions
|
||||||
|
* Use filters as classes in chain (refs #1426)
|
||||||
|
|
||||||
|
Modules: freemobile
|
||||||
|
* Some English fixes in comments
|
||||||
|
* Fix date of subscriptions when next month as less days than excepted
|
||||||
|
(#1347)
|
||||||
|
|
||||||
|
Modules: gdcvault
|
||||||
|
* Remove unused import of ControlNotFoundError
|
||||||
|
|
||||||
|
Modules: grooveshark
|
||||||
|
* Update to match Album and Playlist management in radioob
|
||||||
|
* Display users playlists only when split_path length is 0
|
||||||
|
* Fix: catch exception when id is not an integer
|
||||||
|
|
||||||
|
Modules: hellobank
|
||||||
|
* Get default account name if the custom name is empty
|
||||||
|
|
||||||
|
Modules: hybride
|
||||||
|
* Fix: handle summer holiday in tests
|
||||||
|
|
||||||
|
Modules: imdb
|
||||||
|
* Some English fixes in comments
|
||||||
|
* Use omdbapi instead of imdbapi
|
||||||
|
* Fix: site changed
|
||||||
|
|
||||||
|
Modules: ina
|
||||||
|
* Fix: bad characters in titles (double encoded unicode)
|
||||||
|
|
||||||
|
Modules: ing
|
||||||
|
* Some English fixes in comments
|
||||||
|
* Remove the index on ing for pagination
|
||||||
|
* Support coming operations
|
||||||
|
* Fix: parsing of 'tomorrow' transaction dates
|
||||||
|
|
||||||
|
Modules: izneo
|
||||||
|
* Fix: bug in page list
|
||||||
|
|
||||||
|
Modules: lcl
|
||||||
|
* Handle lcl pro https://professionnels.secure.lcl.fr
|
||||||
|
* New certificate
|
||||||
|
* Add transaction patterns
|
||||||
|
|
||||||
|
Modules: leclercmobile
|
||||||
|
* Fix: do not crash if balance is not available
|
||||||
|
|
||||||
|
Modules: lefigaro
|
||||||
|
* Remove dead code
|
||||||
|
|
||||||
|
Modules: meteofrance
|
||||||
|
* Fix: site changed (#1390)
|
||||||
|
* Fix: call the url that retrieve all the search results (#1431)
|
||||||
|
* Raise an exception if forecast param is not a city id (#1433)
|
||||||
|
|
||||||
|
Modules: opensubtitles
|
||||||
|
* Some English fixes in comments
|
||||||
|
* Fix: site changed (#1295)
|
||||||
|
|
||||||
|
Modules: pastealacon
|
||||||
|
* Convert to Browser2 (#674)
|
||||||
|
* Use specialized Browser exception
|
||||||
|
|
||||||
|
Modules: pastebin
|
||||||
|
* Convert to browser2
|
||||||
|
* overload & and | operators to chain filters (refs #1426)
|
||||||
|
* Handle limit exceeded warning
|
||||||
|
* Fix: crash with Base() and filter chaining
|
||||||
|
|
||||||
|
Modules: paypal
|
||||||
|
* Get more transactions on paypal (#1405)
|
||||||
|
* Retrieve all transactions from the history, merchant and regular account support (#1406)
|
||||||
|
* Paypal transactions history fetching with adaptive steps (#1406)
|
||||||
|
* Checking if tr contains text
|
||||||
|
* Make Paypal module use AmericanTransaction helper.
|
||||||
|
* Fix: empty amount. (#1415)
|
||||||
|
* Support french dates for last CSV request
|
||||||
|
* Ignore canceled transactions
|
||||||
|
|
||||||
|
Modules: popolemploi
|
||||||
|
* Fix: site is now only availbe using https
|
||||||
|
|
||||||
|
Modules: presseurop
|
||||||
|
* Presseurop is back! (named now voxeurop)
|
||||||
|
|
||||||
|
Modules: radiofrance
|
||||||
|
* Fix: FIP radio does not work (#1449)
|
||||||
|
|
||||||
|
Modules: sachsen
|
||||||
|
* Set the datetime to NotAvailable by default
|
||||||
|
|
||||||
|
Modules: senscritique
|
||||||
|
* Fix: bug in network selection
|
||||||
|
* Fix: set channels and programs parameters in get_event
|
||||||
|
|
||||||
|
Modules: societegenerale
|
||||||
|
* Fix: certificate changed
|
||||||
|
* Fix: certificate updated (#1414)
|
||||||
|
|
||||||
|
Modules: sueurdemetal
|
||||||
|
* Fix: broken module due to departments containing letters
|
||||||
|
|
||||||
|
Modules: tinder
|
||||||
|
* Update recs only when needed
|
||||||
|
* Fix attribute type
|
||||||
|
|
||||||
|
Modules: transilien
|
||||||
|
* Adapt to browser2
|
||||||
|
* Fix: site changed (#938)
|
||||||
|
|
||||||
|
Modules: vimeo
|
||||||
|
* Fix: site changed
|
||||||
|
* Adapt to browser2
|
||||||
|
* Enable search and tests (#1082)
|
||||||
|
* Catch HttpNotFound errors
|
||||||
|
|
||||||
|
Modules: youjizz
|
||||||
|
* Overload & and | operators to chain filters (refs #1426)
|
||||||
|
* Use filters as classes in chain (refs #1426)
|
||||||
|
|
||||||
|
Modules: youtube
|
||||||
|
* Fix: Youtube mplayer error "No stream found to handle url"
|
||||||
|
* Fix: is_logged function does not work (#1423)
|
||||||
|
* Backport some youtube-dl changes (#1422)
|
||||||
|
|
||||||
|
|
||||||
Weboob 0.i (2014-05-19)
|
Weboob 0.i (2014-05-19)
|
||||||
|
|
||||||
General
|
General
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBANK 1 "19 May 2014" "boobank 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBANK 1 "03 September 2014" "boobank 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobank \- manage bank accounts
|
boobank \- manage bank accounts
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -73,9 +74,13 @@ Console application allowing to list your bank accounts and get their balance, d
|
||||||
.br
|
.br
|
||||||
* lcl (LCL)
|
* lcl (LCL)
|
||||||
.br
|
.br
|
||||||
|
* oney (Oney)
|
||||||
|
.br
|
||||||
* paypal (PayPal)
|
* paypal (PayPal)
|
||||||
.br
|
.br
|
||||||
* societegenerale (Société Générale)
|
* societegenerale (Société Générale)
|
||||||
|
.br
|
||||||
|
* wellsfargo (Wells Fargo)
|
||||||
.SH BOOBANK COMMANDS
|
.SH BOOBANK COMMANDS
|
||||||
.TP
|
.TP
|
||||||
\fBcoming\fR \fIID\fR [\fIEND_DATE\fR]
|
\fBcoming\fR \fIID\fR [\fIEND_DATE\fR]
|
||||||
|
|
@ -213,14 +218,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -239,11 +236,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBATHON 1 "19 May 2014" "boobathon 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBATHON 1 "03 September 2014" "boobathon 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobathon \- participate in a Boobathon
|
boobathon \- participate in a Boobathon
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -159,14 +160,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -185,11 +178,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBCOMING 1 "19 May 2014" "boobcoming 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBCOMING 1 "03 September 2014" "boobcoming 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobcoming \- see upcoming events
|
boobcoming \- see upcoming events
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -151,14 +152,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -177,11 +170,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBILL 1 "19 May 2014" "boobill 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBILL 1 "03 September 2014" "boobill 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobill \- get and download bills
|
boobill \- get and download bills
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -179,14 +180,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -205,11 +198,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBLYRICS 1 "19 May 2014" "booblyrics 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBLYRICS 1 "03 September 2014" "booblyrics 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
booblyrics \- search and display song lyrics
|
booblyrics \- search and display song lyrics
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -119,14 +120,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -145,11 +138,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBMSG 1 "19 May 2014" "boobmsg 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBMSG 1 "03 September 2014" "boobmsg 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobmsg \- send and receive message threads
|
boobmsg \- send and receive message threads
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -23,6 +24,8 @@ Console application allowing to send messages on various websites and to display
|
||||||
.br
|
.br
|
||||||
* dlfp (Da Linux French Page news website)
|
* dlfp (Da Linux French Page news website)
|
||||||
.br
|
.br
|
||||||
|
* feedly (handle the popular RSS reading service Feedly)
|
||||||
|
.br
|
||||||
* fourchan (4chan image board)
|
* fourchan (4chan image board)
|
||||||
.br
|
.br
|
||||||
* guerrillamail (GuerrillaMail temp mailbox)
|
* guerrillamail (GuerrillaMail temp mailbox)
|
||||||
|
|
@ -58,6 +61,8 @@ Console application allowing to send messages on various websites and to display
|
||||||
* taz (Taz newspaper website)
|
* taz (Taz newspaper website)
|
||||||
.br
|
.br
|
||||||
* tinder (Tinder dating mobile application)
|
* tinder (Tinder dating mobile application)
|
||||||
|
.br
|
||||||
|
* twitter (twitter website)
|
||||||
.SH BOOBMSG COMMANDS
|
.SH BOOBMSG COMMANDS
|
||||||
.TP
|
.TP
|
||||||
\fBexport_all\fR
|
\fBexport_all\fR
|
||||||
|
|
@ -185,14 +190,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -211,11 +208,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBOOKS 1 "19 May 2014" "boobooks 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBOOKS 1 "03 September 2014" "boobooks 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobooks \- manage rented books
|
boobooks \- manage rented books
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -107,14 +108,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -133,11 +126,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBSIZE 1 "19 May 2014" "boobsize 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBSIZE 1 "03 September 2014" "boobsize 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobsize \- display sensors and gauges values
|
boobsize \- display sensors and gauges values
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -124,14 +125,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -150,11 +143,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH BOOBTRACKER 1 "19 May 2014" "boobtracker 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH BOOBTRACKER 1 "03 September 2014" "boobtracker 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
boobtracker \- manage bug tracking issues
|
boobtracker \- manage bug tracking issues
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -181,14 +182,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -207,11 +200,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH CINEOOB 1 "19 May 2014" "cineoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH CINEOOB 1 "03 September 2014" "cineoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
cineoob \- search movies and persons around cinema
|
cineoob \- search movies and persons around cinema
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -289,14 +290,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -315,11 +308,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH COMPAROOB 1 "19 May 2014" "comparoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH COMPAROOB 1 "03 September 2014" "comparoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
comparoob \- compare products
|
comparoob \- compare products
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -113,14 +114,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -139,11 +132,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH COOKBOOB 1 "19 May 2014" "cookboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH COOKBOOB 1 "03 September 2014" "cookboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
cookboob \- search and consult recipes
|
cookboob \- search and consult recipes
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -129,14 +130,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -155,11 +148,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH FLATBOOB 1 "19 May 2014" "flatboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH FLATBOOB 1 "03 September 2014" "flatboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
flatboob \- search for housing
|
flatboob \- search for housing
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -115,14 +116,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -141,11 +134,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH GALLEROOB 1 "19 May 2014" "galleroob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH GALLEROOB 1 "03 September 2014" "galleroob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
galleroob \- browse and download web image galleries
|
galleroob \- browse and download web image galleries
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -137,14 +138,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -163,11 +156,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH GEOLOOC 1 "19 May 2014" "geolooc 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH GEOLOOC 1 "03 September 2014" "geolooc 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
geolooc \- geolocalize IP addresses
|
geolooc \- geolocalize IP addresses
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -102,14 +103,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -128,11 +121,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH HANDJOOB 1 "19 May 2014" "handjoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH HANDJOOB 1 "03 September 2014" "handjoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
handjoob \- search for a job
|
handjoob \- search for a job
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -127,14 +128,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH HAVEDATE 1 "19 May 2014" "havedate 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH HAVEDATE 1 "03 September 2014" "havedate 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
havedate \- interact with dating websites
|
havedate \- interact with dating websites
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -175,14 +176,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -201,11 +194,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH MONBOOB 1 "19 May 2014" "monboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH MONBOOB 1 "03 September 2014" "monboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
monboob \- daemon to send and check messages
|
monboob \- daemon to send and check messages
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -23,6 +24,8 @@ Daemon allowing to regularly check for new messages on various websites, and sen
|
||||||
.br
|
.br
|
||||||
* dlfp (Da Linux French Page news website)
|
* dlfp (Da Linux French Page news website)
|
||||||
.br
|
.br
|
||||||
|
* feedly (handle the popular RSS reading service Feedly)
|
||||||
|
.br
|
||||||
* fourchan (4chan image board)
|
* fourchan (4chan image board)
|
||||||
.br
|
.br
|
||||||
* guerrillamail (GuerrillaMail temp mailbox)
|
* guerrillamail (GuerrillaMail temp mailbox)
|
||||||
|
|
@ -58,6 +61,8 @@ Daemon allowing to regularly check for new messages on various websites, and sen
|
||||||
* taz (Taz newspaper website)
|
* taz (Taz newspaper website)
|
||||||
.br
|
.br
|
||||||
* tinder (Tinder dating mobile application)
|
* tinder (Tinder dating mobile application)
|
||||||
|
.br
|
||||||
|
* twitter (twitter website)
|
||||||
.SH MONBOOB COMMANDS
|
.SH MONBOOB COMMANDS
|
||||||
.TP
|
.TP
|
||||||
\fBonce\fR
|
\fBonce\fR
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH PARCELOOB 1 "19 May 2014" "parceloob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH PARCELOOB 1 "03 September 2014" "parceloob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
parceloob \- manage your parcels
|
parceloob \- manage your parcels
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -123,14 +124,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -149,11 +142,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH PASTOOB 1 "19 May 2014" "pastoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH PASTOOB 1 "03 September 2014" "pastoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
pastoob \- post and get pastes from pastebins
|
pastoob \- post and get pastes from pastebins
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -141,14 +142,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -167,11 +160,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QBOOBMSG 1 "19 May 2014" "qboobmsg 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QBOOBMSG 1 "03 September 2014" "qboobmsg 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qboobmsg \- send and receive message threads
|
qboobmsg \- send and receive message threads
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -23,6 +24,8 @@ Qt application allowing to read messages on various websites and reply to them.
|
||||||
.br
|
.br
|
||||||
* dlfp (Da Linux French Page news website)
|
* dlfp (Da Linux French Page news website)
|
||||||
.br
|
.br
|
||||||
|
* feedly (handle the popular RSS reading service Feedly)
|
||||||
|
.br
|
||||||
* fourchan (4chan image board)
|
* fourchan (4chan image board)
|
||||||
.br
|
.br
|
||||||
* guerrillamail (GuerrillaMail temp mailbox)
|
* guerrillamail (GuerrillaMail temp mailbox)
|
||||||
|
|
@ -58,6 +61,8 @@ Qt application allowing to read messages on various websites and reply to them.
|
||||||
* taz (Taz newspaper website)
|
* taz (Taz newspaper website)
|
||||||
.br
|
.br
|
||||||
* tinder (Tinder dating mobile application)
|
* tinder (Tinder dating mobile application)
|
||||||
|
.br
|
||||||
|
* twitter (twitter website)
|
||||||
.SH OPTIONS
|
.SH OPTIONS
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-version\fR
|
\fB\-\-version\fR
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QCINEOOB 1 "19 May 2014" "qcineoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QCINEOOB 1 "03 September 2014" "qcineoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qcineoob \- search movies, people, torrent and subtitles
|
qcineoob \- search movies, people, torrent and subtitles
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QCOOKBOOB 1 "19 May 2014" "qcookboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QCOOKBOOB 1 "03 September 2014" "qcookboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qcookboob \- search recipes
|
qcookboob \- search recipes
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QFLATBOOB 1 "19 May 2014" "qflatboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QFLATBOOB 1 "03 September 2014" "qflatboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qflatboob \- search for housing
|
qflatboob \- search for housing
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QHANDJOOB 1 "19 May 2014" "qhandjoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QHANDJOOB 1 "03 September 2014" "qhandjoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qhandjoob \- search for job
|
qhandjoob \- search for job
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QHAVEDATE 1 "19 May 2014" "qhavedate 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QHAVEDATE 1 "03 September 2014" "qhavedate 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qhavedate \- interact with dating websites
|
qhavedate \- interact with dating websites
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QVIDEOOB 1 "19 May 2014" "qvideoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QVIDEOOB 1 "03 September 2014" "qvideoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qvideoob \- search and play videos
|
qvideoob \- search and play videos
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH QWEBCONTENTEDIT 1 "19 May 2014" "qwebcontentedit 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH QWEBCONTENTEDIT 1 "03 September 2014" "qwebcontentedit 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
qwebcontentedit \- manage websites content
|
qwebcontentedit \- manage websites content
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH RADIOOB 1 "19 May 2014" "radioob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH RADIOOB 1 "03 September 2014" "radioob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
radioob \- search, show or listen to radio stations
|
radioob \- search, show or listen to radio stations
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -36,13 +37,13 @@ playlist export [FILENAME]
|
||||||
.br
|
.br
|
||||||
playlist display
|
playlist display
|
||||||
.TP
|
.TP
|
||||||
\fBsearch\fR \fIPATTERN\fR
|
\fBsearch\fR (radio|song|album|playlist) \fIPATTERN\fR
|
||||||
.br
|
.br
|
||||||
List radios matching a PATTERN.
|
List (radio|song|album|playlist) matching a PATTERN.
|
||||||
.br
|
.br
|
||||||
|
|
||||||
.br
|
.br
|
||||||
If PATTERN is not given, this command will list all the radios.
|
If PATTERN is not given, this command will list all the (radio|song|album|playlist).
|
||||||
.br
|
.br
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
|
@ -131,14 +132,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -220,8 +213,9 @@ select result item keys to display (comma separated)
|
||||||
.SH FORMATTING OPTIONS
|
.SH FORMATTING OPTIONS
|
||||||
.TP
|
.TP
|
||||||
\fB\-f FORMATTER\fR, \fB\-\-formatter=FORMATTER\fR
|
\fB\-f FORMATTER\fR, \fB\-\-formatter=FORMATTER\fR
|
||||||
select output formatter (csv, htmltable, json, json_line, multiline, radio_list,
|
select output formatter (album_tracks_list_info, csv, htmltable, json,
|
||||||
simple, table, webkit)
|
json_line, multiline, playlist_tracks_list_info, radio_list, simple, song_list,
|
||||||
|
table, webkit)
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-no\-header\fR
|
\fB\-\-no\-header\fR
|
||||||
do not display header
|
do not display header
|
||||||
|
|
|
||||||
15
man/suboob.1
15
man/suboob.1
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH SUBOOB 1 "19 May 2014" "suboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH SUBOOB 1 "03 September 2014" "suboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
suboob \- search and download subtitles
|
suboob \- search and download subtitles
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -167,14 +168,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -193,11 +186,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH TRANSLABOOB 1 "19 May 2014" "translaboob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH TRANSLABOOB 1 "03 September 2014" "translaboob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
translaboob \- translate text from one language to another
|
translaboob \- translate text from one language to another
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -155,14 +156,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -181,11 +174,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH TRAVELOOB 1 "19 May 2014" "traveloob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH TRAVELOOB 1 "03 September 2014" "traveloob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
traveloob \- search for train stations and departures
|
traveloob \- search for train stations and departures
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -147,14 +148,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -173,11 +166,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH VIDEOOB 1 "19 May 2014" "videoob 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH VIDEOOB 1 "03 September 2014" "videoob 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
videoob \- search and play videos
|
videoob \- search and play videos
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -187,14 +188,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -213,11 +206,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBCONTENTEDIT 1 "19 May 2014" "webcontentedit 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBCONTENTEDIT 1 "03 September 2014" "webcontentedit 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
webcontentedit \- manage websites content
|
webcontentedit \- manage websites content
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -121,14 +122,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -147,11 +140,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOOB-CLI 1 "19 May 2014" "weboob-cli 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOOB-CLI 1 "03 September 2014" "weboob-cli 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboob-cli \- call a method on backends
|
weboob-cli \- call a method on backends
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOOB-CONFIG-QT 1 "19 May 2014" "weboob-config-qt 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOOB-CONFIG-QT 1 "03 September 2014" "weboob-config-qt 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboob-config-qt \- manage backends or register new accounts
|
weboob-config-qt \- manage backends or register new accounts
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOOB-CONFIG 1 "19 May 2014" "weboob-config 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOOB-CONFIG 1 "03 September 2014" "weboob-config 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboob-config \- manage backends or register new accounts
|
weboob-config \- manage backends or register new accounts
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOOB-DEBUG 1 "19 May 2014" "weboob-debug 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOOB-DEBUG 1 "03 September 2014" "weboob-debug 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboob-debug \- debug backends
|
weboob-debug \- debug backends
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOOB-REPOS 1 "19 May 2014" "weboob-repos 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOOB-REPOS 1 "03 September 2014" "weboob-repos 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboob-repos \- manage a weboob repository
|
weboob-repos \- manage a weboob repository
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WEBOORRENTS 1 "19 May 2014" "weboorrents 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WEBOORRENTS 1 "03 September 2014" "weboorrents 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
weboorrents \- search and download torrents
|
weboorrents \- search and download torrents
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -129,14 +130,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -155,11 +148,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
.\" -*- coding: utf-8 -*-
|
.\" -*- coding: utf-8 -*-
|
||||||
.TH WETBOOBS 1 "19 May 2014" "wetboobs 0\&.i"
|
.\" This file was generated automatically by tools/make_man.sh.
|
||||||
|
.TH WETBOOBS 1 "03 September 2014" "wetboobs 0\&.j"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
wetboobs \- display weather and forecasts
|
wetboobs \- display weather and forecasts
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
@ -121,14 +122,6 @@ If not, print the current value for the option.
|
||||||
.br
|
.br
|
||||||
If no argument is given, print the current formatter.
|
If no argument is given, print the current formatter.
|
||||||
.TP
|
.TP
|
||||||
\fBinspect\fR \fIBACKEND_NAME\fR
|
|
||||||
.br
|
|
||||||
Display the HTML string of the current page of the specified backend's browser.
|
|
||||||
.br
|
|
||||||
|
|
||||||
.br
|
|
||||||
If webkit_mechanize_browser Python module is installed, HTML is displayed in a WebKit GUI.
|
|
||||||
.TP
|
|
||||||
\fBlogging\fR [\fILEVEL\fR]
|
\fBlogging\fR [\fILEVEL\fR]
|
||||||
.br
|
.br
|
||||||
Set logging level.
|
Set logging level.
|
||||||
|
|
@ -147,11 +140,11 @@ List objects in current path.
|
||||||
.br
|
.br
|
||||||
If an argument is given, list the specified path.
|
If an argument is given, list the specified path.
|
||||||
.br
|
.br
|
||||||
Use \-U option to not sort results. It allows to use a "fast path" to
|
Use \-U option to not sort results. It allows you to use a "fast path" to
|
||||||
.br
|
.br
|
||||||
return results as soon as possible.
|
return results as soon as possible.
|
||||||
.br
|
.br
|
||||||
Use \-d option to display informations about a collection (and to not
|
Use \-d option to display information about a collection (and to not
|
||||||
.br
|
.br
|
||||||
display the content of it). It has the same behavior than the well
|
display the content of it). It has the same behavior than the well
|
||||||
.br
|
.br
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue