aboutsummaryrefslogtreecommitdiff
path: root/88/index.md
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2025-09-28 20:26:15 +0200
committerRodrigo <rodarima@gmail.com>2025-09-28 23:10:55 +0200
commitfb510ea86be5ceb9e91573890242581fdbd77ad8 (patch)
treed819fe40683592008d136727f5a0b03e48dc1164 /88/index.md
Initial versionHEADmain
Diffstat (limited to '88/index.md')
-rw-r--r--88/index.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/88/index.md b/88/index.md
new file mode 100644
index 0000000..69b316c
--- /dev/null
+++ b/88/index.md
@@ -0,0 +1,30 @@
+Title: Resolve / and ~/ to local directories
+Author: rodarima
+Created: Sat, 02 Mar 2024 18:51:35 +0000
+State: open
+
+Currently they are resolving to http, which doesn't make much sense.
+
+Commented-by: dogma
+
+--%--
+From: zzo38
+Date: Tue, 02 Apr 2024 23:13:13 +0000
+
+I would rather want a "relative mode". For example, if the current URL is `http://example.net/examples/42.html` and you type `/` then it will go to `http://example.net/` and if you type `~/` then it will go to `http://example.net/examples/~/`. It would do this with all URLs, not only those ones. If you include the scheme then it is an absolute URL. (I have managed to modify Firefox to work like this.)
+
+--%--
+From: rodarima
+Date: Wed, 03 Apr 2024 09:49:40 +0000
+
+> I would rather want a "relative mode". For example, if the current URL is `http://example.net/examples/42.html` and you type `/` then it will go to `http://example.net/` and if you type `~/` then it will go to `http://example.net/examples/~/`. It would do this with all URLs, not only those ones. If you include the scheme then it is an absolute URL. (I have managed to modify Firefox to work like this.)
+
+I opened #119 to address this specific feature. This issue is to solve the problem of running:
+
+```
+$ dillo '~/'
+```
+
+And end up loading `http://~/`.
+
+Loading paths that start with `/` already works from the command line, including only `/` (opens `file:/`). But not if opened directly from the location bar, which tries to load `http:/`. \ No newline at end of file