| Substitution
tag |
Type |
Renders |
| #ITEM.ITEMID# |
Common |
The
ID of an item that is rendered via the HTML content layout template
When items have
multiple versions, this tag refers to a specific item version. Compare
it with #item.masterid#, which is the ID of the item without regard
to version. The #item.id# is different for each version. The #item.masterid#
is the same for all versions of the item. |
| #ITEM.MASTERID# |
Common |
The
master ID of an item that is rendered via the HTML content layout template
This tag can be
used with the #item.pagegroupid# tag in a query against the public view
of a page. In the following example, assume that the privilege to view
WWSBR_ALL_ITEMS is granted to the user or to PUBLIC:
<oracle>
begin
htp.p('Item MasterID=#item.masterid#'); htp.br;
htp.p('PageGroup=#item.pagegroupid#'); htp.br;
for c1 in (
select id, display_name, language
from #owner#.WWSBR_ALL_ITEMS
where masterid = #item.masterid#
and caid = #item.pagegroupid#
)
loop
htp.p('Item
ID = '||c1.id||
' title
= ' ||c1.display_name||
' language
= '||c1.language);
htp.br;
end loop;
end;
</oracle> |
| #ITEM.PAGEGROUPID# |
Common |
The
ID of the page group that contains the item being rendered via the HTML
content layout template
Note: See
the example in #item.masterid#. |
| #ITEM.TYPE# |
Common |
The
type of the object, such as file
Built-in types include:
- file
- text
- url
- folderlink
- plsql
- imagemap
- none
- portlet
- zip_file
- baseportletinstance
- basefile
- baseurl
- basetext
- baseplsql
- basepagelink
- baseimage
- baseportallink
- baseloginlogout
- basesearch
- baseelementlist
- basesmarttext
- basemaplink
- tab_item_type
- basepagepath
- baseimagemap
- basesubpagedisplay
- basepagefunction
- portlet_instance
- baseuser
- extfile
- exturl
- exttext
- extplsql
- extpagelink
- extimage
- extimagemap
- base_placeholder
- wirelessurl
- baseitemlink
- item_link
- Oracle_Reports
Consider using this
tag is inside <oracle></oracle> tags to create a conditional
entry. For example:
<oracle>
if instr('#item.type#', 'image') > 0 then
htp.p('<img src="#item.content.value#" alt="#item.title.value#">');
elsif instr('#item.type#', 'baseportletinstance') > 0 then
htp.p('#item.title.value#<br>#item.portletcontent.value#');
elsif '#item.displayoption#' = 'direct' then
htp.p('#item.title.value#<br>#item.content.value#');
else
htp.p('<a href="#item.url#">#item.title.value#</a>');
end if;
</oracle>
Note:
Valid values can be queried from the NAME column in the Portal database
table WWSBR_ITEM_TYPES. |
| #ITEM.STATUS# |
Common |
The
status of the object
Values include:
- Active
- Expired
- Deleted
- Hidden
- Draft
- Pending
- Rejected
A single tag can
return multiple values (separated by a space), for example:
Hidden Expired Deleted
Hidden Expired
Note:
Consider using this tag inside <oracle></oracle> tags, for
example, in if statements. See the Notes section at the end
of this topic for a usage sample of the <oracle></oracle>
tags. |
| #ITEM.STATUSINHTML# |
Common |
The
status of the object, rendered in the language specified for the client
browser
The value is returned
formatted as highlighted bold. It is rendered only when the page is
in Edit mode. |
| #ITEM.STATUSLINK# |
Common |
A
fully formed hyperlink leading to the proper action for pending or draft
items
Note:
This link displays only when the object's status is Pending
or Draft:
- Clicking a Draft
link takes users to an action page where they can either delete the
object or submit it for approval.
- Clicking a Pending
link takes users to the Approval Notification Details page. This page
contains a link to the item, a summary of attribute values (both displayed
and not displayed), a text box for the approver's comments, and the
object's approval history.
|
| #ITEM.DISPLAYOPTION# |
Common |
The
object's display option:
- direct--directly
on the page
- link--as
a link on the page, link opens in current browser window
- linktonewwindow--as
a link on the page, link opens in new browser window
Using <oracle></oracle>
tags, you can set up a condition that displays the object as specified
in the object's attributes--in the current browser window or a new browser
window--should this vary from object to object.
For example:
<oracle>
begin
if '#item.displayoption#' = 'link' then
htp.p('<a href="#item.url#">View item in current
window</a>');
elsif '#item.displayoption#' = 'linktonewwindow' then
htp.p('<a href="#item.url#" target="_blank">View
item in
new window</a>');
else
htp.p('Display item directly in page');
htp.br;
htp.p('#item.content#');
end if;
end;
</oracle>
|
| #ITEM.URL# |
Common |
The
object's path-based URL
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.url#">#item.title.value#</a>
Or
<a href="#item.url#"><img
src="#item.image.value#" alt="#item.title.value#"></a> |
| #ITEM.DURABLEURL# |
Common |
The
object's durable (or graphical user interface ID-based) URL
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.durableurl#">#item.content.label#</a> |
| #ITEM.EDITURL# |
Common |
The
URL to an edit view of the object
Note:
This tag renders only for users with the appropriate privilege. Use
it in an HTML href tag. For example:
<a href="#item.editurl#">Edit</a> |
| #ITEM.EDITLINK# |
Common |
The
fully-formed hyperlink to an edit view of the object
Only users with
the item privilege Edit see this link. Users who click this
link are taken to the object's properties page.
This tag renders
the HTML to form the link as well as the link label, Edit.
No additional encoding, such as an href tag, is required. |
| #ITEM.DELETEURL# |
Common |
The
URL to a delete view of the object
Note:
This tag renders only for users with the appropriate privilege. Use
it in an HTML href tag. For example:
<a href="#item.deleteurl#">Delete</a> |
| #ITEM.DELETELINK# |
Common |
The
fully-formed hyperlink to a delete view of the object
Only users with
the item privilege Manage can see this link. Users who click
this link are taken to a decision page where they choose either Yes
or No to continue with deleting the relevant object.
This tag renders
the HTML to form the link as well as the link label, Delete.
No additional encoding, such as an href tag, is required. |
| #ITEM.PAGENAME# |
Common |
The
name of the object's host page |
| #ITEM.PAGEURL# |
Common |
The
path-based URL of the object's host page
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.pageurl#">#item.pagename#</a> |
| #ITEM.PAGEDURABLEURL# |
Common |
The
durable (or graphical user interface ID-based) URL of the object's host
page
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.pagedurableurl#">
#item.pagename#</a> |
| #ITEM.TITLE# |
Common |
The
object's title or Display Name wrapped in its associated style
This tag is equivalent
to:
<font class="#item.title.style#">
#item.title.value#
</font> |
|
#ITEM.TITLE.LABEL# |
Common |
Display
Name |
| #ITEM.TITLE.VALUE# |
Common |
The
Display Name of the object |
|
#ITEM.TITLE.STYLE# |
Common |
The
style applied to the Display Name of the object
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.title.style#">#item.title.label#:
#item.title.value#</font> |
| #ITEM.DESCRIPTION# |
Common |
The
Description of the object wrapped in its associated style
This tag is equivalent
to:
<font class="#item.description.style#">
#item.description.value#
</font> |
|
#ITEM.DESCRIPTION.LABEL# |
Common |
Description
|
|
#ITEM.DESCRIPTION.VALUE# |
Common |
The
Description of the object |
|
#ITEM.DESCRIPTION.STYLE# |
Common |
The
style applied to the Description
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.description.style#">
#item.description.label#:
#item.description.value#</font> |
| #ITEM.AUTHOR# |
Common |
The
object's Author wrapped in its associated style
This tag is equivalent
to:
<font class="#item.author.style#">
#item.author.value#
</font> |
|
#ITEM.AUTHOR.LABEL# |
Common |
Author |
|
#ITEM.AUTHOR.VALUE# |
Common |
The
object's Author |
|
#ITEM.AUTHOR.STYLE# |
Common |
The
style applied to the name of the object's Author
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.author.style#">
#item.author.label#: #item.author.value#</font> |
| #ITEM.IMAGE# |
Common |
The
object's representative image with ALT text, aligned as specified in
the portal
Note:
This is the image selected by a user to represent the object, rather
than an item of the Image type.
This tag is equivalent
to, for example:
<img src="#item.image.value#"
border="0" alt="#item.title.value#" align="value defined on the
item"> |
|
#ITEM.IMAGE.LABEL# |
Common |
Image
|
| #ITEM.IMAGE.VALUE# |
Common |
The
URL leading to the uploaded image (a location within the portal)
Note:
This is the image selected by a user to represent the object, rather
than an item of the Image type. Use this tag in an HTML img
src tag. For example:
<a href="#item.url#"><img
src="#item.image.value#" alt="#item.title.value#"></a>
When used within
an img src tag, the image is rendered in place. Otherwise, this tag
renders a URL.
|
| #ITEM.KEYWORDS# |
Common |
The
object's assigned keywords and the Keywords label wrapped in their associated
style
This tag is equivalent
to:
<font class="#item.keywords.style#">
#item.keywords.label#: #item.keywords.value#
</font> |
|
#ITEM.KEYWORDS.LABEL# |
Common |
Keywords |
|
#ITEM.KEYWORDS.VALUE# |
Common |
The
object's assigned keywords |
|
#ITEM.KEYWORDS.STYLE# |
Common |
The
style applied to the object's keywords
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.keywords.style#">
#item.keywords.label#: #item.keywords.value#
</font> |
| #ITEM.CREATOR# |
Common |
The
user name of the object's creator, labeled and wrapped in its associated
style
This tag is equivalent
to:
<font class="#item.creator.style#">
#item.creator.label#: #item.creator.value#
</font> |
|
#ITEM.CREATOR.LABEL# |
Common |
Creator
|
|
#ITEM.CREATOR.VALUE# |
Common |
The
user name of the object creator |
|
#ITEM.CREATOR.STYLE# |
Common |
The
style applied to the object creator's user name
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.creator.style#">
#item.creator.label#: #item.creator.value#
</font> |
| #ITEM.CREATEDATE# |
Common |
The
object's create date, labeled and wrapped in its associated style
This tag is equivalent
to:
<font class="#item.createdate.style#">
#item.createdate.label#: #item.createdate.value#
</font> |
|
#ITEM.CREATEDATE.LABEL# |
Common |
Create
Date |
|
#ITEM.CREATEDATE.VALUE# |
Common |
The
string value equal to the date the object was created (that is, the
date it was uploaded to the portal)
Note:
This tag uses the format:
DD-MON-YYYY, that
is, 06-MAY-2004 |
|
#ITEM.CREATEDATE.STYLE# |
Common |
The
style applied to the object's create date
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.createdate.style#">
#item.createdate.label#: #item.createdate.value#
</font> |
| #ITEM.TRANSLATIONS# |
Common |
The
fully-formed hyperlink to a translation
Note:
If no translation is present, the link does not display. |
|
#ITEM.TRANSLATIONS.LABEL# |
Common |
Translations
Note:
Use this tag in conjunction with the VALUE tag to render a fully-formed
link to a list of translations of the current item. For example:
<a href="#item.translations.value#>
#item.translations.label#</a> |
|
#ITEM.TRANSLATIONS.VALUE# |
Common |
The
URL leading to the object's translation (a location within the portal)
if such a translation exists
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.translations.value#">
#item.translations.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even when no translation is present;
in which case, users would receive an HTML error message when they click
the link. |
| #ITEM.TRANSLATIONS.IMAGE# |
Common |
The
translations icon,
Note:
You can use this tag in conjunction with the #item.translations.value#
and #item.translations.label# tags to link the translations icon to
a URL that dynamically assembles a page that lists links to all translations
of this object in the portal.
For example:
<a href="#item.translations.value#">
<img src="#item.translations.image#" alt="#item.translations.label#">
</a>
This tag must be
placed in an <img src> tag to render properly:
<img src="#item.translations.image#"> |
| #ITEM.NEWFLAG# |
Common |
The
fully-formed hyperlink to a page listing all new objects
Note:
If the object does not fall within the time limit specified for new
objects, the link does not display. For example, if the page group is
configured to flag objects as new for three days after they are uploaded,
and the current object was uploaded seven days ago, the object is no
longer considered new, and the link does not display. |
|
#ITEM.NEWFLAG.LABEL# |
Common |
New
Items |
|
#ITEM.NEWFLAG.VALUE# |
Common |
The
URL that renders a page that lists hyperlinks to all objects labeled
New Items
Note:
What qualifies as new is configured at the page group level on the page
group properties Items tab.
Use this tag in
an HTML href tag. For example:
<a href="#item.newflag.value#">
#item.newflag.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if no objects fall within
the New Flag time limit; in which case, users would receive an HTML
error message when they click the link. |
| #ITEM.NEWFLAG.IMAGE# |
Common |
The
New Items icon,
Note:
You can use this tag in conjunction with the #item.newflag.value# and
#item.newflag.label# tags to link the new objects icon to a URL. The
URL target is a dynamically assembled page that lists links to all new
objects in the portal to which the user has access privileges.
For example:
<a href="#item.newflag.value#">
<img src="#item.newflag.image#" alt="#item.newflag.label#">
</a>
This tag must be
placed in an <img src> tag to render properly:
<img src="#item.newflag.image#"> |
| #ITEM.PERSPECTIVES# |
Common |
All
perspectives applied to the object, listed as HTML links, which, when
clicked, return a search result of all objects sharing the same perspective
This tag renders
the same information as the tag #ITEM.PERSPECTIVES.VALUE#. |
| #ITEM.PERSPECTIVES.LABEL# |
Common |
Perspectives |
| #ITEM.PERSPECTIVES.VALUE# |
Common |
All
perspectives applied to the object, listed as HTML links, which, when
clicked, return a search result of all objects sharing the same perspective |
| #ITEM.PERSPECTIVES[n]# |
Common |
The
fully-formed hyperlink to a page that lists links to all objects that
are classified under the specified perspective
Note:
If the relevant perspective has not been applied to the object, the
link does not display. |
| #ITEM.PERSPECTIVES[n].LABEL# |
Common |
The
display name of the nth perspective
Note:
Use this tag in conjunction with the #ITEM.PERSPECTIVES[n].VALUE#
tag to render the targeted perspective. For example:
<a href="#item.perspectives2.value#">
#item.perspectives2.label#</a>
This construction
lists the second perspective in the list of perspectives associated
with the object. The perspective displays as a link, which, when clicked,
returns a search result of all objects sharing the same perspective. |
| #ITEM.PERSPECTIVES[n].VALUE# |
Common |
The
URL that renders the value of the nth perspective in the list
of perspectives applied to the object
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.perspectives2.value#">
#item.perspectives2.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when it is
rendered. Otherwise, the link might render even if no nth perspective
is present. In such a case, users receive an HTML error message when
they click the link. |
| #ITEM.PERSPECTIVES[n].STYLE# |
Common |
The
style applied to the object's perspective attribute
Note:
Use this tag inside a <font class=" "> tag. For example:
<a href="#item.perspectives[n].value#">
<font class="#item.perspectives[n].style#">
#item.perspectives[n].label#
</font></a> |
| #ITEM.PERSPECTIVES[n].IMAGE# |
Common |
This
tag renders the icon image that is associated with a perspective. The
value [n], refers to the perspective's position on the list
of perspectives that are selected for the object. If the object has
only one perspective, the value is 1.
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.perspectives3.image#">
You can use this
tag in conjunction with the #item.perspectives[n].value# and
#item.perspectives[n].label# tags to set up a linked image.
Users click the image to go to a page that lists links to all objects
classified by the specified perspective.
For example:
<a href="#item.perspectives4.value#">
<img src="#item.perspectives4.image#" alt="#item.persepctives4.label#">
</a>
If every perspective
in a page group does not have a related perspective icon, you can set
up a conditional statement using <oracle></oracle> tags
and PL/SQL that renders the icon when it is present and prevents attempts
at rendering when it is not present.
For example:
<oracle>
if length('#item.perspectives1.image#') > 0 then
htp.p('<a href="#item.perspectives1.value#"><img
src="#item.perspectives1.image#"></a>');
else
htp.p('<a href="#item.perspectives1.value#">
#item.perspectives1.label#</a>');
end if;
</oracle> |
| #ITEM.PROPERTYSHEET# |
Common |
The
fully-formed hyperlink to the object's property sheet |
| #ITEM.PROPERTYSHEET.LABEL# |
Common |
Property
Sheet |
| #ITEM.PROPERTYSHEET.VALUE# |
Common |
The
URL that renders the object's property sheet
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.propertysheet.value#">
#item.propertysheet.label#</a> |
| #ITEM.PROPERTYSHEET.IMAGE# |
Common |
The
property sheet icon,
Note:
The icon that this tag renders depends on the type of object the property
sheet describes.
This tag must be
placed in an <img src> tag to render properly:
<img src="#item.propertysheet.image#">
You can use this
tag in conjunction with the #item.propertysheet.value# and #item.propertysheet.label#
tags to link to the object's property sheet.
For example:
<a href="#item.propertysheet.value#">
<img src="#item.propertysheet.image#" alt="#item.propertysheet.label#">
</a> |
| #ITEM.UPDATEDFLAG# |
Common |
The
fully-formed hyperlink to a page that lists links to all recently updated
objects
Note:
If no objects have been updated recently, the link does not display. |
| #ITEM.UPDATEDFLAG.LABEL# |
Common |
Recently
Updated Items |
| #ITEM.UPDATEDFLAG.VALUE# |
Common |
The
URL that renders a page that contains a linked list of all newly updated
objects
Note: What
qualifies as a newly updated object is configured at the page group
level on the page group properties Items tab.
Use this tag in
an HTML href tag. For example:
<a href="#item.updatedflag.value#">
#item.updatedflag.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if no object has been updated
within the specified period; in which case, users would receive an HTML
error message when they click the link. |
| #ITEM.UPDATEDFLAG.IMAGE# |
Common |
The
Recently Updated Items icon,
Note:
You can use this tag in conjunction with the #item.updatedflag.value#
and #item.updatedflag.label# tags to link the updated icon to a URL.
The URL target is a dynamically assembled page that lists links to all
updated objects in the portal to which the user has access privileges.
For example:
<a href="#item.updatedflag.value#">
<img src="#item.updatedflag.image#" alt="#item.updatedflag.label#">
</a>
Used alone, this
tag must be placed in an <img src> tag to render properly:
<img src="#item.updatedflag.image#"> |
| #ITEM.FUNCTION# |
Common |
A
URL that renders a page listing hyperlinks to all functions associated
with the object
This tag renders
the same information as the tag #ITEM.ITEMFUNCTION.VALUE#. |
| #ITEM.ITEMFUNCTION.LABEL# |
Common |
Associated
Functions |
| #ITEM.ITEMFUNCTION.VALUE# |
Common |
A
URL that renders a page listing hyperlinks to all functions associated
with the object |
| #ITEM.ITEMFUNCTION[n]# |
Common |
A
fully-formed link to the nth function associated with the object
Note:
If the object does not have an nth associated function, the
link does not display. |
| #ITEM.ITEMFUNCTION[n].LABEL# |
Common |
The
display name of the nth function |
| #ITEM.ITEMFUNCTION[n].VALUE# |
Common |
In
the presence of multiple associated functions, the URL to the function
in the nth position on the list of functions associated with
the object
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.itemfunction3.value#">
#item.itemfunction3.label#</a>
This results in
a linked label of the third function associated with the object. Users
click the label to perform the related function.
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if an nth function
has not been associated with the object; in which case, users would
receive an HTML error message when they click the link. |
| #ITEM.ITEMFUNCTION[n].STYLE# |
Common |
The
style associated with the object function
Note:
Use this tag inside a <font class=" "> tag. For example:
<a href="#item.function[n].value#">
<font class="#item.function[n].style#">
#item.function[n].label#
</font></a> |
| #ITEM.PUBLISHDATE# |
Common |
The
string value of the object's publish date, labeled and wrapped in its
associated style
This tag is equivalent
to:
<font class="#item.publishdate.style#">
#item.publishdate.label#: #item.publishdate.value#
</font>
Note:
This tag uses the format:
Publish Date: DD-MON-YYYY
HH12:MI PM, that is,
Publish Date: 06-MAY-2004 01:45 PM |
|
#ITEM.PUBLISHDATE.LABEL# |
Common |
Publish
Date |
|
#ITEM.PUBLISHDATE.VALUE# |
Common |
The
string value of the object's publish date
Note:
This tag uses the format:
DD-MON-YYYY HH12:MI
PM, that is,
06-MAY-2004 01:45 PM |
|
#ITEM.PUBLISHDATE.STYLE# |
Common |
The
style applied to the object's publish date
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.publishdate.style#">
#item.publishdate.label#: #item.publishdate.value#
</font> |
| #ITEM.CATEGORY# |
Common |
The
fully-formed hyperlink to a search results page that links to all objects
classified under the relevant category
Note:
If a category has not been applied to the object, the link does not
display. |
| #ITEM.CATEGORY.LABEL# |
Common |
The
display name of the category assigned to the object |
| #ITEM.CATEGORY.VALUE# |
Common |
The
URL that renders search results for a search run against the category's
display name
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.category.value#">
#item.category.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if no category has been applied
to the object; in which case, users would receive an HTML error message
when they click the link. |
| #ITEM.CATEGORY.STYLE# |
Common |
The
style applied to the object's category
Note:
Use this tag inside a <font class=" "> tag. For example:
<a href="#item.category.value#">
<font class="#item.category.style#">
#item.category.label#
</font></a> |
| #ITEM.CATEGORY.IMAGE# |
Common |
The
image associated with a category
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.category.image#">
You can use this
tag in conjunction with the #item.category.value# and #item.category.label#
tags to set up a linked image. Users click the image to go to a page
that lists links to all objects classified by the specified category.
For example:
<a href="#item.category.value#">
<img src="#item.category.image#" alt="#item.category.label#">
</a>
If every category
in a page group does not have a related category icon, you can set up
a conditional statement using <oracle></oracle> tags and
PL/SQL to render the icon when it's present and to prevent attempts
at rendering when the icon is not present.
For example:
<oracle>
if length('#item.category.image#') > 0 then
htp.p('<a href="#item.category.value#"><img
src="#item.category.image#"></a>');
else
htp.p('<a href="#item.category.value#">
#item.category.label#</a>');
end if;
</oracle> |
| #ITEM.UPDATEDATE# |
Common |
The
string value of the date of the object's latest update, labeled and
wrapped in its associated style
This tag is equivalent
to:
<font class="#item.updatedate.style#">
#item.updatedate.label#: #item.updatedate.value#
</font>
Note:
This tag uses the format:
Date Updated: DD-MON-YYYY,
that is, Date Updated: 06-MAY-2004 |
|
#ITEM.UPDATEDATE.LABEL# |
Common |
Date
Updated |
|
#ITEM.UPDATEDATE.VALUE# |
Common |
The
string value of the date of the object's latest update
Note:
This tag uses the format:
DD-MON-YYYY, that
is, 06-MAY-2004 |
|
#ITEM.UPDATEDATE.STYLE# |
Common |
The
style applied to the object's update value
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.updatedate.style#">
#item.updatedate.label#: #item.updatedate.value#
</font> |
| #ITEM.UPDATOR# |
Common |
The
username of the object updator, labeled and wrapped in its associated
style
This tag is equivalent
to:
<font class="#item.updator.style#">
#item.updator.label#: #item.updator.value#
</font> |
|
#ITEM.UPDATOR.LABEL# |
Common |
Last
Updated By |
|
#ITEM.UPDATOR.VALUE# |
Common |
The
username of the object updator |
|
#ITEM.UPDATOR.STYLE# |
Common |
The
style applied to the object updator
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.updator.style#">
#item.updator.label#: #item.updator.value#
</font> |
|
#ITEM.EXPIREDATE.LABEL# |
Item |
Expire
Date |
|
#ITEM.EXPIREDATE.VALUE# |
Item |
The
string value of the date the item expires
Note:
This tag uses the format:
DD-MON-YYYY HH12:MI
PM, that is,
06-MAY-2004 01:45 PM |
|
#ITEM.EXPIREDATE.STYLE# |
Item |
The
style applied to the item's expire date
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.expiredate.style#">
#item.expiredate.label#:
#item.expiredate.value#</font> |
| #ITEM.VERSIONS# |
Item |
The
fully-formed hyperlink to a page listing all available versions of the
item
Note:
Item versioning must be enabled for the page group for this hyperlink
to display. |
|
#ITEM.VERSIONS.LABEL# |
Item |
Versions |
|
#ITEM.VERSIONS.VALUE# |
Item |
The
URL that renders a page that lists hyperlinks to each of the item's
versions (a location within the portal), indicates which is the current
(displayed) version, shows when the item was last updated, and lists
the user who last updated the item
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.versions.value#">
#item.versions.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if versioning is not enabled
for the page group; in which case, users would receive an HTML error
message when they click the link. |
| #ITEM.VERSIONS.IMAGE# |
Item |
The
versions icon,
Note:
You can use this tag in conjunction with the #item.versions.value# and
#item.versions.label# tags to link the versions icon to a URL that dynamically
assembles a page that lists links to all versions of the given item.
For example:
<a href="#item.versions.value#">
<img src="#item.versions.image#" alt="#item.versions.label#">
</a>
This tag must be
placed in an <img src> tag to render properly:
<img src="#item.versions.image#"> |
| #ITEM.DOCUMENTSIZE# |
Item |
The
size of the uploaded file or image item, labeled and wrapped in its
associated style
This tag is equivalent
to:
<font class="#item.documentsize.style#">
#item.documentsize.lable#: #item.documentsize.value#
</font> |
|
#ITEM.DOCUMENTSIZE.LABEL# |
Item |
Document
Size |
|
#ITEM.DOCUMENTSIZE.VALUE# |
Item |
The
size of the uploaded file or image item |
|
#ITEM.DOCUMENTSIZE.STYLE# |
Item |
The
style applied to the item's document size
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.documentsize.style#">
#item.documentsize.label#: #item.documentsize.value#
</font> |
| #ITEM.VIEWASHTML# |
Item |
The
fully-formed hyperlink to the item displayed as HTML
This lets you see
binary files with textual content as a Web page. Such files include
Microsoft Word documents or Excel spreadsheets.
Note:
If the item cannot be displayed as HTML, the link does not display. |
| #ITEM.VIEWASHTML.LABEL# |
Item |
View
as HTML |
| #ITEM.VIEWASHTML.VALUE# |
Item |
The
URL that renders the file item content as HTML
This lets you see
binary files with textual content as a Web page. Such files include
Microsoft Word documents or Excel spreadsheets.
Note:
Use this tag in an HTML href tag. For example:
<a href="#item.viewashtml.value#">
#item.viewashtml.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if the item cannot be viewed
as HTML; in which case, users would receive an HTML error message when
they click the link. |
| #ITEM.VIEWASHTML.IMAGE# |
Item |
The
view as HTML icon,
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.viewashtml.image#">
You can use this
tag in conjunction with the #item.viewashtml.value# and #item.viewashtml.label#
tags to link to an HTML view of the binary file (that is, the Microsoft
Word file, the Excel spreadsheet, and the like).
For example:
<a href="#item.viewashtml.value#">
<img src="#item.viewashtml.image#" alt="#item.viewashtml.label#">
</a> |
| #ITEM.THEMES# |
Item |
The
fully-formed hyperlink to the linguistic themes of the item's content
Note:
If Oracle Text is not enabled, the link does not display. |
| #ITEM.THEMES.LABEL# |
Item |
View
Themes
Note:
This attribute is used in conjunction with a portal search. It displays
only if Oracle Text is enabled and only for File and Simple File items,
or items of a type based on the Simple File item type. |
| #ITEM.THEMES.VALUE# |
Item |
The
URL that renders the linguistic themes of the content
Note:
This attribute is used in conjunction with a portal search. It displays
only if Oracle Text is enabled and only for File and Simple File items,
or items of a type based on the Simple File item type.
Use this tag in
an HTML href tag. For example:
<a href="#item.themes.value#">
#item.themes.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if Oracle Text is not turned
on; in which case, users would receive an HTML error message when they
click the link. |
| #ITEM.THEMES.IMAGE# |
Item |
The
themes icon,
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.themes.image#">
You can use this
tag in conjunction with the #item.themes.value# and #item.themes.label#
tags to link to the item's linguistic themes.
For example:
<a href="#item.themes.value#">
<img src="#item.themes.image#" alt="#item.themes.label#">
</a>
This attribute is
used in conjunction with a portal search. It displays only if Oracle
Text is enabled and only for File and Simple File items, or items of
a type based on the Simple File item type. |
| #ITEM.GIST# |
Item |
The
fully-formed hyperlink to a paragraph summarizing the item's content
(its gist)
Note:
If Oracle Text is not enabled, the link does not display. |
| #ITEM.GIST.LABEL# |
Item |
View
Gist
Note:
This attribute is used in conjunction with a portal search. It displays
only if Oracle Text is enabled and only for File and Simple File items,
or items of a type based on the Simple File item type. |
| #ITEM.GIST.VALUE# |
Item |
The
URL that renders a paragraph that summarizes the document
Note:
This attribute is used in conjunction with a portal search. It displays
only if Oracle Text is enabled and only for File and Simple File items,
or items of a type based on the Simple File item type.
Use this tag in
an HTML href tag. For example:
<a href="#item.gist.value#">
#item.gist.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if Oracle Text is not turned
on; in which case, users would receive an HTML error message when they
click the link.
|
| #ITEM.GIST.IMAGE# |
Item |
The
gist icon,
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.gist.image#">
You can use this
tag in conjunction with the #item.gist.value# and #item.gist.label#
tags to link to a summary paragraph about the item.
For example:
<a href="#item.gist.value#">
<img src="#item.gist.image#" alt="#item.gist.label#">
</a>
This attribute is
used in conjunction with a portal search. It displays only if Oracle
Text is enabled and only for File and Simple File items, or items of
a type based on the Simple File item type. |
| #ITEM.CONTENT# |
Item |
The
item content
- If the item display
option is set to display item content directly on the page, the item
content is rendered on the page.
- If the item display
option is set to display as a link, an HTML link, using the item's
title or Display Name is rendered on the page.
|
| #ITEM.CONTENT.LABEL# |
Item |
Item
Content
Note:
To render the object's display name, use #item.title.value#. |
| #ITEM.CONTENT.VALUE# |
Item |
The
item content
This tag renders
differently for different item types and for each display option, whether
content is displayed on the page or as a link on the page:
- TEXT--On
page: The text is rendered; As link: The
item's path-based URL is rendered (see Note)
- PL/SQL-- On
page: The string value from the execution of the PL/SQL code
is rendered; As link: The item's path-based URL is
rendered (see Note)
- FILE-- On
page: The file content is rendered; As link:
The item's path-based URL is rendered (see Note)
- URL-- On
page: The content from the URL is rendered; As link:
The item's path-based URL is rendered (see Note)
- IMAGE--always
displays the image path. You can view the image directly on the page
by placing this tag in an <img src=" "> tag. If other types
of items will be included in a region that uses an HTML Content Layout
template, you can use <oracle></oracle> tags to set up
a condition that considers the item type and renders the item appropriately.
Note:
The value displayed in the browser window depends not only on the object
type being rendered, but also on the display option that was selected
for the object in OracleAS Portal. When the link display option is selected,
the resulting URL that displays in a region formatted with a Content
Layout template is not linked. That is, users cannot click the URL to
navigate to the object. To make the URL navigable when an object's display
option is set to link, enclose the substitution tag in an HREF
tag. This renders a clickable URL that renders the object.
When an HTML Content
Layout template is applied, problems can arise when different objects
in the same region have different display option attribute values. See
the example following this table for a way to successfully construct
a Content Layout template that displays both linked and directly displayed
objects in the same region. The example also demonstrates a template
that can be applied to both portlet and item regions. |
| #ITEM.CONTENT.STYLE# |
Item |
The
style applied to the item's label
Use this tag inside
a <font class=" "> tag. For example:
<a href="#item.content.value#">
<font class="#item.content.style#">
#item.content.label#
</font></a> |
| #ITEM.ITEMTYPEICON# |
Item |
The
icon denoting the item's type with ALT text, aligned and sized as specified
in the portal
This tag is equivalent
to, for example:
<img src="#item.itemtypeicon.value#"
alt="#item.itemtypeicon.label#" border="0" align="absbottom" width="16"
height="16">
The conditions that
determine which image is rendered include:
- For items that
have an associated file of a recognized MIME type, this tag renders
a URL of an image that identifies the MIME type, for example, .
The recognized MIME types are: doc, exe, gif, html, htm, jpg, peg,
pdf, ppt, rtf, txt, wav, xls, zip.
- For other items,
this tag renders the URL of the image entered for the item type's
Image attribute. If no image was provided, the built-in basetype icon
is used.
|
| #ITEM.ITEMTYPEICON.LABEL# |
Item |
The
type of item:
The conditions that
determine which text is rendered include:
- For items that
have an associated file of a recognized MIME type, this tag renders
the text that identifies the MIME type, for example, Adobe Portable
Document Format.
The recognized MIME types are: doc, exe, gif, html, htm, jpg, peg,
pdf, ppt, rtf, txt, wav, xls, zip.
- For other items,
this tag renders the value entered for the item type's Display Name
attribute.
When the page group
is rendered in a non-default language, the text is translated automatically
when a translation is available in the language. For example:
- Translations
for recognized MIME types and built-in item types are available.
- Translation for
a custom item type is available when a translation is provided for
the item type's Display Name attribute.
|
| #ITEM.ITEMTYPEICON.VALUE# |
Item |
The
URL of the image that represents the item type
The conditions that
determine which image is rendered include:
- For items that
have an associated file of a recognized MIME type, this tag renders
a URL of an image that identifies the MIME type, for example, .
The recognized MIME types are: doc, exe, gif, html, htm, jpg, peg,
pdf, ppt, rtf, txt, wav, xls, zip.
- For other items,
this tag renders the URL of the image entered for the item type's
Image attribute. If no image was provided, the built-in basetype icon
is used.
You can use the
#ITEM.ITEMTYPEICON.LABEL# and #ITEM.ITEMTYPEICON.VALUE# tags together
to render an icon of a standard size and its ALT text. For example:
<img src="#item.itemtypeicon.value#"
alt="#item.itemtypeicon.label#" WIDTH="16" HEIGHT="16">
The WIDTH and HEIGHT
values guarantee consistency in the rendered icons' size. |
| #ITEM.SUBSCRIBE# |
Item |
A
fully-formed subscription link
Note:
If approvals and notifications are not enabled, the link does not display.
Use this tag only when approvals and notifications are enabled for the
page group that owns the page where the item is placed. |
| #ITEM.SUBSCRIBE.LABEL# |
Item |
Subscribe
or Unsubscribe
You can use this
tag in conjunction with the #item.subscribe.value# tag to render a Subscribe
or an Unsubscribe link. For example:
<a href="#item.subscribe.value#">
#item.subscribe.label#</a>
You can also wrap
the value tag around your own label text. But keep in mind, all items
placed in the same region use whatever static label you enter.
Note:
Use this tag only when approvals and notifications are enabled for the
page group that owns the page where the item is placed.
The value that is
rendered by this tag depends on the state of the item. If the item is
not yet subscribed to, #item.subscribe.label# returns Subscribe.
If the item is already subscribed to, #item.subscribe.label# returns
Unsubscribe. |
| #ITEM.SUBSCRIBE.VALUE# |
Item |
The
URL that enables users to subscribe to an item or the URL that
enables users to unsubscribe from an item
Use this tag in
an HTML href tag. For example:
<a href="#item.subscribe.value#">
#item.subscribe.label#</a>
Consider placing
the VALUE tag in a PL/SQL conditional statement to control when to render
it. Otherwise, the link might render even if item subscriptions are
not enabled; in which case, users would receive an HTML error message
when they click the link.
Note:
Use this tag only when approvals and notifications are enabled for the
page group that owns the page where the item is placed.
The value that is
rendered by this tag depends on the state of the item. If the item is
not yet subscribed to, #item.subscribe.value# returns the URL that allows
users to subscribe to the item. If the item is already subscribed to,
#item.subscribe.value# returns the URL that allows users to unsubscribe
from the item. |
| #ITEM.SUBSCRIBE.IMAGE# |
Item |
The
Subscribe icon,
Note:
This tag must be placed in an <img src> tag to render properly:
<img src="#item.subscribe.image#">
You can use this
tag in conjunction with the #item.subscribe.value# and #item.subscribe.label#
tags to render the item's subscribe link.
For example:
<a href="#item.subscribe.value#">
<img src="#item.subscribe.image#" alt="#item.subscribe.label#">
</a>
Once an item is
subscribed to, OracleAS Portal automatically switches this image to
the unsubscribe icon, .
Note:
Use this tag only when approvals and notifications are enabled for the
page group that owns the page where the item is placed. |
| #ITEM.VERSION_NUMBER# |
Item |
The
numeric value that identifies a particular item version, labeled and
wrapped in its associated style
This tag is equivalent
to:
<font class="#item.version_number.style#">
#item.version_number.label#: #item.version_number.value#
</font> |
| #ITEM.VERSION_NUMBER.LABEL# |
Item |
Version
Number |
| #ITEM.VERSION_NUMBER.VALUE# |
Item |
The
numeric value that identifies a particular item version |
| #ITEM.VERSION_NUMBER.STYLE# |
Item |
The
style applied to an item's version number.
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.version_number.style#">
#item.version_number.label#: #item.version_number.value#
</font> |
| #ITEM.[attribute_name]# |
Item |
The
fully-formed link to the objects associated with the attribute's value |
| #ITEM.[attribute_name].LABEL# |
Item |
The
custom attribute display name |
| #ITEM.[attribute_name].VALUE# |
Item |
The
stored value of the custom attribute |
| #ITEM.[attribute_name].STYLE# |
Item |
The
style applied to the custom attribute
Note:
Use this tag inside a <font class=" "> tag. For example:
<font class="#item.[attribute
name].style#">
#item.[attribute name].label#
#item.[attribute name].value#
</font> |
| #ITEM.PORTLETCONTENT# |
Portlet |
The
portlet
This tag renders
the same content as the #item.portletcontent.value# tag. |
| #ITEM.PORTLETCONTENT.LABEL# |
Portlet |
Portlet
Content
Note:
Use #item.title.value# to render the portlet's display name. |
| #ITEM.PORTLETCONTENT.VALUE# |
Portlet |
The
portlet
For example, If
the Favorites portlet is added to a region formatted with an HTML content
layout containing this tag, this tag renders the Favorites portlet. |