Site Package: Aliases - akumina/AkuminaDev GitHub Wiki
SiteDeployer 4.8.2004.3001 and above.
There is currently no site creator step.
The site deployer step that uses this is aliases
options aliases
See: https://github.com/akumina/AkuminaDev/wiki/Site-Package-Overview
The step deploys term sets based on the path envdir/sitedefinitions/MyClient/Aliases/update.xml
The XML in this file will determine what aliases are generated within the site collection term store.
In the example shown below, we generate 2 aliases:
- CompanyNews - points to the pages/newsdetail.aspx page, updates the FriendlyUrl Column in the list CompanyNews_AK
- Events - points to the pages/eventdetail.aspx page, updates the FriendlyUrl Column in the list Calendar_AK
The XML below goes in the path sitedefinitions\MyClient\Aliases\update.xml
<?xml version="1.0" encoding="utf-8" ?>
<aliases>
<alias listname="CompanyNews_AK" alias="CompanyNews" urlaftersite="pages/newsdetail.aspx"/>
<alias listname="Calendar_AK" alias="Events" urlaftersite="pages/eventdetail.aspx"/>
</aliases>