Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.

Commit 1077aae

Browse files
authored
Merge pull request #175 from CaroMac/next
update code in doc to match code in repo
2 parents 5645fc4 + 751f389 commit 1077aae

File tree

6 files changed

+40
-11
lines changed

6 files changed

+40
-11
lines changed

src/components/footer/footer.js

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,28 @@ const Footer = () => {
3939
</div>
4040
<div>An open source project by IBM. Built in Hursley, UK.</div>
4141
<div>
42-
<a className={footerStyles.icon} href={githubOrgUrl}>
42+
<a
43+
className={footerStyles.icon}
44+
href={githubOrgUrl}
45+
target="_blank"
46+
rel="noopener noreferrer"
47+
>
4348
<GitHubSVG />
4449
</a>
45-
<a className={footerStyles.icon} href={twitterUrl}>
50+
<a
51+
className={footerStyles.icon}
52+
href={twitterUrl}
53+
target="_blank"
54+
rel="noopener noreferrer"
55+
>
4656
<TwitterSVG />
4757
</a>
48-
<a className={footerStyles.icon} href={spectrumUrl}>
58+
<a
59+
className={footerStyles.icon}
60+
href={spectrumUrl}
61+
target="_blank"
62+
rel="noopener noreferrer"
63+
>
4964
<SpectrumSVG />
5065
</a>
5166
</div>

src/components/header/header.js

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,28 @@ const Header = ({ extraHeight }) => {
125125
</a>
126126
</div>
127127
<div className={headerStyles.navContainerIcons}>
128-
<a className={headerStyles.icon} href={githubOrgUrl}>
128+
<a
129+
className={headerStyles.icon}
130+
href={githubOrgUrl}
131+
target="_blank"
132+
rel="noopener noreferrer"
133+
>
129134
<GitHubSVG />
130135
</a>
131-
<a className={headerStyles.icon} href={twitterUrl}>
136+
<a
137+
className={headerStyles.icon}
138+
href={twitterUrl}
139+
target="_blank"
140+
rel="noopener noreferrer"
141+
>
132142
<TwitterSVG />
133143
</a>
134-
<a className={headerStyles.icon} href={spectrumUrl}>
144+
<a
145+
className={headerStyles.icon}
146+
href={spectrumUrl}
147+
target="_blank"
148+
rel="noopener noreferrer"
149+
>
135150
<SpectrumSVG />
136151
</a>
137152
</div>

src/markdown-pages/docs/managers/z-os-batch-z-os-mf-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "z/OS Batch z/OS MF Manager"
66
**BETA - This Manager is feature complete but may contain known or unknown bugs.**
77

88
## Overview
9-
This Manager is the internal implementation of the z/OS Batch Manager using z/OS MF. <br><br>See the [z/OS Manager](zos-manager) for details of the z/OS Batch annotations and code snippets.<br><br> You can view the <a href="https://javadoc.galasa.dev/dev/galasa/zosbatch/package-summary.html">Javadoc documentation for the Manager here</a>. <br><br>
9+
This Manager is the internal implementation of the z/OS Batch Manager using z/OS MF. <p> See the <a href="../zos-manager">zOS Manager</a> for details of the z/OS Batch annotations and code snippets.
1010

1111

1212

src/markdown-pages/docs/managers/zos-tso-command-ssh-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "zOS TSO Command SSH Manager"
66
**ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**
77

88
## Overview
9-
This Manager is the internal implementation of the zOS TSO Command Manager using SSH.<br><br>See the [z/OS Manager](zos-manager) for details of the z/OS Batch annotations and code snippets.<br><br>
9+
This Manager is the internal implementation of the zOS TSO Command Manager using SSH. <br>br> See the <a href="../zos-manager">zOS Manager</a> for details of the z/OS TSO annotations and code snippets.<br><br> You can view the <a href="https://javadoc.galasa.dev/dev/galasa/zostso/package-summary.html">Javadoc documentation for the Manager here</a>. <br><br>
1010

1111

1212

src/markdown-pages/docs/managers/zos-unix-command-ssh-manager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ path: "/docs/managers/zos-unix-command-ssh-manager"
33
title: "zOS UNIX Command SSH Manager"
44
---
55

6-
*ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**
6+
**ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**
77

88
## Overview
9-
This Manager is the internal implementation of the zOS UNIX Command Manager using SSH.<br><br>See the [z/OS Manager](zos-manager) for details of the z/OS Batch annotations and code snippets.<br><br>
9+
This Manager is the internal implementation of the z/OS UNIX Command Manager using SSH. <br>br> See the <a href="../zos-manager">zOS Manager</a> for details of the z/OS UNIX annotations and code snippets.<br><br> You can view the <a href="https://javadoc.galasa.dev/dev/galasa/zosunix/package-summary.html">Javadoc documentation for the Manager here</a>. <br><br>
1010

1111

1212

src/markdown-pages/docs/running-simbank-tests/batch-accounts-open-test.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ The `HashMap` will eventually deposit its contents in the designated substitutio
7575
Loading the JCL with the parameters:
7676
```java
7777
// Load the JCL with the given substitution parameters
78-
IBundleResources resources = artifacts.getBundleResources(this.getClass());
7978
InputStream inputStream = resources.retrieveSkeletonFile("/resources/skeletons/SIMBANK.jcl", parameters);
8079
String jcl = resources.streamAsString(inputStream);
8180
```

0 commit comments

Comments
 (0)