1999-07-04 13:51:09 +00:00
|
|
|
--- src/LYHistory.c.orig Thu Dec 24 20:27:23 1998
|
|
|
|
+++ src/LYHistory.c Mon Feb 22 15:01:18 1999
|
|
|
|
@@ -23,6 +23,10 @@
|
1998-11-02 04:02:00 +00:00
|
|
|
#include <LYexit.h>
|
|
|
|
#include <LYLeaks.h>
|
1998-08-10 16:03:26 +00:00
|
|
|
|
1998-11-02 04:02:00 +00:00
|
|
|
+#include <HTCJK.h>
|
1998-08-10 16:03:26 +00:00
|
|
|
+extern HTCJKlang HTCJK;
|
|
|
|
+extern HTkcode kanji_code;
|
1998-11-02 04:02:00 +00:00
|
|
|
+
|
|
|
|
PUBLIC HTList * Visited_Links = NULL; /* List of safe popped docs. */
|
1998-08-10 16:03:26 +00:00
|
|
|
|
1998-11-02 04:02:00 +00:00
|
|
|
/*
|
1999-07-04 13:51:09 +00:00
|
|
|
@@ -401,6 +405,20 @@
|
1998-08-10 16:03:26 +00:00
|
|
|
} else {
|
1999-07-04 13:51:09 +00:00
|
|
|
StrAllocCopy(Title, NO_TITLE);
|
1998-08-10 16:03:26 +00:00
|
|
|
}
|
|
|
|
+ if (HTCJK == JAPANESE) {
|
|
|
|
+ char *tmp;
|
|
|
|
+
|
|
|
|
+ if ((tmp = (char *)calloc(strlen(Title)*2, sizeof(char *))) == NULL)
|
|
|
|
+ outofmem(__FILE__, "showhistory");
|
|
|
|
+ *tmp = '\0';
|
|
|
|
+ if (kanji_code == EUC) {
|
|
|
|
+ TO_EUC(Title, tmp);
|
|
|
|
+ } else if (kanji_code == SJIS) {
|
|
|
|
+ TO_SJIS(Title, tmp);
|
|
|
|
+ }
|
|
|
|
+ if (*tmp) StrAllocCopy(Title, tmp);
|
|
|
|
+ FREE(tmp);
|
|
|
|
+ }
|
|
|
|
fprintf(fp0,
|
|
|
|
"%s<em>%d</em>. <tab id=t%d><a href=\"LYNXHIST:%d\">%s</a>\n",
|
|
|
|
(x > 99 ? "" : x < 10 ? " " : " "),
|
1999-07-04 13:51:09 +00:00
|
|
|
@@ -552,6 +570,20 @@
|
|
|
|
StrAllocCopy(Title , NO_TITLE);
|
1998-08-10 16:03:26 +00:00
|
|
|
} else {
|
1999-07-04 13:51:09 +00:00
|
|
|
StrAllocCopy(Title , NO_TITLE);
|
1998-08-10 16:03:26 +00:00
|
|
|
+ }
|
|
|
|
+ if (HTCJK == JAPANESE) {
|
|
|
|
+ char *tmp;
|
|
|
|
+
|
|
|
|
+ if ((tmp = (char *)calloc(strlen(Title)*2, sizeof(char *))) == NULL)
|
1999-07-04 13:51:09 +00:00
|
|
|
+ outofmem(__FILE__, "LYShowVisitedLinks");
|
1998-08-10 16:03:26 +00:00
|
|
|
+ *tmp = '\0';
|
|
|
|
+ if (kanji_code == EUC) {
|
|
|
|
+ TO_EUC(Title, tmp);
|
|
|
|
+ } else if (kanji_code == SJIS) {
|
|
|
|
+ TO_SJIS(Title, tmp);
|
|
|
|
+ }
|
|
|
|
+ if (*tmp) StrAllocCopy(Title, tmp);
|
1999-07-04 13:51:09 +00:00
|
|
|
+ FREE(tmp);
|
1998-08-10 16:03:26 +00:00
|
|
|
}
|
|
|
|
if (vl->address != NULL && *vl->address != '\0') {
|
|
|
|
StrAllocCopy(Address, vl->address);
|