summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Ewing <marc@src.gnome.org>1998-10-01 19:18:41 +0000
committerMarc Ewing <marc@src.gnome.org>1998-10-01 19:18:41 +0000
commit40a22b29b13133173a5057d5333bdaf66504ed83 (patch)
treec78313701532cf7dc95b447a0c1a62df004da31c
parent3ca019d48a4a6c63bdd92e8b39ded86ffebc1b10 (diff)
downloadyelp-40a22b29b13133173a5057d5333bdaf66504ed83.tar.gz
Patch from Toshio to handle escapes.
-Marc
-rw-r--r--src/info2html/html.c37
1 files changed, 33 insertions, 4 deletions
diff --git a/src/info2html/html.c b/src/info2html/html.c
index a6f8c007..9391a523 100644
--- a/src/info2html/html.c
+++ b/src/info2html/html.c
@@ -605,6 +605,7 @@ char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile )
char *converted_nodename;
char *escaped_refname;
char *escaped_refnode;
+ char *escaped_seg;
char *refname, *reffile, *refnode, *end;
char *href;
@@ -655,9 +656,20 @@ char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile )
/* otherwise we had :nodename., and we set node to 'Top' */
else if (reffile == NULL)
reffile = g_strdup(nodefile);
-
+
+/* Here we need to escape everything up to Note.
+ * One caveat: The "*Note*" itself isn't escaped. Currently we know this is
+ * okay ("*Note" has no characters needing escapes.) but....
+ */
+ curlen = note_ptr - p;
+ tmp = (char *) g_malloc (curlen + 1);
+ memcpy (tmp, p, curlen);
+ *(tmp + curlen) = '\000';
+ escaped_seg = escape_html_chars (tmp);
+ g_free (tmp);
+
/* write out stuff up to Note */
- fwrite(p, 1, note_ptr - p, f);
+ fprintf(f, "%s", escaped_seg);
fprintf(f, "<STRONG>");
fwrite(note_ptr, 1, match1 - note_ptr, f);
fprintf(f, " </STRONG>");
@@ -718,6 +730,7 @@ char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile )
if (converted_nodename)
g_free(converted_nodename);
+ g_free(escaped_seg);
g_free(refname);
g_free(reffile);
g_free(refnode);
@@ -725,7 +738,18 @@ char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile )
/* write out stuff at end */
if (end < q)
{
- fwrite(end+1, 1, q - end, f);
+
+/* Escape up to the end of line. */
+ curlen = q - (end+1);
+ tmp = (char *) g_malloc (curlen + 1);
+ memcpy (tmp, end+1, curlen);
+ *(tmp+curlen) = '\000';
+ escaped_seg = escape_html_chars (tmp);
+ g_free (tmp);
+
+ fprintf (f, "%s", escaped_seg);
+ fprintf (f, "\n");
+ g_free (escaped_seg);
return NULL;
}
else
@@ -733,9 +757,14 @@ char *write_body_text_html( FILE *f, char *p, char *q, char *nodefile )
}
else
{
- fwrite(p, 1, q-p+1, f);
+
+/* Escape the whole thing. */
+ escaped_seg = escape_html_chars (tmp);
+ fprintf (f, "%s", escaped_seg);
+ fprintf (f, "\n");
/* not needed any more */
g_free(tmp);
+ g_free (escaped_seg);
return NULL;
}
}