-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
236 additions
and
183 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
################################################################ | ||
# LICENSED MATERIALS - PROPERTY OF IBM | ||
# "RESTRICTED MATERIALS OF IBM" | ||
# (C) COPYRIGHT IBM CORPORATION 2020, 2022. ALL RIGHTS RESERVED | ||
# US GOVERNMENT USERS RESTRICTED RIGHTS - USE, DUPLICATION, | ||
# OR DISCLOSURE RESTRICTED BY GSA ADP SCHEDULE | ||
# CONTRACT WITH IBM CORPORATION | ||
################################################################ | ||
|
||
name: sam | ||
description: For IBM Z Open Editor 2.2.0 or earlier. Wazi's code samples with COBOL, PL/I, and HLASM applications | ||
version: 2.2.0 | ||
author: | ||
name: IBM CORPORATION | ||
|
||
property-groups: | ||
- name: cobol-local | ||
language: cobol | ||
type: local | ||
syslib: | ||
- "**/COPYBOOK" | ||
libraries: | ||
- name: MYFILE | ||
locations: | ||
- "**/COPYLIB" | ||
- name: pl1-local | ||
language: pl1 | ||
compilerOptions: not(!) | ||
type: local | ||
syslib: | ||
- "**/INCLUDES" | ||
libraries: | ||
- name: MYFILE | ||
locations: | ||
- "**/INCLUDELIB" | ||
- name: hlasm-local | ||
language: hlasm | ||
type: local | ||
syslib: | ||
- "**/ASMCOPY" | ||
- name: rexx-local | ||
language: rexx | ||
type: local | ||
syslib: | ||
- "**/REXXINC" | ||
libraries: | ||
- name: REXXLIB | ||
locations: | ||
- "**/REXXLIB" | ||
- name: zowe-mvs-cbl | ||
language: cobol | ||
type: mvs | ||
system: zos1000.example.com | ||
syslib: | ||
- IBMUSER.SAMPLE.COBCOPY | ||
libraries: | ||
- name: MYLIB | ||
locations: | ||
- IBMUSER.SAMPLE.COPYLIB | ||
- name: zowe-mvs-pl1 | ||
language: pl1 | ||
type: mvs | ||
system: zos1000.example.com | ||
syslib: | ||
- IBMUSER.SAMPLE.PLINC | ||
libraries: | ||
- name: MYLIB | ||
locations: | ||
- IBMUSER.SAMPLE.PLI.INCLLIB | ||
|
||
# Mappings example using US defaults. Adjust to your code pages. | ||
profiles: | ||
- name: RSE-Mappings | ||
type: rseapi | ||
settings: | ||
mappings: | ||
- resource: "**.SAMPLE.COB**" | ||
extension: cbl | ||
transfer: text | ||
encoding: IBM-037 | ||
memberMappings: | ||
- extension: dat | ||
transfer: binary | ||
resource: "*DAT" | ||
- resource: "**PLI*" | ||
extension: pl1 | ||
transfer: text | ||
encoding: IBM-037 | ||
default.encoding: IBM-037 |
Oops, something went wrong.