Declarative menus are used to add new or customize default navigation elements in displayed portal pages. These PSML declarations are part of the page and folder elements. As with other PSML elements, effective menu declarations available for a given page are those that are explicity defined in the page along with all defined in parent folders. For this reason, global site menus are defined in the PSML associated with the site root folder. Menu definitions in a specific page or folder override menus with the same name found in parent folders.
Portal layout decorators access page menu declarations by name while rendering portal content. Menus are used to create dynamic navigation panes, portal page tabs, bread crumb links, and pull downs. The Portal Site Component is responsible for fleshing out the dynamic menu definition options with page specific PSML elements from the site. For instance, a global menu declaration would typically be involved in the following sequence of events while a portal page is being composed:
There are default global menu declarations supported internally by the Portal Site Component that do not need to be explicitly defined in any page or folder PSML elements of the site:
The remainder of this guide provides more information on specifying and using declarative menu definitions within Jetspeed2:
The <menu> element defines a menu to be used by the layout decorators or a nested menu within another menu. There are many valid attributes for the menu element:
Attribute | Description |
---|---|
name | Identifies menu name for retrieval from template code and/or menu reference. This attribute is required for top level nodes and ignored for nested menus. |
options | Specifies root document path for this menu if deep inclusion of documents and folders is specified by this menu. This attribute may also define document paths that specify page, folder, or link menu options. Paths specified in this attribute are Page URIs; these URIs may or may not directly reflect the folder and page hierarchy. The Portal Site Component maps these options paths to PSML folder and page elements. Multiple option paths can be specified as a comma separated list of paths and/or regular expression patterns. Relative paths are interpreted as relative to the current page. Special patterns, '~' or '@', can be used to reference the current page. Elements of the current page path can be referenced within options using one of the following special patterns: '@0', '@1'..'@N', or '@$'. The '@0' pattern is replaces with the whole current path, (trimmed of leading and trailing separators). The '@N' pattern is replaced with the Nth, (one based index), path element of the current path. Finally, the '@$' pattern is replaced with the last element, (normally a page name), of the current path. Finally, the special pattern '+' can be used to reference the trimmed path of folder that the menu is defined within, (if the menu is defined on a page or template, the parent folder path is used). This pattern can be used to "pin" a menu to a specific folder. |
depth | Specifies deep inclusion of documents from option folders, (depth < 0 specifies infinite depth). Menu options are created to represent each visible page or link in the site; folders are converted into nested menus constrained by this setting. |
paths | Boolean attribute to enable the "path" expansion of options: specified options are expanded to include paths from the root to the specified options. For example, if options is specified to be "/folder/page.psml", setting this attribute would result in the menu containing options for "/", "/folder", and "/folder/page.psml". This setting is typically used to generate "history" or "bread crumb" menus. |
regexp | A boolean attribute the specifies whether wild card/regular expression processing be performed on options values. File system command line regular expression syntax is supported. |
profile | Specified name of Profile Locator to be used when evaluating option values. This attribute also sets the default profile value for options and nested menus. Specifying '*' forces the acceptance of all Profile Locator names; this can be used to override parent menu selects a profile name. |
order | Comma separated list of regexp patterns matched against list or regular expression document path values to determine order of matched options. This attribute will be applied as a default options value for any options elements, but is not used to reorder multiple options children matches. If not specified, multiple options are included in the order returned by the underlying folder document orderings. Option paths not matched by this attribute are appended after ordered matches. |
skin | Optional decorator defined layout hint for the menu. This attribute is also used as the default skin value for options and nested menus. This hint is not currently used by Jetspeed2 decorators. |
The <menu> element contains a number of other menu definition PSML elements. With the exception of the title and metadata elements, the relative order of these elements determines the order that the layout decorators present them:
Element | Description |
---|---|
title? | Simple element text specifies default locale-independent title for the menu. The title of the menu is considered its long description and is used as rollover text in some decorators if the short title is available for the menu text. If not specified, the name of the menu will be used. |
short-title? | Simple element text specifies default locale-independent short title for the menu. The short title, if available, is used as menu text in some decorators. If not specified, the title text is used. |
metadata* | Optionally specifies additional locale-specific titles and short titles. |
options* | This ordered menu element specifies content elements for this menu definition. |
separator* | An ordered menu element used to specify text lines to be included inline in this menu definition. |
menu* | Another ordered menu element used to define a nested menu contained in this menu definition. |
include* | Specifies a menu to nest within or options from a another menu to be included in this menu definition. The name of the menu to include is the text of this ordered menu element. |
exclude* | Specifies options and nested menus from another menu to be excluded from this menu definition. The name of the menu with elements to exclude is the text of this ordered menu element. |
Examples:
<!-- simple menu composed of 2 pages --> <menu name="simple"> <options>/some-top-page.psml,/custom/some-other-page.psml</options> </menu>
<!-- site menu for the top 2 levels: folders result in nested menus --> <menu name="top-2-levels" options="/" depth="2" skin="dhtml-pull-down"/>
<!-- menu containing top level elements profiled by roles --> <menu name="top-role-pages" regexp="true" options="/*" profile="roles"/>
<!-- contrived example demonstrating element syntax --> <menu name="top-custom"> <title>Top Menu</title> <metadata name="title" xml:lang="fr">Haut</metadata> <options regexp="true" profile="groups">/group-pages/*</options> <menu options="/" profile="page"> <separator> <text>-- Top Pages --</text> <title>Top Pages</title> </separator> <options regexp="true">/*</options> <separator> <title>Custom Pages</title> </separator> <options depth="2">/custom-folder/</options> </menu> <exclude>top-role-pages</exclude> <separator>More Top Pages</separator> <include nest="true">top-role-pages</include> </menu>
The definitions for the default global menu declarations supported internally by the Portal Site Component:
<!-- standard pages tabs menu --> <menu name="pages" regexp="true" options="*.psml"/>
<!-- standard history breadcrumbs menu --> <menu name="breadcrumbs" options="~" paths="true"/>
<!-- standard navigations panel menu --> <menu name="navigations"> <separator>Folders</separator> <options regexp="true">./*/</options> <include>page-navigations</include> <separator>Additional Links</separator> <options regexp="true">/*.link</options> </menu>
<!-- standard parent folder link menu --> <menu name="back" options="../"/>
Note that the separator text of these definitions is localized internally.
The <options> element defines a single or multiple options within a menu. The text of this simple element specifies document paths that yield page, folder, or link menu options. Paths specified in this element are Page URIs; these URIs may or may not directly reflect the folder and page hierarchy. The Portal Site Component maps these options paths to PSML folder and page elements. Multiple option paths can be specified as a comma separated list of paths and/or regular expression patterns. Relative paths are interpreted as relative to the current page. Special patterns, '~' or '@', can be used to reference the current page. Elements of the current page path can be referenced within options using one of the following special patterns: '@0', '@1'..'@N', or '@$'. The '@0' pattern is replaces with the whole current path, (trimmed of leading and trailing separators). The '@N' pattern is replaced with the Nth, (one based index), path element of the current path. Finally, the '@$' pattern is replaced with the last element, (normally a page), of the current path. This element shares many attributes in common with the menu element:
Attribute | Description |
---|---|
depth | Specifies deep inclusion of documents from option folders, (depth < 0 specifies infinite depth). Menu options are created to represent each visible page or link in the site; folders are converted into nested menus constrained by this setting. |
paths | Boolean attribute to enable the "path" expansion of options: specified options are expanded to include paths from the root to the specified options. For example, if options is specified to be "/folder/page.psml", setting this attribute would result in the menu containing options for "/", "/folder", and "/folder/page.psml". This setting is typically used to generate "history" or "bread crumb" menus. |
regexp | A boolean attribute the specifies whether wild card/regular expression processing be performed on options values. File system command line regular expression syntax is supported. |
profile | Specified name of Profile Locator to be used when evaluating option values. This attribute also sets the default profile value for options and nested menus. Specifying '*' forces the acceptance of all Profile Locator names; this can be used to override parent menu selects a profile name. |
order | Comma separated list of regexp patterns matched against list or regular expression document path values to determine order of matched options. This attribute will be applied as a default options value for any options elements, but is not used to reorder multiple options children matches. If not specified, multiple options are included in the order returned by the underlying folder document orderings. Option paths not matched by this attribute are appended after ordered matches. |
skin | Optional decorator defined layout hint for the menu options. Skin attribute values from each page, folder, or link will be used to populate menu options if this hint is not specified here. Otherwise, the skin hint from the containing menu will be used. This hint is not currently used by Jetspeed2 decorators. |
Example:
<menu> ... <options regexp="true" order="*.psml,*.link">/some-top-page.psml,/custom/some-other-page.psml,/*.link</options> ... </menu>
The <separator> element defines a separator to be included in a menu. The separator will be included only if options or nested menus appear below this element within a menu definition. The text of the separator can be specified in the contained text of this element or in the text menu definition element. There is only one attribute accepted by the separator element:
Attribute | Description |
---|---|
skin | Optional decorator defined layout hint for the menu separator. This hint is not currently used by Jetspeed2 decorators. |
The <separator> element contains a number of other menu definition PSML elements:
Element | Description |
---|---|
title? | Simple element text specifies default locale-independent title for the separator. The title of the separator is considered its long description and is used as rollover text in some decorators if the separator text is available. |
text? | Simple element text specifies default locale-independent text for the separator. The required separator text, whether specified by this attribute or as the contained text of the separator element, is the text to be inserted in the menu by the layout decorator. |
metadata* | Optionally specifies additional locale-specific titles and separator text. |
Examples:
<menu> ... <separator>-------------</separator> ... <separator> <text>-- Top 10 Pages --</text> <metadata name="text" xml:lang="fr">Haut Pages</metadata> <title>Top 10 pages as voted by the Jetspeed2 users!</title> </separator> ... </menu>
The <include> element includes options or nested menus from another menu. The name of the menu to include is specified as the text value of this element. There is only one valid attribute for the include element:
Attribute | Description |
---|---|
nest | Boolean flag that controls whether the specified menu is to be nested. If this attribute is set to 'true', the included menu will be nested as a submenu; otherewise, all options and nested menus from the specified menu will be inserted inline into this menu. |
Examples:
<menu> ... <include nest="true">navigations</include> ... </menu>
The <exclude> element excludes options or nested menus from another menu. This option is used primarily to remove menu options that already appear on the portal page in another menu from this menu. Matching options or menus will be excluded only if they appear above this element within a menu definition. The name of the menu to include is specified as the text value of this simple element.
Examples:
<menu> ... <exclude>pages</exclude> ... </menu>
The page layout decorators request menus from the Portal Site Component when the page is being rendered in the Jetspeed2 pipeline. The decorators expect certain menus to be provided by the PSML declarations. Before custom menus can be displayed in the portal, the decorators need to be modified to render the custom menu. Here is an example taken from a Velocity layout decorator header.vm file:
... #set($pagesStandardMenu = $site.getMenu("pages")) #if(!$pagesStandardMenu.empty) <div class="tabs"> #includeTabsNavigation($pagesStandardMenu $LEFT_TO_RIGHT) </div> #end ...
This code block renders the standard pages tabs menu within a portal page. The Portal Site Component is exposed as the $site Velocity context variable. The test for an empty menu definition is designed to ensure that empty menus are not rendered into the page content. Finally, a decorator macro is executed to expand the menu content. This approach is taken in general to support the rendering of nested menus with recursive invocations of the macro. In this case, the decorator is expecting only page options. Here is the macro implementation used to render the pages tabs menu:
#macro (includeTabsNavigation $_menu $_orientation) <table border="0" cellpadding="0" cellspacing="0"> <tr> #foreach($element in $_menu.elements.iterator()) #if($element.elementType == "option") #set($tabTitle = $element.getTitle($preferedLocale)) #set($tabName = $element.getShortTitle($preferedLocale)) #if($_orientation == $LEFT_TO_RIGHT) #if($element.isSelected($site)) <td class="LTabLeft" nowrap="true"> </td> <td class="LTab" align="center" valign="middle" nowrap="true" title="$!tabTitle">${tabName}</td> <td class="LTabRight" nowrap="true"> </td> #else #set($tabUrl = $jetspeed.getAbsoluteUrl($element.url)) <td class="LTabLeftLow" nowrap="true"> </td> <td class="LTabLow" align="center" valign="middle" nowrap="true" title="$!tabTitle"><a href="$tabUrl">${tabName}</a></td> <td class="LTabRightLow" nowrap="true"> </td> #end #end #end #end </tr> </table> #end
This macro iterates over the computed page menu options supplied by the Portal Site Component, rendering a series of table data HTML elements that make up each displayed tab. The whole menu is rendered as a HTML table with a single row.
The declarative menu Portal Site Component objects exposed to the layout decorators are documented in the Jetspeed API. Here is a list of the primary interfaces that make up this interface:
Jetspeed2 provides many sample decorators including those that will render tabs, navigation panes with nested submenus, history breadcrumb links, and even DHTML JSCookMenu nested pulldown menus... all from the declarative menu elements documented here.
In conjunction with the Jetspeed Profiler Component, the Portal Site Component performs two closely related functions:
Menu definition options paths are specified as Page URIs to leverage this mapping functionality. A Page URI is essentially the tail portion of a portal request URL that is used to address a page or folder. Using Page URIs for options allows menu definitions to be shared by all users of the portal: the user specific profile and effective security constraints are applied to generate the menu options. This implies that the physical paths used internally within the Page Manager file system or database cannot be specified to directly address a specific PSML element.
For example, suppose the following:
Portal Request URL | PSML Element Selected |
---|---|
http://.../jetspeed/portal/page0.psml | .../_user/someone/page0.psml |
http://.../jetspeed/portal/page1.psml | .../page0.psml |
http://.../jetspeed/portal/page2.psml | Fails security test. |
http://.../jetspeed/portal/hidden-page.psml | .../hidden-page.psml |
Menu Options Page URIs | PSML Elements Included in Menu |
---|---|
/page0.psml | .../_user/someone/page0.psml |
/page0.psml,/page1.psml | .../_user/someone/page0.psml,.../page1.psml |
/*.psml | .../_user/someone/page0.psml,.../page1.psml |
/* | .../_user/someone/page0.psml,.../page1.psml |
/_user/someone/page0.psml | Not a valid Page URI. |