X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/a7cf406c802394460cb14c79f3f43582d1428a45..8aab27f24de70acfbdcee31c634a4b1facf23b92:/html.c diff --git a/html.c b/html.c index eb163d9..4033200 100644 --- a/html.c +++ b/html.c @@ -6,7 +6,14 @@ * (see COPYING for full license text) */ -#include "cgit.h" +#include +#include +#include +#include +#include +#include + +int htmlfd = STDOUT_FILENO; char *fmt(const char *format, ...) { @@ -21,11 +28,18 @@ char *fmt(const char *format, ...) va_start(args, format); len = vsnprintf(buf[bufidx], sizeof(buf[bufidx]), format, args); va_end(args); - if (len>sizeof(buf[bufidx])) - die("[html.c] string truncated: %s", format); + if (len>sizeof(buf[bufidx])) { + fprintf(stderr, "[html.c] string truncated: %s\n", format); + exit(1); + } return buf[bufidx]; } +void html_raw(const char *data, size_t size) +{ + write(htmlfd, data, size); +} + void html(const char *txt) { write(htmlfd, txt, strlen(txt)); @@ -42,15 +56,20 @@ void htmlf(const char *format, ...) html(buf); } -void html_txt(char *txt) +void html_status(int code, const char *msg, int more_headers) { - char *t = txt; + htmlf("Status: %d %s\n", code, msg); + if (!more_headers) + html("\n"); +} + +void html_txt(const char *txt) +{ + const char *t = txt; while(t && *t){ int c = *t; if (c=='<' || c=='>' || c=='&') { - *t = '\0'; - html(txt); - *t = c; + write(htmlfd, txt, t - txt); if (c=='>') html(">"); else if (c=='<') @@ -65,15 +84,13 @@ void html_txt(char *txt) html(txt); } -void html_ntxt(int len, char *txt) +void html_ntxt(int len, const char *txt) { - char *t = txt; + const char *t = txt; while(t && *t && len--){ int c = *t; if (c=='<' || c=='>' || c=='&') { - *t = '\0'; - html(txt); - *t = c; + write(htmlfd, txt, t - txt); if (c=='>') html(">"); else if (c=='<') @@ -84,31 +101,27 @@ void html_ntxt(int len, char *txt) } t++; } - if (t!=txt) { - char c = *t; - *t = '\0'; - html(txt); - *t = c; - } + if (t!=txt) + write(htmlfd, txt, t - txt); if (len<0) html("..."); } -void html_attr(char *txt) +void html_attr(const char *txt) { - char *t = txt; + const char *t = txt; while(t && *t){ int c = *t; - if (c=='<' || c=='>' || c=='\'') { - *t = '\0'; - html(txt); - *t = c; + if (c=='<' || c=='>' || c=='\'' || c=='\"') { + write(htmlfd, txt, t - txt); if (c=='>') html(">"); else if (c=='<') html("<"); else if (c=='\'') - html(""e;"); + html("'"); + else if (c=='"') + html("""); txt = t+1; } t++; @@ -117,7 +130,39 @@ void html_attr(char *txt) html(txt); } -void html_hidden(char *name, char *value) +void html_url_path(const char *txt) +{ + const char *t = txt; + while(t && *t){ + int c = *t; + if (c=='"' || c=='#' || c=='\'' || c=='?') { + write(htmlfd, txt, t - txt); + write(htmlfd, fmt("%%%2x", c), 3); + txt = t+1; + } + t++; + } + if (t!=txt) + html(txt); +} + +void html_url_arg(const char *txt) +{ + const char *t = txt; + while(t && *t){ + int c = *t; + if (c=='"' || c=='#' || c=='%' || c=='&' || c=='\'' || c=='+' || c=='?') { + write(htmlfd, txt, t - txt); + write(htmlfd, fmt("%%%2x", c), 3); + txt = t+1; + } + t++; + } + if (t!=txt) + html(txt); +} + +void html_hidden(const char *name, const char *value) { html(""); } -void html_option(char *value, char *text, char *selected_value) +void html_option(const char *value, const char *text, const char *selected_value) { html("