X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=blobdiff_plain;f=ISSUES.org;h=1c8088fd1535889113c1c94122231adc82e0004e;hp=a4e9f6e8261342114804021aa2c8a7515667d09e;hb=0bf20003c52c7f2d1f78c289efa71634c8fae254;hpb=119e298777b89072794799dcb12b0d77ce8f441b diff --git a/ISSUES.org b/ISSUES.org index a4e9f6e..1c8088f 100644 --- a/ISSUES.org +++ b/ISSUES.org @@ -1,5 +1,6 @@ #+TITLE: Development notes/ideas -#+TODO: OPEN | CLOSED INVALID +#+TODO: OPEN(o!) | CLOSED(c!) INVALID(i@) +#+STARTUP: logdrawer * Open Bugs @@ -94,23 +95,47 @@ the bookmark page are available everywhere else. But expanding and collapsing bookmark groups sounds like it might need more specific bindings. -** OPEN Implement Gemini support [88%] - -Here is the checklist of features required before release: -- [X] basic genimi transactions -- [ ] gemini transactions requiring client certificates -- [X] gemini input handling -- [X] gemini map files (text/gemini) -- [X] Support for plain text responses (text/*) -- [X] Support for image responses (text/image) -- [X] Support for mime-specified character encodeing -- [X] Saving responses to disk -- [X] Viewing raw responses - -The last few will be made infinitely easier if we factor the -gopher "getter" code differently. +*** Priority bump <2020-05-31 Sun> + +As bookmark lists grow, some sort of grouping is becoming more and more +important. Furthermore, with this in place it would become feasible +(and I really suspect almost trivial) to implement an update-checking +system for chosen groups of bookmarks. + +For instance, we could prefetch content for each of the addresses within +a chosen group, indicating which had been changed since the last fetch. +(We could just store hashes of earlier content to detect changes.) + +The difficult thing to decide is how the UI for the new bookmark page +will work. It already has its own renderer, and we could easily stop +using the gopher directory line renderer in favour of something more +amenable to displaying the group information. Thus we're very free to +do whatever we like once we also have a special key map in place as well. + +I guess I need to look into what native widgets Emacs has for displaying +collapsable hierarchies. ** OPEN Add history browsing + +** OPEN Sanitize certificate names + :LOGBOOK: + - State "OPEN" from [2020-06-22 Mon 10:32] + :END: + +Currently things will break in undefined ways if a name is specified +that contains path separators and probably other characters that I +haven't thought of. This is dangerously unacceptable and needs to be +fixed right away. + +** OPEN Make installing existing certificates easier + :LOGBOOK: + - State "OPEN" from "CLOSED" [2020-06-22 Mon 10:34] + :END: + +It's naive to think that people don't have client certificates created +outside of elpher. Thus we need some easy way to "install" these +certificates, either by copying them or by referencing them in some +way. * Closed Enhancements @@ -198,3 +223,22 @@ occasionally pop up in termal windows. Lets leave it for now. cursor. A small amount of feedback could help with this. + +** CLOSED Implement Gemini support [100%] + :LOGBOOK: + - State "CLOSED" from "OPEN" [2020-06-20 Sat 22:32] + :END: + +Here is the checklist of features required before release: +- [X] basic genimi transactions +- [X] gemini transactions requiring client certificates +- [X] gemini input handling +- [X] gemini map files (text/gemini) +- [X] Support for plain text responses (text/*) +- [X] Support for image responses (text/image) +- [X] Support for mime-specified character encodeing +- [X] Saving responses to disk +- [X] Viewing raw responses + +The last few will be made infinitely easier if we factor the +gopher "getter" code differently.