author | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 14:52:57 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-05 14:52:57 (UTC) |
commit | 22a597e56dc7fdea78ccbcb7466b45dd62cf7b32 (patch) (unidiff) | |
tree | 7740c90bab32a00902577873765606e544ce70e4 /html.h | |
parent | b575115d9d93e45cdbcd5d066cc445d34639ae6a (diff) | |
download | cgit-22a597e56dc7fdea78ccbcb7466b45dd62cf7b32.zip cgit-22a597e56dc7fdea78ccbcb7466b45dd62cf7b32.tar.gz cgit-22a597e56dc7fdea78ccbcb7466b45dd62cf7b32.tar.bz2 |
html.c: add html_url_path
This function can be used to generate properly escaped path-components
for links.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | html.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,23 +1,24 @@ | |||
1 | #ifndef HTML_H | 1 | #ifndef HTML_H |
2 | #define HTML_H | 2 | #define HTML_H |
3 | 3 | ||
4 | extern int htmlfd; | 4 | extern int htmlfd; |
5 | 5 | ||
6 | extern void html_raw(const char *txt, size_t size); | 6 | extern void html_raw(const char *txt, size_t size); |
7 | extern void html(const char *txt); | 7 | extern void html(const char *txt); |
8 | extern void htmlf(const char *format,...); | 8 | extern void htmlf(const char *format,...); |
9 | extern void html_status(int code, const char *msg, int more_headers); | 9 | extern void html_status(int code, const char *msg, int more_headers); |
10 | extern void html_txt(char *txt); | 10 | extern void html_txt(char *txt); |
11 | extern void html_ntxt(int len, char *txt); | 11 | extern void html_ntxt(int len, char *txt); |
12 | extern void html_attr(char *txt); | 12 | extern void html_attr(char *txt); |
13 | extern void html_url_path(char *txt); | ||
13 | extern void html_url_arg(char *txt); | 14 | extern void html_url_arg(char *txt); |
14 | extern void html_hidden(char *name, char *value); | 15 | extern void html_hidden(char *name, char *value); |
15 | extern void html_option(char *value, char *text, char *selected_value); | 16 | extern void html_option(char *value, char *text, char *selected_value); |
16 | extern void html_link_open(char *url, char *title, char *class); | 17 | extern void html_link_open(char *url, char *title, char *class); |
17 | extern void html_link_close(void); | 18 | extern void html_link_close(void); |
18 | extern void html_fileperm(unsigned short mode); | 19 | extern void html_fileperm(unsigned short mode); |
19 | extern int html_include(const char *filename); | 20 | extern int html_include(const char *filename); |
20 | 21 | ||
21 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); | 22 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); |
22 | 23 | ||
23 | #endif /* HTML_H */ | 24 | #endif /* HTML_H */ |