Fix UTF8 permalink
authorTakuya Wakisaka <takuya.wakisaka@moldweorp.com>
Thu, 9 Apr 2015 16:14:26 +0000 (01:14 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Sun, 17 May 2015 12:54:59 +0000 (14:54 +0200)
Generate unencoded directory in public dir.

Fixes #988

hugolib/page.go
hugolib/permalinks.go

index fd3bddcdb501eb9c8ce9e6d264627b5c3cc176db..fd51e72633f840cf3fd0357801badc01c63526d1 100644 (file)
@@ -347,8 +347,8 @@ func (p *Page) analyzePage() {
 func (p *Page) permalink() (*url.URL, error) {
        baseURL := string(p.Site.BaseURL)
        dir := strings.TrimSpace(filepath.ToSlash(p.Source.Dir()))
-       pSlug := strings.TrimSpace(p.Slug)
-       pURL := strings.TrimSpace(p.URL)
+       pSlug := strings.TrimSpace(helpers.URLize(p.Slug))
+       pURL := strings.TrimSpace(helpers.URLize(p.URL))
        var permalink string
        var err error
 
@@ -456,12 +456,12 @@ func (p *Page) update(f interface{}) error {
                case "description":
                        p.Description = cast.ToString(v)
                case "slug":
-                       p.Slug = helpers.URLize(cast.ToString(v))
+                       p.Slug = cast.ToString(v)
                case "url":
                        if url := cast.ToString(v); strings.HasPrefix(url, "http://") || strings.HasPrefix(url, "https://") {
                                return fmt.Errorf("Only relative URLs are supported, %v provided", url)
                        }
-                       p.URL = helpers.URLize(cast.ToString(v))
+                       p.URL = cast.ToString(v)
                case "type":
                        p.contentType = cast.ToString(v)
                case "extension", "ext":
@@ -821,6 +821,7 @@ func (p *Page) TargetPath() (outfile string) {
                var err error
                outfile, err = override.Expand(p)
                if err == nil {
+                       outfile, _ = url.QueryUnescape(outfile)
                        if strings.HasSuffix(outfile, "/") {
                                outfile += "index.html"
                        }
index 325fbfe4b35bc3f90b450fdfa2af80544c5c647c..81416e7e89385c12b925d51ce482ab639583f0e9 100644 (file)
@@ -160,7 +160,7 @@ func pageToPermalinkSlugElseTitle(p *Page, a string) (string, error) {
                if strings.HasSuffix(p.Slug, "-") {
                        p.Slug = p.Slug[0 : len(p.Slug)-1]
                }
-               return p.Slug, nil
+               return helpers.URLize(p.Slug), nil
        }
        return pageToPermalinkTitle(p, a)
 }