Skip to content

Commit

Permalink
Merge pull request #175 from CaroMac/next
Browse files Browse the repository at this point in the history
update code in doc to match code in repo
  • Loading branch information
CaroMac authored May 5, 2020
2 parents 5645fc4 + 751f389 commit 1077aae
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 11 deletions.
21 changes: 18 additions & 3 deletions src/components/footer/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,28 @@ const Footer = () => {
</div>
<div>An open source project by IBM. Built in Hursley, UK.</div>
<div>
<a className={footerStyles.icon} href={githubOrgUrl}>
<a
className={footerStyles.icon}
href={githubOrgUrl}
target="_blank"
rel="noopener noreferrer"
>
<GitHubSVG />
</a>
<a className={footerStyles.icon} href={twitterUrl}>
<a
className={footerStyles.icon}
href={twitterUrl}
target="_blank"
rel="noopener noreferrer"
>
<TwitterSVG />
</a>
<a className={footerStyles.icon} href={spectrumUrl}>
<a
className={footerStyles.icon}
href={spectrumUrl}
target="_blank"
rel="noopener noreferrer"
>
<SpectrumSVG />
</a>
</div>
Expand Down
21 changes: 18 additions & 3 deletions src/components/header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,28 @@ const Header = ({ extraHeight }) => {
</a>
</div>
<div className={headerStyles.navContainerIcons}>
<a className={headerStyles.icon} href={githubOrgUrl}>
<a
className={headerStyles.icon}
href={githubOrgUrl}
target="_blank"
rel="noopener noreferrer"
>
<GitHubSVG />
</a>
<a className={headerStyles.icon} href={twitterUrl}>
<a
className={headerStyles.icon}
href={twitterUrl}
target="_blank"
rel="noopener noreferrer"
>
<TwitterSVG />
</a>
<a className={headerStyles.icon} href={spectrumUrl}>
<a
className={headerStyles.icon}
href={spectrumUrl}
target="_blank"
rel="noopener noreferrer"
>
<SpectrumSVG />
</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: "z/OS Batch z/OS MF Manager"
**BETA - This Manager is feature complete but may contain known or unknown bugs.**

## Overview
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>
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.



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: "zOS TSO Command SSH Manager"
**ALPHA - This Manager is being actively developed. It is subject to change and has not been extensively tested.**

## Overview
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>
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>



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ path: "/docs/managers/zos-unix-command-ssh-manager"
title: "zOS UNIX Command SSH Manager"
---

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

## Overview
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>
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>



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ The `HashMap` will eventually deposit its contents in the designated substitutio
Loading the JCL with the parameters:
```java
// Load the JCL with the given substitution parameters
IBundleResources resources = artifacts.getBundleResources(this.getClass());
InputStream inputStream = resources.retrieveSkeletonFile("/resources/skeletons/SIMBANK.jcl", parameters);
String jcl = resources.streamAsString(inputStream);
```
Expand Down

0 comments on commit 1077aae

Please sign in to comment.