X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=cmd%2Fsgblog%2Fhttp.go;h=7d7303cb580a35fe7d49d1e19be9a10ad93181e5;hb=e800d39696d340fbee7babd32c6259494d2785a4;hp=1bc1824aa9c9fac134d4cd1517b7bea4241223b9;hpb=f77cb43f19cc2e50548d8fd2ac1bba91dfef3161;p=sgblog.git diff --git a/cmd/sgblog/http.go b/cmd/sgblog/http.go index 1bc1824..7d7303c 100644 --- a/cmd/sgblog/http.go +++ b/cmd/sgblog/http.go @@ -128,7 +128,7 @@ func lineURLizeInTemplate(urlPrefix, line interface{}) string { func startHeader(etag hash.Hash, gziped bool) string { lines := []string{ - "Content-Type: text/html; charset=UTF-8", + "Content-Type: text/html; charset=utf-8", "ETag: " + etagString(etag), } if gziped { @@ -141,7 +141,7 @@ func startHeader(etag hash.Hash, gziped bool) string { func makeErr(err error, status int) { fmt.Println("Status:", status) - fmt.Print("Content-Type: text/plain; charset=UTF-8\n\n") + fmt.Print("Content-Type: text/plain; charset=utf-8\n\n") fmt.Println(err) log.Fatalln(err) } @@ -477,7 +477,9 @@ func serveHTTP() { } lines := msgSplit(commit.Message) var categories []atom.Category - for _, topic := range sgblog.ParseTopics(sgblog.GetNote(repo, topicsTree, commit.Hash)) { + for _, topic := range sgblog.ParseTopics(sgblog.GetNote( + repo, topicsTree, commit.Hash, + )) { categories = append(categories, atom.Category{Term: topic}) } htmlized := make([]string, 0, len(lines)) @@ -774,7 +776,7 @@ func serveHTTP() { return AtomFinish: - os.Stdout.WriteString("Content-Type: application/atom+xml; charset=UTF-8\n") + os.Stdout.WriteString("Content-Type: application/atom+xml; charset=utf-8\n") os.Stdout.WriteString("ETag: " + etagString(etagHash) + "\n") if gzipWriter != nil { os.Stdout.WriteString("Content-Encoding: gzip\n")