xsldbg 4.7.0
Overview
xsldbg is a text based tool to debug stylesheets (the eXtensible Stylesheet Language) and has
commands similar to the Unix/Linux debugger gdb. It has three major modes of execution of stylesheets.
|
Run the whole stylesheet |
Step to next xsl instruction |
Continue until next break point is found, or stylesheet has restarted |
|
On systems with readline library available you can
|
use the back/forward keys to navigate the history of entered commands |
use <tab> key to automatically complete values names such as file names when adding breakpoints |
|
On all systems the last entered command can be repeated by just pressing
the <ENTER> key.
If your operating system supports it file names will be expanded.
Note that the libxml2 library used support the following path types for XSLT/XML documents
|
<SomePath> |
file://<SomePath> |
http://<SomePath> |
ftp://[user[:password]@]host[:port]/path |
|
Normally support for http:// and ftp:// XML document paths enabled in libxml2. When specifier http:// or ftp:// document paths ensure that host maps to IPv4 or IPv6 address used by related server. For
example instead of localhost you may need to use the IPv4 address 127.0.0.1
Several commands take more that one argument. Some arguments can be
surrounded by quotes to complex argument to be proceesed as one
argument. eg break "* | @" would allow you to use a breakpoint on the
template with the name "* | @"
The following shows the legend of terms use in this manual and there meaning
|
TEMPLATE_NAME : A valid template name contains only ASCI character codes 0x00 to 0x7F. And can be a fully qualified name ie "xsl:templateName". |
FILENAME : A valid file name local to the system of the user. It can have a "~" prefix on *nix and CYGWIN platforms. Or environment variables under RISC OS |
URI : A Uniform Resource Identifiers as defined by RFC 2396 |
MODE_NAME The mode of template which can be fully qualified name ie "xsl:modeName". |
QNAME : A fully qualified name ie "xsl:localPart" |
LINENO : A valid line number in associated <FILENAME> |
NUMBER_OF_FRAMES : A valid line number frames to change position by |
BREAKPOINT_ID : A valid break point number |
WATCH_ID : A valid watch expression number as indicated by showwatch command |
SPEED: speed to walk through code at, between 0 to 9 |
(Comment): a comment about command meaning or usage |
{ opt1 | opt2 | opt2 .. etc} : Choose one of the opt's |
XPATH : a xpath selection of node(s) |
PARAM_ID : a valid parameter number as indicated by showparam command |
PATH : A path to change working directory to On some operating systems a "~" prefix will be replaced by your home directory path |
TEXT : Free form text (no restrictions) |
COMMAND : A valid command for the xsldbg |
QNAME : A valid variable/parameter name |
SOURCE : The stylesheet being/to be executed. See <FILENAME> and <URI> |
DATA : The XML data(document) being/to be processed by the stylesheet. See <FILENAME> and <URI> |
DEVICE_PATH : Is a valid terminal on the operating system |
TTY_LEVEL : Is a valid level of input/output to use |
|
|
Help related :help |
Running related : {bye|exit|
quit}, step,
stepup, stepdown,
next,
continue, run,
trace, setoption,
options |
Libxslt parameter related : addparam,
delparam,showparam,
output, setoption,
options |
Template related : templates,
where, frame |
Break point related : break,
showbreak,delete,
enable |
Expression viewing(xpath) : cat |
Node viewing : ls, dir,
du, cat, pwd, addwatch, showwatch, delwatch |
Variable viewing : globals,
locals,
cat |
Variable setting: set |
Node selection : source,
data, cd |
Searching :search |
Operating system related :chdir,
shell,tty |
File related : output,
entities, system,
public |
Disabled file commands: validate,
load, save,
write, free |
|
Commands
Addparam |
---|
Add a libxslt parameter |
|
Usage |
---|
|
addparam <QNAME> <XPATH> (The <XPATH> must not contain any spaces nor double quotation marks.No error checking done on the validity of <QNAME> nor <XPATH>. This is equivalent to providing --param <QNAME> <XPATH> via command line.) |
add param <QNAME> "<XPATH>" (Must not contain double quotation marks in <XPATH>) |
|
|
Addwatch |
---|
Add an expression to be watched. See showwatch for display watch values |
Shortcut name: watch
|
|
|