[w3m-dev 03576] Re: news support

* anchor.c (_put_anchor_news): convert to document code and quote
	(_put_anchor_all): convert to document code
* main.c (chkNMIDBuffer): change url_like_pat
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-16 15:41:03 +00:00
parent c5f41178f1
commit aec3cd7cc6
3 changed files with 23 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: anchor.c,v 1.14 2002/12/10 15:36:10 ukai Exp $ */
/* $Id: anchor.c,v 1.15 2002/12/16 15:41:27 ukai Exp $ */
#include "fm.h"
#include "myctype.h"
#include "regex.h"
@@ -196,9 +196,11 @@ _put_anchor_news(Buffer *buf, char *p1, char *p2, int line, int pos)
p1++;
if (*(p2 - 1) == '>')
p2--;
tmp = Strnew_size(sizeof("news:") - 1 + (p2 - p1));
Strcat_charp_n(tmp, "news:", sizeof("news:") - 1);
Strcat_charp_n(tmp, p1, p2 - p1);
tmp = Strnew_charp_n(p1, p2 - p1);
#ifdef JP_CHARSET
tmp = conv_str(tmp, InnerCode, buf->document_code);
#endif
tmp = Sprintf("news:%s", file_quote(tmp->ptr));
return registerHref(buf, tmp->ptr, NULL, NO_REFERER, NULL, '\0', line,
pos);
}
@@ -207,7 +209,13 @@ _put_anchor_news(Buffer *buf, char *p1, char *p2, int line, int pos)
static Anchor *
_put_anchor_all(Buffer *buf, char *p1, char *p2, int line, int pos)
{
return registerHref(buf, allocStr(p1, p2 - p1), NULL, NO_REFERER, NULL,
Str tmp;
tmp = Strnew_charp_n(p1, p2 - p1);
#ifdef JP_CHARSET
tmp = conv_str(tmp, InnerCode, buf->document_code);
#endif
return registerHref(buf, url_quote(tmp->ptr), NULL, NO_REFERER, NULL,
'\0', line, pos);
}