[w3m-dev 03319] mailto

* main.c (followA): mailto
* main.c (cmd_loadURL): mailto
* url.c (_parsedURL2Str): mailto: query
From: AIDA Shinra <aida-s@jcom.home.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-09-24 17:06:04 +00:00
parent f5c8b4df75
commit 29e57b1c5c
3 changed files with 38 additions and 5 deletions
+8 -1
View File
@@ -1,3 +1,10 @@
2002-09-25 AIDA Shinra <aida-s@jcom.home.ne.jp>
* [w3m-dev 03319] mailto
* main.c (followA): mailto
* main.c (cmd_loadURL): mailto
* url.c (_parsedURL2Str): mailto: query
2002-09-25 AIDA Shinra <aida-s@jcom.home.ne.jp>
* [w3m-dev 03318] Re: Passwords
@@ -3815,4 +3822,4 @@
* release-0-2-1
* import w3m-0.2.1
$Id: ChangeLog,v 1.428 2002/09/24 16:35:02 ukai Exp $
$Id: ChangeLog,v 1.429 2002/09/24 17:06:04 ukai Exp $
+25 -3
View File
@@ -1,4 +1,4 @@
/* $Id: main.c,v 1.112 2002/09/05 15:49:50 ukai Exp $ */
/* $Id: main.c,v 1.113 2002/09/24 17:06:04 ukai Exp $ */
#define MAINPROGRAM
#include "fm.h"
#include <signal.h>
@@ -2729,11 +2729,22 @@ followA(void)
#endif
) {
/* invoke external mailer */
Str to = Strnew_charp(a->url + 7);
#ifndef USE_W3MMAILER
char *pos;
if (!non_null(Mailer)) {
disp_err_message("no mailer is specified", TRUE);
return;
}
if ((pos = strchr(to->ptr, '?')) != NULL)
Strtruncate(to, pos - to->ptr);
#endif
fmTerm();
system(myExtCommand(Mailer, shell_quote(url_unquote(a->url + 7)),
system(myExtCommand(Mailer, shell_quote(url_unquote(to->ptr)),
FALSE)->ptr);
fmInit();
displayBuffer(Currentbuf, B_FORCE_REDRAW);
pushHashHist(URLHist, a->url);
return;
}
#ifdef USE_NNTP
@@ -3691,11 +3702,22 @@ cmd_loadURL(char *url, ParsedURL *current, char *referer)
#endif
) {
/* invoke external mailer */
Str to = Strnew_charp(url + 7);
#ifndef USE_W3MMAILER
char *pos;
if (!non_null(Mailer)) {
disp_err_message("no mailer is specified", TRUE);
return;
}
if ((pos = strchr(to->ptr, '?')) != NULL)
Strtruncate(to, pos - to->ptr);
#endif
fmTerm();
system(myExtCommand(Mailer, shell_quote(url_unquote(url + 7)),
system(myExtCommand(Mailer, shell_quote(url_unquote(to->ptr)),
FALSE)->ptr);
fmInit();
displayBuffer(Currentbuf, B_FORCE_REDRAW);
pushHashHist(URLHist, url);
return;
}
#ifdef USE_NNTP
+5 -1
View File
@@ -1,4 +1,4 @@
/* $Id: url.c,v 1.49 2002/09/24 16:35:02 ukai Exp $ */
/* $Id: url.c,v 1.50 2002/09/24 17:06:05 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include <sys/socket.h>
@@ -1114,6 +1114,10 @@ _parsedURL2Str(ParsedURL *pu, int pass)
#ifndef USE_W3MMAILER
if (pu->scheme == SCM_MAILTO) {
Strcat_charp(tmp, pu->file);
if (pu->query) {
Strcat_char(tmp, '?');
Strcat_charp(tmp, pu->query);
}
return tmp;
}
#endif