projectstartpagelinks Configuration

This configuration is optional.

No dedicated Cadenza feature requires this configuration.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<projectStartPageLinksConfiguration
<projectStartPageLinks
signed
required
=
boolean

True for links to e.g. custom applications to which Cadenza adds the username, project variables, and a signature before they are accessed.

Signed links are visible only to users with the "Edit and manage" authorization level for the project.

False for simple static links.

target
optional
=
xsd:string
POPUP
NEW_WINDOW
CURRENT_WINDOW
IDENTIFIED_WINDOW

Defines where to display the link target:

  • NEW_WINDOW: a new browser tab or window (depending on browser configuration)

  • CURRENT_WINDOW: the current browser tab or window

  • POPUP: a Cadenza window

  • IDENTIFIED_WINDOW: a new browser tab or window initially, every subsequent opening will use that same browser tab/window (unless it was closed by the user)

Default: NEW_WINDOW

<url
>
required
string

For a static link: valid URL.

For a signed link: base URL that Cadenza extends by the username, values of project variables, and a signature.

</url>
<displayText
>
optional
string

Display name of the link.

Default: the URL itself

</displayText>
>
requiredmax. unbounded
</projectStartPageLinks>
<signatureSecretEncoded
>
optional
string

A string shared by Cadenza and the custom application; encoded (see Secrets in Configuration)

</signatureSecretEncoded>
>
required
</projectStartPageLinksConfiguration>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    projectstartpagelinks:
      projectStartPageLinks:
      - signed: true
        target: "POPUP"
        url: "text"
        displayText: "text"
      - signed: true
        target: "POPUP"
        url: "text"
        displayText: "text"
      signatureSecretEncoded: "text"

Filename: projectstartpagelinks-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<projectStartPageLinksConfiguration>
  <projectStartPageLinks signed="true" target="POPUP">
    <url>text</url>
    <displayText>text</displayText>
  </projectStartPageLinks>
  <projectStartPageLinks signed="true" target="POPUP">
    <url>text</url>
    <displayText>text</displayText>
  </projectStartPageLinks>
  <signatureSecretEncoded>text</signatureSecretEncoded>
</projectStartPageLinksConfiguration>