_ | surface | _ | The symbolic name of explicit white space suppress
|
a | surface | (a . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) A double tag element (anchor ). |
a-name | convenience | (a-name name) | Name the current place by means of an a tag with name attribute
|
a-tag | convenience | (a-tag url . anchor) | Return an a tag constructructed from the URL and the anchor. |
a-tag-target | convenience | (a-tag-target url anchor target) | A variant of a tag which supports a target attribute of the a-tag (where in browser to show the result). |
abbr | surface | (abbr . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) ABBR double tag element (no explanation available). |
absolute-file-path? | general | (absolute-file-path? x) | Return whether x - a string - represents an absolute path to a file. |
accumulate-right | general | (accumulate-right f init lst) | A higher-order function which right accumulates the list lst by means of the binary function f,
using init as the initial value of the accumulation. |
acronym | surface | (acronym . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) ACRONYM double tag element (no explanation available). |
address | surface | (address . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) ADDRESS double tag element (information on author ). |
advance-look-ahead | collect-skip | (advance-look-ahead n) | Provided that there is at least n characters in the reading queue, advance
next-read with n positions. |
alist-from-keys-and-values | general | (alist-from-keys-and-values key-list val-list) | Make an alist from a key-list and a val-list. |
alist-to-propertylist | general | (alist-to-propertylist alist) | Make and return a property list from an association list. |
alphabetic-link-array | convenience | (alphabetic-link-array) | Return an 'array' of letter links to #letter
|
alphabetic-link-array-1 | convenience | (alphabetic-link-array-1 target-file-prefix alphabet . emphasis-letter) | Return an 'array' of letter links to (string-append target-file-prefix "-" letter ".html") for all letters in alphabet. |
applet | surface | (applet . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) APPLET double tag element (Java applet ). |
aqua | color | aqua | A color constant. |
area | surface | (area . attributes) | The LAML mirror of the HTML 4.0 (loose) AREA single tag element (client-side image map area ). |
as-boolean | general | (as-boolean x) | Convert x to a boolean. |
as-char | general | (as-char x) | Convert x to a character. |
as-list | general | (as-list x) | Convert x to a list. |
as-number | general | (as-number x) | Convert x to a number. |
as-quoted-string | general | (as-quoted-string x) | Convert x to a string, in which string constituents themselves are quoted. |
as-string | general | (as-string x) | Convert x to a string. |
as-symbol | general | (as-symbol x) | Convert x to a symbol. |
b | surface | (b . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) B double tag element (no explanation available). |
base | surface | (base . attributes) | The LAML mirror of the HTML 4.0 (loose) BASE single tag element (document base URI ). |
basefont | surface | (basefont . attributes) | The LAML mirror of the HTML 4.0 (loose) BASEFONT single tag element (base font size ). |
bdo | surface | (bdo . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) BDO double tag element (I18N BiDi over-ride ). |
big | surface | (big . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) BIG double tag element (no explanation available). |
bl | convenience | (bl lst) | A large, red bulleted list. |
black | color | black | A color constant. |
blank-string? | general | (blank-string? str) | Is the string str empty or blank (consists of white space)
|
blockquote | surface | (blockquote . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) BLOCKQUOTE double tag element (long quotation ). |
blockquote-1 | convenience | (blockquote-1 x) | Present the string converted x in a blockquote tag. |
blue | color | blue | A color constant. |
blue-of-rgb-color | color | (blue-of-rgb-color color) | Return the blue constituent of the color. |
blue1 | color | blue1 | A color constant. |
blue2 | color | blue2 | A color constant. |
blue3 | color | blue3 | A color constant. |
body | surface | (body . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) BODY tag element which can be applied without contents (corresponding to start tag only) (document body ). |
box | convenience | (box text [width]) | Embed text in an invisible (border-less) table with one cell. |
br | surface | (br . attributes) | The LAML mirror of the HTML 4.0 (loose) BR single tag element (forced line break ). |
br-list | convenience | (br-list lst) | Return a flat list, separate by breaks. |
brief-weekday | time | (brief-weekday second-count) | Given an integer, second-count, return the weekday as a brief string, of the time second-count. |
brl | convenience | (brl lst) | A convenient alias for br-list |
brown | color | brown | A color constant. |
bullet-list | convenience | (bullet-list lst bullet-size bullet-color) | Render lst as a bulleted list. |
but-first-sentence-of-string | general | (but-first-sentence-of-string str) | Return all but the first sentence in str. |
but-props | general | (but-props prop-list eliminations) | Return those property names and values of prop-list which are not in eliminations. |
butlast | general | (butlast lst) | Return all but the last element of a list. |
button | surface | (button . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) BUTTON double tag element (push button ). |
capitalize-string | general | (capitalize-string str) | Mutate str to have an initial capital character. |
capitalize-string-nd | general | (capitalize-string-nd str) | Return str with capital, initial character. |
caption | surface | (caption . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) CAPTION double tag element (table caption ). |
center | surface | (center . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) CENTER double tag element (shorthand for DIV align=center ). |
center-frame | convenience | (center-frame indentation text) | Embed text into a centered frame
|
cgi-url-input | cgi | (cgi-url-input . the-input) | Return the url input (a string) also known as the query string. |
cgi-write | cgi | (cgi-write output) | Write output to std output, or if cgi-testing, to test-file. |
cgi-write-html-ast | cgi | (cgi-write-html-ast ast) | Render the HTML ast to standard output. |
char->string | general | (char->string ch) | Convert a character to a string
|
char-predicate | collect-skip | (char-predicate ch) | Return a predicate functions which matches the character ch. |
character-entity | convenience | (character-entity x) | if x is a number return a numbered character entity. |
check-html-attributes? | basis | check-html-attributes? | A boolean variable which controls the checking of tag attributes. |
checkbox | convenience | (checkbox name . checked) | Return an input tag of type checkbox. |
cite | surface | (cite . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) CITE double tag element (no explanation available). |
cite-1 | convenience | (cite-1 x) | Present x in a blockquote tag. |
code | surface | (code . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) CODE double tag element (no explanation available). |
code-example | file-read | (code-example file . mark) | Convenient and specialized function returning the contents of a program file. |
col | surface | (col . attributes) | The LAML mirror of the HTML 4.0 (loose) COL single tag element (table column ). |
colgroup | surface | (colgroup . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) COLGROUP tag element which can be applied without contents (corresponding to start tag only) (table column group ). |
collect-balanced-until | collect-skip | (collect-balanced-until char-pred-1 char-pred-2) | This collection procedure returns a balanced collection given two char predicates. |
collect-until | collect-skip | (collect-until p) | Return the string collected from the input port ip. |
collect-until-string | collect-skip | (collect-until-string str . inclusive) | Collect characters until str is encountered. |
color-frame | convenience | (color-frame text color) | Embed text into a color frame. |
color-frame-width | convenience | (color-frame-width text color width) | As color-frame, but this function supports and extra widht parameter. |
colorize-substrings | convenience | (colorize-substrings str region-color-list) | This is an advanced function which make font changes to substrings of str. |
compose | general | (compose . f-list) | Compose a list of functions to a single function. |
con | convenience | (con . elements) | Concatenete a number of strings. |
con-par | convenience | (con-par . string-list) | Like con from the general library, but insert a p tag between all strings in string-list
|
concatenate | surface | (concatenate . parameters) | A non-HTML tag which concatenates parameters of a form to a single string. |
copy-file | scm-compat | (copy-file source destination) | Use copy-text-file for copy-file. |
copy-files | general | (copy-files files source-dir target-dir [warn-if-non-existing-source]) | Copy each of the files in the list files from source-dir to target-dir. |
copy-string-into! | general | (copy-string-into! target i source) | Copy source into target and overwrite a portion of target. |
copy-text-file | general | (copy-text-file from-path to-path overwrite?) | Copy the text file in from-path to the file in to-path. |
copyright | convenience | copyright | The copyright character entity
|
copyright-owner | convenience | (copyright-owner x) | Embed x into a copyright indication
|
cr | general | cr | Return a CR string
|
current-time | mzscheme-compat | (current-time) | Return the current time in seconds
|
curry-generalized | general | (curry-generalized f) | Generalize f with ad hoc currying. |
cut-list-by-predicate | general | (cut-list-by-predicate lst pred) | Cut the tail of lst; The tail to be cutted starts with an element which fulfils pred. |
danish-week-number | time | (danish-week-number sc) | Given a number sc, return the week number in which sc i located. |
dark-red | color | dark-red | A color constant. |
dark-yellow | color | dark-yellow | A color constant. |
date-ok? | time | (date-ok? x) | Return whether x is a legal date string (of the form "ddmmyyyy")
Exact determination, including february and leap years. |
date-string | time | (date-string second-count) | Return the date, in the format "ddmmyyyy" of second-count,
which represents the time in seconds elapsed since January 1, 1970. |
date-time | time | (date-time second-count) | Given an integer, second-cound, return a list of two strings: (date time). |
date-time-one-string | time | (date-time-one-string second-count) | Return a single string that pretty prints the time represented by second count. |
day-of-time | time | (day-of-time decoded-time-list) | Return the days of a decoded time list. |
days-in-month | time | (days-in-month month year) | Return the number of days in month and year
|
dd | surface | (dd . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DD tag element which can be applied without contents (corresponding to start tag only) (definition description ). |
decapitalize-string | general | (decapitalize-string str) | Mutate str to have lower case, initial character. |
decapitalize-string-nd | general | (decapitalize-string-nd str) | Return str with lower case, initial character. |
defaulted-get | general | (defaulted-get key alist default) | Return the value of key in alist (by means of cdr of assq). |
defaulted-get-prop | general | (defaulted-get-prop key p-list default) | Return the value of key in the property list p-list (by means of cdr of assq). |
definition-list | convenience | (definition-list lst) | Make a definition list. |
del | surface | (del . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DEL double tag element (inserted text, deleted text ). |
delete-string-portion | general | (delete-string-portion str i lgt) | Delete the substring of length lgt from index i in the string str. |
dfn | surface | (dfn . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DFN double tag element (no explanation available). |
dir | surface | (dir . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DIR double tag element (directory list, menu list ). |
directory-exists? | scm-compat | directory-exists? | Returns whether a directory exist. |
directory-level-difference | general | (directory-level-difference dir1 dir2) | Return the number of directory levels in between dir1 and dir2. |
directory-list | scm-compat | (directory-list path) | Return a directory list of path
|
display-error | general | (display-error . messages) | Display an error message - in terms of messages - and stop the program. |
display-message | general | (display-message . messages) | Display messages on standard output. |
display-warning | general | (display-warning . messages) | Display a warning message line on standard output via the Scheme display function. |
div | surface | (div . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DIV double tag element (generic language/style container ). |
dl | surface | (dl . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DL double tag element (definition list ). |
dl-1 | convenience | (dl-1 list) | A convenient alias for definition-list. |
doctype-clause | convenience | (doctype-clause) | The HTML4.0 loose document type clause
|
document-type-declaration | basis | (document-type-declaration) | Return a document type declaration of this mirror. |
downcase-string | general | (downcase-string str) | Downcase all characters in str. |
dt | surface | (dt . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) DT tag element which can be applied without contents (corresponding to start tag only) (definition term ). |
duplicates-by-predicate | general | (duplicates-by-predicate lst p) | Return the duplicates in lst. |
eighth | general | (eighth lst) | Return the eighth element of a list |
element-after | general | (element-after el lst selector) | Return the element of lst just after el, or #f if no such element exists. |
element-before | general | (element-before el lst selector) | Return the element of lst just before el, or #f if no such element exists. |
em | surface | (em . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) EM double tag element (no explanation available). |
embed-substring | general | (embed-substring substring str embed-function) | Embed substring, as found in string, into embed-function. |
empty-string? | general | (empty-string? str) | Is the string str empty
|
end | cgi | (end) | Ends and exit the CGI program. |
end-of-line? | collect-skip | (end-of-line? ch) | Is ch an end of line charcter?
|
ensure-directory-existence! | general | (ensure-directory-existence! prefix-dir dir) | Ensure that the directory with path (string-append prefix-dir file-and-ext) exists. |
ensure-directory-path-existence! | general | (ensure-directory-path-existence! prefix-dir dir) | Ensure that the relative path, as represented by dir, exists in prefix-dir. |
ensure-final-character | general | (ensure-final-character str ch) | Ensure that the last character in str (a string) is ch (a char)
|
ensure-look-ahead | collect-skip | (ensure-look-ahead n) | Make sure that there is at least n characters in the look ahead queue
|
ensure-non-existing-file-in-dir | general | (ensure-non-existing-file-in-dir f d) | Ensure that the file f (proper name and extension) is non-existing in the directory d. |
eof? | collect-skip | (eof? ch) | Is ch an end of file character?
|
errors-among-conditions | general | (errors-among-conditions . err-condition-message-list) | Return a list of error message strings for those conditions that are true. |
every-second-element | general | (every-second-element lst) | Return every second element of list, starting with the first element. |
exchange-chars-in-str! | general | (exchange-chars-in-str! str n m) | Exchange destructively char n and m in str. |
extend-a-list | general | (extend-a-list key value a-list) | Add a key-value pair to a-list. |
extract-form-input | cgi | (extract-form-input . testfile) |
Extract form input from std input, and return the decoded data as an association list. |
extract-multipart-form-input | cgi | (extract-multipart-form-input cur-time . testfile) | Extract form input from std input, and return the decoded data as an association list. |
extract-url-parameters | cgi | (extract-url-parameters . the-input) | Return a decoded URL input, as taken from the QUERY_STRING and decoded appropritely to an association list. |
fake-startup-parameters | scm-compat | (fake-startup-parameters source-file startup-dir) | Fake the contextual startup parameters to a specific source file name and a specific startup directory. |
fake-startup-parameters | mzscheme-compat | (fake-startup-parameters source-file startup-dir [program-parameter-list]) | Fake the contextual startup parameters to a specific source file name and a specific startup directory. |
fieldset | surface | (fieldset . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) FIELDSET double tag element (form control group ). |
fifth | general | (fifth lst) | Return the fifth element of a list |
file-append | general | (file-append file-name x) | Append x to file-name. |
file-name-extension | general | (file-name-extension file-name) | Return the extension of file-name. |
file-name-initial-path | general | (file-name-initial-path file-name) | Return the initial path of the file-name. |
file-name-proper | general | (file-name-proper file-name) | Return the part of file-name without extension and without an initial path. |
file-name-sans-extension | general | (file-name-sans-extension file-name) | Return the filename component sans the final extension. |
file-read | general | (file-read file-name [n]) | redefinition of file-read from general. |
file-read-all | general | (file-read-all file-name) | Read all Lisp expression from file-name. |
file-upload | convenience | (file-upload name) | Return an input tag of type file. |
file-write | general | (file-write x file-name) | Write the list expression x at the file named file-name
|
filter | general | (filter pred lst) | Filter a list lst by means of the predicate pred. |
filter-no-ordering | general | (filter-no-ordering pred lst) | Like filter, but the ordering among elements in the resulting list is unknown and arbitrary. |
find-in-list | general | (find-in-list pred lst) | A simple linear list search function. |
find-in-string | general | (find-in-string str ch . start-pos) | Search linearly for the character ch in the string str. |
find-in-string-from-end | general | (find-in-string-from-end str ch) | Search linearly for the character ch in the string str, beginning from the rear end of str. |
first | general | (first lst) | Return the first element of a list |
first-improper-part | general | (first-improper-part lst) | Return the first improper part of an S-expression
|
first-sentence-in-string | general | (first-sentence-in-string str) | Return the first sentence in str (including a point). |
flatten | general | (flatten lst-of-lst) | Flatten a list of lists to one list. |
font | surface | (font . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) FONT double tag element (local change to font ). |
font-1 | convenience | (font-1 size color x) | Returns a font tag with size and color attributes. |
font-color | convenience | (font-color color x) | Like font, but only supports color. |
font-rise | convenience | (font-rise str base-size) | Return a html fonted version of str. |
font-size | convenience | (font-size size x) | Like font, but only supports size. |
form | surface | (form . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) FORM double tag element (interactive form ). |
form-1 | convenience | (form-1 cgi-url x) | Embed x in to form, which activates url upon form completion. |
fourth | general | (fourth lst) | Return the fourth element of a list |
frame | surface | (frame . attributes) | The LAML mirror of the HTML 4.0 (loose) FRAME single tag element (subwindow ). |
frame-1 | convenience | (frame-1 text) | Shown text in a simple frame. |
frame-width | convenience | (frame-width text width) | Like frame, but with an extra width parameter. |
frameset | surface | (frameset . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) FRAMESET double tag element (window subdivision). |
free-html-element | surface | (free-html-element tag-name . parameters) | Generate a HTML tag application for tag-name with attributes and contents
given by parameters. |
free-html-element-1 | surface | (free-html-element-1 tag-name parameters) | Generate a HTML tag application for tag-name with attributes and contents given by parameters. |
front-sublist | general | (front-sublist lst n) | Return the first n elements of lst in terms of shallow copy involving n new cons cells. |
fuchsia | color | fuchsia | A color constant. |
general-page-message | convenience | general-page-message | A message (string) which is presented at the top of every page generated. |
generate-leq | general | (generate-leq enumeration-order selector) | Generate a less than or equal predicate from the enumeration-order. |
get | general | (get key a-list) | Return a value from an alist which corresponds to key. |
get-month-name | time | (get-month-name month-number) | Return the month name of month-number. |
get-prop | general | (get-prop key p-list) | Return the value of key in the property list p-list. |
green | color | green | A color constant. |
green-of-rgb-color | color | (green-of-rgb-color color) | Return the green constituent of the color. |
green1 | color | green1 | A color constant. |
green2 | color | green2 | A color constant. |
grey | color | grey | A color constant. |
grey1 | color | grey1 | A color constant. |
grey2 | color | grey2 | A color constant. |
h | convenience | (h i x) | Returns h tags, h1 if i=1, h2 if i=2, etc. |
h1 | surface | (h1 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H1 double tag element (heading ). |
h2 | surface | (h2 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H2 double tag element (heading ). |
h3 | surface | (h3 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H3 double tag element (heading ). |
h4 | surface | (h4 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H4 double tag element (heading ). |
h5 | surface | (h5 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H5 double tag element (heading ). |
h6 | surface | (h6 . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) H6 double tag element (heading ). |
head | surface | (head . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) HEAD tag element which can be applied without contents (corresponding to start tag only) (document head ). |
hidden-line | convenience | (hidden-line name value) | Return an input tag of type hidden. |
horizontal-space | convenience | horizontal-space | Return n space special characters
|
hour-of-time | time | (hour-of-time decoded-time-list) | Return the hour of a decoded time list. |
hr | surface | (hr . attributes) | The LAML mirror of the HTML 4.0 (loose) HR single tag element (horizontal rule ). |
hr-1 | convenience | (hr-1 . size) | Return a horizontal rule, a hr tag. |
html | surface | (html . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) HTML tag element which can be applied without contents (corresponding to start tag only) (document root element ). |
html-appender | convenience | (html-appender element) | Generate a function which appends element. |
html-protect | convenience | (html-protect str) | Protect HTML tags such that an HTML document can be shown verbatim in a browser. |
html4:a | basis | (html4:a contents . attributes) | The LAML mirror of the HTML 4.0 (loose) A double tag element (anchor ). |
html4:abbr | basis | (html4:abbr contents . attributes) | The LAML mirror of the HTML 4.0 (loose) ABBR double tag element (no explanation available). |
html4:acronym | basis | (html4:acronym contents . attributes) | The LAML mirror of the HTML 4.0 (loose) ACRONYM double tag element (no explanation available). |
html4:address | basis | (html4:address contents . attributes) | The LAML mirror of the HTML 4.0 (loose) ADDRESS double tag element (information on author ). |
html4:applet | basis | (html4:applet contents . attributes) | The LAML mirror of the HTML 4.0 (loose) APPLET double tag element (Java applet ). |
html4:area | basis | (html4:area . attributes) | The LAML mirror of the HTML 4.0 (loose) AREA single tag element (client-side image map area ). |
html4:b | basis | (html4:b contents . attributes) | The LAML mirror of the HTML 4.0 (loose) B double tag element (no explanation available). |
html4:base | basis | (html4:base . attributes) | The LAML mirror of the HTML 4.0 (loose) BASE single tag element (document base URI ). |
html4:basefont | basis | (html4:basefont . attributes) | The LAML mirror of the HTML 4.0 (loose) BASEFONT single tag element (base font size ). |
html4:bdo | basis | (html4:bdo contents . attributes) | The LAML mirror of the HTML 4.0 (loose) BDO double tag element (I18N BiDi over-ride ). |
html4:big | basis | (html4:big contents . attributes) | The LAML mirror of the HTML 4.0 (loose) BIG double tag element (no explanation available). |
html4:blockquote | basis | (html4:blockquote contents . attributes) | The LAML mirror of the HTML 4.0 (loose) BLOCKQUOTE double tag element (long quotation ). |
html4:body | basis | (html4:body contents . attributes) | The LAML mirror of the HTML 4.0 (loose) BODY tag element, which can be applied as a single tag via a #f contents parameter (document body ). |
html4:br | basis | (html4:br . attributes) | The LAML mirror of the HTML 4.0 (loose) BR single tag element (forced line break ). |
html4:button | basis | (html4:button contents . attributes) | The LAML mirror of the HTML 4.0 (loose) BUTTON double tag element (push button ). |
html4:caption | basis | (html4:caption contents . attributes) | The LAML mirror of the HTML 4.0 (loose) CAPTION double tag element (table caption ). |
html4:center | basis | (html4:center contents . attributes) | The LAML mirror of the HTML 4.0 (loose) CENTER double tag element (shorthand for DIV align=center ). |
html4:cite | basis | (html4:cite contents . attributes) | The LAML mirror of the HTML 4.0 (loose) CITE double tag element (no explanation available). |
html4:code | basis | (html4:code contents . attributes) | The LAML mirror of the HTML 4.0 (loose) CODE double tag element (no explanation available). |
html4:col | basis | (html4:col . attributes) | The LAML mirror of the HTML 4.0 (loose) COL single tag element (table column ). |
html4:colgroup | basis | (html4:colgroup contents . attributes) | The LAML mirror of the HTML 4.0 (loose) COLGROUP tag element, which can be applied as a single tag via a #f contents parameter (table column group ). |
html4:dd | basis | (html4:dd contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DD tag element, which can be applied as a single tag via a #f contents parameter (definition description ). |
html4:del | basis | (html4:del contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DEL double tag element (inserted text, deleted text ). |
html4:dfn | basis | (html4:dfn contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DFN double tag element (no explanation available). |
html4:dir | basis | (html4:dir contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DIR double tag element (directory list, menu list ). |
html4:div | basis | (html4:div contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DIV double tag element (generic language/style container ). |
html4:dl | basis | (html4:dl contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DL double tag element (definition list ). |
html4:dt | basis | (html4:dt contents . attributes) | The LAML mirror of the HTML 4.0 (loose) DT tag element, which can be applied as a single tag via a #f contents parameter (definition term ). |
html4:em | basis | (html4:em contents . attributes) | The LAML mirror of the HTML 4.0 (loose) EM double tag element (no explanation available). |
html4:fieldset | basis | (html4:fieldset contents . attributes) | The LAML mirror of the HTML 4.0 (loose) FIELDSET double tag element (form control group ). |
html4:font | basis | (html4:font contents . attributes) | The LAML mirror of the HTML 4.0 (loose) FONT double tag element (local change to font ). |
html4:form | basis | (html4:form contents . attributes) | The LAML mirror of the HTML 4.0 (loose) FORM double tag element (interactive form ). |
html4:frame | basis | (html4:frame . attributes) | The LAML mirror of the HTML 4.0 (loose) FRAME single tag element (subwindow ). |
html4:frameset | basis | (html4:frameset contents . attributes) | The LAML mirror of the HTML 4.0 (loose) FRAMESET double tag element (window subdivision). |
html4:h1 | basis | (html4:h1 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H1 double tag element (heading ). |
html4:h2 | basis | (html4:h2 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H2 double tag element (heading ). |
html4:h3 | basis | (html4:h3 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H3 double tag element (heading ). |
html4:h4 | basis | (html4:h4 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H4 double tag element (heading ). |
html4:h5 | basis | (html4:h5 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H5 double tag element (heading ). |
html4:h6 | basis | (html4:h6 contents . attributes) | The LAML mirror of the HTML 4.0 (loose) H6 double tag element (heading ). |
html4:head | basis | (html4:head contents . attributes) | The LAML mirror of the HTML 4.0 (loose) HEAD tag element, which can be applied as a single tag via a #f contents parameter (document head ). |
html4:hr | basis | (html4:hr . attributes) | The LAML mirror of the HTML 4.0 (loose) HR single tag element (horizontal rule ). |
html4:html | basis | (html4:html contents . attributes) | The LAML mirror of the HTML 4.0 (loose) HTML tag element, which can be applied as a single tag via a #f contents parameter (document root element ). |
html4:i | basis | (html4:i contents . attributes) | The LAML mirror of the HTML 4.0 (loose) I double tag element (no explanation available). |
html4:iframe | basis | (html4:iframe contents . attributes) | The LAML mirror of the HTML 4.0 (loose) IFRAME double tag element (inline subwindow ). |
html4:img | basis | (html4:img . attributes) | The LAML mirror of the HTML 4.0 (loose) IMG single tag element (Embedded image ). |
html4:input | basis | (html4:input . attributes) | The LAML mirror of the HTML 4.0 (loose) INPUT single tag element (form control ). |
html4:ins | basis | (html4:ins contents . attributes) | The LAML mirror of the HTML 4.0 (loose) INS double tag element (inserted text, deleted text ). |
html4:isindex | basis | (html4:isindex . attributes) | The LAML mirror of the HTML 4.0 (loose) ISINDEX single tag element (single line prompt ). |
html4:kbd | basis | (html4:kbd contents . attributes) | The LAML mirror of the HTML 4.0 (loose) KBD double tag element (no explanation available). |
html4:label | basis | (html4:label contents . attributes) | The LAML mirror of the HTML 4.0 (loose) LABEL double tag element (form field label text ). |
html4:legend | basis | (html4:legend contents . attributes) | The LAML mirror of the HTML 4.0 (loose) LEGEND double tag element (fieldset legend ). |
html4:li | basis | (html4:li contents . attributes) | The LAML mirror of the HTML 4.0 (loose) LI tag element, which can be applied as a single tag via a #f contents parameter (list item ). |
html4:link | basis | (html4:link . attributes) | The LAML mirror of the HTML 4.0 (loose) LINK single tag element (a media-independent link ). |
html4:map | basis | (html4:map contents . attributes) | The LAML mirror of the HTML 4.0 (loose) MAP double tag element (client-side image map ). |
html4:menu | basis | (html4:menu contents . attributes) | The LAML mirror of the HTML 4.0 (loose) MENU double tag element (directory list, menu list ). |
html4:meta | basis | (html4:meta . attributes) | The LAML mirror of the HTML 4.0 (loose) META single tag element (generic metainformation ). |
html4:noframes | basis | (html4:noframes contents . attributes) | The LAML mirror of the HTML 4.0 (loose) NOFRAMES double tag element (alternate content container for non frame-based rendering ). |
html4:noscript | basis | (html4:noscript contents . attributes) | The LAML mirror of the HTML 4.0 (loose) NOSCRIPT double tag element (alternate content container for non script-based rendering ). |
html4:object | basis | (html4:object contents . attributes) | The LAML mirror of the HTML 4.0 (loose) OBJECT double tag element (generic embedded object ). |
html4:ol | basis | (html4:ol contents . attributes) | The LAML mirror of the HTML 4.0 (loose) OL double tag element (ordered list ). |
html4:optgroup | basis | (html4:optgroup contents . attributes) | The LAML mirror of the HTML 4.0 (loose) OPTGROUP double tag element (option group ). |
html4:option | basis | (html4:option contents . attributes) | The LAML mirror of the HTML 4.0 (loose) OPTION tag element, which can be applied as a single tag via a #f contents parameter (selectable choice ). |
html4:p | basis | (html4:p contents . attributes) | The LAML mirror of the HTML 4.0 (loose) P tag element, which can be applied as a single tag via a #f contents parameter (paragraph ). |
html4:param | basis | (html4:param . attributes) | The LAML mirror of the HTML 4.0 (loose) PARAM single tag element (named property value ). |
html4:pre | basis | (html4:pre contents . attributes) | The LAML mirror of the HTML 4.0 (loose) PRE double tag element (preformatted text ). |
html4:q | basis | (html4:q contents . attributes) | The LAML mirror of the HTML 4.0 (loose) Q double tag element (short inline quotation ). |
html4:s | basis | (html4:s contents . attributes) | The LAML mirror of the HTML 4.0 (loose) S double tag element (no explanation available). |
html4:samp | basis | (html4:samp contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SAMP double tag element (no explanation available). |
html4:script | basis | (html4:script contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SCRIPT double tag element (script statements ). |
html4:select | basis | (html4:select contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SELECT double tag element (option selector ). |
html4:small | basis | (html4:small contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SMALL double tag element (no explanation available). |
html4:span | basis | (html4:span contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SPAN double tag element (generic language/style container ). |
html4:strike | basis | (html4:strike contents . attributes) | The LAML mirror of the HTML 4.0 (loose) STRIKE double tag element (no explanation available). |
html4:strong | basis | (html4:strong contents . attributes) | The LAML mirror of the HTML 4.0 (loose) STRONG double tag element (no explanation available). |
html4:style | basis | (html4:style contents . attributes) | The LAML mirror of the HTML 4.0 (loose) STYLE double tag element (style info ). |
html4:sub | basis | (html4:sub contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SUB double tag element (subscript, superscript ). |
html4:sup | basis | (html4:sup contents . attributes) | The LAML mirror of the HTML 4.0 (loose) SUP double tag element (subscript, superscript ). |
html4:table | basis | (html4:table contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TABLE double tag element (no explanation available). |
html4:tbody | basis | (html4:tbody contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TBODY tag element, which can be applied as a single tag via a #f contents parameter (table body ). |
html4:td | basis | (html4:td contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TD tag element, which can be applied as a single tag via a #f contents parameter (table header cell, table data cell). |
html4:textarea | basis | (html4:textarea contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TEXTAREA double tag element (multi-line text field ). |
html4:tfoot | basis | (html4:tfoot contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TFOOT tag element, which can be applied as a single tag via a #f contents parameter (table footer ). |
html4:th | basis | (html4:th contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TH tag element, which can be applied as a single tag via a #f contents parameter (table header cell, table data cell). |
html4:thead | basis | (html4:thead contents . attributes) | The LAML mirror of the HTML 4.0 (loose) THEAD tag element, which can be applied as a single tag via a #f contents parameter (table header ). |
html4:title | basis | (html4:title contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TITLE double tag element (document title ). |
html4:tr | basis | (html4:tr contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TR tag element, which can be applied as a single tag via a #f contents parameter (table row ). |
html4:tt | basis | (html4:tt contents . attributes) | The LAML mirror of the HTML 4.0 (loose) TT double tag element (no explanation available). |
html4:u | basis | (html4:u contents . attributes) | The LAML mirror of the HTML 4.0 (loose) U double tag element (no explanation available). |
html4:ul | basis | (html4:ul contents . attributes) | The LAML mirror of the HTML 4.0 (loose) UL double tag element (unordered list ). |
html4:var | basis | (html4:var contents . attributes) | The LAML mirror of the HTML 4.0 (loose) VAR double tag element (no explanation available). |
html:map | surface | (html:map . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) HTML:MAP double tag element (client-side image map ). |
i | surface | (i . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) I double tag element (no explanation available). |
id-1 | general | (id-1 x) | The identify function of one parameter
|
iframe | surface | (iframe . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) IFRAME double tag element (inline subwindow ). |
image-file | convenience | (image-file file-name) | Return the full path/address of the image file named file-name. |
image-file-path | convenience | (image-file-path) | Determination of the actual file path to images in html files. |
img | surface | (img . attributes) | The LAML mirror of the HTML 4.0 (loose) IMG single tag element (Embedded image ). |
img-0 | convenience | (img-0 file-name . width) | Return an img tag, in which a file on file-name is presented. |
img-with-border | convenience | (img-with-border file-name . width) | A variant of img which presents an image with a border
|
in-danish | convenience | (in-danish str) | Translate the Danish letters in str to a string with appropriate use of HTML character entities. |
indent-pixels | convenience | (indent-pixels p text) | Indent text with p pixels
|
indentation-delta | scheme-pretty-printing | indentation-delta | An integer which gives the level of indentation
|
index-in-list-by-predicate | general | (index-in-list-by-predicate lst el comparator) | Return the index of the first occurrence of el in lst. |
input | surface | (input . attributes) | The LAML mirror of the HTML 4.0 (loose) INPUT single tag element (form control ). |
ins | surface | (ins . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) INS double tag element (inserted text, deleted text ). |
is-white-space? | collect-skip | (is-white-space? ch) | Is ch a white space character?
|
isindex | surface | (isindex . attributes) | The LAML mirror of the HTML 4.0 (loose) ISINDEX single tag element (single line prompt ). |
js-call | convenience | (js-call function-name parameters) | Return a Javascript calling form, given function function-name and parameters. |
js-string-array | convenience | (js-string-array elements) | Return a manifest javascript array given its elements
|
kbd | surface | (kbd . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) KBD double tag element (no explanation available). |
kn-internet-image-path | convenience | kn-internet-image-path | The URL where the author of this library keeps a number of images (icons). |
label | surface | (label . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) LABEL double tag element (form field label text ). |
laml-canonical-command-line | mzscheme-compat | (laml-canonical-command-line) | Return the contextual command line information passed to LAML upon activation. |
laml-canonical-command-line | scm-compat | (laml-canonical-command-line) | Return the contextual command line information passed to LAML upon activation. |
laml-error | general | (laml-error . messages) | Stop the program with messages. |
laml-home-button | convenience | (laml-home-button extra-level text-or-image . start-dir) | Return an HTML a tag (anchor) which links to the LAML software home page via an small gif icon. |
laml-standard-comment | convenience | (laml-standard-comment) | Return the standard LAML comment, to be inserted at the top of every LAML generated page. |
laml-top-banner | convenience | (laml-top-banner) | Return the standard LAML top banner with time of generation, copyright, and home icon
|
last | general | (last lst) | Return the last element of a list. |
leap-year | time | (leap-year y) | Return whether y is a leap year. |
left-middle-right-banner | convenience | (left-middle-right-banner left middle right) | Return a banner with left, middle, and right justified contributions. |
left-right-banner | convenience | (left-right-banner left right) | Return a banner with left and right justified contributions. |
legend | surface | (legend . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) LEGEND double tag element (fieldset legend ). |
length-of-std-input | cgi | (length-of-std-input) |
Return the number of chars on standard input |
li | surface | (li . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) LI tag element which can be applied without contents (corresponding to start tag only) (list item ). |
light-blue | color | light-blue | A color constant. |
lime | color | lime | A color constant. |
linebreak-limit | string-make-up | linebreak-limit | The line length limit. |
link | surface | (link . attributes) | The LAML mirror of the HTML 4.0 (loose) LINK single tag element (a media-independent link ). |
list-difference | general | (list-difference lst1 lst2) | Remove the elements of lst2 from lst1. |
list-intersection-by-predicate | general | (list-intersection-by-predicate lst1 lst2 pred) | Return the elements of lst1 an lst2 which belongs to both of the lists. |
list-part | general | (list-part a b lst) | Return the sublist consisting of element a to element b of the list lst. |
list-prefix | general | (list-prefix lst n) | Return the list of the first n elements of lst. |
list-to-string | general | (list-to-string str-lst separator) | Return a string with the elements of str-lst separated by separator. |
look-ahead-char | collect-skip | (look-ahead-char) | Return the first character in the look ahead vector. |
look-ahead-prefix | collect-skip | (look-ahead-prefix lgt) | Return a lgt character string from the peeked chars in the queue. |
looking-at-substring? | general | (looking-at-substring? str pos sub-str) | Does str contain sub-str as substring, starting at position pos?
An efficient implementation without any string copying, only character comparsion. |
mail | mzscheme-compat | (mail receiver title contents) | Mail sending support: Send an email to a receiver. |
mail | scm-compat | (mail receiver title contents . temp-dir) | Mail sending support: Send an email to a receiver with title and contents. |
mail-link | convenience | (mail-link email-adr . anchor-name) | Return a mail link by means of the mailto facility in an a tag. |
make-color | color | (make-color r g b) | Make and return the rgb-list representation of the color with r red, g green, and b blue. |
make-directory-in-directory | mzscheme-compat | (make-directory-in-directory in-directory-path new-dir) | Make a new directory, new-dir, in the directory path (first parameter). |
make-directory-in-directory | scm-compat | (make-directory-in-directory in-directory-path new-dir) | Make a new directory, new-dir, in the directory path (first parameter). |
make-list | general | (make-list n el) | Return a list of n elements, each being el
|
make-mutator-function | general | (make-mutator-function n . optional-parameter-list) | Make and return a mutator function which mutates element number n in a list. |
make-rgb-color | color | (make-rgb-color r g b) | Make and return a color represented by a red, green and blue constituent. |
make-selector-function | general | (make-selector-function n [selector-name]) | Returns a function, which selects element number n in a list. |
make-url | cgi | (make-url url-prefix cgi-program key-list val-list) | Return an URL from the parameters. |
make-url-parameters | cgi | (make-url-parameters key-list val-list) | Make the last part of an url - the part after the question mark. |
map2 | general | (map2 f lst1 lst2) | Like map, but maps f on two lists. |
map3 | general | (map3 f lst1 lst2 lst3) | Like map, but maps f on three lists |
map4 | general | (map4 f lst1 lst2 lst3 lst4) | Like map, but maps f on four lists |
map5 | general | (map5 f lst1 lst2 lst3 lst4 lst5) | Like map, but maps f on five lists |
mapping-filter | general | (mapping-filter pred lst) | Map and filter a list lst by means of the predicate pred. |
maroon | color | maroon | A color constant. |
match-look-ahead? | collect-skip | (match-look-ahead? str) | Return whether the queue contents match the string str. |
max-look-ahead | collect-skip | max-look-ahead | The length of the cyclic look ahead buffer. |
max-look-ahead-prefix | collect-skip | (max-look-ahead-prefix) | Return the entire look ahead queue as a string
|
member-by-predicate | general | (member-by-predicate el lst p) | Is el member of lst by means of the predicate p. |
menu | surface | (menu . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) MENU double tag element (directory list, menu list ). |
merge-lists | general | (merge-lists list1 list2 pred) | Merge list1 and list2. |
merge-lists-simple | general | (merge-lists-simple lst1 lst2) | Merge the two lists lst1 and lst2. |
meta | surface | (meta . attributes) | The LAML mirror of the HTML 4.0 (loose) META single tag element (generic metainformation ). |
min-max-limited | general | (min-max-limited x min max) | Ensure that the number x is in between min and max, or that min or max is returned. |
mini-menu | convenience | (mini-menu mini-menu-list dark-color) | Makes a horizontal menu menu in terms of a table with links. |
minute-of-time | time | (minute-of-time decoded-time-list) | Return the minutes of a decoded time list. |
modify-element | surface | (modify-element element . attributes-and-contents) | Define partial attributes and element contents of element and return a new element function
with the attributes and contents partially fixed. |
month-of-time | time | (month-of-time decoded-time-list) | Return the month of a decoded time list. |
multi-column-list | convenience | (multi-column-list columns elements total-width) | Return a multi-column list, row major, with columns columns. |
multi-pair | general | (multi-pair lst-of-lst) | Pair up first elements, second elements of a list of lists. |
multipart-form | convenience | (multipart-form cgi-url target-directory target-directory-url x) | Embed x into a multipart form. |
multiplum-of | general | (multiplum-of a b) | Is a (the first par) a multiplum of b (the last par)?
|
n-column-list | convenience | (n-column-list n elements total-width) | Return an n column list, column-major, of the element list (second parameter). |
narrow | convenience | (narrow separator-fn width . contents-list) | Present the contents-list, which is a list of elements, in a narrow
column of width, separated with activations of separator-fn. |
narrow-with-pixels | convenience | (narrow-with-pixels p text) | Show text in a column, narrowed from both left and right with p pixels
|
navy | color | navy | A color constant. |
negate | general | (negate p) | A higher order functions which negates the predicate p. |
newline-string | general | (newline-string) | Return a CR string. |
nineth | general | (nineth lst) | Return the nineth element of a list |
noframes | surface | (noframes . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) NOFRAMES double tag element (alternate content container for non frame-based rendering ). |
noscript | surface | (noscript . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) NOSCRIPT double tag element (alternate content container for non script-based rendering ). |
number-in-base | general | (number-in-base n base) | Return the decimal number n in base. |
number-interval | general | (number-interval f t) | Return a list of all numbers from f to t. |
numeric-string? | general | (numeric-string? str) | Is the string str purely numeric?
More specifically, does it consist exclusively of the ciffers 0 through 9. |
object | surface | (object . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) OBJECT double tag element (generic embedded object ). |
ol | surface | (ol . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) OL double tag element (ordered list ). |
ol-1 | convenience | (ol-1 list) | A convenient alias for ordered-list. |
olive | color | olive | A color constant. |
optgroup | surface | (optgroup . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) OPTGROUP double tag element (option group ). |
option | surface | (option . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) OPTION tag element which can be applied without contents (corresponding to start tag only) (selectable choice ). |
orange | color | orange | A color constant. |
ordered-list | convenience | (ordered-list lst) | Return an ol (ordered list) tag. |
p | surface | (p . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) P tag element which can be applied without contents (corresponding to start tag only) (paragraph ). |
p-1 | convenience | (p-1 . x) | Present a p tag (paragraph). |
page | convenience | (page title body . color-list) | Return a simple HTML page with html, head and title tags. |
page-1 | convenience | (page-1 title meta-contributions body bg-color text-color link-color vlink-color . optional-parameter-list) | Return an HTML page with html, head, meta and title tags. |
page-with-keypress-script | convenience | (page-with-keypress-script title meta-contributions body script-loading script keypress-action bg-color text-color link-color vlink-color . optional-parameter-list) | A version of the page and page-1 functions with Javascript scripts as a new fourth to sixth parameter. |
pair-up | general | (pair-up lst1 lst2) | Return a list of pairs of elements from lst1 and lst2. |
param | surface | (param . attributes) | The LAML mirror of the HTML 4.0 (loose) PARAM single tag element (named property value ). |
parent-directory | general | (parent-directory dir) | Return the name of the parent directory of dir (a string), or #f if dir is the root directory. |
password-line | convenience | (password-line name size value) | Return an input tag of type password. |
peek-a-char | collect-skip | (peek-a-char) | Peek a character from the input port, but queues it for subsequent reading
at "the peek end". |
peek-chars | collect-skip | (peek-chars n) | Peeks n charcters
|
post-page | convenience | (post-page) | Return the part of an HTML page after the body. |
post-page-with-comments | convenience | (post-page-with-comments) | Return the part of an HTML page after the body together with trailing laml standard comment and tracing comment. |
pre | surface | (pre . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) PRE double tag element (preformatted text ). |
pre-page | convenience | (pre-page title . color-list) | Return the part of an HTML page before the body. |
pre-page-with-keypress-script | convenience | (pre-page-with-keypress-script title meta-contributions script-loading script keypress-action bg-color text-color link-color vlink-color . optional-par) | Return a pre-page, without body and trailing html stuff. |
prefered-maximum-width | scheme-pretty-printing | prefered-maximum-width | An integer that expresses the preferred maximum column width
|
present-time-interval | time | (present-time-interval second-count) | Return a string which presens the number of years, months, weeks, days, hours, minutes, and seconds
of second-count
|
pretty-print-lisp-file | scheme-pretty-printing | (pretty-print-lisp-file in-file-path [out-file-path]) | Assume that in-file-path contains a lisp file with one or lisp forms. |
pretty-print-lisp-form | scheme-pretty-printing | (pretty-print-lisp-form form) | Pretty print form and return the pretty printed string
|
proper-part | general | (proper-part lst) | Return the proper part of an S-expression
|
propertylist-to-alist | general | (propertylist-to-alist plist) | Make and return an association list from a property list plist. |
purple | color | purple | A color constant. |
put-around-substring | general | (put-around-substring str pre-index pre-putin post-index post-putin) | Put pre-putin at pre-index, and post-putit at post-index in the string str. |
put-back-a-char-read-end | collect-skip | (put-back-a-char-read-end ch) | Put ch back at the front end of the "queue" (where read-a-char operates). |
put-back-a-char-write-end | collect-skip | (put-back-a-char-write-end ch) | Put ch back at the rear end of the queue (where peek-a-char operates). |
put-back-a-string | collect-skip | (put-back-a-string str which-end) | Put str back in queue. |
put-into-string | general | (put-into-string str index putin-str) | Before the character with index put in putin-str into str, and return the resulting,
extended string. |
q | surface | (q . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) Q double tag element (short inline quotation ). |
radio-button | convenience | (radio-button value group-name . checked) | Return an input tag of type radio. |
re-break | general | (re-break str) | A quite special HTML line breaking function. |
read-a-char | collect-skip | (read-a-char) | Read from the the look ahead buffer. |
read-a-string | collect-skip | (read-a-string n) | Read and return a string of length n. |
read-std-input | cgi | (read-std-input n) | Read n chars from standard input and return as string. |
read-text-file | file-read | (read-text-file file-name) |
Return the textual contents of file-name, as a string |
read-text-file-between-marks | file-read | (read-text-file-between-marks file-name mark) |
Reads the part of the file between - but excluding - two occurences of mark, and return it as a text string. |
read-text-file-from-input-port | file-read | (read-text-file-from-input-port input-port) |
Return the textual contents of input-port, as a string |
read-text-file-including-marks | file-read | (read-text-file-including-marks file-name start-mark end-mark) |
Reads the part of the file between and including occurences of start-mark and end-mark, and return it as a text string. |
rebreak-string | string-make-up | (rebreak-string str) | Make up the string str, and return a variant of it which
is rebroken to have a certain, approximate maximum linelength. |
red | color | red | A color constant. |
red-of-rgb-color | color | (red-of-rgb-color color) | Return the red constituent of the LAML color. |
relative-path-to-path-list | general | (relative-path-to-path-list dir) | Given a relative file path, return a list of path constituents. |
remove-duplicates | general | (remove-duplicates lst) | Duplicate removal - non-destructive. |
remove-duplicates-by-predicate | general | (remove-duplicates-by-predicate lst p) | Remove duplicates from lst. |
remove-duplicates-with-selection | general | (remove-duplicates-with-selection lst selector) | A variant of remove-duplicates with a selector function. |
repeat-string | general | (repeat-string str n) | Repeat the string str n times. |
replace-string | general | (replace-string str1 str2 str3) | In str1 replace all occurences of str2 with str3 and return the resulting string. |
replicate-to-length | general | (replicate-to-length lst lgt) | Replicate lst cyclically to a list of length lgt
|
reset | convenience | (reset value) | Return an input tag of type reset. |
reset-look-ahead-buffer | collect-skip | (reset-look-ahead-buffer) | Reset the look ahead buffer. |
rgb-color | color | (rgb-color r g b) | Return an 'Internet color string" encoding the colors r, g, and b. |
rgb-color-encoding | color | (rgb-color-encoding . color-pars) | Return a color encoding (a string of length seven such as "#123456") of color-pars. |
rgb-color-list | color | (rgb-color-list color-triple-list) | Returns the color encoding of (list r g b) given a list of three color numbers as parameter. |
rgb-color? | color | (rgb-color? x) | Is x a LAML color
|
s | surface | (s . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) S double tag element (no explanation available). |
samp | surface | (samp . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SAMP double tag element (no explanation available). |
save-a-list | general | (save-a-list alist filename) | Save the alist on a file named filename. |
save-on-file | general | (save-on-file x filename) | Displays the first parameter x on a file named filename
|
save-registrations | cgi | (save-registrations a-list f g) |
A special purpose function which saves the a-list in two files f and g. |
script | surface | (script . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SCRIPT double tag element (script statements ). |
second | general | (second lst) | Return the second element of a list |
second-count | time | (second-count y mo d h mi s) | Given date and time in terms of year y, month mo, day d, hour h, minutes mi, and seconds s, caluculate the second count. |
second-of-time | time | (seconds-of-time decoded-time-list) | Return the seconds of a decoded time list. |
select | surface | (select . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SELECT double tag element (option selector ). |
select-1 | convenience | (select-1 name value-list contents-list . selected-value) | Return a select tag, defining multiple choice menu. |
set-image-file-path! | convenience | (set-image-file-path! mode) | Set the image-file-access variable. |
seventh | general | (seventh lst) | Return the seventh element of a list |
silver | color | silver | A color constant. |
sixth | general | (sixth lst) | Return the sixth element of a list |
skip-chars-in-string | general | (skip-chars-in-string str char-list start-pos) | Starting from char-pos, skip characters in string from char-list. |
skip-string | collect-skip | (skip-string str if-not-message) | Assume that str is just in front of us. |
skip-until-string | collect-skip | (skip-until-string str . inclusive) | Skip characters until str is encountered. |
skip-while | collect-skip | (skip-while p) | Skip characters while p holds. |
small | surface | (small . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SMALL double tag element (no explanation available). |
sort-list | scm-compat | (sort-list list com) | Sort list by means of the comparison function com
|
sort-list | mzscheme-compat | (sort-list list com) | Sort list using the comparison predicate
|
space | convenience | (space n) | Return n space special characters (horizontal space)
|
span | surface | (span . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SPAN double tag element (generic language/style container ). |
split-file-name | cgi | (split-file-name filename) | Return a list of the file name components separated by underscore. |
split-on | general | (split-on ch str) | Return a list of two strings taken from str. |
split-point | general | (split-point ch str) | Return the character position where ch occurs the first time in str. |
strike | surface | (strike . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) STRIKE double tag element (no explanation available). |
string-it | general | (string-it x) | embed the string x in double string quotes
|
string-it-single | general | (string-it-single x) | embed the string x in single string quotes
|
string-merge | general | (string-merge str-list-1 str-list-2) | Merge str-list-1 with str-list-2, returning one string. |
string-of-char-list? | general | (string-of-char-list? str char-list) | Are all characters in str member of char-list (a list of characters). |
string-of-negative-char-list? | general | (string-of-negative-char-list? str char-list) | Are all characters in str different from the characters in char list (a list of characters). |
string-to-list | general | (string-to-list str element-separator-chars) | Convert a string to a list. |
strip-initial-characters | general | (strip-initial-characters char-list string) | Strip initial occurences of chars from char-list from string. |
strip-initial-spaces | general | (strip-initial-spaces string) | Strip all initial space characters and lineshifting characters from string. |
strip-trailing-characters | general | (strip-trailing-characters char-list string) | Strip trailing occurences of the characters in char-list from string. |
strong | surface | (strong . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) STRONG double tag element (no explanation available). |
style | surface | (style . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) STYLE double tag element (style info ). |
sub | surface | (sub . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SUB double tag element (subscript, superscript ). |
sublist-by-2columns | general | (sublist-by-2columns lst extra) | Return sublists of lst in two column format. |
sublist-by-columns | general | (sublist-by-columns n lst extra) | Return sublists of lst in an n column format. |
sublist-by-predicate | general | (sublist-by-predicate lst p) | Return a list of sublists of elements from lst controlled by an element predicate p. |
sublist-by-rows | general | (sublist-by-rows n lst) | Return a list of lists of elements from lst. |
sublistify | general | (sublistify lst sublist-length) | Divide the elements of lst into sublists of sublist-length. |
submit | convenience | (submit value [name]) | Return an input tag of type submit. |
subset-of-by-predicate | general | (subset-of-by-predicate set-list-1 set-list-2 comp) | Return whether every element in set-list-1 (a list) is a member of set-list-2, compared by the comparator comp. |
substring-index | general | (substring-index str str-index find-str) | Return the index of the first occurence of find-str in str. |
sum-list | general | (sum-list lst) | Add all elments in a list of numbers
|
sup | surface | (sup . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) SUP double tag element (subscript, superscript ). |
symbolize-key | general | (symbolize-key key-value-pair) | A functions which converts the key position in an a-lists to a symbol. |
syntactical-comment-symbol | scheme-pretty-printing | syntactical-comment-symbol | The symbol which is used for syntactical comments, such as (comment 2 "This is a comment"). |
table | surface | (table . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TABLE double tag element (no explanation available). |
table-0 | convenience | (table-0 list-of-list . border) | Return a table with elements from list-of-list. |
table-1 | convenience | (table-1 border cell-width-list cell-color-list-1 list-of-list . valign) | A more versatile variant of table-0. |
table-2 | convenience | (table-2 border cell-width-list cell-color-list-1 header-list list-of-list) | A variant of table and table-1 which supports a header row. |
table-3 | convenience | (table-3 border cell-width-list list-of-list . valign) | A transparant variant of table-1 - without specification of a column color list. |
table-4 | convenience | (table-4 border cell-width-list row-color-list list-of-list . valign) | A variant of table-1 with a row color list instead of a column color list. |
table-5 | convenience | (table-5 border cell-width-list list-of-color-list list-of-list . valign) | A variant of table-4 that allows individual background coloring of table cells. |
tbody | surface | (tbody . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TBODY tag element which can be applied without contents (corresponding to start tag only) (table body ). |
td | surface | (td . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TD tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell). |
tetal | color | tetal | A color constant. |
text-line | convenience | (text-line name size value) | Return an input tag of type text. |
textarea | surface | (textarea . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TEXTAREA double tag element (multi-line text field ). |
textarea-1 | convenience | (textarea-1 name rows cols contents) | Return a textarea form. |
tfoot | surface | (tfoot . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TFOOT tag element which can be applied without contents (corresponding to start tag only) (table footer ). |
th | surface | (th . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TH tag element which can be applied without contents (corresponding to start tag only) (table header cell, table data cell). |
thead | surface | (thead . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) THEAD tag element which can be applied without contents (corresponding to start tag only) (table header ). |
third | general | (third lst) | Return the third element of a list |
time-decode | time | (time-decode n) | Given an integer n, which is the number of second since january 1, 1970,
return a list: (year month day minutes seconds). |
time-encode | time | (time-encode y mo d h mi s) | An alias of second-count - encode year, month, day, hour, minutes, and seconds to an integer. |
time-extend | cgi | (time-extend a-list second-count) | Extend the the a-list with date, time and second-cound fields (all strings). |
time-interval | time | (time-interval second-count) | Return the number of years, months, weeks, days, hours, minutes, and seconds
from second-count. |
time-ok? | time | (time-ok? x) | Return whether x is a legal time string (of the form "hhmm")
|
time-string | time | (time-string second-count) | Return the date, in the format "ddmmyyyy" of second-count,
which represents the time in seconds elapsed since January 1, 1970. |
time-zone-info | time | time-zone-info | Defines the time-zone. |
timed-page | convenience | (timed-page title show-time continuation-url meta-contributions body bg-color text-color link-color vlink-color . optional-parameter-list) | A variant of page-1 and page-with-keypress-script which includes show-time (in seconds) and continuation-url. |
timed-page-with-keypress-script | convenience | (timed-page-with-keypress-script title show-time continuation-url meta-contributions body script-loading script keypress-action bg-color text-color link-color vlink-color . optional-parameter-list) | A combination of time-page and page-with-keypress-script (with timed-page as starting point). |
title | surface | (title . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TITLE double tag element (document title ). |
tr | surface | (tr . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TR tag element which can be applied without contents (corresponding to start tag only) (table row ). |
tracing-comment | convenience | (tracing-comment) | The result of this function is inserted as an HTML comment on each html page generated. |
transform-year-month-day-hour-minutes-strings | time | (transform-year-month-day-hour-minutes-strings date time) | Transform date and time strings to a second count (a large integer number of seconds elapsed since january 1, 1970). |
transliterate | general | (transliterate in-string ch str) | In in-string, substitute each occurence of character ch with the string str. |
tt | surface | (tt . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) TT double tag element (no explanation available). |
turn-into-boolean | general | (turn-into-boolean x) | If x is considered true return #t else #f. |
two-column-list | convenience | (two-column-list elements total-width) | Return a two column list, column major. |
u | surface | (u . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) U double tag element (no explanation available). |
ul | surface | (ul . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) UL double tag element (unordered list ). |
ul-1 | convenience | (ul-1 list) | A convenient alias for unordered-list. |
ul-tree | convenience | (ul-tree tree) | Show tree as an indented, bulleted list. |
unique-timed-file-name | general | (unique-timed-file-name prefix) | Return a unique file name with prefix. |
unordered-list | convenience | (unordered-list lst) | Return an ul (uordered list) tag. |
upcase-string | general | (upcase-string str) | Upcase all characters in str. |
use-single-lining | scheme-pretty-printing | use-single-lining | A boolean which controls the application of single line pretty printing. |
var | surface | (var . attributes-and-contents) | The LAML mirror of the HTML 4.0 (loose) VAR double tag element (no explanation available). |
vertical-space | convenience | (vertical-space n) | Return n vertical spaces, i.e., n p tags
|
weekday | time | (weekday second-count) | Given an integer, second-count, return the weekday of the time second-count. |
weekday-number | time | (weekday-number second-count) | return the weekday-number of second-count (an integer). |
when-generated | time | (when-generated) | Return a string that describes the current time as generation time. |
white | color | white | A color constant. |
white-space-char-list | general | white-space-char-list | A list of characters considered as blank space characters
|
write-html-page | convenience | (write-html-page file header body) | Write a HTML page consisting of header and body to file. |
write-page | cgi | (write-page title body . color-list) |
Writes an HTML page to standard output. |
write-string-to-port | file-read | (write-string-to-port str port [suppress-cr]) | Write the string str to port, which is assumed to be open. |
write-text-file | file-read | (write-text-file str file-name [suppress-cr]) | Write the text string str to the file named file-name. |
writeln | cgi | (writeln . args) |
Writes a newline on standard output |
year-of-time | time | (year-of-time decoded-time-list) | Return the year of a decoded time list. |
yellow | color | yellow | A color constant. |