summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-04 03:45:49 -0500
committerJeff Carr <[email protected]>2025-10-04 03:45:49 -0500
commit8d535b0a0771ceb53a4163226b1d7d5f95052989 (patch)
treefdbef32a60674ea185024c8aba37fac836cce528 /human.go
parent5ee8c4f295205e7bfd316b43a503f1ec281a1b03 (diff)
start removing old table codev0.0.163
Diffstat (limited to 'human.go')
-rw-r--r--human.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/human.go b/human.go
index 1d3bff8..f58e23e 100644
--- a/human.go
+++ b/human.go
@@ -4,7 +4,6 @@ package forgepb
import (
"fmt"
- "path/filepath"
"go.wit.com/lib/gui/shell"
"go.wit.com/lib/protobuf/gitpb"
@@ -114,39 +113,3 @@ func (f *Forge) PrintReleaseReport(repos *gitpb.Repos) int {
log.Info(fmt.Sprintf("total repo count = %d", count))
return count
}
-
-func (f *Forge) PrintPullTable(all *gitpb.Repos) {
- tablePB := f.makePullTable(all)
- tablePB.PrintTable()
-}
-
-func (f *Forge) makePullTable(pb *gitpb.Repos) *gitpb.ReposTable {
- t := pb.NewTable("pullTable")
- t.NewUuid()
-
- var col *gitpb.RepoFunc
- // var col int
-
- col = t.AddMasterBranchName()
- col.Width = 10
-
- col = t.AddMasterVersion()
- // col.SetTitle("mver")
- col.Width = 15
-
- col = t.AddStringFunc("blah", func(r *gitpb.Repo) string {
- _, base := filepath.Split(r.Namespace)
- return base
- })
- col.Width = 9
-
- col = t.AddDevelVersion()
- col.Width = 15
-
- col = t.AddNamespace()
- col.Width = 18
-
- col = t.AddFullPath()
- col.Width = -1
- return t
-}