author | Jonathan Bastien-Filiatrault <joe@x2a.org> | 2007-10-26 22:09:06 (UTC) |
---|---|---|
committer | Jonathan Bastien-Filiatrault <joe@x2a.org> | 2007-11-05 23:13:30 (UTC) |
commit | 3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b (patch) (unidiff) | |
tree | 548671b6339e9a1a252ded4d534f11bfcd560043 | |
parent | 72ede12551af320b6d8eade853dbd2cd6f2222cc (diff) | |
download | cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.zip cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.gz cgit-3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b.tar.bz2 |
Add commit->msg_encoding, allocate msg dynamicly.
-rw-r--r-- | cgit.h | 6 | ||||
-rw-r--r-- | parsing.c | 1 | ||||
-rw-r--r-- | shared.c | 2 | ||||
-rw-r--r-- | ui-shared.c | 2 |
4 files changed, 10 insertions, 1 deletions
@@ -50,2 +50,7 @@ | |||
50 | 50 | ||
51 | /* | ||
52 | * Default encoding | ||
53 | */ | ||
54 | #define PAGE_ENCODING "UTF-8" | ||
55 | |||
51 | typedef void (*configfn)(const char *name, const char *value); | 56 | typedef void (*configfn)(const char *name, const char *value); |
@@ -92,2 +97,3 @@ struct commitinfo { | |||
92 | char *msg; | 97 | char *msg; |
98 | char *msg_encoding; | ||
93 | }; | 99 | }; |
@@ -201,2 +201,3 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) | |||
201 | ret->msg = NULL; | 201 | ret->msg = NULL; |
202 | ret->msg_encoding = NULL; | ||
202 | 203 | ||
@@ -267,2 +267,4 @@ void *cgit_free_commitinfo(struct commitinfo *info) | |||
267 | free(info->subject); | 267 | free(info->subject); |
268 | free(info->msg); | ||
269 | free(info->msg_encoding); | ||
268 | free(info); | 270 | free(info); |
diff --git a/ui-shared.c b/ui-shared.c index 72a7b44..7c69f60 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -354,3 +354,3 @@ void cgit_print_docstart(char *title, struct cacheitem *item) | |||
354 | { | 354 | { |
355 | html("Content-Type: text/html; charset=utf-8\n"); | 355 | html("Content-Type: text/html; charset=" PAGE_ENCODING "\n"); |
356 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); | 356 | htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); |