Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.95 KB

notes.md

File metadata and controls

50 lines (41 loc) · 1.95 KB

Notes

Deprecated RADIUSS features

April 2022: https://software.llnl.gov/radiuss/ launched via https://github.com/llnl/radiuss. See tasks in issue 567. If we ever want/need to reinstate RADIUSS browsing, branding, and other features on this site, here's what to do:

  • Add /explore/#/RADIUSS back into the catalog browse by adding this code (as lines 154-168) to category_info.json:
        "RADIUSS": {
            "title": "RADIUSS",
            "hash": "RADIUSS",
            "icon": {
                "path": "/assets/images/radiuss.svg",
                "alt": "RADIUSS logo"
            },
            "description": {
                "short": "Rapid Application Development via an Institutional Universal Software Stack",
                "long": ": LLNL's RADIUSS project aims to broaden usage across LLNL and the open source community of a set of libraries and tools used for HPC scientific application development."
            },
                "topics":[
                "radiuss"
            ]            
        },
  • Comment back in lines 31-38 in Category.service.js
    this.containsRadiussTopics = function(catTopics, repoTopics) {
        for (var i = 0; i < catTopics.length; i++) {
            if ($.inArray(catTopics[i], repoTopics) != -1 && $.inArray('radiuss', repoTopics) != -1) {
                return true;
            }
        }
        return false;
    };

No changes yet, if ever: