ALI Data Tags


This library provides data tags to retrieve and create portal URLs for use in navigation.

Data tags provide content for display tags, which format and display the content. Data tags do not actually display anything, all they do is to set data on the tag scopes, such as the session or the portlet request scope. The data stored by these tags on the tag scopes are used by display tags. For example, the ptnavtags:ptddmenutab tag generates HTML for a DHTML dropdown menu. It does not display any content by default. To populate the menu with entries, it requires a reference to one or more data tags. The way to specify what data tag to use in a display tag is to reference the ID attribute that all data tags should define. A display tag defines an attribute to specify the data tag ID to use.

There are several types of data tags and display tags defined since not all data tags or display tags are compatible with each other. The ALI framework tag libraries (core, logic, standard, ui, data and navtags) provide three types of data tags.

Two of these types are intrinsic to the tag framework, the string data and the IDataObject (DO) data. These two types are used by the tag framework to enable text replacement operations with the $ operator.

  1. The String data type is the most basic type. As the name suggests, the data consists of a text string. These strings can be read from Tag scopes by display tags. They can also be used with the $ operator prepended to the data tag ID in the HTML document or in tag attributes, for example,

    myattribute="$mytag"

  2. The DO data type sets a container with name/value pairs on tag scopes. It is useful for collections of data, for example storing user information. A user could have a name/value pair for their name, age, address and other information. Besides being used by display tags, the name/value pairs in a DO data type are also accessible with the $ operator. Similarly to the string data type, the $ character is prepended to the data ID, and then followed by a dot and the name of any name/value in the DO data, such as:

    myattribute="$mytag.myname"

  3. The third data type, PTURL data, is a type of DO data that only stores URLs and any information related to a URL. It contains a set of a name/value pairs, also known as URL components, such as the title of the url, the url itself, uri, the image associated with the URL and its height and width. Exactly what information the PTURL stores depends on the type of tag that generates it. As a type of DO data type, PTURL data can be used by any DO data compatible display tags. Note that display tags specifically using PTURL data do not work with non-PTURL DO data.

Tag Library Information
Nameptdata
Version1.0
 

Tag Summary
addcommunityportletsdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Add Portlets on Communities Editor (Editor to add and remove portlets in a Community. The URL is only returned if a user has access to edit the current Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

addmypageportletsdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Add Portlets on MyPages Editor (Editor to add and remove portlets from a user's MyPage).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

administrationdataSets PTURL DO data on the PORTLET REQUEST scope with URL to the Administrative Portal (The URL is only returned if a user has sufficient access to the Administrative Portal).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

advancedsearchdataSets PTURL DO data on the PORTLET REQUEST scope with URL to the Advanced Search Page.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

directorybrowsedataSets PTURL DO data on the PORTLET REQUEST scope with URL to Knowledge Directory Folder in Browse Mode (Goes to the root folder if no folder ID is specified).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

communityactionsdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Community related Actions (For example 'Join Communities Editor' or 'Edit this Community'. Certain links are only included if a user has sufficient access). An optional 'includeoneclick' tag causes the inclusion of a link for 'one-click' page creation, using the 'inherittemplate' and 'pagetemplate' flags to override the defaults of 'true' and 'blank page template'.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

communitykddataSets PTURL DO data on the PORTLET REQUEST scope with URL to Community Knowledge Directory (Only displayed when currently in a Community with Community Knowledge Directory enabled)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component when on a Community Knowledge Directory page.

mycommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's My Communities (Communities a user has joined or is a mandatory member of)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

communitypagesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Community Pages for a specified Community (Only URLs to Community Pages a user has access to will be included)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community Page if currently on that Community Page.

createnewcommpagedataSets PTURL DO data on the PORTLET REQUEST scope with URL to Create New Community Page Editor (Page in the Community Editor to create new Community Pages. The URL is only returned for users who has access to create new Community pages).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

createcommpageoneclickdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Create New Community Page with one click, using (and inheriting) the default blank template. Template and page inheritance rule can be overriden with the optional pagetemplate and inherittemplate attributes. The URL is only returned for users who has access to create new Community pages.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

createnewmypagedataSets PTURL DO data on the PORTLET REQUEST scope with URL to Create New MyPage Editor (The URL is not returned if the maximum number of MyPages has been created).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

createnewmypageoneclickdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Create New MyPage with one click using default layout (The URL is not returned if the maximum number of MyPages has been created).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

currcommunitydataReturns information about the current community, including a URL to the home page and optionally the Community Name and ID, and the Community Page Name and ID. Returns nothing if user is not on a community page.
currcommunitypagesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to current Community Pages (Community Pages a user is currently in. Only URLs to Community Pages a user has access to will be included)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community Page if currently on that Community Page.

currpagedataSets PTURL DO data on the PORTLET REQUEST scope with URL for the current Community Page data. Nothing is set if the current page is not a Community page.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

currparentcommunitydataSets PTURL DO data on the PORTLET REQUEST scope with URL to Parent Community of the current Community (The Community above the current Community in the administrative hierarchy. No URL is set if the user does not have access to the Parent Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

currprofiledataReturns information about the current User Profile (on profile pages). Returns nothing if user is not on a profile page. Note this tag displays information about the user who's profile is being viewed; not the logged-in user.
currrelatedcommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Related Communities of the current Community (Related Communities in the Community a user is currently in. Only URLs to Communities a user has access to will be included)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

currsubcommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Subcommunities of the current Community (Subcommunities of the Community a user is currently in. Only Communities a user has access to are included)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

deletemypagedataSets PTURL DO data on the PORTLET REQUEST scope with URL to Delete My Page Action (Deletes the current My Page a user is on.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

editcommunitydataSets PTURL DO data on the PORTLET REQUEST scope with URL to the Edit current Community Editor (Editor to edit different aspects of the Community a user is currently in. The URL is only returned if a user has access to edit the current Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

directoryeditdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Knowledge Directory Folder Edit Mode. Goes to the root folder if no folder ID is specified. This URL will not be returned if a user does not have access to edit the Knowledge Directory.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

editmypageactionsdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Edit My Page Editor (Editor to edit My Page name and layout).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

editmypageportletprefsdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Edit Portlet Preferences on MyPage Editor (Editor to edit all portlet preferences on the current page).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

federatedsearchdataSets PTURL DO data on the PORTLET REQUEST scope with URL to the Federated Search Page.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

genericurlSets PTURL DO data on the PORTLET REQUEST scope with URL with customizable Title, URL and Image .This URL contains the following standard URL components: title, url, uriand params. The imgDO component will be set if an image is specified.
helppagedataSets PTURL DO data on the PORTLET REQUEST scope with URL to open the Online Help Page.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
In standard display mode, the url component will just return #,since a popup is used. Use the jsaction to retrieve the javascriptcall. In Accessibility and low-bandwidth mode a regular URL is used

joincommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Join Communities Editor (Editor to select what Communities to display on users's My Community list).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

joincurrcommunitydataSets PTURL DO data on the PORTLET REQUEST scope with Join Current Community Action URL (Clicking on the URL joins the current Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

loginlogoffdataSets PTURL DO data on the PORTLET REQUEST scope with Login/Logoff Action URL (Login link if the current user is not logged in or Logoff link if the current user is already signed in).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

mandtabcommsdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Mandatory Communities (List of Communities a user cannot unsubscribe from).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

mandatorylinksdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to current user's Experience Definition Mandatory Links (Only URLs to objects a user has access are included)

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

mandatorylinknamedataSets String data on the PORTLET REQUEST scope with Subportal Mandatory Links Folder Name (The name of the group of mandatory links. Displayed as the menu tab title on dropdown menus).
myaccountdataSets PTURL DO data on the PORTLET REQUEST scope with URL to user's My Account Page (Goes to the My Account page where users can change various portal settings such as locale and display options).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

myhomedataSets PTURL DO data on the PORTLET REQUEST scope with URL to user's Home Page (Goes to a user's home page as specified on a Subportal).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

mypageactionsdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs of users's My Page Actions (My Page actions such as 'Create New MyPage' or 'Edit Page'. Some actions are only included when currently on a MyPage).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

mypagesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's My Pages. The 'currurl' DO data component is set on a MyPage URL if currently in that My Page

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

myprofiledataSets PTURL DO data on the PORTLET REQUEST scope with URL to user's Profile Page (Goes to the User Profile page where users can view personal profile information).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

pagelinkThis tag will display a link back to the current page or to the base URL of the current page (without the ?). The HTTP entry point portion of the link can be modified.

This tag does not display the contents of the tag and should only be used as a singleton tag (i.e. <pt:ptdata.pagelink/>), rather than as a tag with both an open and close tag.

parentcommunitydataSets PTURL DO data on the PORTLET REQUEST scope with URL to Parent Community of a specified Community (The Community above the specified Community in the administrative hierarchy. No URL is set if the user does not have access to the Parent Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

relatedcommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Related Communities URLs of a specified Community (Communities in the same level of the administrative hierarchy. Only URLs to Communities a user has access to are included).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

rulesdebugdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Rules Debug Pop up Page where users can view the messages sent by the experience definition rules engine.

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

subcommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with List of URLs to the Subcommunities of the specified Community (Communities located below a Community in the Administrative hierarchy. Only Communities a user has access to are included).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
The URL will also set the currpage DO data component on a Community URL if currently in that Community.

unsubscribecommunitiesdataSets PTURL DO data on the PORTLET REQUEST scope with URL to Unsubscribe from Communities Editor (Editor where a user can remove Communities from their My Community list).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

unsubscribecurrcommunitydataSets PTURL DO data on the PORTLET REQUEST scope with Unsubscribe Current Community Action URL (Clicking on the URL unsubscribes the current Community).

This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params.
In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1. For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).

 


Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-3 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.