projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9150a98
)
Ensure that BaseUrl used in `hugo server` ends with `/`
author
Anthony Fok
<foka@debian.org>
Fri, 16 Jan 2015 01:02:19 +0000
(18:02 -0700)
committer
Anthony Fok
<foka@debian.org>
Fri, 16 Jan 2015 01:02:19 +0000
(18:02 -0700)
Fixes #793, #799
commands/server.go
patch
|
blob
|
history
diff --git
a/commands/server.go
b/commands/server.go
index 8299a291612d1ec917afabe8a309ffa4b8fdd6f0..98ea60f4e5909425b82ba87d3f8bb213b902b3e2 100644
(file)
--- a/
commands/server.go
+++ b/
commands/server.go
@@
-135,6
+135,8
@@
func serve(port int) {
}
}
+// fixUrl massages the BaseUrl into a form needed for serving
+// all pages correctly.
func fixUrl(s string) (string, error) {
useLocalhost := false
if s == "" {
@@
-144,6
+146,9
@@
func fixUrl(s string) (string, error) {
if !strings.HasPrefix(s, "http://") && !strings.HasPrefix(s, "https://") {
s = "http://" + s
}
+ if !strings.HasSuffix(s, "/") {
+ s = s + "/"
+ }
u, err := url.Parse(s)
if err != nil {
return "", err