"fmt"
"io"
"os"
- "path"
"path/filepath"
"regexp"
"strings"
// then name will be the filename minus any extension - including the dot
// and ext will contain the extension - minus the dot.
func FileAndExt(in string) (name string, ext string) {
- ext = path.Ext(in)
- base := path.Base(in) // path.Base strips any trailing slash!
+ ext = filepath.Ext(in)
+ base := filepath.Base(in) // path.Base strips any trailing slash!
// No file name cases. These are defined as:
// 1. any "in" path that ends in a os.PathSeparator i.e. "/" on linux
// /section/name/ -> /section/name/index.html
// /section/name/index.html -> /section/name/index.html
func PrettifyPath(in string) string {
- if path.Ext(in) == "" {
+ if filepath.Ext(in) == "" {
// /section/name/ -> /section/name/index.html
if len(in) < 2 {
return "/"
}
- return path.Join(path.Clean(in), "index.html")
+ return filepath.Join(filepath.Clean(in), "index.html")
} else {
name, ext := FileAndExt(in)
if name == "index" {
// /section/name/index.html -> /section/name/index.html
- return path.Clean(in)
+ return filepath.Clean(in)
} else {
// /section/name.html -> /section/name/index.html
- return path.Join(path.Dir(in), name, "index"+ext)
+ return filepath.Join(filepath.Dir(in), name, "index"+ext)
}
}
}
import (
"fmt"
"net/url"
- "path"
+ "path/filepath"
"strings"
"github.com/PuerkitoBio/purell"
panic(fmt.Errorf("Can't make permalink from absolute link %q", plink))
}
- base.Path = path.Join(base.Path, p.Path)
+ base.Path = filepath.Join(base.Path, p.Path)
// path.Join will strip off the last /, so put it back if it was there.
if strings.HasSuffix(p.Path, "/") && !strings.HasSuffix(base.Path, "/") {
return x
} else {
x := PrettifyUrl(SanitizeUrl(in))
- if path.Ext(x) == ".xml" {
+ if filepath.Ext(x) == ".xml" {
return x
}
url, err := purell.NormalizeURLString(x, purell.FlagAddTrailingSlash)
func PrettifyUrl(in string) string {
x := PrettifyPath(in)
- if path.Base(x) == "index.html" {
- return path.Dir(x)
+ if filepath.Base(x) == "index.html" {
+ return filepath.Dir(x)
}
if in == "" {
// /section/name/ -> /section/name.html
// /section/name.html -> /section/name.html
func Uglify(in string) string {
- if path.Ext(in) == "" {
+ if filepath.Ext(in) == "" {
if len(in) < 2 {
return "/"
}
// /section/name/ -> /section/name.html
- return path.Clean(in) + ".html"
+ return filepath.Clean(in) + ".html"
} else {
name, ext := FileAndExt(in)
if name == "index" {
// /section/name/index.html -> /section/name.html
- d := path.Dir(in)
+ d := filepath.Dir(in)
if len(d) > 1 {
return d + ext
} else {
}
} else {
// /section/name.html -> /section/name.html
- return path.Clean(in)
+ return filepath.Clean(in)
}
}
}