Skip to content

Commit

Permalink
Add commit->msg_encoding, allocate msg dynamicly.
Browse files Browse the repository at this point in the history
  • Loading branch information
jothan committed Nov 5, 2007
1 parent 72ede12 commit 3845e17
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions cgit.h
Expand Up @@ -48,6 +48,11 @@
#define TM_MONTH (TM_YEAR / 12.0)


/*
* Default encoding
*/
#define PAGE_ENCODING "UTF-8"

typedef void (*configfn)(const char *name, const char *value);
typedef void (*filepair_fn)(struct diff_filepair *pair);
typedef void (*linediff_fn)(char *line, int len);
Expand Down Expand Up @@ -90,6 +95,7 @@ struct commitinfo {
unsigned long committer_date;
char *subject;
char *msg;
char *msg_encoding;
};

struct taginfo {
Expand Down
1 change: 1 addition & 0 deletions parsing.c
Expand Up @@ -199,6 +199,7 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
ret->committer_email = NULL;
ret->subject = NULL;
ret->msg = NULL;
ret->msg_encoding = NULL;

if (p == NULL)
return ret;
Expand Down
2 changes: 2 additions & 0 deletions shared.c
Expand Up @@ -265,6 +265,8 @@ void *cgit_free_commitinfo(struct commitinfo *info)
free(info->committer);
free(info->committer_email);
free(info->subject);
free(info->msg);
free(info->msg_encoding);
free(info);
return NULL;
}
Expand Down
2 changes: 1 addition & 1 deletion ui-shared.c
Expand Up @@ -352,7 +352,7 @@ void cgit_print_age(time_t t, time_t max_relative, char *format)

void cgit_print_docstart(char *title, struct cacheitem *item)
{
html("Content-Type: text/html; charset=utf-8\n");
html("Content-Type: text/html; charset=" PAGE_ENCODING "\n");
htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
htmlf("Expires: %s\n", http_date(item->st.st_mtime +
ttl_seconds(item->ttl)));
Expand Down

0 comments on commit 3845e17

Please sign in to comment.