Fix /.xml RSSLink when uglyurls are enabled
authorJohn McFarlane <john@rockfloat.com>
Mon, 7 Dec 2015 05:34:09 +0000 (21:34 -0800)
committerSteve 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

index 007d699b30293e143d0c0726c78e9834f4a0f6da..bebcb8663467fb5a3486a4bd99f4dcd7869420db 100644 (file)
@@ -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)
 }