quote URLs with non-ASCII local directory names. [w3m-dev 04212]
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-04-19 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
|
||||||
|
|
||||||
|
* [w3m-dev 04212] quote URL of local dir
|
||||||
|
* local.c: quote URLs with non-ASCII local directory names.
|
||||||
|
|
||||||
2007-04-19 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
|
2007-04-19 Hironori Sakamoto <hsaka@mth.biglobe.ne.jp>
|
||||||
|
|
||||||
* [w3m-dev 04211] input type=image
|
* [w3m-dev 04211] input type=image
|
||||||
@@ -8800,4 +8805,4 @@ a * [w3m-dev 03276] compile error on EWS4800
|
|||||||
* release-0-2-1
|
* release-0-2-1
|
||||||
* import w3m-0.2.1
|
* import w3m-0.2.1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.976 2007/04/19 12:00:37 inu Exp $
|
$Id: ChangeLog,v 1.977 2007/04/19 12:07:02 inu Exp $
|
||||||
|
|||||||
5
local.c
5
local.c
@@ -1,4 +1,4 @@
|
|||||||
/* $Id: local.c,v 1.33 2006/04/07 13:21:11 inu Exp $ */
|
/* $Id: local.c,v 1.34 2007/04/19 12:07:04 inu Exp $ */
|
||||||
#include "fm.h"
|
#include "fm.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@@ -85,7 +85,8 @@ loadLocalDir(char *dname)
|
|||||||
Strcat_char(dirname, '/');
|
Strcat_char(dirname, '/');
|
||||||
qdir = html_quote(Str_conv_from_system(dirname)->ptr);
|
qdir = html_quote(Str_conv_from_system(dirname)->ptr);
|
||||||
/* FIXME: gettextize? */
|
/* FIXME: gettextize? */
|
||||||
tmp = Strnew_m_charp("<HTML>\n<HEAD>\n<BASE HREF=\"file://", qdir,
|
tmp = Strnew_m_charp("<HTML>\n<HEAD>\n<BASE HREF=\"file://",
|
||||||
|
html_quote(file_quote(dirname->ptr)),
|
||||||
"\">\n<TITLE>Directory list of ", qdir,
|
"\">\n<TITLE>Directory list of ", qdir,
|
||||||
"</TITLE>\n</HEAD>\n<BODY>\n<H1>Directory list of ",
|
"</TITLE>\n</HEAD>\n<BODY>\n<H1>Directory list of ",
|
||||||
qdir, "</H1>\n", NULL);
|
qdir, "</H1>\n", NULL);
|
||||||
|
|||||||
Reference in New Issue
Block a user