-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
xsltforms_tracelog.xhtml
37 lines (37 loc) · 1.43 KB
/
xsltforms_tracelog.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xf="http://www.w3.org/2002/xforms" xmlns:xsltforms="http://www.agencexml.com/xsltforms" xmlns:ev="http://www.w3.org/2001/xml-events" xsltforms:dummy="dummy">
<head>
<title>XSLTForms Trace Log</title>
<xf:model>
<xf:instance id="profile" src="opener://xsltforms-profiler"/>
<xf:instance id="tracelog" src="opener://xsltforms-tracelog"/>
</xf:model>
</head>
<body>
<xf:group ref=".[not(*)]">
<p>Trace Log is accessible when pressing F1 key then activating the corresponding trigger.</p>
</xf:group>
<xf:group ref=".[*]">
<h2>XSLTForms Trace Log</h2>
<p>
<xf:output value="xsltforms:date">
<xf:label>TimeStamp: </xf:label>
</xf:output>
</p>
<h3><xf:output value="xsltforms:location"/></h3>
<p>Environment:
<ul>
<li>Browser: <xf:output value="xsltforms:appname"/> <xf:output value="xsltforms:appcodename"/> <xf:output value="xsltforms:appversion"/></li>
<li>User-Agent: <xf:output value="xsltforms:useragent"/></li>
<li>Initial XSLT Engine: <xf:output value="xsltforms:xsltengine"/></li>
<li>Current XSLT Engine: <xf:output value="xsltforms:xsltengine2"/></li>
<li>XSLTForms Version: <xf:output value="xsltforms:version"/></li>
</ul>
</p>
<pre>
<xf:repeat nodeset="instance('tracelog')/event">
<xf:output value="."/>
</xf:repeat>
</pre>
</xf:group>
</body>
</html>