comments updated

This commit is contained in:
yabwon
2019-10-26 14:28:13 +02:00
parent b0f11e586f
commit 39117ffb90
3 changed files with 32 additions and 12 deletions

View File

@@ -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_;

View File

@@ -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;