summaryrefslogtreecommitdiffstats
path: root/helpers/path.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-11-19 13:47:36 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-11-19 14:03:21 +0100
commitc1d325934edc93ac802c7d99a30a5963efe52e01 (patch)
tree8ac3d8f34c3c864f0adfc7dc813416d64eab1516 /helpers/path.go
parentd99db71ab5a90246dce729ca802e4cd88b01ba3c (diff)
helpers: Remove (now) unused GetStaticDir
* In Hugo there is no single static dir * It was used as a filter in the content dir, which makes no sense since any overlap here is impossible
Diffstat (limited to 'helpers/path.go')
-rw-r--r--helpers/path.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/helpers/path.go b/helpers/path.go
index a0b35e5ed..57f02da68 100644
--- a/helpers/path.go
+++ b/helpers/path.go
@@ -167,12 +167,6 @@ func (p *PathSpec) GetLayoutDirPath() string {
return p.AbsPathify(p.layoutDir)
}
-// GetStaticDirPath returns the absolute path to the static file dir
-// for the current Hugo project.
-func (p *PathSpec) GetStaticDirPath() string {
- return p.AbsPathify(p.StaticDir())
-}
-
// GetThemeDir gets the root directory of the current theme, if there is one.
// If there is no theme, returns the empty string.
func (p *PathSpec) GetThemeDir() string {
@@ -230,16 +224,6 @@ func (p *PathSpec) GetThemesDirPath() string {
return dir
}
-// MakeStaticPathRelative makes a relative path to the static files directory.
-// It does so by taking either the project's static path or the theme's static
-// path into consideration.
-func (p *PathSpec) MakeStaticPathRelative(inPath string) (string, error) {
- staticDir := p.GetStaticDirPath()
- themeStaticDir := p.GetThemesDirPath()
-
- return makePathRelative(inPath, staticDir, themeStaticDir)
-}
-
func makePathRelative(inPath string, possibleDirectories ...string) (string, error) {
for _, currentPath := range possibleDirectories {