Fix broken convert
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 17 Nov 2014 22:18:40 +0000 (23:18 +0100)
committerspf13 <steve.francia@gmail.com>
Tue, 18 Nov 2014 15:17:01 +0000 (10:17 -0500)
The front matter convert-feature didn't work. It placed converted content in the wrong directory.

This commit fixes this by doing the smallest and safest change possible; the path logic here should maybe
be revisited and generalized.

Fixes #643

commands/convert.go
source/file.go

index 2aa6da9ddcbe48d7631bff90463a179815c7b2a6..01feecb2dcda292696f0ef8fffd946271d314a8b 100644 (file)
@@ -15,14 +15,15 @@ package commands
 
 import (
        "fmt"
-       "path/filepath"
-       "time"
-
        "github.com/spf13/cast"
        "github.com/spf13/cobra"
+       "github.com/spf13/hugo/helpers"
        "github.com/spf13/hugo/hugolib"
        "github.com/spf13/hugo/parser"
        jww "github.com/spf13/jwalterweatherman"
+       "github.com/spf13/viper"
+       "path/filepath"
+       "time"
 )
 
 var OutputDir string
@@ -128,7 +129,7 @@ func convertContents(mark rune) (err error) {
                        metadata = newmetadata
                }
 
-               //page.Dir = file.Dir
+               page.SetDir(filepath.Join(helpers.AbsPathify(viper.GetString("ContentDir")), file.Dir()))
                page.SetSourceContent(psr.Content())
                page.SetSourceMetaData(metadata, mark)
 
index 909d457db34f5e14b5a8755c772327317eeb9c29..4c6196a9fb48169db9c2ab47338dec51c3c15723 100644 (file)
@@ -70,9 +70,9 @@ func (f *File) LogicalName() string {
        }
 }
 
-//func (f *File) SetDir(dir string) {
-//f.dir = dir
-//}
+func (f *File) SetDir(dir string) {
+       f.dir = dir
+}
 
 func (f *File) Dir() string {
        if f.dir != "" {