diff options
| -rw-r--r-- | file.c | 10 | ||||
| -rw-r--r-- | url.c | 2 | 
2 files changed, 12 insertions, 0 deletions
| @@ -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; @@ -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); | 
