the startupStatus-displayRaw template does not have access to the i18n freemarker variable, so backing those changes out

This commit is contained in:
tworrall 2013-05-14 11:32:50 -04:00
parent 62f2074dc9
commit 63445aa249

View file

@ -40,7 +40,7 @@
<html lang="en">
<head>
<title>${i18n().startup_status}</title>
<title>Startup Status</title>
<style TYPE="text/css">
#startup-trace {
@ -77,9 +77,9 @@
<body>
<#if status.errorItems?has_content>
<h2>${i18n().fatal_error}</h2>
<h2>Fatal error</h2>
<p>${i18n().fatal_error_detected(applicationName)}</p>
<p>${applicationName} detected a fatal error during startup.</p>
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation">
<#list status.errorItems as item>
@ -89,9 +89,9 @@
</#if>
<#if status.warningItems?has_content>
<h2>${i18n().warning}</h2>
<h2>Warning</h2>
<p>${i18n().warning_issued(applicationName)}</p>
<p>${applicationName} issued warnings during startup.</p>
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation"><#list status.warningItems as item>
<@statusItem item=item />
@ -100,14 +100,14 @@
<#-- If there were no fatal errors, let them go forward from here. -->
<#if showLink>
<p><a href="${url}" title="continue">${i18n().continue}</a></p>
<p><a href="${url}" title="continue">Continue</a></p>
</#if>
</#if>
<h2>${i18n().startup_trace}</h2>
<h2>Startup trace</h2>
<p>${i18n().full_list_startup}</p>
<p>The full list of startup events and messages.</p>
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation">
<#list status.statusItems as item>