From 5613b07fc8ba856fad878a5059ded1c163c8fe98 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 22 Feb 2024 15:12:18 -0700 Subject: [PATCH] updated MNA marking --- web-server/plugins/slycat-mna-marking.py | 10 ++++++++++ web-server/plugins/slycat-no-marking.py | 7 ------- 2 files changed, 10 insertions(+), 7 deletions(-) create mode 100644 web-server/plugins/slycat-mna-marking.py delete mode 100644 web-server/plugins/slycat-no-marking.py diff --git a/web-server/plugins/slycat-mna-marking.py b/web-server/plugins/slycat-mna-marking.py new file mode 100644 index 000000000..ca286bf8c --- /dev/null +++ b/web-server/plugins/slycat-mna-marking.py @@ -0,0 +1,10 @@ +# Copyright (c) 2013, 2018 National Technology and Engineering Solutions of Sandia, LLC . Under the terms of Contract +# DE-NA0003525 with National Technology and Engineering Solutions of Sandia, LLC, the U.S. Government +# retains certain rights in this software. + +def register_slycat_plugin(context): + page = """
Markings Not Applied
""" + badge = """
Markings Not Applied
""" + + context.register_marking("mna", "Markings Not Applied", badge, page, page) + diff --git a/web-server/plugins/slycat-no-marking.py b/web-server/plugins/slycat-no-marking.py deleted file mode 100644 index ac1db55d4..000000000 --- a/web-server/plugins/slycat-no-marking.py +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2013, 2018 National Technology and Engineering Solutions of Sandia, LLC . Under the terms of Contract -# DE-NA0003525 with National Technology and Engineering Solutions of Sandia, LLC, the U.S. Government -# retains certain rights in this software. - -def register_slycat_plugin(context): - context.register_marking("mna", "None", "") -