remove old code

This commit is contained in:
Jeff Carr 2025-02-21 09:33:45 -06:00
parent 9ce889b404
commit 76143a6474
2 changed files with 26 additions and 26 deletions

View File

@ -3,11 +3,7 @@
package main package main
import ( /*
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
func doVerifyUser() error { func doVerifyUser() error {
me.found = new(gitpb.Repos) me.found = new(gitpb.Repos)
all := me.forge.Repos.SortByFullPath() all := me.forge.Repos.SortByFullPath()
@ -32,29 +28,10 @@ func doVerifyUser() error {
if argv.Verbose { if argv.Verbose {
log.Printf("Start clean devel branch: %s %s\n", repo.GetGoPath(), devel) log.Printf("Start clean devel branch: %s %s\n", repo.GetGoPath(), devel)
} }
/*
// check if devel branch exists in remote repo
if repo.IsBranchRemote(devel) {
if err := doCleanDevelRepo(repo); err != nil {
log.Info(repo.GetGoPath(), "verify clean failed")
}
// can not continue
continue
}
*/
// devel branch is only local
/*
todo: something?
devname := repo.GetDevelBranchName()
if err := requiresGitPush(repo, devname); err != nil {
log.Info(repo.GetGoPath(), "is out of sync with upstream")
return err
}
*/
} }
return nil return nil
} }
func verifyRemoteUserBranch(repo *gitpb.Repo) { func verifyRemoteUserBranch(repo *gitpb.Repo) {
} }
*/

View File

@ -8,6 +8,7 @@ import (
"go.wit.com/lib/gadgets" "go.wit.com/lib/gadgets"
"go.wit.com/lib/protobuf/forgepb" "go.wit.com/lib/protobuf/forgepb"
"go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log" "go.wit.com/log"
"go.wit.com/gui" "go.wit.com/gui"
@ -73,16 +74,38 @@ func makeRepoProblemsWindow() *repoProblemsWindow {
// sets the hidden flag to false so Toggle() works // sets the hidden flag to false so Toggle() works
pw.win.Hide() pw.win.Hide()
} }
pw.stack.NewGroup("things") pw.stack.NewGroup("things (these don't work yet)")
grid := pw.stack.RawGrid() grid := pw.stack.RawGrid()
grid.NewButton("devel is behind master", func() { grid.NewButton("devel is behind master", func() {
log.Info("not done yet") log.Info("not done yet")
me.found = new(gitpb.Repos)
all := me.forge.Repos.SortByFullPath()
for all.Scan() {
repo := all.Next()
if repo.GetDevelVersion() == repo.GetMasterVersion() {
continue
}
me.found.AppendByGoPath(repo)
}
makeStandardReposWindow(me.found)
}) })
grid.NewButton("user branch is remote", func() { grid.NewButton("user branch is remote", func() {
log.Info("not done yet") log.Info("not done yet")
me.found = new(gitpb.Repos)
all := me.forge.Repos.SortByFullPath()
for all.Scan() {
repo := all.Next()
username := repo.GetUserBranchName()
if repo.IsBranchRemote(username) {
me.found.AppendByGoPath(repo)
}
}
makeStandardReposWindow(me.found)
}) })
grid.NewButton("unknown branches", func() { grid.NewButton("unknown branches", func() {