From e8c7e33bfdf5b2c0c44df52c52a2e90daa97aa85 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 10 Feb 2024 08:06:20 -0600 Subject: [PATCH] cosmetics Signed-off-by: Jeff Carr --- files/repomap | 12 ++++++------ indexHtml.go | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/files/repomap b/files/repomap index b2122ba..5088471 100644 --- a/files/repomap +++ b/files/repomap @@ -1,17 +1,17 @@ # gui core packages go.wit.com/gui git.wit.org/gui/gui The GUI API -go.wit.com/widget git.wit.org/gui/widget Definitions for Buttons, Texcboxes, etc. +go.wit.com/widget git.wit.org/gui/widget Primitive Definitions for Buttons, Dropdowns, etc. # Applications go.wit.com/apps/helloworld git.wit.org/gui/helloworld A simple Demo go.wit.com/apps/basicwindow git.wit.org/jcarr/basicwindow A bit more of a Demo -go.wit.com/apps/gadgetwindow git.wit.org/jcarr/gadgetwindow Useful for debugging toolkits -go.wit.com/apps/autotypist git.wit.org/jcarr/autotypist Used to maintain these repos -go.wit.com/apps/guireleaser git.wit.org/jcarr/guireleaser Used to do version released -go.wit.com/apps/control-panel-dns git.wit.org/jcarr/control-panel-dns A DNS Control Panel +go.wit.com/apps/gadgetwindow git.wit.org/jcarr/gadgetwindow A more complicated Demo used for debugging the toolkits +go.wit.com/apps/autotypist git.wit.org/jcarr/autotypist Wrapper around 'git' and 'go' for these repos +go.wit.com/apps/guireleaser git.wit.org/jcarr/guireleaser go.wit.com/apps/control-panel-digitalocean git.wit.org/wit/control-panel-digitalocean A simple Digital Ocean Control Panel +go.wit.com/apps/control-panel-dns git.wit.org/jcarr/control-panel-dns A DNS Control Panel go.wit.com/apps/control-panel-cloudflare git.wit.org/wit/control-panel-cloudflare go.wit.com/apps/control-panel-vpn git.wit.org/jcarr/control-panel-vpn go.wit.com/apps/go.wit.com git.wit.org/jcarr/go.wit.com @@ -21,7 +21,7 @@ go.wit.com/toolkits/tree git.wit.org/toolkits/tree Common plugin code to talk to go.wit.com/toolkits/nocui git.wit.org/toolkits/nocui A minimum toolkit plugin using STDIN/STDOUT go.wit.com/toolkits/gocui git.wit.org/toolkits/gocui A gui plugin using 'gocui' go.wit.com/toolkits/andlabs git.wit.org/toolkits/andlabs A gui plugin using andlabs/ui -go.wit.com/toolkits/debian git.wit.org/toolkits/debian packages the plugins for debian +go.wit.com/toolkits/debian git.wit.org/toolkits/debian .deb of the toolkit plugin binaries # log/ (modified for the gui) diff --git a/indexHtml.go b/indexHtml.go index 0aa4b17..af32e57 100644 --- a/indexHtml.go +++ b/indexHtml.go @@ -37,13 +37,13 @@ func indexBodyStart(w http.ResponseWriter) { // fmt.Fprintln(w, " ") fmt.Fprintln(w, " ") fmt.Fprintln(w, " Package (IPv6 only)") + fmt.Fprintln(w, " Documentation") fmt.Fprintln(w, " Version") fmt.Fprintln(w, " Age") fmt.Fprintln(w, " Dev Version") fmt.Fprintln(w, " Description") // fmt.Fprintln(w, " Authoritative sources (IPv6 only)") // fmt.Fprintln(w, " ") - fmt.Fprintln(w, " GO Docs") fmt.Fprintln(w, " ") // fmt.Fprintln(w, " ") fmt.Fprintln(w, " ") @@ -98,6 +98,7 @@ func indexBodyRepo(w http.ResponseWriter, gourl string, giturl string, desc stri fmt.Fprintln(w, " ") // fmt.Fprintln(w, " "+gourl+"") fmt.Fprintln(w, " "+gourl+"") + fmt.Fprintln(w, " \"pkg.go.dev\" ") // for i, s := range versionMap { // log.Println("found i =", i, "with", "s =", s) // } @@ -133,7 +134,6 @@ func indexBodyRepo(w http.ResponseWriter, gourl string, giturl string, desc stri fmt.Fprintln(w, " ") // dev version fmt.Fprintln(w, " "+desc+"") // fmt.Fprintln(w, " "+giturl+"") - fmt.Fprintln(w, " \"pkg.go.dev\" ") fmt.Fprintln(w, " ") fmt.Fprintln(w, "") }