Skip to content

Commit

Permalink
Some spec URL updates, fix for Item Sorting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard.Cabral@verndale.com committed Jun 21, 2019
1 parent 6106a70 commit a0271f8
Show file tree
Hide file tree
Showing 21 changed files with 41 additions and 41 deletions.
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/item-sorting/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library for automatically classifying Items based on name or a named date field.</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down Expand Up @@ -42,7 +42,7 @@ Usage Details
3. Create a new Item Saved rule that specifies when an Item is of Template "Press Release" it should be moved to a Date Folder. Set the appropriate parameters.
4. Enjoy!
</description>
<releaseNotes>Updated to support Sitecore 9.1.1</releaseNotes>
<releaseNotes>Covered an unusual case where the name of the Item to be sorted started with the year that it was to be sorted by.</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Sitecore, Sitecore Helix, Sitecore Habitat, Sitecore SXA, Sitecore Feature</tags>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions Constellation.Feature.ItemSorting/Properties/AssemblyInfo.cs
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("9.1.2.*")]
[assembly: AssemblyFileVersion("9.1.2.0")]
[assembly: AssemblyVersion("9.1.3.*")]
[assembly: AssemblyFileVersion("9.1.3.0")]
Expand Up @@ -87,7 +87,7 @@ public override void Apply(T ruleContext)

var folderLevel = this.GetOrganizingRoot(item);
var oldFilePath = item.Paths.FullPath;
var datePath = "/" + theYear;
var datePath = "/" + theYear + "/";
if (!oldFilePath.Contains(datePath))
{
this.MoveItem(theYear, item, folderLevel);
Expand All @@ -96,7 +96,7 @@ public override void Apply(T ruleContext)

if (this.FolderDepth != DateSortOptions.OnlyYear)
{
datePath = datePath + "/" + theMonth;
datePath = datePath + theMonth + "/";
if (!oldFilePath.Contains(datePath))
{
folderLevel = this.AdvanceFolderLevel(folderLevel, item);
Expand All @@ -106,7 +106,7 @@ public override void Apply(T ruleContext)

if (this.FolderDepth == DateSortOptions.YearAndMonthAndDay)
{
datePath = datePath + "/" + theDay;
datePath = datePath + theDay + "/";
if (!oldFilePath.Contains(datePath))
{
folderLevel = this.AdvanceFolderLevel(folderLevel, item);
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/navigation/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library for building out static navigation that doesn't necessarily reflect the shape or names of Items in the content tree.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/page-analytics-scripts/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library that provides bare-essentials support for page metadata.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/sitemap-xml/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library that adds Sitemap XML generation to the Page Tagging library.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/page-tagging/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library that provides bare-essentials support for page metadata.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/redirects/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library that adds author-controlled Http Redirect capabilities.</summary>
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/feature/url-friendly-page-names/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library for transforming human-entered Item Names into SEO-friendly URL slugs.</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/cache/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-compatible library to enhance access to Sitecore Caching APIs.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/contexts/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library to support context-aware pipeline, event and rule handlers.</summary>
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral, Chris Lees, Ed Lane</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/data/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library extending Item with utilities to check ancestry, template derivation, and to retrieve Item children of a specific template.</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation-datasources/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library for classifying content based on whether the content is a page, a page fragment, and/or reusable.</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/globalization/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library with shims for multi-site/multi-language support in Sitecore</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/linking/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library providing Site-specific LinkProviders and LinkProvider configurations.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/modelmapping/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library to enhance MVC development in Sitecore.</summary>
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/mvc/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library to enhance MVC development in Sitecore.</summary>
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/mvc/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library to enhance MVC development in Sitecore.</summary>
<description>
VERSION 9.1.1 Contains Breaking Changes around ConventionController and ViewResolver.
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral.</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/package-verification/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library to enhance development in Sitecore.</summary>
<description>
VERSION 9.1 is compiled for Sitecore 9.1 use and will not work on earlier versions.
Expand Down
Expand Up @@ -6,11 +6,11 @@
<title>$title$</title>
<authors>Richard J. Cabral</authors>
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/page-not-found-module/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix library for managing site-specific 404 pages.</summary>
<description>
Compatible with Sitecore 9.1
Expand Down
Expand Up @@ -8,7 +8,7 @@
<owners>Richard J. Cabral</owners>
<license type="expression">MIT</license>
<projectUrl>https://constellation4sitecore.com/foundation/sitemap-xml/</projectUrl>
<repository type="git" url="https://github.com/sitecorerick/constellation-sitecore9.git"/>
<repository type="git" url="https://github.com/constellation4sitecore/constellation-sitecore9.git"/>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://constellation4sitecore.com/wp-content/uploads/2019/04/Constellation.png</iconUrl>
<summary>Sitecore Helix-style library that handles requests for /ROBOTS.TXT and /SITEMAP.XML dynamically based on Sitecore content.</summary>
Expand Down

0 comments on commit a0271f8

Please sign in to comment.