]> Cypherpunks repositories - gostls13.git/commit
os,text,unicode: renamings
authorRob Pike <r@golang.org>
Thu, 3 Nov 2011 21:18:06 +0000 (14:18 -0700)
committerRob Pike <r@golang.org>
Thu, 3 Nov 2011 21:18:06 +0000 (14:18 -0700)
commit37d82c85201351d8df424b8043d91c1dc32a0531
treef5a43e39e82db5ce563ff205e744f2b57a29fe2a
parenteb1717e035e9c6b6690fd55b6396f99b40d26d3f
os,text,unicode: renamings
This is Go 1 package renaming CL #4.
This one merely moves the source; the import strings will be
changed after the next weekly release.
This one moves pieces into os, text, and unicode.

exec -> os/exec
scanner -> text/scanner
tabwriter -> text/tabwriter
template -> text/template
template/parse -> text/template/parse
utf16 -> unicode/utf16
utf8 -> unicode/utf8

This should be the last of the source-rearranging CLs.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5331066
43 files changed:
src/pkg/Makefile
src/pkg/deps.bash
src/pkg/os/exec/Makefile [moved from src/pkg/exec/Makefile with 88% similarity]
src/pkg/os/exec/exec.go [moved from src/pkg/exec/exec.go with 100% similarity]
src/pkg/os/exec/exec_test.go [moved from src/pkg/exec/exec_test.go with 100% similarity]
src/pkg/os/exec/lp_plan9.go [moved from src/pkg/exec/lp_plan9.go with 100% similarity]
src/pkg/os/exec/lp_test.go [moved from src/pkg/exec/lp_test.go with 100% similarity]
src/pkg/os/exec/lp_unix.go [moved from src/pkg/exec/lp_unix.go with 100% similarity]
src/pkg/os/exec/lp_windows.go [moved from src/pkg/exec/lp_windows.go with 100% similarity]
src/pkg/text/scanner/Makefile [moved from src/pkg/scanner/Makefile with 78% similarity]
src/pkg/text/scanner/scanner.go [moved from src/pkg/scanner/scanner.go with 100% similarity]
src/pkg/text/scanner/scanner_test.go [moved from src/pkg/scanner/scanner_test.go with 100% similarity]
src/pkg/text/tabwriter/Makefile [moved from src/pkg/tabwriter/Makefile with 79% similarity]
src/pkg/text/tabwriter/tabwriter.go [moved from src/pkg/tabwriter/tabwriter.go with 100% similarity]
src/pkg/text/tabwriter/tabwriter_test.go [moved from src/pkg/tabwriter/tabwriter_test.go with 100% similarity]
src/pkg/text/template/Makefile [moved from src/pkg/template/Makefile with 82% similarity]
src/pkg/text/template/doc.go [moved from src/pkg/template/doc.go with 100% similarity]
src/pkg/text/template/exec.go [moved from src/pkg/template/exec.go with 100% similarity]
src/pkg/text/template/exec_test.go [moved from src/pkg/template/exec_test.go with 100% similarity]
src/pkg/text/template/funcs.go [moved from src/pkg/template/funcs.go with 100% similarity]
src/pkg/text/template/helper.go [moved from src/pkg/template/helper.go with 100% similarity]
src/pkg/text/template/parse.go [moved from src/pkg/template/parse.go with 100% similarity]
src/pkg/text/template/parse/Makefile [moved from src/pkg/template/parse/Makefile with 79% similarity]
src/pkg/text/template/parse/lex.go [moved from src/pkg/template/parse/lex.go with 100% similarity]
src/pkg/text/template/parse/lex_test.go [moved from src/pkg/template/parse/lex_test.go with 100% similarity]
src/pkg/text/template/parse/node.go [moved from src/pkg/template/parse/node.go with 100% similarity]
src/pkg/text/template/parse/parse.go [moved from src/pkg/template/parse/parse.go with 100% similarity]
src/pkg/text/template/parse/parse_test.go [moved from src/pkg/template/parse/parse_test.go with 100% similarity]
src/pkg/text/template/parse/set.go [moved from src/pkg/template/parse/set.go with 100% similarity]
src/pkg/text/template/set.go [moved from src/pkg/template/set.go with 100% similarity]
src/pkg/text/template/set_test.go [moved from src/pkg/template/set_test.go with 100% similarity]
src/pkg/text/template/testdata/file1.tmpl [moved from src/pkg/template/testdata/file1.tmpl with 100% similarity]
src/pkg/text/template/testdata/file2.tmpl [moved from src/pkg/template/testdata/file2.tmpl with 100% similarity]
src/pkg/text/template/testdata/tmpl1.tmpl [moved from src/pkg/template/testdata/tmpl1.tmpl with 100% similarity]
src/pkg/text/template/testdata/tmpl2.tmpl [moved from src/pkg/template/testdata/tmpl2.tmpl with 100% similarity]
src/pkg/unicode/utf16/Makefile [moved from src/pkg/utf16/Makefile with 78% similarity]
src/pkg/unicode/utf16/utf16.go [moved from src/pkg/utf16/utf16.go with 100% similarity]
src/pkg/unicode/utf16/utf16_test.go [moved from src/pkg/utf16/utf16_test.go with 100% similarity]
src/pkg/unicode/utf8/Makefile [moved from src/pkg/utf8/Makefile with 79% similarity]
src/pkg/unicode/utf8/string.go [moved from src/pkg/utf8/string.go with 100% similarity]
src/pkg/unicode/utf8/string_test.go [moved from src/pkg/utf8/string_test.go with 100% similarity]
src/pkg/unicode/utf8/utf8.go [moved from src/pkg/utf8/utf8.go with 100% similarity]
src/pkg/unicode/utf8/utf8_test.go [moved from src/pkg/utf8/utf8_test.go with 100% similarity]