Add support for Gopher items 5 and I

This commit is contained in:
bptato
2020-12-02 22:54:49 +01:00
parent fe97e6140a
commit 7dcc7ccff1
2 changed files with 12 additions and 0 deletions
+10
View File
@@ -1993,6 +1993,10 @@ loadGeneralFile(char *path, ParsedURL *volatile current, char *referer,
case 'h':
t = "text/html";
break;
case 'I':
t = "image/gopher";
break;
case '5':
case '9':
do_download = 1;
break;
@@ -7473,6 +7477,9 @@ loadGopherDir0(URLFile *uf, ParsedURL *pu)
case '1':
p = "[directory]";
break;
case '5':
p = "[DOS binary]";
break;
case '7':
p = "[search]";
break;
@@ -7491,6 +7498,9 @@ loadGopherDir0(URLFile *uf, ParsedURL *pu)
case 'i':
link = 0;
break;
case 'I':
p = "[image]";
break;
case '9':
p = "[binary]";
break;
+2
View File
@@ -1853,6 +1853,8 @@ openURL(char *url, ParsedURL *pu, ParsedURL *current,
case 's':
case 'g':
case 'h':
case 'I':
case '5':
case '7':
case '9':
tmp = Strnew_charp(pu->file);