about summary refs log tree commit diff stats
path: root/WWW
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>1998-09-21 02:40:02 -0400
committerThomas E. Dickey <dickey@invisible-island.net>1998-09-21 02:40:02 -0400
commit51a6f85e8e96e257cbb43d0daab7abdf36ad2186 (patch)
treeff68a9445df1c46cf554ab3ab8b2501bfc14c90f /WWW
parent03b222bbbdbc58cbe5a4eb93e500d490800dee9c (diff)
downloadlynx-snapshots-51a6f85e8e96e257cbb43d0daab7abdf36ad2186.tar.gz
snapshot of project "lynx", label v2-8-1dev_29
Diffstat (limited to 'WWW')
-rw-r--r--WWW/Library/Implementation/HTFile.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c
index 4cb68047..9d8c8efa 100644
--- a/WWW/Library/Implementation/HTFile.c
+++ b/WWW/Library/Implementation/HTFile.c
@@ -577,7 +577,8 @@ PUBLIC char * HTnameOfFile_WWW ARGS3(
     else
 	HTUnEscapeSome(path, "/");	/* Interpret % signs for path delims */
 
-    if (0 == strcmp(acc_method, "file")) { /* local file */
+    if (0 == strcmp(acc_method, "file")	/* local file */
+     || !*acc_method) {			/* implicitly local? */
 	if ((0 == strcasecomp(host, HTHostName())) ||
 	    (0 == strcasecomp(host, "localhost")) || !*host) {
 	    CTRACE(tfp, "Node `%s' means path `%s'\n", name, path);
@@ -1232,11 +1233,11 @@ PUBLIC BOOL HTDirTitles ARGS3(
       char * printable = NULL;
 
 #ifdef DIRED_SUPPORT
-      if (0 == strncasecomp(path, "/%2F", 4))
-	  StrAllocCopy(printable, (path+1));
-      else
-	  StrAllocCopy(printable, path);
-      if (0 == strncasecomp(printable, "/vmsysu%2b", 10) ||
+      printable = HTfullURL_toFile(
+	    (0 == strncasecomp(path, "/%2F", 4))	/* "//" ? */
+	    ? (path+1)
+	    : path);
+      if (0 == strncasecomp(printable, "/vmsysu:", 8) ||
 	  0 == strncasecomp(printable, "/anonymou.", 10)) {
 	  StrAllocCopy(cp, (printable+1));
 	  StrAllocCopy(printable, cp);
@@ -1244,11 +1245,11 @@ PUBLIC BOOL HTDirTitles ARGS3(
       }
 #else
       StrAllocCopy(printable, (current ? current + 1 : ""));
+      HTUnEscape(printable);
 #endif /* DIRED_SUPPORT */
 
       START(HTML_HEAD);
       PUTS("\n");
-      HTUnEscape(printable);
       START(HTML_TITLE);
       PUTS(*printable ? printable : "Welcome");
       PUTS(" directory");