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:
ff28120
)
Fix /.xml RSSLink when uglyurls are enabled
author
John McFarlane
<john@rockfloat.com>
Mon, 7 Dec 2015 05:34:09 +0000
(21:34 -0800)
committer
Steve Francia
<steve.francia@gmail.com>
Mon, 4 Jan 2016 16:25:37 +0000
(11:25 -0500)
Prior to this commit the root url with uglyurls enabled is "/.xml".
This commit relates to #175.
helpers/url.go
patch
|
blob
|
history
diff --git
a/helpers/url.go
b/helpers/url.go
index 007d699b30293e143d0c0726c78e9834f4a0f6da..bebcb8663467fb5a3486a4bd99f4dcd7869420db 100644
(file)
--- a/
helpers/url.go
+++ b/
helpers/url.go
@@
-269,6
+269,10
@@
func Uglify(in string) string {
}
return in
}
+ // /.xml -> /index.xml
+ if name == "" {
+ return path.Dir(in) + "index" + ext
+ }
// /section/name.html -> /section/name.html
return path.Clean(in)
}