Constellation.Foundation.SitemapXml 9.0.3.21744

There is a newer version of this package available.
See the version list below for details.
dotnet add package Constellation.Foundation.SitemapXml --version 9.0.3.21744
NuGet\Install-Package Constellation.Foundation.SitemapXml -Version 9.0.3.21744
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Constellation.Foundation.SitemapXml" Version="9.0.3.21744" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Constellation.Foundation.SitemapXml --version 9.0.3.21744
#r "nuget: Constellation.Foundation.SitemapXml, 9.0.3.21744"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Constellation.Foundation.SitemapXml as a Cake Addin
#addin nuget:?package=Constellation.Foundation.SitemapXml&version=9.0.3.21744

// Install Constellation.Foundation.SitemapXml as a Cake Tool
#tool nuget:?package=Constellation.Foundation.SitemapXml&version=9.0.3.21744

Constellation is a collection of utilities for .NET CMS implementers.

The Foundation.SitemapXml namespace contains Http Handlers which intercept the request before it hits Sitecore.


Robots.TXT Handler:

Returns a basic document that either allows or disallows all agents. The document also includes basic disallows for /sitecore urls to prevent the login page
from being indexed. Additional global disallows or site specific disallows can be added through the supplied configuration file. See instructions
within the config file.


Sitemap.XML Handler:

Returns an on-the-fly document (there are cache options available) for each configured Site in your installation. The document is created by having one or more
"crawlers" inspect the Content Tree generating the necessary Item facts and URLs required to produce the Sitemap. You can specify a set of default crawlers
for your installation, as well as override the crawler list on a site-by-site basis. There are also provisions for excluding sites from returning a sitemap.xml
document if it is not appropriate.


Default Functionality:

The system will function on a basic level "out of the box". There is a default Content Tree crawler that will start at the root of the current Site and include Items
that have presentation details. The crawlers operate in the extranet\anonymous role and thus security can be used to "hide" Items or branches from the crawler.

Crawler output has extensive support for "validating" whether an Item should be included in the sitemap or not. Facts available through the API include:

- Does the Item have presentation?
- Does the Item have explicit rules to prevent Search Indexing?
- Does the Item represent a "Page"?

It is up to the developer to supply meaningful decisions behind these facts, but answering "no" to any of them will result in the Item not being included.

This library outputs substantial amounts of troubleshooting warnings to the Sitecore log file. If you're having trouble, search for
Constellation.Foundation.SitemapXml in your log file.


Installation Warning:

Your web.config must have a system.webServer/handlers section, and that section must have at least one handler in it (an "add" element) in order
to install this package successfully. If you're using the default Sitecore web.config this won't be an issue. The handlers provided in this package must be
inserted at the top of the stack of handlers.

Configured for use with Sitecore 9.0.X
Requires Sitecore 9.0 NuGet packages, available here: https://sitecore.myget.org/F/sc-packages/api/v3/index.json

Product Compatible and additional computed target framework versions.
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Constellation.Foundation.SitemapXml:

Package Downloads
Constellation.Feature.PageTagging.SitemapXml

Requires Sitecore 10.3 Requires .NET Framework 4.8 Constellation is a collection of utilities for .NET CMS implementers. The Feature.PageTagging.SitemapXml namespace is an extension of the base Feature that adds explicit support for Foundation.SitemapXml, based upon the Page Search Engine Directive fields available in the PageTagging module. This feature is shipped separately in case the user is not using Constellation.Foundation.SitemapXml or has a different implementation that is not compatible with the PageTagging feature.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
10.3.0.24635 1,766 6/16/2023
10.2.4.25608 2,306 2/6/2023
10.2.3.14170 2,365 6/23/2022
10.2.2.30898 1,577 5/3/2022
10.2.1.25910 1,571 3/31/2022
10.2.0.19277 2,245 11/15/2021
10.1.4.31353 1,709 6/22/2022
10.1.2.37211 1,637 5/4/2022
10.1.1.26058 1,830 3/31/2022
10.1.0.26945 2,062 3/4/2021
10.0.4.24634 2,704 11/20/2020
10.0.3.28510 1,918 8/7/2020
10.0.2.25844 1,732 8/7/2020
10.0.1.24149 1,911 8/5/2020
10.0.0.22989 2,155 8/4/2020
9.3.0.17031 2,032 7/27/2020
9.1.10.25057 2,082 5/8/2020
9.1.9.25014 2,139 2/18/2020
9.1.9.23657 1,988 2/18/2020
9.1.8.24584 2,166 1/13/2020
9.1.7.25080 1,781 1/9/2020
9.1.6.27627 2,334 8/26/2019
9.1.5.26323 2,664 5/30/2019
9.1.4.18803 1,998 5/29/2019
9.1.3.17182 1,859 4/29/2019
9.1.2.26092 2,030 4/11/2019
9.1.1.27595 2,098 3/6/2019
9.1.0.19493 2,549 12/7/2018
9.1.0.19422 1,987 12/7/2018
9.0.6.28243 2,464 10/25/2018
9.0.5.28533 2,201 10/21/2018
9.0.4.17250 3,611 8/14/2018
9.0.3.21744 2,283 7/18/2018
9.0.2.23128 2,271 7/17/2018
9.0.1.17240 2,198 7/17/2018
9.0.0.28519 2,335 6/24/2018

Added a scheme and targethostname check to CrawlerManager to prevent hard-fails in crawlers when sites were not configured correctly.