author | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 07:50:10 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-08-06 07:50:10 (UTC) |
commit | e352a013aed6e925a10a92916500c7deccf1410a (patch) (unidiff) | |
tree | 7c49bf453bee4f624025d62bae92b4926bf83bfe /cgit.h | |
parent | 3c71f597cc932992d5c44196e90f4675a1d54e77 (diff) | |
parent | b2a3d31e8839b53a623b4c99124c2c637d0e3cbb (diff) | |
download | cgit-e352a013aed6e925a10a92916500c7deccf1410a.zip cgit-e352a013aed6e925a10a92916500c7deccf1410a.tar.gz cgit-e352a013aed6e925a10a92916500c7deccf1410a.tar.bz2 |
Merge branch 'lh/atom'
-rw-r--r-- | cgit.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,122 +1,123 @@ | |||
1 | #ifndef CGIT_H | 1 | #ifndef CGIT_H |
2 | #define CGIT_H | 2 | #define CGIT_H |
3 | 3 | ||
4 | 4 | ||
5 | #include <git-compat-util.h> | 5 | #include <git-compat-util.h> |
6 | #include <cache.h> | 6 | #include <cache.h> |
7 | #include <grep.h> | 7 | #include <grep.h> |
8 | #include <object.h> | 8 | #include <object.h> |
9 | #include <tree.h> | 9 | #include <tree.h> |
10 | #include <commit.h> | 10 | #include <commit.h> |
11 | #include <tag.h> | 11 | #include <tag.h> |
12 | #include <diff.h> | 12 | #include <diff.h> |
13 | #include <diffcore.h> | 13 | #include <diffcore.h> |
14 | #include <refs.h> | 14 | #include <refs.h> |
15 | #include <revision.h> | 15 | #include <revision.h> |
16 | #include <log-tree.h> | 16 | #include <log-tree.h> |
17 | #include <archive.h> | 17 | #include <archive.h> |
18 | #include <xdiff/xdiff.h> | 18 | #include <xdiff/xdiff.h> |
19 | #include <utf8.h> | 19 | #include <utf8.h> |
20 | 20 | ||
21 | 21 | ||
22 | /* | 22 | /* |
23 | * Dateformats used on misc. pages | 23 | * Dateformats used on misc. pages |
24 | */ | 24 | */ |
25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" | 25 | #define FMT_LONGDATE "%Y-%m-%d %H:%M:%S (%Z)" |
26 | #define FMT_SHORTDATE "%Y-%m-%d" | 26 | #define FMT_SHORTDATE "%Y-%m-%d" |
27 | #define FMT_ATOMDATE "%Y-%m-%dT%H:%M:%SZ" | ||
27 | 28 | ||
28 | 29 | ||
29 | /* | 30 | /* |
30 | * Limits used for relative dates | 31 | * Limits used for relative dates |
31 | */ | 32 | */ |
32 | #define TM_MIN 60 | 33 | #define TM_MIN 60 |
33 | #define TM_HOUR (TM_MIN * 60) | 34 | #define TM_HOUR (TM_MIN * 60) |
34 | #define TM_DAY (TM_HOUR * 24) | 35 | #define TM_DAY (TM_HOUR * 24) |
35 | #define TM_WEEK (TM_DAY * 7) | 36 | #define TM_WEEK (TM_DAY * 7) |
36 | #define TM_YEAR (TM_DAY * 365) | 37 | #define TM_YEAR (TM_DAY * 365) |
37 | #define TM_MONTH (TM_YEAR / 12.0) | 38 | #define TM_MONTH (TM_YEAR / 12.0) |
38 | 39 | ||
39 | 40 | ||
40 | /* | 41 | /* |
41 | * Default encoding | 42 | * Default encoding |
42 | */ | 43 | */ |
43 | #define PAGE_ENCODING "UTF-8" | 44 | #define PAGE_ENCODING "UTF-8" |
44 | 45 | ||
45 | typedef void (*configfn)(const char *name, const char *value); | 46 | typedef void (*configfn)(const char *name, const char *value); |
46 | typedef void (*filepair_fn)(struct diff_filepair *pair); | 47 | typedef void (*filepair_fn)(struct diff_filepair *pair); |
47 | typedef void (*linediff_fn)(char *line, int len); | 48 | typedef void (*linediff_fn)(char *line, int len); |
48 | 49 | ||
49 | struct cgit_repo { | 50 | struct cgit_repo { |
50 | char *url; | 51 | char *url; |
51 | char *name; | 52 | char *name; |
52 | char *path; | 53 | char *path; |
53 | char *desc; | 54 | char *desc; |
54 | char *owner; | 55 | char *owner; |
55 | char *defbranch; | 56 | char *defbranch; |
56 | char *group; | 57 | char *group; |
57 | char *module_link; | 58 | char *module_link; |
58 | char *readme; | 59 | char *readme; |
59 | char *clone_url; | 60 | char *clone_url; |
60 | int snapshots; | 61 | int snapshots; |
61 | int enable_log_filecount; | 62 | int enable_log_filecount; |
62 | int enable_log_linecount; | 63 | int enable_log_linecount; |
63 | }; | 64 | }; |
64 | 65 | ||
65 | struct cgit_repolist { | 66 | struct cgit_repolist { |
66 | int length; | 67 | int length; |
67 | int count; | 68 | int count; |
68 | struct cgit_repo *repos; | 69 | struct cgit_repo *repos; |
69 | }; | 70 | }; |
70 | 71 | ||
71 | struct commitinfo { | 72 | struct commitinfo { |
72 | struct commit *commit; | 73 | struct commit *commit; |
73 | char *author; | 74 | char *author; |
74 | char *author_email; | 75 | char *author_email; |
75 | unsigned long author_date; | 76 | unsigned long author_date; |
76 | char *committer; | 77 | char *committer; |
77 | char *committer_email; | 78 | char *committer_email; |
78 | unsigned long committer_date; | 79 | unsigned long committer_date; |
79 | char *subject; | 80 | char *subject; |
80 | char *msg; | 81 | char *msg; |
81 | char *msg_encoding; | 82 | char *msg_encoding; |
82 | }; | 83 | }; |
83 | 84 | ||
84 | struct taginfo { | 85 | struct taginfo { |
85 | char *tagger; | 86 | char *tagger; |
86 | char *tagger_email; | 87 | char *tagger_email; |
87 | int tagger_date; | 88 | int tagger_date; |
88 | char *msg; | 89 | char *msg; |
89 | }; | 90 | }; |
90 | 91 | ||
91 | struct refinfo { | 92 | struct refinfo { |
92 | const char *refname; | 93 | const char *refname; |
93 | struct object *object; | 94 | struct object *object; |
94 | union { | 95 | union { |
95 | struct taginfo *tag; | 96 | struct taginfo *tag; |
96 | struct commitinfo *commit; | 97 | struct commitinfo *commit; |
97 | }; | 98 | }; |
98 | }; | 99 | }; |
99 | 100 | ||
100 | struct reflist { | 101 | struct reflist { |
101 | struct refinfo **refs; | 102 | struct refinfo **refs; |
102 | int alloc; | 103 | int alloc; |
103 | int count; | 104 | int count; |
104 | }; | 105 | }; |
105 | 106 | ||
106 | struct cgit_query { | 107 | struct cgit_query { |
107 | int has_symref; | 108 | int has_symref; |
108 | int has_sha1; | 109 | int has_sha1; |
109 | char *raw; | 110 | char *raw; |
110 | char *repo; | 111 | char *repo; |
111 | char *page; | 112 | char *page; |
112 | char *search; | 113 | char *search; |
113 | char *grep; | 114 | char *grep; |
114 | char *head; | 115 | char *head; |
115 | char *sha1; | 116 | char *sha1; |
116 | char *sha2; | 117 | char *sha2; |
117 | char *path; | 118 | char *path; |
118 | char *name; | 119 | char *name; |
119 | char *mimetype; | 120 | char *mimetype; |
120 | int ofs; | 121 | int ofs; |
121 | }; | 122 | }; |
122 | 123 | ||