2019-01-02 06:33:26 -05:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
package page
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2021-03-30 01:55:24 -04:00
|
|
|
"path"
|
2019-01-02 06:33:26 -05:00
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2019-09-10 05:26:34 -04:00
|
|
|
"github.com/gohugoio/hugo/hugofs/files"
|
2020-09-07 09:07:10 -04:00
|
|
|
"github.com/gohugoio/hugo/identity"
|
|
|
|
"github.com/gohugoio/hugo/tpl"
|
2019-09-10 05:26:34 -04:00
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
"github.com/gohugoio/hugo/modules"
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
"github.com/bep/gitmap"
|
|
|
|
"github.com/gohugoio/hugo/helpers"
|
|
|
|
"github.com/gohugoio/hugo/resources/resource"
|
2021-06-09 04:58:18 -04:00
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/navigation"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/common/hugo"
|
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
|
|
|
"github.com/gohugoio/hugo/config"
|
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
|
|
|
"github.com/gohugoio/hugo/langs"
|
|
|
|
"github.com/gohugoio/hugo/media"
|
|
|
|
"github.com/gohugoio/hugo/related"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/source"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ resource.LengthProvider = (*testPage)(nil)
|
|
|
|
_ Page = (*testPage)(nil)
|
|
|
|
)
|
|
|
|
|
|
|
|
var relatedDocsHandler = NewRelatedDocsHandler(related.DefaultConfig)
|
|
|
|
|
|
|
|
func newTestPage() *testPage {
|
|
|
|
return newTestPageWithFile("/a/b/c.md")
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTestPageWithFile(filename string) *testPage {
|
|
|
|
filename = filepath.FromSlash(filename)
|
|
|
|
file := source.NewTestFile(filename)
|
|
|
|
return &testPage{
|
|
|
|
params: make(map[string]interface{}),
|
|
|
|
data: make(map[string]interface{}),
|
|
|
|
file: file,
|
2021-03-30 01:55:24 -04:00
|
|
|
currentSection: &testPage{
|
|
|
|
sectionEntries: []string{"a", "b", "c"},
|
|
|
|
},
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTestPathSpec() *helpers.PathSpec {
|
2021-06-09 04:58:18 -04:00
|
|
|
return newTestPathSpecFor(config.New())
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func newTestPathSpecFor(cfg config.Provider) *helpers.PathSpec {
|
|
|
|
config.SetBaseTestDefaults(cfg)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
langs.LoadLanguageSettings(cfg, nil)
|
|
|
|
mod, err := modules.CreateProjectModule(cfg)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
cfg.Set("allModules", modules.Modules{mod})
|
2019-01-02 06:33:26 -05:00
|
|
|
fs := hugofs.NewMem(cfg)
|
2019-07-24 18:12:40 -04:00
|
|
|
s, err := helpers.NewPathSpec(fs, cfg, nil)
|
2019-01-02 06:33:26 -05:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
type testPage struct {
|
2020-10-05 14:01:52 -04:00
|
|
|
kind string
|
2019-01-02 06:33:26 -05:00
|
|
|
description string
|
|
|
|
title string
|
|
|
|
linkTitle string
|
2020-10-05 14:01:52 -04:00
|
|
|
lang string
|
|
|
|
section string
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
content string
|
|
|
|
|
|
|
|
fuzzyWordCount int
|
|
|
|
|
|
|
|
path string
|
|
|
|
|
|
|
|
slug string
|
|
|
|
|
|
|
|
// Dates
|
|
|
|
date time.Time
|
|
|
|
lastMod time.Time
|
|
|
|
expiryDate time.Time
|
|
|
|
pubDate time.Time
|
|
|
|
|
|
|
|
weight int
|
|
|
|
|
|
|
|
params map[string]interface{}
|
|
|
|
data map[string]interface{}
|
|
|
|
|
|
|
|
file source.File
|
2021-03-30 01:55:24 -04:00
|
|
|
|
|
|
|
currentSection *testPage
|
|
|
|
sectionEntries []string
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Aliases() []string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) AllTranslations() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) AlternativeOutputFormats() OutputFormats {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Author() Author {
|
|
|
|
return Author{}
|
|
|
|
}
|
2020-12-02 07:23:25 -05:00
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) Authors() AuthorList {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) BaseFileName() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-09-10 05:26:34 -04:00
|
|
|
func (p *testPage) BundleType() files.ContentClass {
|
2019-01-02 06:33:26 -05:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Content() (interface{}, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) ContentBaseName() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) CurrentSection() Page {
|
2021-03-30 01:55:24 -04:00
|
|
|
return p.currentSection
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Data() interface{} {
|
|
|
|
return p.data
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Sitemap() config.Sitemap {
|
|
|
|
return config.Sitemap{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Layout() string {
|
|
|
|
return ""
|
|
|
|
}
|
2020-12-02 07:23:25 -05:00
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) Date() time.Time {
|
|
|
|
return p.date
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Description() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Dir() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Draft() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Eq(other interface{}) bool {
|
|
|
|
return p == other
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) ExpiryDate() time.Time {
|
|
|
|
return p.expiryDate
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Ext() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Extension() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) File() source.File {
|
|
|
|
return p.file
|
|
|
|
}
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
func (p *testPage) FileInfo() hugofs.FileMetaInfo {
|
2019-01-02 06:33:26 -05:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Filename() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) FirstSection() Page {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) FuzzyWordCount() int {
|
|
|
|
return p.fuzzyWordCount
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) GetPage(ref string) (Page, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2020-09-07 09:07:10 -04:00
|
|
|
func (p *testPage) GetPageWithTemplateInfo(info tpl.Info, ref string) (Page, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) GetParam(key string) interface{} {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2020-02-19 03:16:27 -05:00
|
|
|
func (p *testPage) GetTerms(taxonomy string) Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) GetRelatedDocsHandler() *RelatedDocsHandler {
|
|
|
|
return relatedDocsHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) GitInfo() *gitmap.GitInfo {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) HasMenuCurrent(menuID string, me *navigation.MenuEntry) bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) HasShortcode(name string) bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Hugo() hugo.Info {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) InSection(other interface{}) (bool, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsAncestor(other interface{}) (bool, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsDescendant(other interface{}) (bool, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsDraft() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsHome() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsMenuCurrent(menuID string, inme *navigation.MenuEntry) bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsNode() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsPage() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsSection() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) IsTranslated() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Keywords() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Kind() string {
|
2020-10-05 14:01:52 -04:00
|
|
|
return p.kind
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Lang() string {
|
2020-10-05 14:01:52 -04:00
|
|
|
return p.lang
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Language() *langs.Language {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) LanguagePrefix() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Lastmod() time.Time {
|
|
|
|
return p.lastMod
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Len() int {
|
|
|
|
return len(p.content)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) LinkTitle() string {
|
|
|
|
if p.linkTitle == "" {
|
2019-10-11 07:55:46 -04:00
|
|
|
if p.title == "" {
|
|
|
|
return p.path
|
|
|
|
}
|
2019-01-02 06:33:26 -05:00
|
|
|
return p.title
|
|
|
|
}
|
|
|
|
return p.linkTitle
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) LogicalName() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) MediaType() media.Type {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Menus() navigation.PageMenus {
|
|
|
|
return navigation.PageMenus{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Name() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Next() Page {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) NextInSection() Page {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) NextPage() Page {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) OutputFormats() OutputFormats {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Pages() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-08-03 11:27:40 -04:00
|
|
|
func (p *testPage) RegularPages() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2020-03-16 06:37:57 -04:00
|
|
|
func (p *testPage) RegularPagesRecursive() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) Paginate(seq interface{}, options ...interface{}) (*Pager, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Paginator(options ...interface{}) (*Pager, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Param(key interface{}) (interface{}, error) {
|
|
|
|
return resource.Param(p, nil, key)
|
|
|
|
}
|
|
|
|
|
2019-11-21 15:59:38 -05:00
|
|
|
func (p *testPage) Params() maps.Params {
|
2019-01-02 06:33:26 -05:00
|
|
|
return p.params
|
|
|
|
}
|
|
|
|
|
2019-03-25 02:54:10 -04:00
|
|
|
func (p *testPage) Page() Page {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func (p *testPage) Parent() Page {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Path() string {
|
|
|
|
return p.path
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Permalink() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Plain() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) PlainWords() []string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Prev() Page {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) PrevInSection() Page {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) PrevPage() Page {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) PublishDate() time.Time {
|
|
|
|
return p.pubDate
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RSSLink() template.URL {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RawContent() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) ReadingTime() int {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Ref(argsm map[string]interface{}) (string, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RefFrom(argsm map[string]interface{}, source interface{}) (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RelPermalink() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RelRef(argsm map[string]interface{}) (string, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RelRefFrom(argsm map[string]interface{}, source interface{}) (string, error) {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2019-11-27 07:42:36 -05:00
|
|
|
func (p *testPage) Render(layout ...string) (template.HTML, error) {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RenderString(args ...interface{}) (template.HTML, error) {
|
2019-01-02 06:33:26 -05:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) ResourceType() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Resources() resource.Resources {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Scratch() *maps.Scratch {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) RelatedKeywords(cfg related.IndexConfig) ([]related.Keyword, error) {
|
|
|
|
v, err := p.Param(cfg.Name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return cfg.ToKeywords(v)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Section() string {
|
|
|
|
return p.section
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Sections() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) SectionsEntries() []string {
|
2021-03-30 01:55:24 -04:00
|
|
|
return p.sectionEntries
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) SectionsPath() string {
|
2021-03-30 01:55:24 -04:00
|
|
|
return path.Join(p.sectionEntries...)
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Site() Site {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Sites() Sites {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Slug() string {
|
|
|
|
return p.slug
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) String() string {
|
|
|
|
return p.path
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Summary() template.HTML {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) TableOfContents() template.HTML {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Title() string {
|
|
|
|
return p.title
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) TranslationBaseName() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) TranslationKey() string {
|
|
|
|
return p.path
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Translations() Pages {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Truncated() bool {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Type() string {
|
|
|
|
return p.section
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) URL() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) UniqueID() string {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) Weight() int {
|
|
|
|
return p.weight
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *testPage) WordCount() int {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2020-09-07 09:07:10 -04:00
|
|
|
func (p *testPage) GetIdentity() identity.Identity {
|
|
|
|
panic("not implemented")
|
|
|
|
}
|
|
|
|
|
2019-01-02 06:33:26 -05:00
|
|
|
func createTestPages(num int) Pages {
|
|
|
|
pages := make(Pages, num)
|
|
|
|
|
|
|
|
for i := 0; i < num; i++ {
|
|
|
|
m := &testPage{
|
|
|
|
path: fmt.Sprintf("/x/y/z/p%d.md", i),
|
|
|
|
weight: 5,
|
|
|
|
fuzzyWordCount: i + 2, // magic
|
|
|
|
}
|
|
|
|
|
|
|
|
if i%2 == 0 {
|
|
|
|
m.weight = 10
|
|
|
|
}
|
|
|
|
pages[i] = m
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return pages
|
|
|
|
}
|