summaryrefslogtreecommitdiff
path: root/humanForgedTable.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-27 11:17:01 -0500
committerJeff Carr <[email protected]>2025-09-27 11:17:37 -0500
commite59f87c92c8df9465952ecd8c76478e4dc351608 (patch)
tree27bb48a65d95a3eda15d795911bbb3af2213ee14 /humanForgedTable.go
parentac07bf7b29c61f99a9d935bb8ff2126bb278667b (diff)
show devel branchesv0.0.157
Diffstat (limited to 'humanForgedTable.go')
-rw-r--r--humanForgedTable.go36
1 files changed, 25 insertions, 11 deletions
diff --git a/humanForgedTable.go b/humanForgedTable.go
index a4d19f5..96472da 100644
--- a/humanForgedTable.go
+++ b/humanForgedTable.go
@@ -17,30 +17,44 @@ func (f *Forge) makeForgedTable(pb *gitpb.Repos) *gitpb.ReposTable {
var col *gitpb.RepoAnyFunc
- col = t.AddMasterVersion()
- col.Width = 7
-
col = t.AddMasterBranchName()
+ col.Width = 3
+
+ col = t.AddMasterVersion()
col.Width = 10
- col = t.AddStringFunc("blah", func(r *gitpb.Repo) string {
+ col = t.AddStringFunc("hash", func(r *gitpb.Repo) string {
if r.Tags == nil {
- return "tags=nil"
+ return "nil"
}
if r.Tags.Master == nil {
- return "mtag=nil"
+ return "nil"
}
return r.Tags.Master.Hash
})
- col.Width = 12
+ col.Width = 6
+
+ col = t.AddDevelBranchName()
+ col.Width = 3
+
+ col = t.AddDevelVersion()
+ col.Width = 10
+
+ col = t.AddStringFunc("hash", func(r *gitpb.Repo) string {
+ if r.Tags == nil {
+ return "nil"
+ }
+ if r.Tags.Devel == nil {
+ return "nil"
+ }
+ return r.Tags.Devel.Hash
+ })
+ col.Width = 6
col = t.AddNamespace()
- col.Width = 32
+ col.Width = 42
col = t.AddURL()
- col.Width = 32
-
- col = t.AddFullPath()
col.Width = -1
return t
}