diff options
| author | 2013-03-21 04:21:25 (JST) | |
|---|---|---|
| committer | 2013-03-21 04:21:25 (JST) | |
| commit | 0255821e22678d4c58c809efe17bf2798835d5b9 (patch) | |
| tree | d4679ff23796406648cf83ff0b98940ba844c5e1 /ui-repolist.c | |
| parent | 6d8a789d61f3a682bc040f1f7f44050b1f723546 (diff) | |
| parent | 59fe348deaa270434f05afc56ca8d13618af9ca9 (diff) | |
| download | cgit-0255821e22678d4c58c809efe17bf2798835d5b9.zip cgit-0255821e22678d4c58c809efe17bf2798835d5b9.tar.gz | |
Merge branch 'wip'
Diffstat (limited to 'ui-repolist.c')
| -rw-r--r-- | ui-repolist.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ui-repolist.c b/ui-repolist.c index 1ae22aa..66c88c4 100644 --- a/ui-repolist.c +++ b/ui-repolist.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include "ui-shared.h" | 12 | #include "ui-shared.h" |
| 13 | #include <strings.h> | 13 | #include <strings.h> |
| 14 | 14 | ||
| 15 | time_t read_agefile(char *path) | 15 | static time_t read_agefile(char *path) |
| 16 | { | 16 | { |
| 17 | time_t result; | 17 | time_t result; |
| 18 | size_t size; | 18 | size_t size; |
| @@ -76,7 +76,7 @@ static void print_modtime(struct cgit_repo *repo) | |||
| 76 | cgit_print_age(t, -1, NULL); | 76 | cgit_print_age(t, -1, NULL); |
| 77 | } | 77 | } |
| 78 | 78 | ||
| 79 | int is_match(struct cgit_repo *repo) | 79 | static int is_match(struct cgit_repo *repo) |
| 80 | { | 80 | { |
| 81 | if (!ctx.qry.search) | 81 | if (!ctx.qry.search) |
| 82 | return 1; | 82 | return 1; |
| @@ -91,7 +91,7 @@ int is_match(struct cgit_repo *repo) | |||
| 91 | return 0; | 91 | return 0; |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | int is_in_url(struct cgit_repo *repo) | 94 | static int is_in_url(struct cgit_repo *repo) |
| 95 | { | 95 | { |
| 96 | if (!ctx.qry.url) | 96 | if (!ctx.qry.url) |
| 97 | return 1; | 97 | return 1; |
| @@ -100,7 +100,7 @@ int is_in_url(struct cgit_repo *repo) | |||
| 100 | return 0; | 100 | return 0; |
| 101 | } | 101 | } |
| 102 | 102 | ||
| 103 | void print_sort_header(const char *title, const char *sort) | 103 | static void print_sort_header(const char *title, const char *sort) |
| 104 | { | 104 | { |
| 105 | htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort); | 105 | htmlf("<th class='left'><a href='%s?s=%s", cgit_rooturl(), sort); |
| 106 | if (ctx.qry.search) { | 106 | if (ctx.qry.search) { |
| @@ -110,7 +110,7 @@ void print_sort_header(const char *title, const char *sort) | |||
| 110 | htmlf("'>%s</a></th>", title); | 110 | htmlf("'>%s</a></th>", title); |
| 111 | } | 111 | } |
| 112 | 112 | ||
| 113 | void print_header() | 113 | static void print_header() |
| 114 | { | 114 | { |
| 115 | html("<tr class='nohover'>"); | 115 | html("<tr class='nohover'>"); |
| 116 | print_sort_header("Name", "name"); | 116 | print_sort_header("Name", "name"); |
| @@ -124,7 +124,7 @@ void print_header() | |||
| 124 | } | 124 | } |
| 125 | 125 | ||
| 126 | 126 | ||
| 127 | void print_pager(int items, int pagelen, char *search, char *sort) | 127 | static void print_pager(int items, int pagelen, char *search, char *sort) |
| 128 | { | 128 | { |
| 129 | int i, ofs; | 129 | int i, ofs; |
| 130 | char *class = NULL; | 130 | char *class = NULL; |
| @@ -223,7 +223,7 @@ struct sortcolumn sortcolumn[] = { | |||
| 223 | {NULL, NULL} | 223 | {NULL, NULL} |
| 224 | }; | 224 | }; |
| 225 | 225 | ||
| 226 | int sort_repolist(char *field) | 226 | static int sort_repolist(char *field) |
| 227 | { | 227 | { |
| 228 | struct sortcolumn *column; | 228 | struct sortcolumn *column; |
| 229 | 229 | ||
