Compare commits
3 commits
8de79a6e5a
...
a65f7ceb39
Author | SHA1 | Date | |
---|---|---|---|
dece | a65f7ceb39 | ||
dece | acf8147fa1 | ||
dece | 1d92b52379 |
65
BOARD.txt
65
BOARD.txt
|
@ -1,4 +1,38 @@
|
|||
TODO DONE
|
||||
TODO
|
||||
----------------------------------------
|
||||
bug: can't input unicode
|
||||
bug: xterm is borked
|
||||
dumb rendering mode per site
|
||||
well, preferences per site maybe?
|
||||
does encoding really work? cf. egsam
|
||||
get/set config using command-line
|
||||
more UT
|
||||
setup.py
|
||||
|
||||
|
||||
|
||||
BACKLOG
|
||||
--------------------------------------------------------------------------------
|
||||
click on links to open them
|
||||
download without memory buffer
|
||||
download in the background
|
||||
download view instead of last download
|
||||
margins / centering
|
||||
pre blocks folding
|
||||
buffers (tabs)
|
||||
a11y? tts?
|
||||
handle soft-hyphens on wrapping
|
||||
bug: combining chars reduce lengths
|
||||
non shit command-line
|
||||
response code 11 (if still there)
|
||||
gopher?
|
||||
opt. maintain history between sessions
|
||||
history (forward) (useful?)
|
||||
search in page (ugh)
|
||||
|
||||
|
||||
|
||||
DONE
|
||||
--------------------------------------------------------------------------------
|
||||
browsing
|
||||
links
|
||||
|
@ -20,32 +54,3 @@ TODO DONE
|
|||
identity management
|
||||
logging
|
||||
home page
|
||||
|
||||
|
||||
|
||||
BACKLOG
|
||||
--------------------------------------------------------------------------------
|
||||
bug: can't input unicode
|
||||
click on links to open them
|
||||
bug: exiting editor breaks curses
|
||||
dumb rendering mode per site
|
||||
well, preferences per site maybe?
|
||||
download without memory buffer
|
||||
download in the background
|
||||
download view instead of last download
|
||||
does encoding really work? cf. egsam
|
||||
margins / centering
|
||||
pre blocks folding
|
||||
buffers (tabs)
|
||||
a11y? tts?
|
||||
handle soft-hyphens on wrapping
|
||||
bug: combining chars reduce lengths
|
||||
non shit command-line
|
||||
response code 11 (if still there)
|
||||
gopher?
|
||||
opt. maintain history between sessions
|
||||
history (forward) (useful?)
|
||||
search in page (ugh)
|
||||
get/set config using command-line
|
||||
bug: xterm is borked
|
||||
more UT
|
||||
|
|
|
@ -9,7 +9,7 @@ import subprocess
|
|||
import tempfile
|
||||
from math import inf
|
||||
from pathlib import Path
|
||||
from typing import Dict, Optional, Tuple
|
||||
from typing import Optional, Tuple
|
||||
|
||||
from bebop.bookmarks import (
|
||||
get_bookmarks_path,
|
||||
|
|
|
@ -6,9 +6,7 @@ from typing import Optional
|
|||
|
||||
from bebop.browser.browser import Browser
|
||||
from bebop.command_line import CommandLine
|
||||
from bebop.fs import (
|
||||
get_downloads_path, get_identities_path, get_identities_list_path
|
||||
)
|
||||
from bebop.fs import get_downloads_path, get_identities_list_path
|
||||
from bebop.identity import (
|
||||
ClientCertificateException, create_certificate, get_cert_and_key,
|
||||
get_identities_for_url, load_identities, save_identities
|
||||
|
@ -295,7 +293,7 @@ def _handle_cert_required(
|
|||
"""
|
||||
identities = load_identities(get_identities_list_path())
|
||||
if not identities:
|
||||
browser.set_status_error(f"Can't load identities.")
|
||||
browser.set_status_error("Can't load identities.")
|
||||
return None
|
||||
browser.identities = identities
|
||||
|
||||
|
|
|
@ -12,6 +12,9 @@ def open_external_program(command):
|
|||
"""
|
||||
curses.nocbreak()
|
||||
curses.echo()
|
||||
curses.curs_set(1)
|
||||
subprocess.run(command)
|
||||
curses.mousemask(curses.ALL_MOUSE_EVENTS)
|
||||
curses.curs_set(0)
|
||||
curses.noecho()
|
||||
curses.cbreak()
|
||||
|
|
|
@ -26,12 +26,11 @@ import hashlib
|
|||
import json
|
||||
import logging
|
||||
import secrets
|
||||
import string
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
from typing import Optional, Union
|
||||
from typing import Optional
|
||||
|
||||
from bebop.fs import get_identities_path, get_user_data_path
|
||||
from bebop.fs import get_identities_path
|
||||
|
||||
|
||||
def load_identities(identities_path: Path) -> Optional[dict]:
|
||||
|
|
Reference in a new issue