cosmetics

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-02-10 08:06:20 -06:00
parent 459350eaa1
commit e8c7e33bfd
2 changed files with 8 additions and 8 deletions

View File

@ -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)

View File

@ -37,13 +37,13 @@ func indexBodyStart(w http.ResponseWriter) {
// fmt.Fprintln(w, " <thead>")
fmt.Fprintln(w, " <tr>")
fmt.Fprintln(w, " <th>Package (IPv6 only)</th>")
fmt.Fprintln(w, " <th>Documentation</th>")
fmt.Fprintln(w, " <th>Version</th>")
fmt.Fprintln(w, " <th>Age</th>")
fmt.Fprintln(w, " <th>Dev Version</th>")
fmt.Fprintln(w, " <th>Description</th>")
// fmt.Fprintln(w, " <th>Authoritative sources (IPv6 only)</th>")
// fmt.Fprintln(w, " <th></th>")
fmt.Fprintln(w, " <th>GO Docs</th>")
fmt.Fprintln(w, " </tr>")
// fmt.Fprintln(w, " </thead>")
fmt.Fprintln(w, " <tbody>")
@ -98,6 +98,7 @@ func indexBodyRepo(w http.ResponseWriter, gourl string, giturl string, desc stri
fmt.Fprintln(w, " <tr>")
// fmt.Fprintln(w, " <td>"+gourl+"</td>")
fmt.Fprintln(w, " <td> <a href=\"//"+gourl+"\">"+gourl+"</a></td>")
fmt.Fprintln(w, " <td> <a href=\"//pkg.go.dev/"+gourl+"\"> <img src=\"goReference.svg\" alt=\"pkg.go.dev\" /> </a> </td>")
// 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, " <td></td>") // dev version
fmt.Fprintln(w, " <td>"+desc+"</td>")
// fmt.Fprintln(w, " <td> <a href=\"//"+gourl+"\">"+giturl+"</a></td>")
fmt.Fprintln(w, " <td> <a href=\"//pkg.go.dev/"+gourl+"\"> <img src=\"goReference.svg\" alt=\"pkg.go.dev\" /> </a> </td>")
fmt.Fprintln(w, " </tr>")
fmt.Fprintln(w, "")
}