about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
authorJonathan Bastien-Filiatrault2007-10-26 18:09:06 -0400
committerJonathan Bastien-Filiatrault2007-11-05 18:13:30 -0500
commit3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b (patch)
tree548671b6339e9a1a252ded4d534f11bfcd560043 /cgit.h
parentDon't show the the branch selector button if javascript is enabled (diff)
downloadcgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.gz
cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.zip
Add commit->msg_encoding, allocate msg dynamicly.
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index 163f355..6c7a941 100644 --- a/cgit.h +++ b/cgit.h
@@ -48,6 +48,11 @@
48#define TM_MONTH (TM_YEAR / 12.0) 48#define TM_MONTH (TM_YEAR / 12.0)
49 49
50 50
51/*
52 * Default encoding
53 */
54#define PAGE_ENCODING "UTF-8"
55
51typedef void (*configfn)(const char *name, const char *value); 56typedef void (*configfn)(const char *name, const char *value);
52typedef void (*filepair_fn)(struct diff_filepair *pair); 57typedef void (*filepair_fn)(struct diff_filepair *pair);
53typedef void (*linediff_fn)(char *line, int len); 58typedef void (*linediff_fn)(char *line, int len);
@@ -90,6 +95,7 @@ struct commitinfo {
90 unsigned long committer_date; 95 unsigned long committer_date;
91 char *subject; 96 char *subject;
92 char *msg; 97 char *msg;
98 char *msg_encoding;
93}; 99};
94 100
95struct taginfo { 101struct taginfo {