author | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 08:53:50 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 09:21:30 (UTC) |
commit | e5da4bca54574522b28f88cab0dc8ebad9e35a73 (patch) (unidiff) | |
tree | 08e02b9e0962a12040faab27e7841a74a800ddf2 /html.h | |
parent | 02a545e63454530c1639014d3239c14ced2022c6 (diff) | |
download | cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.zip cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.gz cgit-e5da4bca54574522b28f88cab0dc8ebad9e35a73.tar.bz2 |
Implement plain view
This implements a way to access plain blobs by path (similar to the
tree view) instead of by sha1.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | html.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,21 +1,22 @@ | |||
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(const char *txt); | 7 | extern void html(const char *txt); |
7 | extern void htmlf(const char *format,...); | 8 | extern void htmlf(const char *format,...); |
8 | extern void html_status(int code, int more_headers); | 9 | extern void html_status(int code, int more_headers); |
9 | extern void html_txt(char *txt); | 10 | extern void html_txt(char *txt); |
10 | extern void html_ntxt(int len, char *txt); | 11 | extern void html_ntxt(int len, char *txt); |
11 | extern void html_attr(char *txt); | 12 | extern void html_attr(char *txt); |
12 | extern void html_hidden(char *name, char *value); | 13 | extern void html_hidden(char *name, char *value); |
13 | extern void html_option(char *value, char *text, char *selected_value); | 14 | extern void html_option(char *value, char *text, char *selected_value); |
14 | extern void html_link_open(char *url, char *title, char *class); | 15 | extern void html_link_open(char *url, char *title, char *class); |
15 | extern void html_link_close(void); | 16 | extern void html_link_close(void); |
16 | extern void html_fileperm(unsigned short mode); | 17 | extern void html_fileperm(unsigned short mode); |
17 | extern int html_include(const char *filename); | 18 | extern int html_include(const char *filename); |
18 | 19 | ||
19 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); | 20 | extern int http_parse_querystring(char *txt, void (*fn)(const char *name, const char *value)); |
20 | 21 | ||
21 | #endif /* HTML_H */ | 22 | #endif /* HTML_H */ |