| Age | Commit message (Collapse) | Author |
|
|
|
|
|
The tour program now can be activated by systemd.socket(5).
|
|
|
|
|
|
|
|
|
|
Merge commit dari upstream sebelum semua berkas dihapus karena digabung
dengan golang.org/x/website di commit 241d4738f53e9d
|
|
While at it, add the command to changes the active gcloud configuration
on task deploy.
|
|
Bring in CL 293449 (and more) to remove /share playground proxy.
Change-Id: I761ddb0797e3032f79ac3fd91e3f5c4bd4307eda
Reviewed-on: https://go-review.googlesource.com/c/tour/+/296371
Trust: Russ Cox <rsc@golang.org>
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
|
|
We want to start building snippets in module mode rather than legacy
legacy GOPATH mode, to make tour work well when there's no tour code
in GOPATH/src and to be more future-proof. Building in module mode
means we need to specify a go.mod file to use for each snippet.
The tour web UI design predates the module mode and its go.mod files.
Txtar-based multi-file support was added to the playground (that the
tour uses for executing snippets) in golang.org/issue/32040, but the
web UI hasn't been updated to have first-class separate <textarea>
elements or tabs for editing multiple files.
For now, we can get by with providing a default go.mod file for all
tour snippets, since they only need some packages in the tour module.
Update to a newer version of the golang.org/x/tools/playground/socket
package which includes multi-file snippet support added in CL 204237.
For golang/go#44243.
Change-Id: Ib05725c52fbe43658b2f22ac728b1e901e635824
Reviewed-on: https://go-review.googlesource.com/c/tour/+/291889
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
|
|
Awalnya, terjemahan tur bahasa Indonesia diawali oleh Akeda Bagus
(@gedex) yang disimpan di repository "github.com/golang-id/go-tour-id".
Namun, terjemahan ini tertinggal jauh, terakhir diperbarui yaitu
2013-08-17.
Selanjutnya, terjemahan dimulai ulang oleh @shuLhan dari awal karena
struktur direktori dan berkasnya sudah jauh berubah. Terjemahan kedua
disimpan di repository "github.com/Go-ID-community/go-tour-id".
Repository ini menggabungkan keduanya dan disimpan di repository
yang baru "github.com/golang-id/tour".
|
|
Since this repository use Go module now, to minimize unneeded dependency
to "golang.org/x/tour", we rename the import path on directory "contents"
and "solutions" to use our repository.
|
|
Commands run:
go mod init
go mod edit -go=1.11
go mod tidy
go list -m all
go test ./...
Updates golang/go#30228
Change-Id: I3d7e4f59a98822691177973ec2d7a55a6216b78c
Reviewed-on: https://go-review.googlesource.com/c/tour/+/167181
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
|