X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/5e75128a8bee885d83563d8c521172328d511d12..e0572c39f78b4f88c706a49a60e211302b8e015c:/html.c diff --git a/html.c b/html.c index 33a956f..339bf00 100644 --- a/html.c +++ b/html.c @@ -48,9 +48,7 @@ void html_txt(char *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=='<') @@ -71,9 +69,7 @@ void html_ntxt(int len, char *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,12 +80,8 @@ 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("..."); } @@ -100,9 +92,7 @@ void html_attr(char *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=='<') @@ -126,6 +116,18 @@ void html_hidden(char *name, char *value) html("'/>"); } +void html_option(char *value, char *text, char *selected_value) +{ + html("\n"); +} + void html_link_open(char *url, char *title, char *class) { html("