Skip to content

Commit

Permalink
Merge staging (v1.4.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
zowe-robot authored Jul 18, 2019
2 parents eb4bc57 + aaf31dc commit 5302b18
Show file tree
Hide file tree
Showing 21 changed files with 887 additions and 1,218 deletions.
86 changes: 41 additions & 45 deletions bootstrap/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions bootstrap/src/uri/dsm-uri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export class DsmUri implements ZLUX.UriBroker {
responseType;
return "";
}
omvsSegmentUri(): string {
return `${this.serverRootUri('omvs')}`;
}
datasetContentsUri(relativePath: string): string {
relativePath;//suppress warning for now
return "";
Expand Down
7 changes: 5 additions & 2 deletions bootstrap/src/uri/mvd-uri.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,15 @@ export class MvdUri implements ZLUX.UriBroker {
});
let params = this.createParamURL(paramArray);
let routeParam = route;
let absPathParam = absPath;
let absPathParam = encodeURIComponent(absPath);

return `${this.serverRootUri(`unixfile/${routeParam}/${absPathParam}${params}`)}`;
}
omvsSegmentUri(): string {
return `${this.serverRootUri('omvs')}`;
}
datasetContentsUri(dsn: string): string {
return `${this.serverRootUri(`datasetContents/${dsn}`)}`;
return `${this.serverRootUri(`datasetContents/${encodeURIComponent(dsn)}`)}`;
}
VSAMdatasetContentsUri(dsn: string, closeAfter?: boolean): string {
let closeAfterParam = closeAfter ? '?closeAfter=' + closeAfter : '';
Expand Down
Loading

0 comments on commit 5302b18

Please sign in to comment.