grim/hgkeeper

00140ff02051
Parents 6b8a0acef0f0
Children 0f009a337675
Update the page to keep. Fixes HGKEEPER-10
--- a/go.mod Tue Apr 28 22:11:42 2020 -0500
+++ b/go.mod Fri May 08 04:39:00 2020 -0500
@@ -1,6 +1,7 @@
-module bitbucket.org/rw_grim/hgkeeper
+module keep.imfreedom.org/grim/hgkeeper
require (
+ bitbucket.org/rw_grim/hgkeeper v0.0.0-20191218064605-20da8ebdfc2f
github.com/alecthomas/kong v0.1.16
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 // indirect
github.com/casbin/casbin/v2 v2.0.2
--- a/go.sum Tue Apr 28 22:11:42 2020 -0500
+++ b/go.sum Fri May 08 04:39:00 2020 -0500
@@ -1,3 +1,5 @@
+bitbucket.org/rw_grim/hgkeeper v0.0.0-20191218064605-20da8ebdfc2f h1:4h2mvRqhKDOf/rp5hNgDqgYT0cFYaaCLxS4tLuMZ69c=
+bitbucket.org/rw_grim/hgkeeper v0.0.0-20191218064605-20da8ebdfc2f/go.mod h1:iuICW+ptbttUwycyKeAIrccksZYho3FrGzk82QLsQ4w=
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible h1:1G1pk05UrOh0NlF1oeaaix1x8XzrfjIDK47TY0Zehcw=
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0=
github.com/alecthomas/kong v0.1.16 h1:BheBKuvr6FE1unlZVdqkdZo/D/eDu90rrVIlpPbOdgw=
--- a/hg/hg.go Tue Apr 28 22:11:42 2020 -0500
+++ b/hg/hg.go Fri May 08 04:39:00 2020 -0500
@@ -8,7 +8,7 @@
log "github.com/sirupsen/logrus"
- "bitbucket.org/rw_grim/hgkeeper/access"
+ "keep.imfreedom.org/grim/hgkeeper/access"
)
type Command struct {
--- a/hgweb/files.go Tue Apr 28 22:11:42 2020 -0500
+++ b/hgweb/files.go Fri May 08 04:39:00 2020 -0500
@@ -212,12 +212,24 @@
"/hgweb.cgi": {
name: "hgweb.cgi",
local: "files/hgweb.cgi",
- size: 211,
- modtime: 1576648984,
+ size: 213,
+ modtime: 1586835329,
compressed: `
-H4sIAAAAAAAC/1yOwarCMBBF9/MV83iLtiDpB0g3ilY3unQpaZqmA8kkpK1FSv9dsArq8nDPgfv/lw9d
-zCviXPMNw71vPYPy3JDBApNpEofysttct+fT/ljOcwLQRO/Q6aiGSNIiueBjj7V2kusF1l8kNMvK6jT7
-KUVrRl29+yescOwMKUMAMgRLSvbkGYtlTZdfGbwkYeXAqk0/1AzgEQAA//842Xf00wAAAA==
+H4sIAAAAAAAC/1yOMWvDMBBG9/sVVzrYhiIPHYuXlsbJkowZgyTL8oF0ErIdE4z/eyBOIMn4+N6D7/Oj
+HPtUKuLS8BnjZegCf4MO3JLFClU2z2JbH/9/T3+H/WZXL0sG0Kbg0Zukx0TSIfkY0oCN8ZKbFX5eSBiW
+ypm8eCtFZyejHv0NvnDqLWlLADJGR1oOFBirdc3XYwXcJeHkyLrLn9QC4BoAAP//rsn9QdUAAAA=
+`,
+ },
+
+ "/hgweb.config": {
+ name: "hgweb.config",
+ local: "files/hgweb.config",
+ size: 151,
+ modtime: 1587785601,
+ compressed: `
+H4sIAAAAAAAC/0zNwQqCQBCH8fs8xR+iaz1Bh1pMvRRk0CFCTCcdWHZhd9YI8d0jIuj4HT5+S3GtTR1j
+mlZFfsl29daYrKpqczzsy3yeia5Pvt8oaqPSpmCxwfobRAv8dh0YUZTReveQHraJiiZCFHHwyXbwI4cg
+HYNHDi8dxPX0r1flOauL/GQ+5jsAAP//rRIl8JcAAAA=
`,
},
@@ -240,5 +252,6 @@
"files": {
_escData["/hgweb.cgi"],
+ _escData["/hgweb.config"],
},
}
--- a/hgweb/hgweb.go Tue Apr 28 22:11:42 2020 -0500
+++ b/hgweb/hgweb.go Fri May 08 04:39:00 2020 -0500
@@ -11,8 +11,8 @@
log "github.com/sirupsen/logrus"
- "bitbucket.org/rw_grim/hgkeeper/access"
- "bitbucket.org/rw_grim/hgkeeper/hg"
+ "keep.imfreedom.org/grim/hgkeeper/access"
+ "keep.imfreedom.org/grim/hgkeeper/hg"
)
type Server struct {
--- a/main.go Tue Apr 28 22:11:42 2020 -0500
+++ b/main.go Fri May 08 04:39:00 2020 -0500
@@ -6,9 +6,9 @@
"github.com/alecthomas/kong"
log "github.com/sirupsen/logrus"
- "bitbucket.org/rw_grim/hgkeeper/globals"
- "bitbucket.org/rw_grim/hgkeeper/serve"
- "bitbucket.org/rw_grim/hgkeeper/setup"
+ "keep.imfreedom.org/grim/hgkeeper/globals"
+ "keep.imfreedom.org/grim/hgkeeper/serve"
+ "keep.imfreedom.org/grim/hgkeeper/setup"
)
type commands struct {
--- a/serve/command.go Tue Apr 28 22:11:42 2020 -0500
+++ b/serve/command.go Fri May 08 04:39:00 2020 -0500
@@ -7,10 +7,10 @@
log "github.com/sirupsen/logrus"
- "bitbucket.org/rw_grim/hgkeeper/access"
- "bitbucket.org/rw_grim/hgkeeper/globals"
- "bitbucket.org/rw_grim/hgkeeper/hgweb"
- "bitbucket.org/rw_grim/hgkeeper/ssh"
+ "keep.imfreedom.org/grim/hgkeeper/access"
+ "keep.imfreedom.org/grim/hgkeeper/globals"
+ "keep.imfreedom.org/grim/hgkeeper/hgweb"
+ "keep.imfreedom.org/grim/hgkeeper/ssh"
)
type Command struct {
--- a/setup/command.go Tue Apr 28 22:11:42 2020 -0500
+++ b/setup/command.go Fri May 08 04:39:00 2020 -0500
@@ -11,8 +11,8 @@
"golang.org/x/crypto/ssh"
- "bitbucket.org/rw_grim/hgkeeper/globals"
- "bitbucket.org/rw_grim/hgkeeper/hg"
+ "keep.imfreedom.org/grim/hgkeeper/globals"
+ "keep.imfreedom.org/grim/hgkeeper/hg"
)
type Command struct {
--- a/ssh/server.go Tue Apr 28 22:11:42 2020 -0500
+++ b/ssh/server.go Fri May 08 04:39:00 2020 -0500
@@ -7,8 +7,8 @@
log "github.com/sirupsen/logrus"
gossh "golang.org/x/crypto/ssh"
- "bitbucket.org/rw_grim/hgkeeper/access"
- "bitbucket.org/rw_grim/hgkeeper/ssh/commands"
+ "keep.imfreedom.org/grim/hgkeeper/access"
+ "keep.imfreedom.org/grim/hgkeeper/ssh/commands"
)
type Server struct {