summaryrefslogtreecommitdiff
path: root/humanTable.go
diff options
context:
space:
mode:
Diffstat (limited to 'humanTable.go')
-rw-r--r--humanTable.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/humanTable.go b/humanTable.go
index 4098eba..9532170 100644
--- a/humanTable.go
+++ b/humanTable.go
@@ -33,27 +33,6 @@ func (f *Forge) PrintHumanTable(allr *gitpb.Repos) {
log.Infof("Total repositories: %d (%d master) (%d devel) (%d user) (%d unknown)\n", t.total, t.master, t.devel, t.user, t.unknown)
}
-/*
-func (f *Forge) PrintForgedTable(allr *gitpb.Repos) {
- log.DaemonMode(true)
-
- t := new(tally)
-
- // print the header
- args := []string{"Namespace", "branch", "age", "master", "devel", "last tag", "", "", "", ""}
- sizes := []int{35, 9, 4, 13, 13, 13, 13, 12, 12, 8}
- log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args)))
-
- all := allr.SortByFullPath()
- for all.Scan() {
- repo := all.Next()
- f.printForgedToTable(repo, sizes)
- tallyBranchTotals(t, repo)
- }
- log.Infof("Total repositories: %d (%d user) (%d devel) (%d master) (%d unknown)\n", t.total, t.user, t.devel, t.master, t.unknown)
-}
-*/
-
func (f *Forge) PrintHumanTableFull(allr *gitpb.Repos) {
log.DaemonMode(true)