mirror of
https://github.com/sasjs/core.git
synced 2026-01-14 20:10:05 +00:00
chore: updating doxy formatting to include folder descriptions, also updating headers for some macros
This commit is contained in:
@@ -20,7 +20,7 @@ HTML_EXTRA_STYLESHEET = $(DOXY_CONTENT)new_stylesheet.css
|
|||||||
INHERIT_DOCS = NO
|
INHERIT_DOCS = NO
|
||||||
INLINE_INFO = NO
|
INLINE_INFO = NO
|
||||||
INPUT = $(DOXY_CONTENT)../../README.md \
|
INPUT = $(DOXY_CONTENT)../../README.md \
|
||||||
$(DOXY_CONTENT)../../CONTRIBUTING.md \
|
= $(DOXY_CONTENT)../../main.dox \
|
||||||
$(DOXY_INPUT)
|
$(DOXY_INPUT)
|
||||||
USE_MDFILE_AS_MAINPAGE = README.md
|
USE_MDFILE_AS_MAINPAGE = README.md
|
||||||
LAYOUT_FILE = $(DOXY_CONTENT)DoxygenLayout.xml
|
LAYOUT_FILE = $(DOXY_CONTENT)DoxygenLayout.xml
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
<!-- Navigation index tabs for HTML output -->
|
<!-- Navigation index tabs for HTML output -->
|
||||||
<navindex>
|
<navindex>
|
||||||
<tab type="mainpage" visible="yes" title="Home"/>
|
<tab type="mainpage" visible="yes" title="Home"/>
|
||||||
<tab type="user" url="/contributing" title="Contributing"/>
|
|
||||||
<tab type="pages" visible="no" title="" intro=""/>
|
<tab type="pages" visible="no" title="" intro=""/>
|
||||||
<tab type="modules" visible="no" title="" intro=""/>
|
<tab type="modules" visible="no" title="" intro=""/>
|
||||||
<tab type="namespaces" visible="no" title="">
|
<tab type="namespaces" visible="no" title="">
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://cli.sasjs.io/sasjsconfig-schema.json",
|
"$schema": "https://cli.sasjs.io/sasjsconfig-schema.json",
|
||||||
"macroFolders": ["../base", "../meta", "../metax", "../viya", "../lua"],
|
"macroFolders": ["base", "meta", "metax", "viya", "lua"],
|
||||||
"docConfig":{
|
"docConfig":{
|
||||||
"displayMacroCore": false
|
"displayMacroCore": false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
# PROJECT: Macro Core Docs Build #
|
# PROJECT: Macro Core Docs Build #
|
||||||
####################################################################
|
####################################################################
|
||||||
|
|
||||||
|
cd ../..
|
||||||
|
|
||||||
sasjs doc
|
sasjs doc
|
||||||
|
|
||||||
# refresh github pages site
|
# refresh github pages site
|
||||||
|
|||||||
@@ -1,31 +1,20 @@
|
|||||||
/**
|
/**
|
||||||
@file mv_getgroups.sas
|
@file mv_getgroups.sas
|
||||||
@brief Creates a dataset with a list of viya groups
|
@brief Creates a dataset with a list of viya groups
|
||||||
@details First, be sure you have an access token (which requires an app token).
|
@details First, load the macros:
|
||||||
|
|
||||||
Using the macros here:
|
|
||||||
|
|
||||||
filename mc url
|
filename mc url
|
||||||
"https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
"https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||||
%inc mc;
|
%inc mc;
|
||||||
|
|
||||||
An administrator needs to set you up with an access code:
|
Next, execute:
|
||||||
|
|
||||||
%mv_registerclient(outds=client)
|
%mv_getgroups(outds=work.groups)
|
||||||
|
|
||||||
Navigate to the url from the log (opting in to the groups) and paste the
|
@param [in] access_token_var= The global macro variable to contain the access token
|
||||||
access code below:
|
@param [in] grant_type= valid values are "password" or "authorization_code" (unquoted).
|
||||||
|
|
||||||
%mv_tokenauth(inds=client,code=wKDZYTEPK6)
|
|
||||||
|
|
||||||
Now we can run the macro!
|
|
||||||
|
|
||||||
%mv_getgroups()
|
|
||||||
|
|
||||||
@param access_token_var= The global macro variable to contain the access token
|
|
||||||
@param grant_type= valid values are "password" or "authorization_code" (unquoted).
|
|
||||||
The default is authorization_code.
|
The default is authorization_code.
|
||||||
@param outds= The library.dataset to be created that contains the list of groups
|
@param [out] outds= The library.dataset to be created that contains the list of groups
|
||||||
|
|
||||||
|
|
||||||
@version VIYA V.03.04
|
@version VIYA V.03.04
|
||||||
|
|||||||
Reference in New Issue
Block a user