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