Florian Bruhin
|
8ebac8d38c
|
Various spelling fixes.
|
2015-03-31 21:11:47 +02:00 |
|
Florian Bruhin
|
82322beb03
|
Fix pep257 issues.
|
2015-03-26 07:08:54 +01:00 |
|
Florian Bruhin
|
157c25bb13
|
Queue messages for 'current' window if unfocused.
Fixes #512.
|
2015-03-22 22:39:56 +01:00 |
|
Florian Bruhin
|
94f694bd77
|
Add an utils.newest_slice.
This takes an iterable and uses itertools.islice to get the n newest elements
from it.
|
2015-03-13 19:25:48 +01:00 |
|
Florian Bruhin
|
8e0dddf86a
|
Restore sys.std* in utils.fake_io on exceptions.
|
2015-02-26 17:47:07 +01:00 |
|
Florian Bruhin
|
7dbbfedd3b
|
Replace unencodable chars in download filenames.
Fixes #427.
|
2015-01-03 17:50:59 +01:00 |
|
Florian Bruhin
|
450d1ab70d
|
Update copyright years
|
2015-01-03 15:51:31 +01:00 |
|
Florian Bruhin
|
f1435ce51f
|
Use a dirty hack to copy icon files into package.
See #325.
|
2014-12-28 14:50:25 +01:00 |
|
Florian Bruhin
|
2a4e884e1b
|
Set window icon. Closes #325.
|
2014-12-28 14:35:28 +01:00 |
|
Florian Bruhin
|
017f143a5f
|
Add a binary mode to utils.read_file.
This will be needed for #325.
|
2014-12-22 23:44:09 +01:00 |
|
Florian Bruhin
|
decfd02033
|
Use a QNAM to pastebin from crash dialog.
Fixes #280.
|
2014-12-11 23:34:03 +01:00 |
|
Florian Bruhin
|
ec07e4f8be
|
Handle OSError exceptions where appropriate.
Fixes #25.
|
2014-12-10 18:00:49 +01:00 |
|
Florian Bruhin
|
68b9aaace4
|
Add utils.raises. Closes #274.
|
2014-11-27 20:44:48 +01:00 |
|
Florian Bruhin
|
7b1ea3ff40
|
Typo: s/similiar/similar/g
|
2014-11-19 22:46:52 +01:00 |
|
Florian Bruhin
|
c70f6f534b
|
Get rid of dotted_getattr.
|
2014-11-10 18:59:13 +01:00 |
|
Florian Bruhin
|
3fa8efc34b
|
Initial shlex fork
|
2014-11-03 21:27:07 +01:00 |
|
Florian Bruhin
|
6e4759b65a
|
Better paste metainfo
|
2014-10-31 07:57:50 +01:00 |
|
Florian Bruhin
|
33043f0f6c
|
Fix lint
|
2014-10-08 22:20:38 +02:00 |
|
Florian Bruhin
|
71308b45ac
|
Add utils.qualname. Closes #169.
|
2014-10-08 21:11:04 +02:00 |
|
Florian Bruhin
|
0e7a60abf6
|
Move utils.get_standard_dir to its own file.
This is a preparation for #19 and #20 because there are too many functions
related to standarddir in utils.
|
2014-10-08 06:20:31 +02:00 |
|
Florian Bruhin
|
6349a6a213
|
Remove Emit:/Raise: from docstrings.
They got out-of-sync fast and provided no real benefit.
|
2014-10-07 23:08:37 +02:00 |
|
Florian Bruhin
|
a8304d03ea
|
Clean up get_standard_dir
|
2014-10-02 22:24:08 +02:00 |
|
Florian Bruhin
|
e74fa71a0a
|
Seprate data/config dirs on Windows.
See #21.
|
2014-10-02 22:12:45 +02:00 |
|
Florian Bruhin
|
3a66937205
|
Clean up argument handling in get_standard_dir
|
2014-10-02 22:12:24 +02:00 |
|
Florian Bruhin
|
b20536d472
|
Move handling of --confdir into get_standard_dir
|
2014-10-02 21:54:42 +02:00 |
|
Florian Bruhin
|
d674b90240
|
Clean up FIXMEs and add github URLs
|
2014-10-01 22:23:27 +02:00 |
|
Florian Bruhin
|
36fd2e5c7f
|
Improve __repr__ methods.
|
2014-09-26 15:48:24 +02:00 |
|
Florian Bruhin
|
1960cfe114
|
Really fix keyevent_to_string.
|
2014-09-26 07:31:59 +02:00 |
|
Florian Bruhin
|
cdb33a04cc
|
Fix Ctrl-key on OS X
|
2014-09-25 22:46:25 +02:00 |
|
Florian Bruhin
|
62e55499eb
|
Privatize all attributes which aren't needed from the outside.
|
2014-09-24 22:25:11 +02:00 |
|
Florian Bruhin
|
3f02451828
|
Move object registry to its own file.
|
2014-09-24 07:06:45 +02:00 |
|
Florian Bruhin
|
6090bf418d
|
Add utils.delete_object()
|
2014-09-24 06:41:39 +02:00 |
|
Florian Bruhin
|
d32d6c9b28
|
Allow a default value for utils.get_object.
|
2014-09-24 06:41:22 +02:00 |
|
Florian Bruhin
|
a2d3ca6565
|
Make it possible to update an object in the object registry.
|
2014-09-24 06:25:08 +02:00 |
|
Florian Bruhin
|
dce5289b69
|
Rename global registry from obj to registry.
|
2014-09-23 19:53:47 +02:00 |
|
Florian Bruhin
|
dc7ad3e2de
|
Use a normal UserDict for ObjectRegistry.
|
2014-09-23 19:53:46 +02:00 |
|
Florian Bruhin
|
3b3675d1af
|
utils: Add helper functions get_object/register_object.
|
2014-09-23 19:53:15 +02:00 |
|
Florian Bruhin
|
f4876c7f4f
|
Split docutils from utils
|
2014-09-23 04:22:51 +02:00 |
|
Florian Bruhin
|
bc01f3a780
|
Fix spelling of temporarily
|
2014-09-22 20:44:07 +02:00 |
|
Florian Bruhin
|
812a0fdd41
|
Merge branch 'newcmd'
Conflicts:
.flake8
pkg/PKGBUILD.qutebrowser-git
qutebrowser/browser/commands.py
qutebrowser/browser/hints.py
qutebrowser/config/configdata.py
qutebrowser/network/qutescheme.py
qutebrowser/test/config/test_configtypes.py
qutebrowser/utils/utils.py
|
2014-09-22 19:09:48 +02:00 |
|
Florian Bruhin
|
def417b8a5
|
Check if docs are up to date if running from git repo.
|
2014-09-21 22:15:56 +02:00 |
|
Florian Bruhin
|
906a049382
|
Fix lint
|
2014-09-18 17:25:48 +02:00 |
|
Florian Bruhin
|
7f76c3ba13
|
safe_shlex_split: cleanup and don't do double-lexing
|
2014-09-18 16:58:38 +02:00 |
|
Florian Bruhin
|
1c1534b5f6
|
safe_shlex_split: Use real lexer object and handle ' correctly.
|
2014-09-18 16:57:07 +02:00 |
|
Florian Bruhin
|
7de0b85dda
|
safe_shlex_split: Adjust docstring
|
2014-09-18 16:15:57 +02:00 |
|
Florian Bruhin
|
6a86924e60
|
safe_shlex_split: Give up after 3 tries.
|
2014-09-18 16:15:37 +02:00 |
|
Florian Bruhin
|
2e35685fe1
|
safe_shlex_split: Don't split None.
|
2014-09-18 16:15:13 +02:00 |
|
Florian Bruhin
|
644dfe53e2
|
Add a decorator to prevent Exceptions (to prevent segfaults).
|
2014-09-16 22:06:48 +02:00 |
|
Florian Bruhin
|
fea3524443
|
Remove 'or None' in docs.
|
2014-09-13 00:37:07 +02:00 |
|
Florian Bruhin
|
b453ae563e
|
Clean up docstring parsing and move it into qutebrowser for commands.
|
2014-09-08 07:36:17 +02:00 |
|