diff --git a/source/Styles/xb3/jst/includes/nav.jst b/source/Styles/xb3/jst/includes/nav.jst
index 725f495..52ac2ef 100644
--- a/source/Styles/xb3/jst/includes/nav.jst
+++ b/source/Styles/xb3/jst/includes/nav.jst
@@ -166,6 +166,11 @@ echo( '
');
}
echo( '');
echo( '- At a Glance
');
+ $file = file_exists("/tmp/factorydiag");
+ if($file) {
+ echo( '- XER10 Test Script
');
+ echo( '- XER10 Status Report
');
+ }
echo( '- Connection');
echo( '
');
echo( '- Status
');
diff --git a/source/Styles/xb3/jst/statusScript.jst b/source/Styles/xb3/jst/statusScript.jst
new file mode 100644
index 0000000..5389d13
--- /dev/null
+++ b/source/Styles/xb3/jst/statusScript.jst
@@ -0,0 +1,52 @@
+%
+/*
+ If not stated otherwise in this file or this component's Licenses.txt file the
+ following copyright and licenses apply:
+
+ Copyright 2018 RDK Management
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+?>
+% include('includes/header.jst'); ?>
+% include('includes/utility.jst'); ?>
+
+% include('includes/nav.jst'); ?>
+
+%
+ $partnerId = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.PartnerId");
+ $FirmwareName = getStr("Device.DeviceInfo.X_CISCO_COM_FirmwareName");
+ $ModelName = getStr("Device.DeviceInfo.ModelName");
+
+?>
+
+ % if(is_device_router()) { ?>
+
Router > XER10 Status Report
+ % } else { ?>
+ Gateway > XER10 Status Report
+ % } ?>
+
+ % exec("/bin/touch /tmp/Robert2.txt"); ?>
+
+
+% include('includes/footer.jst'); ?>
diff --git a/source/Styles/xb3/jst/testScript.jst b/source/Styles/xb3/jst/testScript.jst
new file mode 100644
index 0000000..75fe599
--- /dev/null
+++ b/source/Styles/xb3/jst/testScript.jst
@@ -0,0 +1,52 @@
+%
+/*
+ If not stated otherwise in this file or this component's Licenses.txt file the
+ following copyright and licenses apply:
+
+ Copyright 2018 RDK Management
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+?>
+% include('includes/header.jst'); ?>
+% include('includes/utility.jst'); ?>
+
+% include('includes/nav.jst'); ?>
+
+%
+ $partnerId = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.PartnerId");
+ $FirmwareName = getStr("Device.DeviceInfo.X_CISCO_COM_FirmwareName");
+ $ModelName = getStr("Device.DeviceInfo.ModelName");
+
+?>
+
+ % if(is_device_router()) { ?>
+
Router > Test Script
+ % } else { ?>
+ Gateway > Test Script
+ % } ?>
+
+ % exec("/bin/touch /tmp/Robert1.txt"); ?>
+
+
+% include('includes/footer.jst'); ?>