Add custom links to Validate

This section explains how to customize the links that appear under the Technical Library, Support, or Resources headings in Validate.

To customize a link, modify the corresponding template file in <server_install>/clients:

  • Rename library.template to library.json.
  • Rename support.template to support.json.
  • Rename resources.template to resources.json.

Use the following format for the files:

Copy
[
  {
    "title": "Custom link",
    "title_ja": "カスタムリンク",
    "url": "https://yourlinkgoeshere.com",
    "url_ja": "https://linktoJPcontent.com",
    "show_link": "true"
  },

  {
    "title": "Custom link 2",
    "title_ja": "カスタム リンク 2",
    "url": "https://yourlinkgoeshere2.com",
    "show_link": "false"
  },

  {
    "title": "Custom link 3",
    "url": "https://yourlinkgoeshere3.com"
  }
]

where:

  • title is the name of the link you want to add to the portal.

  • title_ja (optional) is the Japanese translation of the title.

  • url is the web address of the link you want to add to the portal.

  • url_ja (optional) is the web address of the Japanese link, if applicable.

  • show_link (optional) determines whether you want to display or hide the link. If unspecified, the default value is true.

If the JSON file is not formatted properly, the default hard-coded documentation links are shown for the corresponding section.