NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can brand the following files.

NamePurpose
logo.pngA logo (41 pixels high)
footer.htmlA snippet of HTML that is at the bottom. If included, %VERSION% will be replaced with the client version number (see #6).
newAccountUrl.txtURL for "New account" button on login screen
accountHelpUrl.txtURL for "Account help" button on login screen
downloaderUrl.txtURL for "Get Data Retriever" button in Download popup
versionSuffix.txtAn optional string that will be appended to the version number, if the version number is included in the footer
customMenu.jsonThis is the top horizontal menu. Look at the default (nbia) for an example.

    It is a JSON array, each top level object represents one top-level menu item:


Name

...

Purpose
"entryTitle"

...

The text of the top level menu item

...

...

"menuData"

...

"target" within "menuData" is the URL of the top level menu item if you don't use a dropdown menu for this top level item

...

...

"menuDataDropdown"

...

an array of dropdown menu items:
 "menuText"

...

the text for the dropdown menu item

...

 "target"

...

the URL for the dropdown menu item

...

Example

Code Block
[
    {
        "entryTitle": "Home",
        "menuData": {
            "target": "http://www.cancerimagingarchive.net"
        }
    },
    {
        "entryTitle": "News",
        "menuData": {
            "target": "http://www.cancerimagingarchive.net/news/"
        }
    },
    {
        "entryTitle": "About Us",
        "menuDataDropdown": [
            {
                "menuText": "About The Cancer Imaging Archive (TCIA)",
                "target": "http://www.cancerimagingarchive.net/about-the-cancer-imaging-archive-tcia"
            },
            {
                "menuText": "About the Cancer Imaging Program (CIP)",
                "target": "http://www.cancerimagingarchive.net/about-the-cancer-imaging-program-cip/"
            },
            {
                "menuText": "About the University of Arkansas for Medical Sciences (UAMS)",
                "target": "http://www.cancerimagingarchive.net/about-the-university-of-arkansas-for-medical-sciences-uams/"
            }
        ]
    },
...

 "target"