htp.linkRev htp.listHeader htp.listingOpen, htp.listingClose htp.listItem

1-30 Oracle Fusion Middleware PLSQL Web Toolkit Reference

1.56 htp.linkRev

This generates the LINK tag with the REV attribute, which gives the relationship described by the hypertext link from the target to the anchor. This is the opposite of htp.linkRel . This tag indicates a relationship between documents, but does not create a link. To create a link, use htp.anchor, htp.anchor2 . Table 1–55 describes the properties of htp.linkRev.

1.57 htp.listHeader

This generates the LH and LH tags, which print an HTML tag at the beginning of the list. Table 1–56 describes the properties of htp.listHeader. Table 1–54 htp.linkRel Properties Directions Syntax: htp.linkRel crel in varchar2 curl in varchar2 ctitle in varchar2 DEFAULT NULL; htf.linkRel crel, curl, ctitle return varchar2; Parameters: crel - the value for the REL attribute. curl - the value for the HREF attribute. ctitle - the value for the TITLE attribute. Generates: LINK REL=crel HREF=curl TITLE=ctitle Table 1–55 htp.linkRev Properties Definitions Syntax: htp.linkRev crev in varchar2 curl in varchar2 ctitle in varchar2 DEFAULT NULL; htf.linkRev crev, curl, ctitle return varchar2; Parameters: crev - the value for the REV attribute. curl - the value for the HREF attribute ctitle - the value for the TITLE attribute. Generates LINK REV=crev HREF=curl TITLE=ctitle Table 1–56 htp.listHeader Properties Definitions Syntax: htp.listHeader ctext in varchar2 cattributes in varchar2 DEFAULT NULL; htf.listHeader ctext, cattributes return varchar2; Parameters: ctext - the text to place between LH and LH. cattributes - other attributes to be included as-is in the tag. Generates: LH cattributesctextLH The htp and htf Packages 1-31

1.58 htp.listingOpen, htp.listingClose

This generates the LISTING and LISTING tags, which mark a section of fixed-width text in the body of an HTML page. Table 1–57 describes the properties of htp.listingOpen, htp.listingClose.

1.59 htp.listItem

This generates the LI tag, which indicates a list item. Table 1–58 describes the properties of htp.listItem.

1.60 htp.mailto