author | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:45:28 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-28 01:45:28 (UTC) |
commit | 732d68d240b95dc428c92fc94bce9adb8912094e (patch) (unidiff) | |
tree | 24c6ab907c2a8574da12e426144706ad63780868 /cgit.h | |
parent | e39d738c39d37cdef115c145027f3eec85a62272 (diff) | |
download | cgit-732d68d240b95dc428c92fc94bce9adb8912094e.zip cgit-732d68d240b95dc428c92fc94bce9adb8912094e.tar.gz cgit-732d68d240b95dc428c92fc94bce9adb8912094e.tar.bz2 |
Add basic log filtering
This enables case-insensitive grep on logentris using the new search box
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | cgit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -95,19 +95,19 @@ extern int cache_expired(struct cacheitem *item); | |||
95 | extern char *cgit_repourl(const char *reponame); | 95 | extern char *cgit_repourl(const char *reponame); |
96 | extern char *cgit_pageurl(const char *reponame, const char *pagename, | 96 | extern char *cgit_pageurl(const char *reponame, const char *pagename, |
97 | const char *query); | 97 | const char *query); |
98 | 98 | ||
99 | extern void cgit_print_error(char *msg); | 99 | extern void cgit_print_error(char *msg); |
100 | extern void cgit_print_date(unsigned long secs); | 100 | extern void cgit_print_date(unsigned long secs); |
101 | extern void cgit_print_docstart(char *title, struct cacheitem *item); | 101 | extern void cgit_print_docstart(char *title, struct cacheitem *item); |
102 | extern void cgit_print_docend(); | 102 | extern void cgit_print_docend(); |
103 | extern void cgit_print_pageheader(char *title, int show_search); | 103 | extern void cgit_print_pageheader(char *title, int show_search); |
104 | 104 | ||
105 | extern void cgit_print_repolist(struct cacheitem *item); | 105 | extern void cgit_print_repolist(struct cacheitem *item); |
106 | extern void cgit_print_summary(); | 106 | extern void cgit_print_summary(); |
107 | extern void cgit_print_log(const char *tip, int ofs, int cnt); | 107 | extern void cgit_print_log(const char *tip, int ofs, int cnt, char *grep); |
108 | extern void cgit_print_view(const char *hex); | 108 | extern void cgit_print_view(const char *hex); |
109 | extern void cgit_print_tree(const char *hex); | 109 | extern void cgit_print_tree(const char *hex); |
110 | extern void cgit_print_commit(const char *hex); | 110 | extern void cgit_print_commit(const char *hex); |
111 | extern void cgit_print_diff(const char *old_hex, const char *new_hex); | 111 | extern void cgit_print_diff(const char *old_hex, const char *new_hex); |
112 | 112 | ||
113 | #endif /* CGIT_H */ | 113 | #endif /* CGIT_H */ |