The speedata Publisher accepts XPath expressions in some attributes.
These attributes are called test
or select
or documented as such. In
all other attributes XPath expressions can be used via curly braces ({
and }
). In the following example XPath expressions are used in the
attribute width
and in the element Value
. The width of the textblock
is taken from the variable $width
, the contents of the paragraph is
the string value of the current node.
<PlaceObject>
<Textblock width="{$width}" fontface="text" textformat="text with indentation">
<Paragraph>
<Value select="."/>
</Paragraph>
</Textblock>
</PlaceObject>
The next example uses the test
attribute. The given XPath expression
must return either true or false.
<Switch>
<Case test="$article = 1 and sd:current-page() > 4">
....
</Case>
<Otherwise>
....
</Otherwise>
</Switch>
5
'hello world'
*
, div
, idiv
, +
, -
, mod
). Example:
( 6 + 4.5 ) * 2
$column + 2
. + 2
productdata
, node()
, *
@a
<
, >
, <=
, >=
, =
, !=
. Attention, the
less than symbol <
must be written in XML as <
, the
symbol >
can be written as >
. Example: $number > 6
. Can
be used in tests.There are two classes of XPath functions: standard XPath functions and
speedata Publisher specific ones. The specific functions are in the
namespace urn:speedata:2009/publisher/functions/en
(denoted by sd:
below). The standard functions should behave like documented by the
XPath 2.0 standard.
Function | Description |
---|---|
sd:current-page() | Return the current page number. |
sd:current-row() | Return the current row. |
sd:current-column() | Return the current column. |
sd:current-framenumber(<name>) | Return the current frame number of given positioning area. |
sd:alternating(<type>, <text>,<text>,.. ) | On each call the next element will be returned. You can define more alternating sequences by using distinct type values. Example: sd:alternating("tbl", "White","Gray") can be used for alternating color of table rules. To reset the state, use sd:reset-alternating(<type>) . |
sd:attr(<name>, ...) | Is the same as @name , but can be used to dynamically construct the attribute name. See example at sd:variable() . |
sd:decode-html(<node>) | Change text such as <i>italic</i> into HTML markup. |
sd:reset-alternating(<type>) | Reset alternating so the next sd:alternating() starts again from the first element. |
sd:merge-pagenumbers(<pagenumbers>,<separator for range>,<separator for space>) | Merge page numbers. For example the numbers "1, 3, 4, 5" are merged into 1, 3–5 . Defaults for the separator for the range is an en-dash (–), default for the spacing separator is ', ' (comma, space). This function sorts the page numbers and removes duplicates. When the separator for range is empty, the page numbers are separated each with the separator for the space. |
sd:number-of-datasets(<Sequence>) | Return the number of records of the sequence. |
sd:number-of-pages(<filename or URI schema>) | Determines the number of pages of a (PDF-)file. |
sd:number-of-columns() | Number of columns in the current grid. |
sd:number-of-rows() | Number of rows in the current grid. |
sd:imageheight(<filename or URI schema>) | Natural height of the image in grid cells. Attention: if the image is not found, the height of the file-not-found placeholder will be returned. Therefore you need to check in advance if the image exists. |
sd:imagewidth(<filename or URI schema>) | Natural width of the image in grid cells. Attention: if the image is not found, the width of the file-not-found placeholder will be returned. Therefore you need to check in advance if the image exists. |
sd:file-exists(<filename or URI schema>) | True if file exists in the current search path. Otherwise it returns false. |
sd:format-number(Number or string, thousands separator, comma separator) | Format the number and insert thousands separators and change comma separator. Example: sd:format-number(12345.67, ',','.') returns the string 12,345.67 . |
sd:format-string(Number or string,formatting instructions) | Return a text string with the number formatted as given by the formatting instructions. These instructions are the same as the instructions by the C function printf() . |
sd:even(<number>) | True if number is even. Example: sd:even(sd:current-page()) |
sd:odd(<number>) | True if number is odd. |
sd:groupwidth(<string>) | Return the number of gridcells of the given group’s width. The argument must be the name of an existing group. Example: sd:groupwidth('My group') |
sd:groupheight(<string>) | Return the given group’s height (in gridcells). See sd:groupwidth(...) |
sd:pagenumber(<string>) | Get the number of the page where the given mark is placed on. See the command Mark. |
sd:variable(<name>, ...) | The same as $name . This function allows variable names to be constructed dynamically. Example: sd:variable('myvar',$num) – if $num contains the number 3, the resulting variable name is myvar3 . |
sd:variable-exists(<name>) | True if variable name exists. |
sd:sha1(<value>,<value>, …) | Return the SHA-1 sum of the concatenation of each value as a hex string. Example: sd:sha1('hello ', 'world') gives the string 2aae6c35c94fcfb415dbe95f408b9ce91ee846ed . |
sd:dummytext() | Returns the dummy text "Lorem ipsum..." (more than 50 words, enough for a paragraph) |
sd:loremipsum() | Same as sd:dummytext() |
Function | Description |
---|---|
concat( <value>,<value>, … ) | Create a new text value by concatinating the |
count(<text>) | Counts all child elements with the given name. Example: count(article) counts, how many child elements with the name article exists. |
ceiling() | Returns the smallest number with no fractional part that is not less than the value of the given argument. |
empty(<attribute>) | Checks, if an attribute is (not) available. |
false() | Return false. |
floor() | Returns the largest number with no fractional part that is not greater than the value of the argument. |
last() | Return the number of elements of the same named sibling elements. Not yet XPath conform. |
not() | Negates the value of the argument. Example: not(true()) returns false() . |
position() | Return the position of the current node. |
replace(<input>,<regexp>, <replacement>) | Replace the input using the regular expression with the given replacement text. Example: replace("banana", "a", "o") yields bonono . |
string(<sequence>) | Return the text value of the sequence e.g. the contents of the elemements. |
string-join(<sequence>,separator) | Return the string value of the sequence, where each element is separated by the separator. |
tokenize(<input>,<regexp>) | This function returns a sequence of strings. The input text is read from left to right. When the regular expression matches the current position, the text read so far from the last match is returned. Example (from the great XPath / XSLT book by M. Key): tokenize("Go home, Jack!", "\W+") returns the sequence "Go", "home", "Jack", "" . |
true() | Return true. |
normalize-space(<text>) | Return the text without leading and trailing spaces. All newlines will be changed to spaces. Multiple spaces/newlines will be changed to a single space. |
abs()
ceiling()
max()
min()
node()
string()
upper-case()