@URLHistory (Formula Language)

Used for navigating, saving, and reloading a Uniform Resource Locator (URL) history list. The URL history list keeps track of all the Web pages you have visited. The history list is used for the Next and Previous buttons and for the Web Tours.

Syntax

@URLHistory( [ command ] )

Parameters

[ command ]

Keyword. The name of the @URLHistory command you want to use:

  • [NEXT]

    Moves to the next URL in the history list.

  • [PREV]

    Moves to the previous URL in the history list.

  • [RELOAD]

    Reloads the current history list from the Web Tour document.

  • [SHOW]

    Displays the History dialog box.

  • [SAVE]

    Saves the history list into a new Web Tour document, which a user can reload later to follow that history.

Usage

The @URLHistory function works from the Notes/Domino workstation only and should only be used with either the Server Web Navigator or Personal Web Navigator database.

Examples

This example moves to the next URL in the history list.
@URLHistory([NEXT])
This example moves to the previous URL in the history list.
@URLHistory([PREV])
This example displays the History dialog box.
@URLHistory([SHOW])
This example saves the history list into a new Web Tour document that a user can reload later to follow that history.
@URLHistory([SAVE])
This example reloads the history list from the Web Tour document.
@URLHistory([RELOAD])