]> Cypherpunks repositories - gostls13.git/commit
godashboard: fix utf-8 in user names
authorRuss Cox <rsc@golang.org>
Mon, 29 Aug 2011 02:23:44 +0000 (22:23 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 29 Aug 2011 02:23:44 +0000 (22:23 -0400)
commita3bc7681b54d62a6b54f3b05b05b91e9304c26eb
tree27344af6a6a28259873eaaea3be75ff58d4fe20b
parentf627215bab022893466788417c6f70d0b496d77b
godashboard: fix utf-8 in user names

Also standardize on 'utf8' as encoding name.
Apparently either is acceptable.

The user, because it is a StringProperty,
must be of type unicode in order to handle
Unicode correctly.  It must *not* have type string.

The desc, because it is a BlobProperty, must
be of type string in order to handle Unicode correctly.
It must *not* have type unicode.

Yay encoding type pedantry without static typing.

R=adg, mattn.jp
CC=golang-dev
https://golang.org/cl/4973045
misc/dashboard/godashboard/app.yaml
misc/dashboard/godashboard/gobuild.py