author | Lars Hjemli <hjemli@gmail.com> | 2007-10-28 11:08:45 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-10-28 11:08:45 (UTC) |
commit | 6ec5f36f279a85f59db2851ab476d9acd0015770 (patch) (side-by-side diff) | |
tree | 18aff69bb319bbbf7427a1f401d86063ee850824 | |
parent | 0c8dd9c4bcc7a1a7a49f4eca1f3eb869d0995ea2 (diff) | |
download | cgit-6ec5f36f279a85f59db2851ab476d9acd0015770.zip cgit-6ec5f36f279a85f59db2851ab476d9acd0015770.tar.gz cgit-6ec5f36f279a85f59db2851ab476d9acd0015770.tar.bz2 |
Add html_option() function
This is a generic function used to output html "option" tags.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 1 | ||||
-rw-r--r-- | html.c | 12 |
2 files changed, 13 insertions, 0 deletions
@@ -191,32 +191,33 @@ extern int cgit_diff_files(const unsigned char *old_sha1, linediff_fn fn); extern void cgit_diff_tree(const unsigned char *old_sha1, const unsigned char *new_sha1, filepair_fn fn, const char *prefix); extern void cgit_diff_commit(struct commit *commit, filepair_fn fn); extern char *fmt(const char *format,...); extern void html(const char *txt); extern void htmlf(const char *format,...); extern void html_txt(char *txt); extern void html_ntxt(int len, char *txt); extern void html_attr(char *txt); extern void html_hidden(char *name, char *value); +extern void html_option(char *value, char *text, char *selected_value); extern void html_link_open(char *url, char *title, char *class); extern void html_link_close(void); extern void html_filemode(unsigned short mode); extern int html_include(const char *filename); extern int cgit_read_config(const char *filename, configfn fn); extern int cgit_parse_query(char *txt, configfn fn); extern struct commitinfo *cgit_parse_commit(struct commit *commit); extern struct taginfo *cgit_parse_tag(struct tag *tag); extern void cgit_parse_url(const char *url); extern char *cache_safe_filename(const char *unsafe); extern int cache_lock(struct cacheitem *item); extern int cache_unlock(struct cacheitem *item); extern int cache_cancel_lock(struct cacheitem *item); extern int cache_exist(struct cacheitem *item); @@ -113,32 +113,44 @@ void html_attr(char *txt) } t++; } if (t!=txt) html(txt); } void html_hidden(char *name, char *value) { html("<input type='hidden' name='"); html_attr(name); html("' value='"); html_attr(value); html("'/>"); } +void html_option(char *value, char *text, char *selected_value) +{ + html("<option value='"); + html_attr(value); + html("'"); + if (selected_value && !strcmp(selected_value, value)) + html(" selected"); + html(">"); + html_txt(text); + html("</option>\n"); +} + void html_link_open(char *url, char *title, char *class) { html("<a href='"); html_attr(url); if (title) { html("' title='"); html_attr(title); } if (class) { html("' class='"); html_attr(class); } html("'>"); } void html_link_close(void) |