summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-10 08:06:20 -0600
committerJeff Carr <[email protected]>2024-02-10 08:06:20 -0600
commite8c7e33bfdf5b2c0c44df52c52a2e90daa97aa85 (patch)
tree4a650c9cfc54af19338d5d84446762af2cdb3f75
parent459350eaa1c4a79f7b5332be16ae1907a178f306 (diff)
cosmetics
Signed-off-by: Jeff Carr <[email protected]>
-rw-r--r--files/repomap12
-rw-r--r--indexHtml.go4
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, " <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, "")
}