From: Bjørn Erik Pedersen Date: Thu, 25 Jan 2018 08:58:55 +0000 (+0100) Subject: Remove and update deprecation status X-Git-Tag: v0.35~35 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d418c2c2eacdc1dc6fffe839e0a90600867878ca;p=brevno-suite%2Fhugo Remove and update deprecation status --- diff --git a/commands/hugo.go b/commands/hugo.go index dc90d48e..758106fa 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -242,9 +242,6 @@ func initHugoBuildCommonFlags(cmd *cobra.Command) { cmd.Flags().BoolP("buildDrafts", "D", false, "include content marked as draft") cmd.Flags().BoolP("buildFuture", "F", false, "include content with publishdate in the future") cmd.Flags().BoolP("buildExpired", "E", false, "include expired content") - cmd.Flags().Bool("disable404", false, "do not render 404 page") - cmd.Flags().Bool("disableRSS", false, "do not build RSS files") - cmd.Flags().Bool("disableSitemap", false, "do not build Sitemap file") cmd.Flags().StringVarP(&source, "source", "s", "", "filesystem path to read files relative from") cmd.Flags().StringVarP(&contentDir, "contentDir", "c", "", "filesystem path to content directory") cmd.Flags().StringVarP(&layoutDir, "layoutDir", "l", "", "filesystem path to layout directory") @@ -491,9 +488,6 @@ func (c *commandeer) initializeFlags(cmd *cobra.Command) { "buildExpired", "uglyURLs", "canonifyURLs", - "disable404", - "disableRSS", - "disableSitemap", "enableRobotsTXT", "enableGitInfo", "pluralizeListTitles", @@ -506,19 +500,6 @@ func (c *commandeer) initializeFlags(cmd *cobra.Command) { "templateMetricsHints", } - // Remove these in Hugo 0.33. - if cmd.Flags().Changed("disable404") { - helpers.Deprecated("command line", "--disable404", "Use --disableKinds=404", true) - } - - if cmd.Flags().Changed("disableRSS") { - helpers.Deprecated("command line", "--disableRSS", "Use --disableKinds=RSS", true) - } - - if cmd.Flags().Changed("disableSitemap") { - helpers.Deprecated("command line", "--disableSitemap", "Use --disableKinds=sitemap", true) - } - for _, key := range persFlagKeys { c.setValueFromFlag(cmd.PersistentFlags(), key) } diff --git a/hugolib/config.go b/hugolib/config.go index f1b6ebe5..fe3a64f2 100644 --- a/hugolib/config.go +++ b/hugolib/config.go @@ -64,23 +64,6 @@ func LoadConfig(fs afero.Fs, relativeSourcePath, configFilename string) (*viper. v.RegisterAlias("indexes", "taxonomies") - // Remove these in Hugo 0.33. - if v.IsSet("disable404") { - helpers.Deprecated("site config", "disable404", "Use disableKinds=[\"404\"]", true) - } - - if v.IsSet("disableRSS") { - helpers.Deprecated("site config", "disableRSS", "Use disableKinds=[\"RSS\"]", true) - } - - if v.IsSet("disableSitemap") { - helpers.Deprecated("site config", "disableSitemap", "Use disableKinds= [\"sitemap\"]", true) - } - - if v.IsSet("disableRobotsTXT") { - helpers.Deprecated("site config", "disableRobotsTXT", "Use disableKinds= [\"robotsTXT\"]", true) - } - if err := loadDefaultSettingsFor(v); err != nil { return v, err } @@ -183,10 +166,6 @@ func loadDefaultSettingsFor(v *viper.Viper) error { v.SetDefault("cleanDestinationDir", false) v.SetDefault("watch", false) v.SetDefault("metaDataFormat", "toml") - v.SetDefault("disable404", false) - v.SetDefault("disableRSS", false) - v.SetDefault("disableSitemap", false) - v.SetDefault("disableRobotsTXT", false) v.SetDefault("contentDir", "content") v.SetDefault("layoutDir", "layouts") v.SetDefault("staticDir", "static") diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go index e917c320..f4042eb3 100644 --- a/hugolib/hugo_sites.go +++ b/hugolib/hugo_sites.go @@ -331,10 +331,6 @@ func (h *HugoSites) renderCrossSitesArtifacts() error { return nil } - if h.Cfg.GetBool("disableSitemap") { - return nil - } - sitemapEnabled := false for _, s := range h.Sites { if s.isEnabled(kindSitemap) { diff --git a/hugolib/hugo_sites_build_test.go b/hugolib/hugo_sites_build_test.go index 4dc4423c..cc3a940d 100644 --- a/hugolib/hugo_sites_build_test.go +++ b/hugolib/hugo_sites_build_test.go @@ -855,8 +855,6 @@ var tocPageWithShortcodesInHeadingsExpected = `