mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
cc14c6a52c
Allows using permalink configuration for sections (branch bundles) and also for taxonomy pages. Extends the current permalink configuration to be able to specified per page kind while also staying backward compatible: all permalink patterns not dedicated to a certain kind, get automatically added for both normal pages and term pages. Fixes #8523
94 lines
3.4 KiB
Go
94 lines
3.4 KiB
Go
// Copyright 2019 The Hugo Authors. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// This file is autogenerated.
|
|
|
|
package page
|
|
|
|
import (
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
"github.com/gohugoio/hugo/hugofs"
|
|
"github.com/gohugoio/hugo/hugofs/files"
|
|
"github.com/gohugoio/hugo/source"
|
|
)
|
|
|
|
// ZeroFile represents a zero value of source.File with warnings if invoked.
|
|
type zeroFile struct {
|
|
log loggers.Logger
|
|
}
|
|
|
|
func NewZeroFile(log loggers.Logger) source.File {
|
|
return zeroFile{log: log}
|
|
}
|
|
|
|
func (zeroFile) IsZero() bool {
|
|
return true
|
|
}
|
|
|
|
func (z zeroFile) Classifier() files.ContentClass {
|
|
z.log.Warnln(".File.Classifier on zero object. Wrap it in if or with: {{ with .File }}{{ .Classifier }}{{ end }}")
|
|
return files.ContentClassZero
|
|
}
|
|
|
|
func (z zeroFile) Path() (o0 string) {
|
|
z.log.Warnln(".File.Path on zero object. Wrap it in if or with: {{ with .File }}{{ .Path }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Section() (o0 string) {
|
|
z.log.Warnln(".File.Section on zero object. Wrap it in if or with: {{ with .File }}{{ .Section }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Lang() (o0 string) {
|
|
z.log.Warnln(".File.Lang on zero object. Wrap it in if or with: {{ with .File }}{{ .Lang }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Filename() (o0 string) {
|
|
z.log.Warnln(".File.Filename on zero object. Wrap it in if or with: {{ with .File }}{{ .Filename }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Dir() (o0 string) {
|
|
z.log.Warnln(".File.Dir on zero object. Wrap it in if or with: {{ with .File }}{{ .Dir }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Extension() (o0 string) {
|
|
z.log.Warnln(".File.Extension on zero object. Wrap it in if or with: {{ with .File }}{{ .Extension }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) Ext() (o0 string) {
|
|
z.log.Warnln(".File.Ext on zero object. Wrap it in if or with: {{ with .File }}{{ .Ext }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) LogicalName() (o0 string) {
|
|
z.log.Warnln(".File.LogicalName on zero object. Wrap it in if or with: {{ with .File }}{{ .LogicalName }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) BaseFileName() (o0 string) {
|
|
z.log.Warnln(".File.BaseFileName on zero object. Wrap it in if or with: {{ with .File }}{{ .BaseFileName }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) TranslationBaseName() (o0 string) {
|
|
z.log.Warnln(".File.TranslationBaseName on zero object. Wrap it in if or with: {{ with .File }}{{ .TranslationBaseName }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) ContentBaseName() (o0 string) {
|
|
z.log.Warnln(".File.ContentBaseName on zero object. Wrap it in if or with: {{ with .File }}{{ .ContentBaseName }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) UniqueID() (o0 string) {
|
|
z.log.Warnln(".File.UniqueID on zero object. Wrap it in if or with: {{ with .File }}{{ .UniqueID }}{{ end }}")
|
|
return
|
|
}
|
|
func (z zeroFile) FileInfo() (o0 hugofs.FileMetaInfo) {
|
|
z.log.Warnln(".File.FileInfo on zero object. Wrap it in if or with: {{ with .File }}{{ .FileInfo }}{{ end }}")
|
|
return
|
|
}
|