1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-18 05:50:06 +00:00

docs: revamp with new repo location

This commit is contained in:
Allan Bowe
2020-07-07 23:09:33 +02:00
parent 8beb0048a3
commit a9e9f28e05
43 changed files with 133 additions and 129 deletions

View File

@@ -1,13 +1,14 @@
/**
@file
@brief Retrieves properties of the SAS web app server
@description usage:
@details
Usage:
%mm_getwebappsrvprops(outds= some_ds)
data _null_;
set some_ds(where=(name='webappsrv.server.url'));
put value=;
run;
%mm_getwebappsrvprops(outds= some_ds)
data _null_;
set some_ds(where=(name='webappsrv.server.url'));
put value=;
run;
@param outds the dataset to create that contains the list of properties
@@ -21,7 +22,7 @@
@version 9.4
@author Allan Bowe
@source https://github.com/macropeople/macrocore
@source https://github.com/sasjs/core
**/