|
diff --git a/html.c b/html.c index eaabf72..1305910 100644 --- a/ html.c+++ b/ html.c |
|
@@ -96,5 +96,5 @@ void html_txt(const char *txt) |
96 | int c = *t; |
96 | int c = *t; |
97 | if (c=='<' || c=='>' || c=='&') { |
97 | if (c=='<' || c=='>' || c=='&') { |
98 | write(htmlfd, txt, t - txt); |
98 | html_raw(txt, t - txt); |
99 | if (c=='>') |
99 | if (c=='>') |
100 | html(">"); |
100 | html(">"); |
@@ -117,5 +117,5 @@ void html_ntxt(int len, const char *txt) |
117 | int c = *t; |
117 | int c = *t; |
118 | if (c=='<' || c=='>' || c=='&') { |
118 | if (c=='<' || c=='>' || c=='&') { |
119 | write(htmlfd, txt, t - txt); |
119 | html_raw(txt, t - txt); |
120 | if (c=='>') |
120 | if (c=='>') |
121 | html(">"); |
121 | html(">"); |
@@ -129,5 +129,5 @@ void html_ntxt(int len, const char *txt) |
129 | } |
129 | } |
130 | if (t!=txt) |
130 | if (t!=txt) |
131 | write(htmlfd, txt, t - txt); |
131 | html_raw(txt, t - txt); |
132 | if (len<0) |
132 | if (len<0) |
133 | html("..."); |
133 | html("..."); |
@@ -140,5 +140,5 @@ void html_attr(const char *txt) |
140 | int c = *t; |
140 | int c = *t; |
141 | if (c=='<' || c=='>' || c=='\'' || c=='\"') { |
141 | if (c=='<' || c=='>' || c=='\'' || c=='\"') { |
142 | write(htmlfd, txt, t - txt); |
142 | html_raw(txt, t - txt); |
143 | if (c=='>') |
143 | if (c=='>') |
144 | html(">"); |
144 | html(">"); |
@@ -164,6 +164,6 @@ void html_url_path(const char *txt) |
164 | const char *e = url_escape_table[c]; |
164 | const char *e = url_escape_table[c]; |
165 | if (e && c!='+' && c!='&' && c!='+') { |
165 | if (e && c!='+' && c!='&' && c!='+') { |
166 | write(htmlfd, txt, t - txt); |
166 | html_raw(txt, t - txt); |
167 | write(htmlfd, e, 3); |
167 | html_raw(e, 3); |
168 | txt = t+1; |
168 | txt = t+1; |
169 | } |
169 | } |
@@ -181,6 +181,6 @@ void html_url_arg(const char *txt) |
181 | const char *e = url_escape_table[c]; |
181 | const char *e = url_escape_table[c]; |
182 | if (e) { |
182 | if (e) { |
183 | write(htmlfd, txt, t - txt); |
183 | html_raw(txt, t - txt); |
184 | write(htmlfd, e, 3); |
184 | html_raw(e, 3); |
185 | txt = t+1; |
185 | txt = t+1; |
186 | } |
186 | } |
@@ -250,5 +250,5 @@ int html_include(const char *filename) |
250 | } |
250 | } |
251 | while((len = fread(buf, 1, 4096, f)) > 0) |
251 | while((len = fread(buf, 1, 4096, f)) > 0) |
252 | write(htmlfd, buf, len); |
252 | html_raw(buf, len); |
253 | fclose(f); |
253 | fclose(f); |
254 | return 0; |
254 | return 0; |
|