repo: uritools action: commit revision: path_from: revision_from: 74a05d21e26430880a2f59f9a3fe030e64be19c8: path_to: revision_to:
commit 74a05d21e26430880a2f59f9a3fe030e64be19c8 Author: epochDate: Sun Oct 2 23:08:43 2022 -0500 added special-case of empty input mapping to base-uri diff --git a/uri-absolution b/uri-absolution
--- a/uri-absolution
+++ b/uri-absolution
@@ -8,15 +8,18 @@ most_of_path="$(printf "%s\n" "$base_uri" | uricut -p | rev | cut -d/ -f2- | rev
### this is the verbose version for debugging.
### to enable debug mode, uncomment this, and comment out the next sed.
#sed \
-#'s|^<[ \t]*\([A-Za-z][A-Za-z+.-]*:[^ \t]*\)>|(absolute) \1|g;t
+#'s|^<>$|(blank input) '"${base_uri}"'|g;t
+#s|^<[ \t]*\([A-Za-z][A-Za-z+.-]*:[^ \t]*\)>|(absolute) \1|g;t
#s|^<[ \t]*\(#[^ \t]*\)>|(fragmentid_relative) '"${base_uri}"'\1|g;t
#s|^<[ \t]*\(?[^ \t]*\)>|(querystring_relative) '"$scheme"'://'"$domain""$path"'\1|g;t
#s|^<[ \t]*\(//[^ \t]*\)>|(scheme_relative) '"$scheme"':\1|g;t
#s|^<[ \t]*\(/[^ \t]*\)>|(absolute_path) '"$scheme"'://'"$domain"'\1|g;t
#s|^<[ \t]*\([^ \t]*\)>|(same-dir path relative) '"$scheme"'://'"$domain""$most_of_path"'/\1|g'
+#exit 0
sed -u \
-'s|^<[ \t]*\([A-Za-z][A-Za-z+.-]*:[^ \t]*\)>|\1|g;t
+'s|^<>$|'"${base_uri}"'|g;t
+s|^<[ \t]*\([A-Za-z][A-Za-z+.-]*:[^ \t]*\)>|\1|g;t
s|^<[ \t]*\(#[^ \t]*\)>|'"${base_uri}"'\1|g;t
s|^<[ \t]*\(?[^ \t]*\)>|'"$scheme"'://'"$domain""$path"'\1|g;t
s|^<[ \t]*\(//[^ \t]*\)>|'"$scheme"':\1|g;t
-----END OF PAGE-----