Add UrlPath to the deprecated list
authorbep <bjorn.erik.pedersen@gmail.com>
Wed, 18 Mar 2015 10:30:23 +0000 (11:30 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Wed, 18 Mar 2015 10:30:37 +0000 (11:30 +0100)
hugolib/node.go

index d13a2626e2df200cf2406f920b5f5ec4d705c24e..4a356ebe8da2ca838151885a23a7583e537e557b 100644 (file)
 package hugolib
 
 import (
+       "github.com/spf13/hugo/helpers"
        "html/template"
        "sync"
        "time"
-       "github.com/spf13/hugo/helpers"
 )
 
 type Node struct {
@@ -133,6 +133,18 @@ func (n *Node) Url() string {
        return n.URL
 }
 
+// UrlPath is deprecated. Will be removed in 0.15.
+func (n *Node) UrlPath() URLPath {
+       helpers.Deprecated("Node", ".UrlPath", ".URLPath")
+       return n.URLPath
+}
+
+// Url is deprecated. Will be removed in 0.15.
+func (up URLPath) Url() string {
+       helpers.Deprecated("URLPath", ".Url", ".URL")
+       return up.URL
+}
+
 // Scratch returns the writable context associated with this Node.
 func (n *Node) Scratch() *Scratch {
        if n.scratch == nil {