├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── ASM ├── ASAM1.asm └── IRR@XACS.asm ├── ASMCOPY └── REGISTRS.asm ├── COBOL ├── SAM1.cbl ├── SAM1LIB.cbl └── SAM2.cbl ├── COPYBOOK ├── CUSTCOPY.cpy └── TRANREC.cpy ├── COPYLIB-MVS └── REPTTOTL.cpy ├── COPYLIB └── DATETIME.cpy ├── INCLUDELIB-MVS └── REPTTOTL.inc ├── INCLUDELIB └── DATETIME.inc ├── INCLUDES ├── BALSTATS.inc └── CUSTPLI.inc ├── JCL ├── ALLOCATE.jcl ├── ASMALLOC.jcl ├── INCLUDE.jcl ├── PLIALLOC.jcl ├── REXALLOC.jcl ├── RUN.jcl ├── RUNASAM1.jcl └── RUNPSAM1.jcl ├── JCLLIB └── COMPSET.jcl ├── JCLPROC └── COMPROC.jcl ├── LICENSE ├── PLI ├── PSAM1.pli ├── PSAM1LIB.pli └── PSAM2.pli ├── README.md ├── RESOURCES ├── SAMPLE.ASM.FILEIN.txt ├── SAMPLE.CUSTFILE.txt ├── SAMPLE.PLI.CUSTFILE.txt ├── SAMPLE.PLI.TRANFILE.txt ├── SAMPLE.REXX.FILEIN1.txt ├── SAMPLE.REXX.FILEIN2.txt └── SAMPLE.TRANFILE.txt ├── REXX ├── FIB.rexx └── RSAM1.rexx ├── REXXINC └── FIBFORM.rexx ├── REXXLIB └── HELLO.rexx ├── multiroot ├── README.md ├── copybooks │ ├── cust │ │ └── CUSTCOPY.cpy │ └── trans │ │ ├── SAM2PAR5.cpy │ │ ├── SAM2PARM.cpy │ │ └── TRANREC.cpy ├── sam │ ├── SAM1.cbl │ ├── SAM2.cbl │ └── zapp.yaml └── workspace │ └── sam.code-workspace ├── zapp-example.json ├── zapp.yaml ├── zcodeformat-example.json ├── zcodeformat.yaml └── zowe ├── zowecli-cobol-clean.sh ├── zowecli-cobol-upload-run-simple.sh ├── zowecli-cobol-upload-run-tutorial.sh └── zowecli-create-profiles.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | ansible 3 | .project 4 | target 5 | output 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ASM/ASAM1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/ASM/ASAM1.asm -------------------------------------------------------------------------------- /ASM/IRR@XACS.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/ASM/IRR@XACS.asm -------------------------------------------------------------------------------- /ASMCOPY/REGISTRS.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/ASMCOPY/REGISTRS.asm -------------------------------------------------------------------------------- /COBOL/SAM1.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COBOL/SAM1.cbl -------------------------------------------------------------------------------- /COBOL/SAM1LIB.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COBOL/SAM1LIB.cbl -------------------------------------------------------------------------------- /COBOL/SAM2.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COBOL/SAM2.cbl -------------------------------------------------------------------------------- /COPYBOOK/CUSTCOPY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COPYBOOK/CUSTCOPY.cpy -------------------------------------------------------------------------------- /COPYBOOK/TRANREC.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COPYBOOK/TRANREC.cpy -------------------------------------------------------------------------------- /COPYLIB-MVS/REPTTOTL.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COPYLIB-MVS/REPTTOTL.cpy -------------------------------------------------------------------------------- /COPYLIB/DATETIME.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/COPYLIB/DATETIME.cpy -------------------------------------------------------------------------------- /INCLUDELIB-MVS/REPTTOTL.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/INCLUDELIB-MVS/REPTTOTL.inc -------------------------------------------------------------------------------- /INCLUDELIB/DATETIME.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/INCLUDELIB/DATETIME.inc -------------------------------------------------------------------------------- /INCLUDES/BALSTATS.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/INCLUDES/BALSTATS.inc -------------------------------------------------------------------------------- /INCLUDES/CUSTPLI.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/INCLUDES/CUSTPLI.inc -------------------------------------------------------------------------------- /JCL/ALLOCATE.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/ALLOCATE.jcl -------------------------------------------------------------------------------- /JCL/ASMALLOC.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/ASMALLOC.jcl -------------------------------------------------------------------------------- /JCL/INCLUDE.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/INCLUDE.jcl -------------------------------------------------------------------------------- /JCL/PLIALLOC.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/PLIALLOC.jcl -------------------------------------------------------------------------------- /JCL/REXALLOC.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/REXALLOC.jcl -------------------------------------------------------------------------------- /JCL/RUN.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/RUN.jcl -------------------------------------------------------------------------------- /JCL/RUNASAM1.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/RUNASAM1.jcl -------------------------------------------------------------------------------- /JCL/RUNPSAM1.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCL/RUNPSAM1.jcl -------------------------------------------------------------------------------- /JCLLIB/COMPSET.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCLLIB/COMPSET.jcl -------------------------------------------------------------------------------- /JCLPROC/COMPROC.jcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/JCLPROC/COMPROC.jcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /PLI/PSAM1.pli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/PLI/PSAM1.pli -------------------------------------------------------------------------------- /PLI/PSAM1LIB.pli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/PLI/PSAM1LIB.pli -------------------------------------------------------------------------------- /PLI/PSAM2.pli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/PLI/PSAM2.pli -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/README.md -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.ASM.FILEIN.txt: -------------------------------------------------------------------------------- 1 | A1B2C3D4E5 2 | Hello World -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.CUSTFILE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/RESOURCES/SAMPLE.CUSTFILE.txt -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.PLI.CUSTFILE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/RESOURCES/SAMPLE.PLI.CUSTFILE.txt -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.PLI.TRANFILE.txt: -------------------------------------------------------------------------------- 1 | PRINT 2 | TOTALS 3 | -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.REXX.FILEIN1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/RESOURCES/SAMPLE.REXX.FILEIN1.txt -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.REXX.FILEIN2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/RESOURCES/SAMPLE.REXX.FILEIN2.txt -------------------------------------------------------------------------------- /RESOURCES/SAMPLE.TRANFILE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/RESOURCES/SAMPLE.TRANFILE.txt -------------------------------------------------------------------------------- /REXX/FIB.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/REXX/FIB.rexx -------------------------------------------------------------------------------- /REXX/RSAM1.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/REXX/RSAM1.rexx -------------------------------------------------------------------------------- /REXXINC/FIBFORM.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/REXXINC/FIBFORM.rexx -------------------------------------------------------------------------------- /REXXLIB/HELLO.rexx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/REXXLIB/HELLO.rexx -------------------------------------------------------------------------------- /multiroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/README.md -------------------------------------------------------------------------------- /multiroot/copybooks/cust/CUSTCOPY.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/copybooks/cust/CUSTCOPY.cpy -------------------------------------------------------------------------------- /multiroot/copybooks/trans/SAM2PAR5.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/copybooks/trans/SAM2PAR5.cpy -------------------------------------------------------------------------------- /multiroot/copybooks/trans/SAM2PARM.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/copybooks/trans/SAM2PARM.cpy -------------------------------------------------------------------------------- /multiroot/copybooks/trans/TRANREC.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/copybooks/trans/TRANREC.cpy -------------------------------------------------------------------------------- /multiroot/sam/SAM1.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/sam/SAM1.cbl -------------------------------------------------------------------------------- /multiroot/sam/SAM2.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/sam/SAM2.cbl -------------------------------------------------------------------------------- /multiroot/sam/zapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/sam/zapp.yaml -------------------------------------------------------------------------------- /multiroot/workspace/sam.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/multiroot/workspace/sam.code-workspace -------------------------------------------------------------------------------- /zapp-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zapp-example.json -------------------------------------------------------------------------------- /zapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zapp.yaml -------------------------------------------------------------------------------- /zcodeformat-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zcodeformat-example.json -------------------------------------------------------------------------------- /zcodeformat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zcodeformat.yaml -------------------------------------------------------------------------------- /zowe/zowecli-cobol-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zowe/zowecli-cobol-clean.sh -------------------------------------------------------------------------------- /zowe/zowecli-cobol-upload-run-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zowe/zowecli-cobol-upload-run-simple.sh -------------------------------------------------------------------------------- /zowe/zowecli-cobol-upload-run-tutorial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zowe/zowecli-cobol-upload-run-tutorial.sh -------------------------------------------------------------------------------- /zowe/zowecli-create-profiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/zopeneditor-sample/HEAD/zowe/zowecli-create-profiles.sh --------------------------------------------------------------------------------