2008-02-23 22:45:33 +01:00
|
|
|
#ifndef HTML_H
|
|
|
|
#define HTML_H
|
|
|
|
|
2013-04-07 15:40:50 +02:00
|
|
|
#include "cgit.h"
|
2008-02-23 22:45:33 +01:00
|
|
|
|
2008-08-06 10:53:50 +02:00
|
|
|
extern void html_raw(const char *txt, size_t size);
|
2008-02-23 22:45:33 +01:00
|
|
|
extern void html(const char *txt);
|
2010-09-04 17:09:57 +02:00
|
|
|
|
|
|
|
__attribute__((format (printf,1,2)))
|
2008-02-23 22:45:33 +01:00
|
|
|
extern void htmlf(const char *format,...);
|
2010-09-04 17:09:57 +02:00
|
|
|
|
2013-04-07 15:40:50 +02:00
|
|
|
__attribute__((format (printf,1,2)))
|
|
|
|
extern void html_txtf(const char *format,...);
|
|
|
|
|
|
|
|
__attribute__((format (printf,1,0)))
|
|
|
|
extern void html_vtxtf(const char *format, va_list ap);
|
|
|
|
|
|
|
|
__attribute__((format (printf,1,2)))
|
|
|
|
extern void html_attrf(const char *format,...);
|
|
|
|
|
2010-02-09 05:04:41 +01:00
|
|
|
extern void html_txt(const char *txt);
|
2017-10-02 06:39:05 +02:00
|
|
|
extern ssize_t html_ntxt(const char *txt, size_t len);
|
2010-02-09 05:04:41 +01:00
|
|
|
extern void html_attr(const char *txt);
|
|
|
|
extern void html_url_path(const char *txt);
|
|
|
|
extern void html_url_arg(const char *txt);
|
2016-01-14 14:28:37 +01:00
|
|
|
extern void html_header_arg_in_quotes(const char *txt);
|
2010-02-09 05:04:41 +01:00
|
|
|
extern void html_hidden(const char *name, const char *value);
|
|
|
|
extern void html_option(const char *value, const char *text, const char *selected_value);
|
2011-03-06 23:57:26 +01:00
|
|
|
extern void html_intoption(int value, const char *text, int selected_value);
|
2010-02-09 05:04:41 +01:00
|
|
|
extern void html_link_open(const char *url, const char *title, const char *class);
|
2008-02-23 22:45:33 +01:00
|
|
|
extern void html_link_close(void);
|
|
|
|
extern void html_fileperm(unsigned short mode);
|
|
|
|
extern int html_include(const char *filename);
|
|
|
|
|
2016-09-29 08:38:45 +02:00
|
|
|
extern void http_parse_querystring(const char *txt, void (*fn)(const char *name, const char *value));
|
2008-04-08 21:11:36 +02:00
|
|
|
|
2008-02-23 22:45:33 +01:00
|
|
|
#endif /* HTML_H */
|