Skip to content

Commit

Permalink
1.1.5 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
shabiel committed Aug 15, 2022
1 parent 45f50be commit 1ff8f56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions doc/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ in your shell. If you see anything other than a blank, you are ready to go.

On the linux terminal, Use cURL to download the bootstrap routine.

curl -L https://github.com/shabiel/M-Web-Server/releases/download/1.1.4/webinit.rsa > /tmp/webinit.rsa
curl -L https://github.com/shabiel/M-Web-Server/releases/download/1.1.5/webinit.rsa > /tmp/webinit.rsa

Run GT.M/YottaDB using `$gtm_dist/mumps -dir` or `$ydb_dist/yottadb -dir`.

Expand Down Expand Up @@ -176,7 +176,7 @@ Then download the bootstrap file as follows:

C:\Users\VISTAEXPERTISE>cd %temp%

C:\Users\VISTAE~1\AppData\Local\Temp>curl -k -L -O https://github.com/shabiel/M-Web-Server/releases/download/1.1.4/webinit.rsa
C:\Users\VISTAE~1\AppData\Local\Temp>curl -k -L -O https://github.com/shabiel/M-Web-Server/releases/download/1.1.5/webinit.rsa

Open the Cache Terminal from the Cache Cube, or use another method to get in. Read the routine archive in. Cache will complain that it doesn't recoginze GT.M's format. Ignore this error.

Expand Down Expand Up @@ -265,7 +265,7 @@ Open the Linux Terminal.

Use cURL to download the bootstrap routine.

curl -L https://github.com/shabiel/M-Web-Server/releases/download/1.1.4/webinit.rsa > /tmp/webinit.rsa
curl -L https://github.com/shabiel/M-Web-Server/releases/download/1.1.5/webinit.rsa > /tmp/webinit.rsa

Open the Cache Terminal using `csession CACHE`, and switch to the appropriate
namespace.
Expand Down
6 changes: 3 additions & 3 deletions doc/packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ This section is to help the maintainer remember how to package this when it
gets updated. We rely on the github tag for automated installation. The OSEHRA
VistA repo contains the PackRO script which is used here.

* After editing and committing the routines, update webinit with the new version number to be.
* `../VistA/Scripts/PackRO.py src/webinit.m > webinit.rsa`
* `../VistA/Scripts/PackRO.py $(find src -name '*.m' -not -name 'webinit.m') > mws.rsa`
* After editing and committing the routines, update webinit (2 places) with the new version number to be.
* `python3 ../VistA/Scripts/PackRO.py src/webinit.m > webinit.rsa`
* `python3 ../VistA/Scripts/PackRO.py $(find src -name '*.m' -not -name 'webinit.m' -not -name '_weburl.m') > mws.rsa`
* Update the Install Documentation with the new version number.
* Commit and push
* git tag the new version number; and git push --tags
Expand Down
4 changes: 2 additions & 2 deletions src/webinit.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
webinit ; OSE/SMH - Initialize Web Server;2019-11-14 2:36 PM
;;1.1.4;MASH WEB SERVER/WEB SERVICES
;;1.1.5;MASH WEB SERVER/WEB SERVICES
;
; Map %web on Cache
DO CACHEMAP("%web")
Expand All @@ -8,7 +8,7 @@ DO CACHEMAP("%web")
DO CACHETLS
;
; Install the package
D INSTALLRO("https://github.com/shabiel/M-Web-Server/releases/download/1.1.3/mws.rsa")
D INSTALLRO("https://github.com/shabiel/M-Web-Server/releases/download/1.1.5/mws.rsa")
;
; If fileman is installed, do an init for the %web(17.001 file
post ; [Public] Run this entry point if you don't want to download the code.
Expand Down

0 comments on commit 1ff8f56

Please sign in to comment.