mirror of
https://github.com/sasjs/core.git
synced 2026-01-15 20:40:05 +00:00
docs: revamp with new repo location
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
/**
|
||||
@file mm_createwebservice.sas
|
||||
@brief Create a Web Ready Stored Process
|
||||
@details This macro creates a Type 2 Stored Process with the macropeople
|
||||
mm_webout macro included as pre-code.
|
||||
@details This macro creates a Type 2 Stored Process with the mm_webout macro
|
||||
included as pre-code.
|
||||
Usage:
|
||||
|
||||
%* compile macros ;
|
||||
filename mc url "https://raw.githubusercontent.com/macropeople/macrocore/master/mc_all.sas";
|
||||
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||
%inc mc;
|
||||
|
||||
%* parmcards lets us write to a text file from open code ;
|
||||
|
||||
@@ -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
|
||||
|
||||
**/
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
Usage:
|
||||
|
||||
%* import the macros (or make them available some other way);
|
||||
filename mc url "https://raw.githubusercontent.com/macropeople/macrocore/master/mc_all.sas";
|
||||
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||
%inc mc;
|
||||
|
||||
%* create sample text file as input to the macro;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
Usage:
|
||||
|
||||
%* load macros;
|
||||
filename mc url "https://raw.githubusercontent.com/macropeople/macrocore/master/mc_all.sas";
|
||||
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||
%inc mc;
|
||||
|
||||
%* export everything;
|
||||
|
||||
Reference in New Issue
Block a user