summaryrefslogtreecommitdiff
path: root/developer-weekend/aug-2019.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'developer-weekend/aug-2019.mdwn')
-rw-r--r--developer-weekend/aug-2019.mdwn17
1 files changed, 17 insertions, 0 deletions
diff --git a/developer-weekend/aug-2019.mdwn b/developer-weekend/aug-2019.mdwn
index 9cc6b2b..8c8cbfd 100644
--- a/developer-weekend/aug-2019.mdwn
+++ b/developer-weekend/aug-2019.mdwn
@@ -104,6 +104,23 @@ Daniel
* Migrated the callback for auth/ssl from llcache through hlcache to the users
of the hlcache. It should be functionally equivalent (except sub-fetches
no longer prompt but instead automatically fail like in other browsers).
+* Designed an approach for shadow contents, fleshed it out, discussed it among
+ ourselves, discarded as being overcomplex. It is preserved below for posterity.
+* Designed, with Vince primarily being the clever monkey, a new approach which
+ removed the query callbacks from the llcache and instead uses content generated
+ in the `about:` handler. We think this is cleaner.
+* Combined `CONTENT_MSG_ERROR` and `CONTENT_MSG_ERRORCODE`
+* Taught `browser_window` how to remember fetch parameters so that we can
+ restart fetches in the new query design. Split navigation in half to make
+ that clean.
+* Migrated SSL certificate chain storage to `browser_window` and allowed it
+ to store the chains for the completed fetch, leading to possibilities of
+ padlocks later down the line. In the process, fixed a long-standing bug
+ where serial numbers never worked.
+* Excised the llcache query pathways and migrated them all the way up to the
+ `browser_window`
+* Tracked down a strange behaviour and discovered we didn't handle `PAUSED`
+ coming out when we tried to finish the parse. Added a fix for that.
Vince
-----