Page History: Navigation Links File
Compare Page Revisions
Page Revision: 2013/12/01 18:49
Navigation Links File
The Navigation Links file contains the navigation map for the site.
XML Schema
This section contains a number of examples of links in the navigation links file.
<?xml version="1.0" encoding="utf-8" ?>
<Links xmlns="http://schemas.TrackerRealm.com/AspNet/LinksFile">
<Link>
<Text>Jazz Notes</Text>
<Url>~/</Url>
<ToolTip>WiebeWorks Home Page</ToolTip>
<MenuName></MenuName>
<Sitemap Include="True">
<ChangeFreq>monthly</ChangeFreq>
<Priority>0.8</Priority>
</Sitemap>
</Link>
<Link>
<Text>Jazz Notes</Text>
<Url>~/help/jazznotes.aspx</Url>
<ToolTip>help for Jazz Notes Model</ToolTip>
<MenuName>Jazz Models help</MenuName>
<Tags>Data,Notes</Tags>
</Link>
<Link>
<Text>Powered by Jetfire</Text>
<Url>http://www.jetfire.ca</Url>
<ToolTip>Jetfire - a domain specific language designed by TrackerRealm</ToolTip>
<MenuName>Footer</MenuName>
<ImageUrl>~/images/poweredbyjetfire.png</ImageUrl>
<Target>_blank</Target>
</Link>
<Link>
<Text>Reports</Text>
<Url>~/parks/reports.aspx</Url>
<ToolTip>Reports page for Parks</ToolTip>
<MenuName>Parks</MenuName>
<MustBeLoggedIn LoginType="Jetfire">
<Roles>
<Role>Foreman</Role>
</Roles>
</MustBeLoggedIn>
</Link>
</Links>
This section contains the schema for the navigation file.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Links xmlns="http://schemas.microsoft.com/AspNet/LinkList">
<Link>
<Text Comment="The text displayed for the link">WiebeWorks</Text>
<Url Comment="The navigation link">http://www.WiebeWorks.com</Url>
<ToolTip Comment="The description is displayed as a mouse over">TrackerRealm Corporation is a software company dedicated to producing business web products and services.</ToolTip>
<MenuName Comment="The name of the menu that this link belongs to"></MenuName>
<Target Comment="The window that the page is opened in. Default = '' means display in the same tab. "_blank" means display page in new tab."></Target>
<Language Comment="The language of the web part. Only displayed if the user language matches. Default = 'All languages'."></Language>
<Tags Comment="A comma-delimited list of tag names"></Tags>
<ImageUrl Comment="Used for Image option - the url to display">~/Images/JetfireLogo.jpg</ImageUrl>
<MouseOverImageUrl Comment="Used for Image option - the url to display when user mouses over the control">~/Images/JetfireLogo.jpg</MouseOverImageUrl>
<SelectedImageUrl Comment="Used for Image option - the url to display when selected">~/Images/JetfireLogo.jpg</SelectedImageUrl>
<Devices Comment="What device this is targeted at. e.g. if Devices=MobileDevices, the link will only be displayed to mobile users" Default = "AllDevices" means display on all devices.></Devices>
<MustBeLoggedIn Comment="The user must be logged in to see this link. Login may include: COR, Jetfire, or combinations. Default = '' means logged in not required." LoginType="Both">
<Roles Comment="List of Roles that are allowed to see the link">
<Role Comment="This role is allowed to see the link">WebMaster</Role>
</Roles>
</MustBeLoggedIn>
<Sitemap Comment="Used by the Google Site Map Web Part. This allows the webmaster to exclude specific links from the sitemap." include="true">
<ChangeFreq>monthly</ChangeFreq>
<Priority>0.8</Priority>
</Sitemap>
</Link>
</Links>