fix doc paths to go.wit.com
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
1d731a3e8c
commit
253e850c12
3
Makefile
3
Makefile
|
@ -65,8 +65,7 @@ git.wit.org:
|
||||||
git push witgui --tags
|
git push witgui --tags
|
||||||
|
|
||||||
# sync repo to the github backup
|
# sync repo to the github backup
|
||||||
# git remote add github git@github.com:witorg/gui.git
|
# git remote add github git@github.com:wit-go/gui.git
|
||||||
# git remote add github2 git@github.com:wit-go/gui.git
|
|
||||||
github:
|
github:
|
||||||
git push origin master
|
git push origin master
|
||||||
git push origin devel
|
git push origin devel
|
||||||
|
|
|
@ -38,7 +38,7 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
"git.wit.org/wit/gui"
|
"go.wit.com/wit/gui/gui"
|
||||||
)
|
)
|
||||||
|
|
||||||
var window *gui.Node // This is the beginning of the binary tree of widgets
|
var window *gui.Node // This is the beginning of the binary tree of widgets
|
||||||
|
@ -94,7 +94,7 @@ Useful links and other
|
||||||
external things which might be useful
|
external things which might be useful
|
||||||
|
|
||||||
* Wikipedia Graphical widget - [https://en.wikipedia.org/wiki/Graphical_widget](https://en.wikipedia.org/wiki/Graphical_widget)
|
* Wikipedia Graphical widget - [https://en.wikipedia.org/wiki/Graphical_widget](https://en.wikipedia.org/wiki/Graphical_widget)
|
||||||
* Github mirror - [https://github.com/witorg/gui](https://github.com/witorg/gui)
|
* Github mirror - [https://github.com/wit-go/gui](https://github.com/wit-go/gui)
|
||||||
* Federated git pull - [https://github.com/forgefed/forgefed](https://github.com/forgefed/forgefed)
|
* Federated git pull - [https://github.com/forgefed/forgefed](https://github.com/forgefed/forgefed)
|
||||||
* GO Style Guide - [https://google.github.io/styleguide/go/index](https://google.github.io/styleguide/go/index)
|
* GO Style Guide - [https://google.github.io/styleguide/go/index](https://google.github.io/styleguide/go/index)
|
||||||
|
|
||||||
|
|
2
args.go
2
args.go
|
@ -21,7 +21,7 @@ func init() {
|
||||||
newlog.Register("gui", "debugGui", &debugGui)
|
newlog.Register("gui", "debugGui", &debugGui)
|
||||||
|
|
||||||
for _, s := range newlog.ListFlags() {
|
for _, s := range newlog.ListFlags() {
|
||||||
newlog.Info("go.wit.org/gui ListFlags() returned:", s)
|
newlog.Info("go.wit.com/gui/gui ListFlags() returned:", s)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue