mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-04 13:50:06 +00:00
comments updated
This commit is contained in:
Binary file not shown.
@@ -48,7 +48,8 @@
|
||||
|
||||
/*** HELP START ***/
|
||||
%macro GeneratePackge(
|
||||
filesLocation=%sysfunc(pathname(work))/%lowcase(&packageName.) /* place for packages' files */
|
||||
/* location of package files */
|
||||
filesLocation=%sysfunc(pathname(work))/%lowcase(&packageName.)
|
||||
)/secure;
|
||||
/*** HELP END ***/
|
||||
%local zipReferrence filesWithCodes _DESCR_ _LIC_ _RC_;
|
||||
|
||||
@@ -51,11 +51,17 @@ TODO:
|
||||
/*** HELP START ***/
|
||||
|
||||
%macro loadPackage(
|
||||
packageName /* name of a package, e.g. myPackageFile.zip, not null */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package, by default it looks for location of "packages" library */
|
||||
packageName /* name of a package,
|
||||
e.g. myPackageFile.zip,
|
||||
required and not null */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package,
|
||||
by default it looks for
|
||||
location of "packages" fileref */
|
||||
, options = %str(LOWCASE_MEMNAME) /* possible options for ZIP filename */
|
||||
, source2 = /*source2*/ /* option to print out details, null by default */
|
||||
, requiredVersion = . /* option to test if loaded package is provided in required version */
|
||||
, source2 = /*source2*/ /* option to print out details,
|
||||
null by default */
|
||||
, requiredVersion = . /* option to test if loaded package
|
||||
is provided in required version */
|
||||
)/secure;
|
||||
/*** HELP END ***/
|
||||
%local ls_tmp ps_tmp notes_tmp source_tmp;
|
||||
@@ -99,10 +105,15 @@ TODO:
|
||||
/*** HELP START ***/
|
||||
|
||||
%macro unloadPackage(
|
||||
packageName /* name of a package, e.g. myPackageFile.zip, not null */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package, by default it looks for location of "packages" library */
|
||||
packageName /* name of a package,
|
||||
e.g. myPackageFile.zip,
|
||||
required and not null */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package,
|
||||
by default it looks for
|
||||
location of "packages" fileref */
|
||||
, options = %str(LOWCASE_MEMNAME) /* possible options for ZIP filename */
|
||||
, source2 = /*source2*/ /* option to print out details, null by default */
|
||||
, source2 = /*source2*/ /* option to print out details,
|
||||
null by default */
|
||||
)/secure;
|
||||
/*** HELP END ***/
|
||||
%local ls_tmp ps_tmp notes_tmp source_tmp;
|
||||
@@ -137,11 +148,19 @@ TODO:
|
||||
/*** HELP START ***/
|
||||
|
||||
%macro helpPackage(
|
||||
packageName /* name of a package, e.g. myPackageFile.zip, not null */
|
||||
, helpKeyword /* phrase to search, * means print all help */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package, by default it looks for location of "packages" library */
|
||||
packageName /* name of a package,
|
||||
e.g. myPackageFile.zip,
|
||||
required and not null */
|
||||
, helpKeyword /* phrase to search in help,
|
||||
when empty prints description
|
||||
"*" means prints all help
|
||||
"license" prints license */
|
||||
, path = %sysfunc(pathname(packages)) /* location of a package,
|
||||
by default it looks for
|
||||
location of "packages" fileref */
|
||||
, options = %str(LOWCASE_MEMNAME) /* possible options for ZIP filename */
|
||||
, source2 = /*source2*/ /* option to print out details, null by default */
|
||||
, source2 = /*source2*/ /* option to print out details,
|
||||
null by default */
|
||||
)/secure;
|
||||
/*** HELP END ***/
|
||||
%local ls_tmp ps_tmp notes_tmp source_tmp;
|
||||
|
||||
Reference in New Issue
Block a user