blob: 18102b86d11d026c1f6b1b0b14ee129b5fb152ab [file] [log] [blame]
<html xml:space="default" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<title>Application Exception</title>
</head>
<body>
<h1 class="t-exception-report">An unexpected application exception has occurred.</h1>
<t:if test="productionMode">
<p>${rootException.message}</p>
<t:parameter name="else">
<t:exceptiondisplay exception="rootException"/>
<div class="t-env-data">
<h2>Tapestry Framework</h2>
<dl>
<dt>Version</dt>
<dd>${tapestryVersion}</dd>
</dl>
<h2>Request</h2>
<t:renderobject object="request"/>
<t:if test="hasSession">
<h2>Session</h2>
<dl>
<t:loop source="session.attributeNames" value="attributeName">
<dt>${attributeName}</dt>
<dd>
<t:renderobject object="attributeValue"/>
</dd>
</t:loop>
</dl>
</t:if>
<h2>System Properties</h2>
<dl>
<t:loop source="systemProperties" value="propertyName">
<dt>${propertyName}</dt>
<dd>
<t:if test="simpleProperty">
${propertyValue}
<t:parameter name="else">
<ul>
<li t:type="loop" source="complexPropertyValue" value="var:path">
${var:path}
</li>
</ul>
</t:parameter>
</t:if>
</dd>
</t:loop>
</dl>
</div>
</t:parameter>
</t:if>
</body>
</html>