Commit graph

6,763 commits

Author SHA1 Message Date
Laurent Bachelier
d500abf336 We have so many tests we make nose crash!
We raise the recursion limit, as the recursion here is normal.
This happens with nose 1.3.4.
2014-10-14 12:25:43 +02:00
Laurent Bachelier
db1618e86f pep8: Various manual fixes 2014-10-13 23:03:51 +02:00
smurail
d9065796e9 add Emirati Dirham AEB currency 2014-10-13 22:48:55 +02:00
Vincent Paredes
a217d867ad translating accnum description 2014-10-13 22:48:30 +02:00
Vincent Paredes
b699ddc3f9 Regexp for checking password 2014-10-13 22:46:57 +02:00
Florent
80e9dbd91d Update authors 2014-10-13 22:16:11 +02:00
Oleg Plakhotniuk
5997448169 Citibank module (https://online.citibank.com). Implements #1642 2014-10-13 04:41:44 -05:00
Oleg Plakhotniuk
a5859d384d Use AmericanTransaction.decimal_amount, closest_date, decompress_pdf and ReTokenizer in WellsFargo module. Part of #1641 2014-10-13 04:24:51 -05:00
Oleg Plakhotniuk
3aaf8181a5 Use AmericanTransaction.decimal_amount in PayPal module. Part of #1641 2014-10-13 04:23:57 -05:00
Oleg Plakhotniuk
d7acf211bd American amount to decimal conversion; PDF decompression function; regexp-based tokenizer. Part of #1641 2014-10-13 04:23:05 -05:00
Laurent Bachelier
c79dcc22df Remove nbsp in comments and documentation 2014-10-12 02:30:45 +02:00
Romain Bignon
44190f3f29 monboob wants an utc date... 2014-10-12 01:42:21 +02:00
Romain Bignon
3a4d8ec8dd datetime.fromtimestamp() already converts utc timestamp to local date 2014-10-11 22:32:08 +02:00
Romain Bignon
6322500d03 fix 'module' condition in WebNip.iter_backends() 2014-10-11 20:16:40 +02:00
Romain Bignon
cf5740fbd3 fix order of messages 2014-10-11 20:04:20 +02:00
Romain Bignon
c16bfd7dc8 new playme module 2014-10-11 19:56:37 +02:00
Romain Bignon
64b2acfd34 fix auth on tinder by correctly set the User-Agent header 2014-10-11 18:01:22 +02:00
Romain Bignon
89e7bbe9ef convert hds module to browser2 and fix it 2014-10-11 16:57:21 +02:00
Romain Bignon
94cea6458b ability to select an ItemElement 2014-10-11 16:55:59 +02:00
Romain Bignon
ed94b3dbb3 fix website changes 2014-10-11 14:21:06 +02:00
Bezleputh
8ac7bbb434 [seloger] adapt to browser2 2014-10-11 14:20:36 +02:00
Bezleputh
04220ca44d [pap] fix image retrieving 2014-10-11 14:20:36 +02:00
Romain Bignon
ce7e019e9a fix unfinite loop on fail login, and fix error message lookup 2014-10-11 14:11:19 +02:00
Laurent Bachelier
55d37401bc societegenerale: PIL is a global requirement
And no other module or component has an ImportError message for PIL.
It is also outdated, as users might install pillow instead.
2014-10-11 11:50:38 +02:00
Laurent Bachelier
e32005bf26 vlille: Better description 2014-10-11 11:33:26 +02:00
Laurent Bachelier
3ca07513b7 make_man: Text improvements
"sort" is confusing, we filter results, not order them. "sort out" would
also work.
2014-10-11 11:30:53 +02:00
Romain Bignon
662092fe08 show base classes in documentation 2014-10-11 07:32:46 +02:00
Romain Bignon
c92d74c8a7 copyright on top of file 2014-10-11 07:32:26 +02:00
Laurent Bachelier
f4c17cdc9d pep8: Fix E303 too many blank lines 2014-10-11 02:15:28 +02:00
Laurent Bachelier
4f897a8675 pep8: Fix object comparisons 2014-10-11 01:46:25 +02:00
Laurent Bachelier
c02ab5f2c5 wellsfargo: Remove unused imports 2014-10-11 01:41:08 +02:00
Laurent Bachelier
7aeb3e942e pep8: Fix indentation is not a multiple of four
autopep8 -a -r -i --select E111 .

Manual check.
2014-10-11 01:41:00 +02:00
Laurent Bachelier
21e8f82fd7 pep8: Use "X not in Y" instead of "not X in Y"
flake8 --select E713, semi-manual fixing
2014-10-11 01:27:24 +02:00
Laurent Bachelier
31a96228db unsee: Restrict URL to unsee domains
Otherwise it would crash any pastoob get!
2014-10-10 23:41:44 +02:00
Laurent Bachelier
99b4ce7d58 imgur: Restrict URL to imgur domains
Otherwise it would crash any pastoob get!
2014-10-10 23:41:44 +02:00
Laurent Bachelier
448c06d125 pep8 blank lines fixes
flake8 --select W391,E302,E301,E304

autopep8 can't fix W391 even though it claims it can.
Fixed using a simple custom script.
2014-10-10 23:41:44 +02:00
Laurent Bachelier
be2c8bd789 Add ignore dirs for flake8 2014-10-10 23:41:44 +02:00
Laurent Bachelier
e783f2c821 Remove tuple method parameters
They can be found through autopep8 (W690) or python-modernize.
Variables manually renamed.

This is because Python 3 does not support tuple unpacking:
http://legacy.python.org/dev/peps/pep-3113/
2014-10-10 23:41:44 +02:00
Laurent Bachelier
6161a0aacd pep8 fixes, modernizations
autopep8 -a -r -i --select E711,E712,W601,W602,W603,W604,W690,E304,E401,E502 .
Also includes some manual reindentations (many are left after the print()
changes).
Manually checked, some modernizations not commited here.
2014-10-10 23:41:43 +02:00
Laurent Bachelier
e2ac8687c6 Always raise instances of NotImplementedError 2014-10-10 23:41:43 +02:00
Oleg Plakhotniuk
cbd084283d Improved Wells Fargo module stability.
Signed-off-by: Oleg Plakhotniuk <olegus8@gmail.com>
2014-10-10 23:40:57 +02:00
Romain Bignon
b1f20b5489 fix bcall to to new behavior of do(), and fix QtDo too, and all Qt applications... 2014-10-10 17:34:48 +02:00
Romain Bignon
7339258978 fix fillobj on video thumbnail 2014-10-10 17:33:50 +02:00
Florent
768be7fcc6 Fix "show" for threads in boobmsg 2014-10-10 14:56:40 +02:00
Romain Bignon
eea0eaa2d5 fix compatibility with the new behavior of do() 2014-10-10 14:19:05 +02:00
Florent
628c63f899 Remove backend for do() calls 2014-10-10 14:11:45 +02:00
Florent
40a8bc0ce1 Creditcoop/perso : upgrade to browser2 2014-10-10 11:49:49 +02:00
Bezleputh
05a2a8cc9c [pap] exclude adverts from other websites 2014-10-10 11:30:05 +02:00
Florent
6f5f41fe57 Use find object 2014-10-10 10:21:11 +02:00
Laurent Bachelier
23b4cc909f Add has-class xpath function
Taken from https://gist.github.com/shirk3y/458224083ce5464627bc
2014-10-10 10:09:14 +02:00