The namespace for extensions defined in this document are:
Prefix | Namespace |
---|---|
f | http://xmlns.4suite.org/ext |
The prefix is given for this document only. Any other prefix can be used within a particular stylesheet.
Function | Syntax |
---|---|
f:base-uri | string f:base-uri(node-set) |
f:bin-path | string f:bin-path() |
f:cos | number f:cos(number) |
f:decode | object f:decode(object, string) |
f:degrees-to-rads | number f:degrees-to-rads(number) |
f:encode | object f:encode(object, string) |
f:ends-with | boolean f:ends-with(string, string) |
f:escape-xml | string f:escape-xml(string) |
f:fact | number f:fact(number) |
f:generate-uuid | string f:generate-uuid() |
f:if | object f:if(boolean, object, object) |
f:import-string | string f:import-string(object) |
f:indent | string f:indent(string, number, string) |
f:join | string f:join(node-set, string) |
f:match | string f:match(string, string) |
f:normalize-eol | string f:normalize-eol(string) |
f:ospath2uri | string f:ospath2uri(string) |
f:parse-date | string f:parse-date(string, string) |
f:parse-xml | node-set f:parse-xml(string, object) |
f:pytime-to-exslt | string f:pytime-to-exslt(number) |
f:random | number f:random(number, boolean) |
f:range | node-set f:range(number, number) |
f:replace | string f:replace(string, string, string) |
f:resolve-path | string f:resolve-path(string, string) |
f:resolve-url | string f:resolve-url(string, string) |
f:sha-hash | string f:sha-hash(string) |
f:share-path | string f:share-path() |
f:sin | number f:sin(number) |
f:strftime | string f:strftime(string, string) |
f:uri2ospath | string f:uri2ospath(string) |
f:version | string f:version() |
f:wrap | string f:wrap(string, number) |
Returns the base URI of the first node in the given node-set, or of the context node if no argument is given. If the given node-set is empty, an empty string is returned.
Returns the system-dependent path of Fourthought binaries
f:decode mirrors the Python decode function/method. It takes a foreign object that is a Python byte string, and an encoding, and returns another foreign object which is a Unicode object.
Convert degrees to radians
f:encode mirrors the Python encode function/method. It takes a foreign object that is a Unicode object, and an encoding, and returns another foreign object which is a Python byte string.
Returns true if the string given in the first argument ends with the substring given in the second argument.
Returns the given string with XML markup characters "&", "<" and ">" escaped as "&", "<" and ">", respectively.
If the first argument, when converted to a boolean, is true, returns the second argument. Otherwise, returns the third argument, or if the third argument is not given, returns an empty node-set.
f:import-string takes a Unicode FO and returns an XPath string. It is an error if the FO contains illegal XML chars. (although eventually this function might be extended to recover from this error)
f:indent() returns a string with each line of the text indented the given number of levels. For each level, the indent string, normally 2 spaces by default, is prepended to each line.
Concatenates the string-values of the nodes in the given node-set, inserting the delimiter given in the optional second argument in between each string-value. The delimiter defaults to a space. See also: EXSLT's str:concat()
Returns true if the string given in the optional second argument (or the string-value of the context node if no second argument is given) matches the regular expression given in the first argument. See also: EXSLT's regexp:test() This function does differ from XSLT 2.0 match() function
Normalizes end-of-line characters in input string, returning the normalized string. Normalization involves replacing " ", " " or " " with " "
Returns the given OS path as a URI. The result varies depending on the underlying operating system.
This function is similar to EXSLT's date:parse-date() except that it uses Python rather than Java conventions for the date formatting.
f:parse-xml() parses the string-value of the given object as XML and returns a node-set whose sole item is the resulting parsed document's root node. The XML must be a well-formed document. src - the string or object to be parsed as XML. parameters - the name of a parameter set for the operation. The parameters argument is ignored for now. In the future, it will provide a way to specify a base URI for the resolution of relative URIs in entity declarations and XIncludes. Also for now, if the XML contains an encoding declaration, the declaration must specify UTF-8. An example: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:f="http://xmlns.4suite.org/ext" version="1.0" > <xsl:output method="text"/> <xsl:variable name="doc" select="'<spam>eggs<monty>python</monty></spam>'"/> <xsl:template match="/"> <xsl:value-of select="f:parse-xml($doc)/spam/monty"/> </xsl:template> </xsl:stylesheet> ...run against any XML source should yield: python See also: XSLT (not XPath) extension function f:serialize-xml()
Takes a Python time value as a number and returns a date/time as if from EXSLT date-time() t - a time stamp number, as from Python's time.time() if omitted, use the current time
Returns a random number between 0 (inclusive) and max (exclusive). max defaults to 1. The first optional argument is a different value for max, and the second argument is a flag that, if set, causes the random number to be rounded to an integer. See also: EXSLT's math:random()
Returns a node-set consisting of text nodes encapsulating integers in the numeric range bounded by the given low and high values.
Returns the third argument string, which defaults to the string-value of the context node, with occurrences of the substring given in the first argument replaced by the string given in the second argument. See also: EXSLT's str:replace()
Resolves a Posix-style path, such as the path portion of a URL, against a base. Similar to f:resolve-url, but allows the base to be just a path, not necessarily a full URL.
Returns the relative URL ref given in the second argument resolved against the base given in the first argument. In case of URI processing error an empty string is returned
Returns a SHA message digest of the given string, as a string of several groups of hex digits separated by '-'. See http://www.itl.nist.gov/fipspubs/fip180-1.htm for info on SHA.
Returns the system-dependent path to modifiable data
Returns the given ISO 8601 UTC date-time formatted according to the given format string as would be used by Python's time.strftime(). If no date-time string is given, the current time is used.
Returns the given URI as an OS path. The result varies depending on the underlying operating system.
Returns the 4Suite version number as a string.
f:wrap() returns a string with the text reflowed so that each line fits within the given width. Existing linefeeds are preserved, but spaces are considered inter-word separators that can be collapsed. To reflow without preserving existing linefeeds, strip them first, e.g. with translate(text, ' ', ''). http://lists.fourthought.com/pipermail/4suite-dev/2002-December/000878.html