hugolib: Remove unused code
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 25 Jan 2018 16:08:18 +0000 (17:08 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 25 Jan 2018 16:14:03 +0000 (17:14 +0100)
hugolib/fileInfo.go
hugolib/hugo_sites.go
hugolib/menu.go
hugolib/page.go
hugolib/page_bundler_capture.go
hugolib/page_bundler_handlers.go
hugolib/page_collections.go
hugolib/site.go
hugolib/site_test.go

index 14dd8dbf92e7c69879af9491d41fe6be79f3ca4b..582d2be8c22d44580b59e4b07c2323a85aeb5424 100644 (file)
@@ -103,7 +103,3 @@ func (b bundleDirType) String() string {
 
        return ""
 }
-
-func (b bundleDirType) isBundle() bool {
-       return b > bundleNot
-}
index f4042eb3ed9fec7c40f7a436c2b1508427b05ffb..c52aec8133cf42af5d9bb3676a82b401177163df 100644 (file)
@@ -478,12 +478,6 @@ func (h *HugoSites) createMissingPages() error {
        return nil
 }
 
-func (h *HugoSites) removePageByPathPrefix(path string) {
-       for _, s := range h.Sites {
-               s.removePageByPathPrefix(path)
-       }
-}
-
 func (h *HugoSites) removePageByPath(path string) {
        for _, s := range h.Sites {
                s.removePageByPath(path)
index ad421cd88a0a40a9bbfdfd58d3054333949e34e6..81c13640573f59c90e326d0528182558c7619191 100644 (file)
@@ -46,13 +46,6 @@ type Menus map[string]*Menu
 // PageMenus is a dictionary of menus defined in the Pages.
 type PageMenus map[string]*MenuEntry
 
-// addChild adds a new child to this menu entry.
-// The default sort order will then be applied.
-func (m *MenuEntry) addChild(child *MenuEntry) {
-       m.Children = append(m.Children, child)
-       m.Children.Sort()
-}
-
 // HasChildren returns whether this menu item has any children.
 func (m *MenuEntry) HasChildren() bool {
        return m.Children != nil
index b4ec96565e570a10580ee079e2b581d587b97f2a..e7c3ad1cdbb8ddfb69aebf8880ee12f3385fd54e 100644 (file)
@@ -1988,10 +1988,6 @@ func (p *Page) LanguagePrefix() string {
        return p.Site.LanguagePrefix
 }
 
-func (p *Page) addLangPathPrefix(outfile string) string {
-       return p.addLangPathPrefixIfFlagSet(outfile, p.shouldAddLanguagePrefix())
-}
-
 func (p *Page) addLangPathPrefixIfFlagSet(outfile string, should bool) string {
        if helpers.IsAbsURL(outfile) {
                return outfile
index 5574329dec6721dfccdc3364560baf15710472bb..34a1be5fbd37fc57159b1d326b4977252257376f 100644 (file)
@@ -510,9 +510,6 @@ func (c *capturer) newFileInfo(filename string, fi os.FileInfo, tp bundleDirType
        return newFileInfo(c.sourceSpec, c.baseDir, filename, fi, tp)
 }
 
-type singlesHandler func(fis ...*fileInfo)
-type bundlesHandler func(b *bundleDirs)
-
 type fileInfoName struct {
        os.FileInfo
        filename string
index c91d3f082533d9a58804a3c197273f002a2b0543..19e48ea7d4bc5d462fc653b5efa0b86520a2b179 100644 (file)
@@ -182,15 +182,11 @@ type (
                resource resource.Resource
        }
 
-       contentHandlerChain func(h contentHandler) contentHandler
-       contentHandler      func(ctx *handlerContext) handlerResult
+       contentHandler func(ctx *handlerContext) handlerResult
 )
 
 var (
-       notHandled        handlerResult
-       noOpContenHandler = func(ctx *handlerContext) handlerResult {
-               return handlerResult{handled: true}
-       }
+       notHandled handlerResult
 )
 
 func (c *contentHandlers) parsePage(h contentHandler) contentHandler {
index 03b606955d092922ac2ab283a822d9e3c2e0977e..3bdb4d9ce911d7042feb4d0671d6befcea0b6c36 100644 (file)
@@ -170,18 +170,6 @@ func (c *PageCollections) addPage(page *Page) {
        c.rawAllPages = append(c.rawAllPages, page)
 }
 
-// When we get a REMOVE event we're not always getting all the individual files,
-// so we need to remove all below a given path.
-func (c *PageCollections) removePageByPathPrefix(path string) {
-       for {
-               i := c.rawAllPages.findFirstPagePosByFilePathPrefix(path)
-               if i == -1 {
-                       break
-               }
-               c.rawAllPages = append(c.rawAllPages[:i], c.rawAllPages[i+1:]...)
-       }
-}
-
 func (c *PageCollections) removePageByPath(path string) {
        if i := c.rawAllPages.findPagePosByFilePath(path); i >= 0 {
                c.clearResourceCacheForPage(c.rawAllPages[i])
index 208edc9e9232578969654bd28d522de14e048075..0dbf84a070344fa4f4770a79c0e667ebbf827253 100644 (file)
@@ -398,7 +398,6 @@ type siteBuilderCfg struct {
        language        *helpers.Language
        s               *Site
        pageCollections *PageCollections
-       baseURL         string
 }
 
 // TODO(bep) get rid of this
@@ -1787,63 +1786,6 @@ func (s *Site) publish(statCounter *uint64, path string, r io.Reader) (err error
        return helpers.WriteToDisk(path, r, s.Fs.Destination)
 }
 
-func (s *Site) draftStats() string {
-       var msg string
-
-       switch s.draftCount {
-       case 0:
-               return "0 draft content"
-       case 1:
-               msg = "1 draft rendered"
-       default:
-               msg = fmt.Sprintf("%d drafts rendered", s.draftCount)
-       }
-
-       if s.Cfg.GetBool("buildDrafts") {
-               return fmt.Sprintf("%d of ", s.draftCount) + msg
-       }
-
-       return "0 of " + msg
-}
-
-func (s *Site) futureStats() string {
-       var msg string
-
-       switch s.futureCount {
-       case 0:
-               return "0 future content"
-       case 1:
-               msg = "1 future rendered"
-       default:
-               msg = fmt.Sprintf("%d futures rendered", s.futureCount)
-       }
-
-       if s.Cfg.GetBool("buildFuture") {
-               return fmt.Sprintf("%d of ", s.futureCount) + msg
-       }
-
-       return "0 of " + msg
-}
-
-func (s *Site) expiredStats() string {
-       var msg string
-
-       switch s.expiredCount {
-       case 0:
-               return "0 expired content"
-       case 1:
-               msg = "1 expired rendered"
-       default:
-               msg = fmt.Sprintf("%d expired rendered", s.expiredCount)
-       }
-
-       if s.Cfg.GetBool("buildExpired") {
-               return fmt.Sprintf("%d of ", s.expiredCount) + msg
-       }
-
-       return "0 of " + msg
-}
-
 func getGoMaxProcs() int {
        if gmp := os.Getenv("GOMAXPROCS"); gmp != "" {
                if p, err := strconv.Atoi(gmp); err != nil {
index de28a82eb46b0cb64d8c7390351f9ba9857ea79d..c157ee6d2f9446beb2788b22c188d68777891f4b 100644 (file)
@@ -31,11 +31,6 @@ import (
 )
 
 const (
-       pageSimpleTitle = `---
-title: simple template
----
-content`
-
        templateMissingFunc = "{{ .Title | funcdoesnotexists }}"
        templateWithURLAbs  = "<a href=\"/foobar.jpg\">Going</a>"
 )