Skip to content

Commit

Permalink
Fixing files that are longer than 80 chars, they will be truncated by…
Browse files Browse the repository at this point in the history
… the upload if not
  • Loading branch information
mainframed committed May 2, 2024
1 parent f2d5b74 commit 8a1b82a
Show file tree
Hide file tree
Showing 53 changed files with 1,148 additions and 521 deletions.
12 changes: 8 additions & 4 deletions rxlib/DSHAPI.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
if color='' then color=#turq
call fssDash 'INFO',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
sticky.alias.__refresh=0 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
/* Create FSS Screen defs */
call fssDash 'INFO',alias,row,col,rows,cols,color,'PLAIN'
/* refresh every n seconds */
sticky.alias.__refresh=0
/* not necessary */
sticky.alias.__fetch=""
return 0
/* ---------------------------------------------------------------------
* Sets Sticky Header Line
Expand All @@ -30,7 +33,8 @@ return
dshhdr:
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Header',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash 'Header',alias,row,col,rows,cols,color,'PLAIN'
sticky.alias.__refresh=60 /* refresh every n seconds */
sticky.alias.__fetch=""
return 0
Expand Down
3 changes: 2 additions & 1 deletion rxlib/DSHHDR.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Header',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash 'Header',alias,row,col,rows,cols,color,'PLAIN'
sticky.alias.__refresh=60 /* refresh every n seconds */
sticky.alias.__fetch=""
return 0
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHHDR2.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Header2',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
sticky.alias.__refresh=60 /* refresh every n seconds */
/* Create FSS Screen defs */
call fssDash 'Header2',alias,row,col,rows,cols,color,'PLAIN'
/* refresh every n seconds */
sticky.alias.__refresh=60
sticky.alias.__fetch=""
return 0
/* -----------------------------------------------------------------
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHHDR3.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Header3',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
sticky.alias.__refresh=60 /* refresh every n seconds */
/* Create FSS Screen defs */
call fssDash 'Header3',alias,row,col,rows,cols,color,'PLAIN'
/* refresh every n seconds */
sticky.alias.__refresh=60
sticky.alias.__fetch=""
return 0
/* -----------------------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions rxlib/DSHINFO.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
if color='' then color=#turq
call fssDash 'INFO',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
sticky.alias.__refresh=0 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
/* Create FSS Screen defs */
call fssDash 'INFO',alias,row,col,rows,cols,color,'PLAIN'
sticky.alias.__refresh=0 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
return 0
/* -----------------------------------------------------------------
* Part Two not necessary, set directly
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHMTT.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Trace Table',alias,row,col,rows,cols,color /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash 'Trace Table',alias,row,col,rows,cols,color
sticky.alias.__refresh=30 /* refresh every n seconds */
sticky.alias.__fetch="call StickyMasterTT "alias",10" /* rexx call to update sticky note */
/* rexx call to update sticky note */
sticky.alias.__fetch="call StickyMasterTT "alias",10"
return 0
/* -----------------------------------------------------------------
* Part Two Procedure to create the sticky Content
Expand Down
7 changes: 4 additions & 3 deletions rxlib/DSHPOP1.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
if color='' then color=#turq
call fssDash 'POP1',alias,row,col,rows,cols,color /* Create FSS Screen defs */
sticky.alias.__refresh=0 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
/* Create FSS Screen defs */
call fssDash 'POP1',alias,row,col,rows,cols,color
sticky.alias.__refresh=0 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
return 0
/* -----------------------------------------------------------------
* Part Two not necessary, set directly
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHREGN.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash "MVS Region",alias,row,col,rows,cols,color /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash "MVS Region",alias,row,col,rows,cols,color
sticky.alias.__refresh=30 /* refresh every n seconds */
sticky.alias.__fetch="call StickyMVSRegion "alias /* rexx call to update sticky note */
/* rexx call to update sticky note */
sticky.alias.__fetch="call StickyMVSRegion "alias
return 0
/* -----------------------------------------------------------------
* Part Two Procedure to create the sticky Content
Expand Down
7 changes: 4 additions & 3 deletions rxlib/DSHSMSG.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
if color='' then color=#turq
call fssDash 'SMSG',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
sticky.alias.__refresh=30 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
/* Create FSS Screen defs */
call fssDash 'SMSG',alias,row,col,rows,cols,color,'PLAIN'
sticky.alias.__refresh=30 /* refresh every n seconds */
sticky.alias.__fetch="" /* not necessary */
return 0
/* -----------------------------------------------------------------
* Part Two not necessary, set directly
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHTIME.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'Time',alias,row,col,rows,cols,color,'PLAIN' /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash 'Time',alias,row,col,rows,cols,color,'PLAIN'
sticky.alias.__refresh=10 /* refresh every n seconds */
sticky.alias.__fetch="call StickyTime "alias /* rexx call to update sticky note */
/* rexx call to update sticky note */
sticky.alias.__fetch="call StickyTime "alias
return 0
/* -----------------------------------------------------------------
* Part Two Procedure to create the sticky Content
Expand Down
5 changes: 3 additions & 2 deletions rxlib/DSHTSO.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssdash "TSO User",alias,row,col,rows,cols,color /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssdash "TSO User",alias,row,col,rows,cols,color
sticky.alias.__refresh=5 /* refresh every n seconds */
sticky.alias.__fetch="call StickyTSOuser "alias /* rexx call to update sticky note */
sticky.alias.__fetch="call StickyTSOuser "alias
return 0
/* -----------------------------------------------------------------
* Part Two Procedure to create the sticky Content
Expand Down
6 changes: 4 additions & 2 deletions rxlib/DSHUSER.rexx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
*/
parse arg row,col,rows,cols,color
alias=gettoken() /* define alias (for stems) */
call fssDash 'User Info',alias,row,col,rows,cols,color /* Create FSS Screen defs */
/* Create FSS Screen defs */
call fssDash 'User Info',alias,row,col,rows,cols,color
sticky.alias.__refresh=60 /* refresh every n seconds */
sticky.alias.__fetch="call StickyUser "alias /* rexx call to update sticky note */
/* rexx call to update sticky note */
sticky.alias.__fetch="call StickyUser "alias
return 0
/* -----------------------------------------------------------------
* Part Two Procedure to create the sticky Content
Expand Down
Loading

0 comments on commit 8a1b82a

Please sign in to comment.