Generated: Monday, November 14, 2011, 09:18:34 | Copyright © 2011 , Kurt Nørmark | |
Reference Manual of the MzScheme LAML compatibility libray.
Kurt Nørmark © normark@cs.aau.dk Department of Computer Science, Aalborg University, Denmark.
LAML Source file: lib/compatibility/star_star_mzscheme-200.scm
MzScheme specific stuff to be loaded for compatibility. This file implements each of the necessary non-R5RS functions mentioned in the root documentation of the LAML system. Notice that some of the non-standard Scheme functions used in LAML already happens to exist in MzScheme. These are file-exists?, delete-file, copy-file, and directory-exists? Therefore, these functions need not to be provided in this compatibility library.
|
1 Definition of non-R5RS Scheme functions. |
The functions in this section are general purpose functions which happen not to be in the Scheme standard (R5RS). |
|
current-time |
Form | (current-time) |
Description | Return the current time in seconds |
|
sort-list |
Form | (sort-list list com) |
Description | Sort list using the comparison predicate |
|
make-directory-in-directory |
Form | (make-directory-in-directory in-directory-path new-dir) |
Description | Make a new directory, new-dir, in the directory path (first parameter). The parameter in-directory-path ends in a slash. |
|
mail |
Form | (mail receiver title contents) |
Description | Mail sending support: Send an email to a receiver. Not implemented on mzscheme on the PC platform. |
|
bound? |
Form | (bound? symbol) |
Description | Is symbol bound in the current interaction environment. |
|
eval-cur-env |
Form | (eval-cur-env e) |
Description | Eval the expression e in the current interaction environment. |
|
url-target-exists? |
Form | (url-target-exists? url-string) |
Description | Return whether the target of the url, as represented by url-string, exits. Notice that this version of url-target-exists? is rather expensive, because it actually transfers the document over the network. It also requires the LAML library url-read.scm, which is not part of the standard LAML distribution. |
|
2 LAML specific, context definition functions. |
The functions in this section return and define the activation context of the LAML processor. |
|
laml-canonical-command-line |
Form | (laml-canonical-command-line) |
Description | Return the contextual command line information passed to LAML upon activation. Returns a list of length four or #f if no command line activation exists. The first element must be the symbol laml (a tag). Element number two must be the laml source file name (without extension and initial path). Element number three must be a slash terminated, full directory path (with forward slashes), in which the source file resides. Element number four must be a list of program parameters. This function must be redefined in Scheme-system/OS/platform dependent compatibility file. |
|
fake-startup-parameters |
Form | (fake-startup-parameters source-file startup-dir . program-parameters) |
Description | Fake the contextual startup parameters to a specific source file name and a specific startup directory. source-file and startup-dir must be strings, or the boolean value #f (in case the informations are unknown). Source-file must be a file name without initial path and without extension. start-dir must be an absolute path to a directory ending in a slash /. program-parameters are strings. Notice the correct calling form of this function is (fake-startup-parameters "source" "dir" "p1" "p2" "p3") The following calling form is wrong: (fake-startup-parameters "source" "dir" ("p1" "p2" "p3")). This function is used for programmatic startup of LAML. This function must be redefined in scheme-system dependent compatibility file |
|