summaryrefslogtreecommitdiff
path: root/src/pkg/unicode/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2012-04-06Imported Upstream version 1upstream/1Ondřej Surý1-22/+2
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+36
2011-09-13Imported Upstream version 60Ondřej Surý1-36/+0
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý1-0/+2
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý1-5/+9
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-1/+1
2010-03-30Unicode: provide an ability to supplement the case-mapping tablesRob Pike1-0/+1
in character and string case mapping routines. Add a custom mapper for Turkish and Azeri. A more general solution for deriving the case information from Unicode's SpecialCasing.txt will require more work. Fixes issue 703. R=rsc, rsc1 CC=golang-dev, mdakin http://codereview.appspot.com/824043
2009-12-01update package unicode to Unicode 5.2Rob Pike1-0/+1
R=rsc CC=golang-dev http://codereview.appspot.com/163062
2009-11-23go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia1-2/+2
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
2009-08-27unicode tables for all categoriesRob Pike1-5/+12
maketables now has a --test option to verify the data. R=rsc DELTA=3087 (1982 added, 1001 deleted, 104 changed) OCL=33947 CL=33950
2009-08-26change IsDecimalDigit to IsDigit because Decimal is redundantRob Pike1-1/+1
R=rsc DELTA=792 (398 added, 383 deleted, 11 changed) OCL=33919 CL=33921
2009-08-26generate the unicode tables directly from web databaseRob Pike1-0/+9
after this CL, two more to come: 1) add an exhaustive test, probably as a variant of maketables 2) add ToUpper, ToLower, ToTitle and associated tests R=rsc DELTA=1578 (1007 added, 559 deleted, 12 changed) OCL=33902 CL=33907
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-61/+5
to whole-package compilation. R=r OCL=33070 CL=33101
2009-06-09mv src/lib to src/pkgRob Pike1-0/+68
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102