all repos — cgit @ 55ac326ecb01161bf62865ae3350acf85db97d63

a hyperfast web frontend for git written in c

Merge branch 'iconv-rebased' of http://x2a.org/pub/git/cgit

* 'iconv-rebased' of http://x2a.org/pub/git/cgit:
  Use utf8::reencode_string from git
  Convert subject and message with iconv_msg.
  Add iconv_msg function.
  Set msg_encoding according to the header.
  Add commit->msg_encoding, allocate msg dynamicly.
Lars Hjemli hjemli@gmail.com
Tue, 06 Nov 2007 00:38:18 +0100
commit

55ac326ecb01161bf62865ae3350acf85db97d63

parent

d04c4734bcf40b1d17c55b18fba2aa8344678e8f

4 files changed, 35 insertions(+), 1 deletions(-)

jump to
M cgit.hcgit.h

@@ -16,6 +16,7 @@ #include <revision.h>

#include <log-tree.h> #include <archive.h> #include <xdiff/xdiff.h> +#include <utf8.h> /*

@@ -47,6 +48,11 @@ #define TM_WEEK (TM_DAY * 7)

#define TM_YEAR (TM_DAY * 365) #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);

@@ -90,6 +96,7 @@ char *committer_email;

unsigned long committer_date; char *subject; char *msg; + char *msg_encoding; }; struct taginfo {
M parsing.cparsing.c

@@ -199,6 +199,7 @@ ret->committer = NULL;

ret->committer_email = NULL; ret->subject = NULL; ret->msg = NULL; + ret->msg_encoding = NULL; if (p == NULL) return ret;

@@ -233,6 +234,14 @@ ret->committer_date = atol(++t);

p = strchr(t, '\n') + 1; } + if (!strncmp(p, "encoding ", 9)) { + p += 9; + t = strchr(p, '\n') + 1; + ret->msg_encoding = substr(p, t); + p = t; + } else + ret->msg_encoding = xstrdup(PAGE_ENCODING); + while (*p && (*p != '\n')) p = strchr(p, '\n') + 1; // skip unknown header fields

@@ -252,6 +261,22 @@ p = strchr(p, '\n') + 1;

ret->msg = xstrdup(p); } else ret->subject = substr(p, p+strlen(p)); + + if(strcmp(ret->msg_encoding, PAGE_ENCODING)) { + t = reencode_string(ret->subject, PAGE_ENCODING, + ret->msg_encoding); + if(t) { + free(ret->subject); + ret->subject = t; + } + + t = reencode_string(ret->msg, PAGE_ENCODING, + ret->msg_encoding); + if(t) { + free(ret->msg); + ret->msg = t; + } + } return ret; }
M shared.cshared.c

@@ -265,6 +265,8 @@ free(info->author_email);

free(info->committer); free(info->committer_email); free(info->subject); + free(info->msg); + free(info->msg_encoding); free(info); return NULL; }
M ui-shared.cui-shared.c

@@ -352,7 +352,7 @@ }

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)));