template variables broken out
This commit is contained in:
parent
8b7946e994
commit
f70f02df28
6 changed files with 769 additions and 202 deletions
|
|
@ -86,6 +86,26 @@ our $HELP = {
|
|||
body => 'http proxy template body',
|
||||
fields => [
|
||||
],
|
||||
variables => [
|
||||
{
|
||||
'name' => 'header'
|
||||
},
|
||||
{
|
||||
'name' => 'content'
|
||||
},
|
||||
{
|
||||
'name' => 'search.for'
|
||||
},
|
||||
{
|
||||
'name' => 'stop.at'
|
||||
},
|
||||
{
|
||||
'name' => 'content.leading'
|
||||
},
|
||||
{
|
||||
'name' => 'content.trailing'
|
||||
}
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'http proxy add/edit',
|
||||
|
|
|
|||
|
|
@ -58,6 +58,46 @@ our $HELP = {
|
|||
'in out board template' => {
|
||||
title => '20',
|
||||
body => '21',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'canViewReport'
|
||||
},
|
||||
{
|
||||
'name' => 'viewReportURL'
|
||||
},
|
||||
{
|
||||
'name' => 'selectDelegatesURL'
|
||||
},
|
||||
{
|
||||
'name' => 'displayForm'
|
||||
},
|
||||
{
|
||||
'name' => 'form'
|
||||
},
|
||||
{
|
||||
'name' => 'rows_loop',
|
||||
'variables' => [
|
||||
{
|
||||
'name' => 'deptHasChanged'
|
||||
},
|
||||
{
|
||||
'name' => 'username'
|
||||
},
|
||||
{
|
||||
'name' => 'status'
|
||||
},
|
||||
{
|
||||
'name' => 'dateStamp'
|
||||
},
|
||||
{
|
||||
'name' => 'message'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
'name' => 'paginateBar'
|
||||
}
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'in out board add/edit',
|
||||
|
|
@ -76,6 +116,60 @@ our $HELP = {
|
|||
'in out board report template' => {
|
||||
title => '22',
|
||||
body => '23',
|
||||
variables => [
|
||||
{
|
||||
'name' => 'showReport'
|
||||
},
|
||||
{
|
||||
'name' => 'form',
|
||||
'description' => 'report.form'
|
||||
},
|
||||
{
|
||||
'name' => 'username.label'
|
||||
},
|
||||
{
|
||||
'name' => 'status.label'
|
||||
},
|
||||
{
|
||||
'name' => 'date.label'
|
||||
},
|
||||
{
|
||||
'name' => 'message.label'
|
||||
},
|
||||
{
|
||||
'name' => 'updatedBy.label'
|
||||
},
|
||||
{
|
||||
'name' => 'rows_loop',
|
||||
'variables' => [
|
||||
{
|
||||
'name' => 'deptHasChanged',
|
||||
},
|
||||
{
|
||||
'name' => 'username',
|
||||
},
|
||||
{
|
||||
'name' => 'department'
|
||||
},
|
||||
{
|
||||
'name' => 'status',
|
||||
},
|
||||
{
|
||||
'name' => 'dateStamp',
|
||||
},
|
||||
{
|
||||
'name' => 'message',
|
||||
},
|
||||
{
|
||||
'name' => 'createdBy'
|
||||
}
|
||||
],
|
||||
'description' => 'report rows_loop'
|
||||
},
|
||||
{
|
||||
'name' => 'paginateBar',
|
||||
}
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'in out board add/edit',
|
||||
|
|
|
|||
|
|
@ -71,11 +71,204 @@ our $HELP = {
|
|||
}
|
||||
]
|
||||
},
|
||||
|
||||
'navigation template' => {
|
||||
title => '1096',
|
||||
body => '1097',
|
||||
fields => [
|
||||
],
|
||||
variables => [
|
||||
{
|
||||
'name' => 'currentPage.menuTitle'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.assetId'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.parentId'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.ownerUserId'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.synopsis'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.newWindow'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.menuTitle'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.title'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.isHome'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.url'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.rank'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.hasChild'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.hasSibling'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.hasViewableSiblings'
|
||||
},
|
||||
{
|
||||
'name' => 'currentPage.hasViewableChildren'
|
||||
},
|
||||
{
|
||||
'name' => 'page_loop',
|
||||
'variables' => [
|
||||
{
|
||||
'name' => 'page.assetId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parentId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.ownerUserId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.synopsis'
|
||||
},
|
||||
{
|
||||
'name' => 'page.newWindow'
|
||||
},
|
||||
{
|
||||
'name' => 'page.menuTitle'
|
||||
},
|
||||
{
|
||||
'name' => 'page.title'
|
||||
},
|
||||
{
|
||||
'name' => 'page.rank'
|
||||
},
|
||||
{
|
||||
'name' => 'page.absDepth'
|
||||
},
|
||||
{
|
||||
'name' => 'page.relDepth'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isSystem'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isHidden'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isContainer'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isUtility'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isViewable'
|
||||
},
|
||||
{
|
||||
'name' => 'page.url'
|
||||
},
|
||||
{
|
||||
'name' => 'page.indent'
|
||||
},
|
||||
{
|
||||
'name' => 'page.indent_loop',
|
||||
'variables' => [
|
||||
{
|
||||
'name' => 'indent'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
'name' => 'page.isBranchRoot'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isTopOfBranch'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isChild'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isParent'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isCurrent'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isDescendent'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isAncestor'
|
||||
},
|
||||
{
|
||||
'name' => 'page.inBranchRoot'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isSibling'
|
||||
},
|
||||
{
|
||||
'name' => 'page.inBranch'
|
||||
},
|
||||
{
|
||||
'name' => 'page.hasChild'
|
||||
},
|
||||
{
|
||||
'name' => 'page.hasViewableChildren'
|
||||
},
|
||||
{
|
||||
'name' => 'page.depthIsN'
|
||||
},
|
||||
{
|
||||
'name' => 'page.relativeDepthIsN'
|
||||
},
|
||||
{
|
||||
'name' => 'page.depthDiff'
|
||||
},
|
||||
{
|
||||
'name' => 'page.depthDiffIsN'
|
||||
},
|
||||
{
|
||||
'name' => 'page.depthDiff_loop'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isRankedFirst'
|
||||
},
|
||||
{
|
||||
'name' => 'page.isRankedLast'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.menuTitle'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.title'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.url'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.assetId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.parentId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.ownerUserId'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.synopsis'
|
||||
},
|
||||
{
|
||||
'name' => 'page.parent.newWindow'
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
related => [
|
||||
{
|
||||
tag => 'navigation add/edit',
|
||||
|
|
@ -91,6 +284,7 @@ our $HELP = {
|
|||
}
|
||||
]
|
||||
},
|
||||
|
||||
'navigation manage' => {
|
||||
title => '1094',
|
||||
body => '1095',
|
||||
|
|
|
|||
|
|
@ -30,33 +30,41 @@ our $I18N = {
|
|||
lastUpdated => 1109714266,
|
||||
},
|
||||
|
||||
'header' => {
|
||||
message => q|The header from the proxied URL.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
'content' => {
|
||||
message => q|The content from the proxied URL. If the <b>Search for</b> or <b>Stop at</b> properties are used, then the content will not contain either of those.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
'search.for' => {
|
||||
message => q|The string used to start the content search.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
'stop.at' => {
|
||||
message => q|The string used to stop the content search.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
'content.leading' => {
|
||||
message => q|Any text before the <b>Search For</b> string.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
'content.trailing' => {
|
||||
message => q|Any text after the <b>Stop At</b> string.|,
|
||||
lastUpdated => 1149393165,
|
||||
},
|
||||
|
||||
|
||||
'http proxy template body' => {
|
||||
message => q|<p>The following variables are available in templates for HTTP Proxies:</p>
|
||||
<p><b>header</b><br />
|
||||
The header from the proxied URL.
|
||||
</p>
|
||||
|
||||
<p><b>content</b><br />
|
||||
The content from the proxied URL. If the <b>Search for</b> or <b>Stop at</b> properties are used, then the content will not contain either of those.
|
||||
</p>
|
||||
|
||||
<p><b>search.for</b><br />
|
||||
The string used to start the content search.
|
||||
</p>
|
||||
|
||||
<p><b>stop.at</b><br />
|
||||
The string used to stop the content search.
|
||||
</p>
|
||||
|
||||
<p><b>content.leading</b><br />
|
||||
Any text before the <b>Search For</b> string.
|
||||
</p>
|
||||
|
||||
<p><b>content.trailing</b><br />
|
||||
Any text after the <b>Stop At</b> string.
|
||||
</p>
|
||||
|,
|
||||
lastUpdated => 1146775775,
|
||||
lastUpdated => 1149393194,
|
||||
},
|
||||
|
||||
'1 description' => {
|
||||
|
|
|
|||
|
|
@ -32,77 +32,60 @@ our $I18N = {
|
|||
lastUpdated =>1139260288
|
||||
},
|
||||
|
||||
'showReport' => {
|
||||
message => q|A boolean indicating whether or not the <i>rows_loop</i> variable will be set.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'report.form' => {
|
||||
message => q|A variable that contains an HTML form for limiting the scope, by date or department, of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'username.label' => {
|
||||
message => q|Internationalized label for the "Username" column of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'status.label' => {
|
||||
message => q|Internationalized label for the "Status" column of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'date.label' => {
|
||||
message => q|Internationalized label for the "Date" column of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'message.label' => {
|
||||
message => q|Internationalized label for the "Message" column of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'updatedBy.label' => {
|
||||
message => q|Internationalized label for the "Updated By" column of the report.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'report rows_loop' => {
|
||||
message => q|A loop containing the rows of data for the In/Out Board Report |,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'department' => {
|
||||
message => q|A variable that returns the user's department. If no department has been assigned to this user, an internationalized label for "No Department" will be used.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'createdBy' => {
|
||||
message => q|A variable that returns which user, either the user himself or a delegate, changed the status for this user.|,
|
||||
lastUpdated => 1149393724,
|
||||
},
|
||||
|
||||
'23' => {
|
||||
message => q|<p>The following variables are available from In/Out Board Report template:</p>
|
||||
|
||||
<p><b>showReport</b><br />
|
||||
A boolean indicating whether or not the <i>rows_loop</i> variable will be set.</p>
|
||||
|
||||
<p><b>form</b><br />
|
||||
A variable that contains an HTML form for limiting the scope, by date or department, of the report.
|
||||
</p>
|
||||
|
||||
<p><b>username.label</b><br />
|
||||
Internationalized label for the "Username" column of the report.
|
||||
</p>
|
||||
|
||||
<p><b>status.label</b><br />
|
||||
Internationalized label for the "Status" column of the report.
|
||||
</p>
|
||||
|
||||
<p><b>date.label</b><br />
|
||||
Internationalized label for the "Date" column of the report.
|
||||
</p>
|
||||
|
||||
<p><b>message.label</b><br />
|
||||
Internationalized label for the "Message" column of the report.
|
||||
</p>
|
||||
|
||||
<p><b>updatedBy.label</b><br />
|
||||
Internationalized label for the "Updated By" column of the report.
|
||||
</p>
|
||||
|
||||
<p><b>rows_loop</b><br />
|
||||
A loop containing the rows of data for the In/Out Board Report
|
||||
</p>
|
||||
|
||||
<div class="helpIndent">
|
||||
|
||||
<p><b>deptHasChanged</b><br />
|
||||
A boolean value indicating whether or not this row of data is for a department that is differnet than the previous rows
|
||||
</p>
|
||||
|
||||
<p><b>username</b><br />
|
||||
A variable that returns the user's name. If the first and last name fields are defined in the user profile, that is what is returned. Otherwise, the users WebGUI username is returned. i.e., "John Doe" vs "Jdoe".
|
||||
</p>
|
||||
|
||||
<p><b>department</b><br />
|
||||
A variable that returns the user's department. If no department has been assigned to this user, an internationalized label for "No Department" will be used.
|
||||
</p>
|
||||
|
||||
<p><b>status</b><br />
|
||||
A variable that returns the user's status. The status of a user is defined by the Status List in the Wobject Properties. If no status is set for the current user 'Never Checked In' is returned.
|
||||
</p>
|
||||
|
||||
<p><b>dateStamp</b><br />
|
||||
A variable that returns the date the status of the user was last updated.
|
||||
</p>
|
||||
|
||||
<p><b>message</b><br />
|
||||
A variable that returns what the user entered in the "What's going on?" field when updating their status.
|
||||
</p>
|
||||
|
||||
<p><b>createdBy</b><br />
|
||||
A variable that returns which user, either the user himself or a delegate, changed the status for this user.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<p><b>paginateBar</b><br />
|
||||
A variable that returns the HTML necessary to create a Traditional Pagination Bar. i.e., << First, 1, 2, Last >></p>
|
||||
|,
|
||||
|
||||
lastUpdated =>1139264476
|
||||
lastUpdated =>1149394078
|
||||
},
|
||||
|
||||
'1 description' => {
|
||||
|
|
@ -156,51 +139,71 @@ their status for them.</p>
|
|||
lastUpdated =>1091624565
|
||||
},
|
||||
|
||||
'canViewReport' => {
|
||||
message => q|A boolean indicating whether or not the <i>viewReportURL</i> variable will be set.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'viewReportURL' => {
|
||||
message => q|URL that links to the view report page.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'selectDelegatesURL' => {
|
||||
message => q|URL that links to a form where users can select other users (delegates) who
|
||||
can alter their status.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'displayForm' => {
|
||||
message => q|A boolean indicating whether or not the <i>form</i> variable will be set.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'form' => {
|
||||
message => q|A variable that contains the HTML for displaying the In/Out Entry Form to update status for the current user or another user.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'rows_loop' => {
|
||||
message => q|A loop containing the rows of data for the In/Out Board|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'deptHasChanged' => {
|
||||
message => q|A boolean value indicating whether or not this row of data is for a department that is differnet than the previous rows|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'username' => {
|
||||
message => q|A variable that returns the users name. If the first and last name fields are defined in the user profile, that is what is returned. Otherwise, the users WebGUI username is returned. i.e., "John Doe" vs "Jdoe"|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'status' => {
|
||||
message => q|A variable that returns the user's status. The status of a user is defined by the Status List in the Wobject Properties. If no status is set for the current user 'Never Checked In' is returned.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'dateStamp' => {
|
||||
message => q|A variable that returns the date the status of the user was last updated.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'message' => {
|
||||
message => q|A variable that returns what the user entered in the "What's going on?" field when updating their status.|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'paginateBar' => {
|
||||
message => q|A variable that returns the HTML necessary to create a Traditional Pagination Bar. i.e., >> First, 1, 2, Last <<|,
|
||||
lastUpdated => 1149393667,
|
||||
},
|
||||
|
||||
'21' => {
|
||||
message => q|<p>The following variables are made available from In/Out Board:</p>
|
||||
|
||||
<p><b>canViewReport</b><br />
|
||||
A boolean indicating whether or not the <i>viewReportURL</i> variable will be set.</p>
|
||||
|
||||
<p><b>viewReportURL</b><br />
|
||||
URL that links to the view report page.</p>
|
||||
|
||||
<p><b>selectDelegatesURL</b><br />
|
||||
URL that links to a form where users can select other users (delegates) who
|
||||
can alter their status.</p>
|
||||
|
||||
<p><b>displayForm</b><br />
|
||||
A boolean indicating whether or not the <i>form</i> variable will be set.</p>
|
||||
|
||||
<p><b>form</b><br />
|
||||
A variable that contains the HTML for displaying the In/Out Entry Form to update status for the current user or another user.</p>
|
||||
|
||||
<p><b>rows_loop</b><br />
|
||||
A loop containing the rows of data for the In/Out Board</p>
|
||||
|
||||
<div class="helpIndent">
|
||||
|
||||
<p><b>deptHasChanged</b><br />
|
||||
A boolean value indicating whether or not this row of data is for a department that is differnet than the previous rows</p>
|
||||
|
||||
<p><b>username</b><br />
|
||||
A variable that returns the users name. If the first and last name fields are defined in the user profile, that is what is returned. Otherwise, the users WebGUI username is returned. i.e., "John Doe" vs "Jdoe"</p>
|
||||
|
||||
<p><b>status</b><br />
|
||||
A variable that returns the users status. The status of a user is defined by the Status List in the Wobject Properties. If no status is set for the current user 'Never Checked In' is returned.</p>
|
||||
|
||||
<p><b>dateStamp</b><br />
|
||||
A variable that returns the date the status of the user was last updated.</p>
|
||||
|
||||
<p><b>message</b><br />
|
||||
A variable that returns what the user entered in the "What's going on?" field when updating their status.</p>
|
||||
</div>
|
||||
|
||||
<p><b>paginateBar</b><br />
|
||||
A variable that returns the HTML necessary to create a Traditional Pagination Bar. i.e., >> First, 1, 2, Last <<</p>
|
||||
|
||||
|,
|
||||
lastUpdated =>1139254657
|
||||
lastUpdated =>1149393698
|
||||
},
|
||||
|
||||
'2' => {
|
||||
|
|
|
|||
|
|
@ -216,75 +216,323 @@ a Google sitemap of your site.</p>
|
|||
lastUpdated => 1078207966
|
||||
},
|
||||
|
||||
'currentPage.menuTitle' => {
|
||||
message => q|The pageId of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.assetId' => {
|
||||
message => q|The assetId of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.parentId' => {
|
||||
message => q|The assetId of the parent of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.ownerUserId' => {
|
||||
message => q|The userId of the owner of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.synopsis' => {
|
||||
message => q|The synopsis of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.newWindow' => {
|
||||
message => q|A conditional indicating whether the start page should be opened in a new window.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.menuTitle' => {
|
||||
message => q|The menu title of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.title' => {
|
||||
message => q|The title of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.isHome' => {
|
||||
message => q|A conditional indicating whether the base page is the default page for the site.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.url' => {
|
||||
message => q|The URL of the start page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.rank' => {
|
||||
message => q|The position of the current page compared to its siblings.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.hasChild' => {
|
||||
message => q|A conditional indicating whether the start page has daughters.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.hasSibling' => {
|
||||
message => q|A conditional indicating whether the start page has siblings.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.hasViewableSiblings' => {
|
||||
message => q|A conditional indicating whether the start page has siblings that are viewable by the current user.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'currentPage.hasViewableChildren' => {
|
||||
message => q|A conditional indicating whether the start page has children that are viewable by the current user.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page_loop' => {
|
||||
message => q|A loop containing page information in nested, hierarchical order.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.assetId' => {
|
||||
message => q|The assetId of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parentId' => {
|
||||
message => q|The assetId of the parent of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.ownerUserId' => {
|
||||
message => q|The userId of the owner of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.synopsis' => {
|
||||
message => q|The synopsis of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.newWindow' => {
|
||||
message => q|A conditional indicating whether this page should be opened in a new window.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.menuTitle' => {
|
||||
message => q|The menu title of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.title' => {
|
||||
message => q|The title of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.rank' => {
|
||||
message => q|The rank of this page compared with is siblings.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.absDepth' => {
|
||||
message => q|The absolute depth of this page (relative to nameless root).|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.relDepth' => {
|
||||
message => q|The relative depth of this page (relative to starting point).|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isSystem' => {
|
||||
message => q|A conditional indicating whether this page is a system page (Trash, Clipboard, etc).|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isHidden' => {
|
||||
message => q|A conditional indicating whether this page is a hidden page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isContainer' => {
|
||||
message => q|A conditional indicating whether this page a container asset.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isUtility' => {
|
||||
message => q|A conditional indicating whether this page is a utility asset.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isViewable' => {
|
||||
message => q|A conditional indicating whether the user has permission to view it.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.url' => {
|
||||
message => q|The complete URL to this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.indent' => {
|
||||
message => q|A variable containing the indent for the current page. The default indent is three spaces. Use the <strong>page.indent_loop</strong> if you need a more flexible indent.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.indent_loop' => {
|
||||
message => q|A loop that runs <strong>page.relDepth</strong> times.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'indent' => {
|
||||
message => q|A number representing the loop count.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isBranchRoot' => {
|
||||
message => q|A conditional indicating whether this page is a root page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isTopOfBranch' => {
|
||||
message => q|A conditional indicating whether this page is a top page (daughter of root).|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isChild' => {
|
||||
message => q|A conditional indicating whether this page is a daughter of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isParent' => {
|
||||
message => q|A conditional indicating whether this page is the mother of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isCurrent' => {
|
||||
message => q|A conditional indicating whether this page is the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isDescendent' => {
|
||||
message => q|A conditional indicating whether this page is a descendant of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isAncestor' => {
|
||||
message => q|A conditional indicating whether this page is an ancestor of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.inBranchRoot' => {
|
||||
message => q|This conditional is true if this page is a descendant of the root page of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isSibling' => {
|
||||
message => q|A conditional indicating whether this page is the sister of the base page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.inBranch' => {
|
||||
message => q|A conditional that is the logical OR of <strong>isAncestor</strong>, <strong>isSister</strong>, <strong>isBasepage</strong> and <strong>isDescendent</strong>.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.hasChild' => {
|
||||
message => q|A conditional indicating whether this page has a daughter. In other words, it evaluates to true if this page is a mother.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.hasViewableChildren' => {
|
||||
message => q|A conditional indicating whether this page has a viewable child.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.depthIsN' => {
|
||||
message => q|A conditional indicating whether the depth of this page is N. This variable is useful if you want to style a certain level.
|
||||
</p>
|
||||
<p><tmpl_if page.depthIs1><br />
|
||||
<img src="level1.gif"><br /><tmpl_else><br /> <img src="defaultBullet.gif"><br /></tmpl_if>|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.relativeDepthIsN' => {
|
||||
message => q|A conditional indicating whether the depth of this page is N, relative to the starting page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.depthDiff' => {
|
||||
message => q|The difference in depth between the previous page and this page, parent.absDepth - page.absDepth, although parent.absDepth is not a template variable.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.depthDiffIsN' => {
|
||||
message => q|True if the <strong>page.depthDiff</strong> variable is N. N can be positive or negative.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.depthDiff_loop' => {
|
||||
message => q|A loop that runs <strong>page.depthDiff</strong> times, if <strong>page.depthDiff</strong> > 0. This loop contains no loop variables.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isRankedFirst' => {
|
||||
message => q|This property is true if this page is the first within this level. ie. has no left sister.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.isRankedLast' => {
|
||||
message => q|This property is true if this page is the last within this level. ie. has no right sister.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.menuTitle' => {
|
||||
message => q|The menu title of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.title' => {
|
||||
message => q|The title of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.url' => {
|
||||
message => q|The urlized title of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.assetId' => {
|
||||
message => q|The assetId of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.parentId' => {
|
||||
message => q|The assetId of the grandmother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.ownerUserId' => {
|
||||
message => q|The userId of the owner of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.synopsis' => {
|
||||
message => q|The synopsis of the mother of this page.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'page.parent.newWindow' => {
|
||||
message => q|A conditional indicating whether the mother of this page should be opened in a new window.|,
|
||||
lastUpdated => 1149394665,
|
||||
},
|
||||
|
||||
'1097' => {
|
||||
message => q| <p><strong>currentPage.menuTitle</strong><br />The pageId of the start page.</p>
|
||||
<p><strong>currentPage.assetId</strong><br />The assetId of the start page.</p>
|
||||
<p><strong>currentPage.parentId</strong><br />The assetId of the parent of the start page.</p>
|
||||
<p><strong>currentPage.ownerUserId</strong><br />The userId of the owner of the start page.</p>
|
||||
<p><strong>currentPage.synopsis</strong><br />The synopsis of the start page.</p>
|
||||
<p><strong>currentPage.newWindow</strong><br />A conditional indicating whether the start page should be opened in a new window.</p>
|
||||
<p><strong>currentPage.menuTitle</strong><br />The menu title of the start page.</p>
|
||||
<p><strong>currentPage.title</strong><br />The title of the start page.</p>
|
||||
<p><strong>currentPage.isHome</strong><br />A conditional indicating whether the base page is the default page for the site.</p>
|
||||
<p><strong>currentPage.url</strong><br />The URL of the start page.</p>
|
||||
<p><strong>currentPage.rank</strong><br />The position of the current page compared to its siblings.</p>
|
||||
<p><strong>currentPage.hasChild</strong><br />A conditional indicating whether the start page has daughters.</p>
|
||||
<p><strong>currentPage.hasSibling</strong><br />A conditional indicating whether the start page has siblings.</p>
|
||||
<p><strong>currentPage.hasViewableSiblings</strong><br />A conditional indicating whether the start page has siblings that are viewable by the current user.</p>
|
||||
<p><strong>currentPage.hasViewableChildren</strong><br />A conditional indicating whether the start page has children that are viewable by the current user.</p>
|
||||
<p><strong>page_loop</strong><br />A loop containing page information in nested, hierarchical order.</p>
|
||||
<div class="helpIndent">
|
||||
<p><strong>page.assetId</strong><br />The assetId of this page.</p>
|
||||
<p><strong>page.parentId</strong><br />The assetId of the parent of this page.</p>
|
||||
<p><strong>page.ownerUserId</strong><br />The userId of the owner of this page.</p>
|
||||
<p><strong>page.synopsis</strong><br />The synopsis of this page.</p>
|
||||
<p><strong>page.newWindow</strong><br />A conditional indicating whether this page should be opened in a new window.</p>
|
||||
<p><strong>page.menuTitle</strong><br />The menu title of this page.</p>
|
||||
<p><strong>page.title</strong><br />The title of this page.</p>
|
||||
<p><strong>page.rank</strong><br />The rank of this page compared with is siblings.</p>
|
||||
<p><strong>page.absDepth</strong><br />The absolute depth of this page (relative to nameless root).</p>
|
||||
<p><strong>page.relDepth</strong><br />The relative depth of this page (relative to starting point).</p>
|
||||
<p><strong>page.isSystem</strong><br />A conditional indicating whether this page is a system page (Trash, Clipboard, etc).</p>
|
||||
<p><strong>page.isHidden</strong><br />A conditional indicating whether this page is a hidden page.</p>
|
||||
<p><strong>page.isContainer</strong><br />A conditional indicating whether this page a container asset.</p>
|
||||
<p><strong>page.isUtility</strong><br />A conditional indicating whether this page is a utility asset.</p>
|
||||
<p><strong>page.isViewable</strong><br />A conditional indicating whether the user has permission to view it.</p>
|
||||
<p><strong>page.url</strong><br />The complete URL to this page.</p>
|
||||
<p><strong>page.indent</strong><br />A variable containing the indent for the current page. The default indent is three spaces. Use the <strong>page.indent_loop</strong> if you need a more flexible indent.</p>
|
||||
<p><strong>page.indent_loop</strong><br />A loop that runs <strong>page.relDepth</strong> times.</p>
|
||||
<div class="helpIndent">
|
||||
<p><strong>indent</strong><br />A number representing the loop count. </p></div>
|
||||
<p><strong>page.isBranchRoot</strong><br />A conditional indicating whether this page is a root page.</p>
|
||||
<p><strong>page.isTopOfBranch</strong><br />A conditional indicating whether this page is a top page (daughter of root).</p>
|
||||
<p><strong>page.isChild</strong><br />A conditional indicating whether this page is a daughter of the base page.</p>
|
||||
<p><strong>page.isParent</strong><br />A conditional indicating whether this page is the mother of the base page.</p>
|
||||
<p><strong>page.isCurrent</strong><br />A conditional indicating whether this page is the base page.</p>
|
||||
<p><strong>page.isDescendent</strong><br />A conditional indicating whether this page is a descendant of the base page.</p>
|
||||
<p><strong>page.isAncestor</strong><br />A conditional indicating whether this page is an ancestor of the base page.</p>
|
||||
<p><strong>page.inBranchRoot</strong><br />This conditional is true if this page is a descendant of the root page of the base page.</p>
|
||||
<p><strong>page.isSibling</strong><br />A conditional indicating whether this page is the sister of the base page.</p>
|
||||
<p><strong>page.inBranch</strong><br />A conditional that is the logical OR of <strong>isAncestor</strong>, <strong>isSister</strong>, <strong>isBasepage</strong> and <strong>isDescendent</strong>.</p>
|
||||
<p><strong>page.hasChild</strong><br />A conditional indicating whether this page has a daughter. In other words, it evaluates to true if this page is a mother.</p>
|
||||
<p><strong>page.hasViewableChildren</strong><br />A conditional indicating whether this page has a viewable child.</p>
|
||||
<p><strong>page.depthIs1 , page.depthIs2 , page.depthIs3 , page.depthIs4 , page.depthIsN<br /></strong>A conditional indicating whether the depth of this page is N. This variable is useful if you want to style a certain level.</p>
|
||||
<p><tmpl_if page.depthIs1><br /> <img src="level1.gif"><br /><tmpl_else><br /> <img src="defaultBullet.gif"><br /></tmpl_if></p>
|
||||
<p><strong>page.relativeDepthIs1 , page.relativeDepthIs2 , page.relativeDepthIs3 , page.relativeDepthIsN</strong><br />A conditional indicating whether the depth of this page is N, relative to the starting page.</p>
|
||||
<p><strong>page.depthDiff</strong><br />The difference in depth between the previous page and this page, parent.absDepth - page.absDepth, although parent.absDepth is not a template variable.</p>
|
||||
<p><strong>page.depthDiffIs1, page.depthDiffIs2, page.depthDiffIs3, page.depthDiffIsN</strong><br />True if the <strong>page.depthDiff</strong> variable is N. N can be positive or negative.</p>
|
||||
<p><strong>page.depthDiff_loop</strong><br />A loop that runs <strong>page.depthDiff</strong> times, if <strong>page.depthDiff</strong> > 0. This loop contains no loop variables.</p>
|
||||
<p><strong>page.isRankedFirst</strong><br />This property is true if this page is the first within this level. ie. has no left sister.</p>
|
||||
<p><strong>page.isRankedLast</strong><br />This property is true if this page is the last within this level. ie. has no right sister.</p>
|
||||
<p><strong>page.parent.*</strong><br />These variables will be undefined if the page is a root.</p>
|
||||
<p><strong>page.parent.menuTitle</strong><br />The menu title of the mother of this page.</p>
|
||||
<p><strong>page.parent.title</strong><br />The title of the mother of this page.</p>
|
||||
<p><strong>page.parent.url</strong><br />The urlized title of the mother of this page.</p>
|
||||
<p><strong>page.parent.assetId</strong><br />The assetId of the mother of this page.</p>
|
||||
<p><strong>page.parent.parentId</strong><br />The assetId of the grandmother of this page.</p>
|
||||
<p><strong>page.parent.ownerUserId</strong><br />The userId of the owner of the mother of this page.</p>
|
||||
<p><strong>page.parent.synopsis</strong><br />The synopsis of the mother of this page.</p>
|
||||
<p><strong>page.parent.newWindow</strong><br />A conditional indicating whether the mother of this page should be opened in a new window.</p>
|
||||
</div>|,
|
||||
lastUpdated => 1145060204,
|
||||
message => q|<p>These variables are available in Navigation Templates:</p>
|
||||
|,
|
||||
lastUpdated => 1149394711,
|
||||
},
|
||||
|
||||
'1094' => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue