the startupStatus-displayRaw template does not have access to the i18n freemarker variable, so backing those changes out
This commit is contained in:
parent
62f2074dc9
commit
63445aa249
1 changed files with 15 additions and 15 deletions
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>${i18n().startup_status}</title>
|
<title>Startup Status</title>
|
||||||
|
|
||||||
<style TYPE="text/css">
|
<style TYPE="text/css">
|
||||||
#startup-trace {
|
#startup-trace {
|
||||||
|
@ -77,9 +77,9 @@
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<#if status.errorItems?has_content>
|
<#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">
|
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation">
|
||||||
<#list status.errorItems as item>
|
<#list status.errorItems as item>
|
||||||
|
@ -89,9 +89,9 @@
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#if status.warningItems?has_content>
|
<#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>
|
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation"><#list status.warningItems as item>
|
||||||
<@statusItem item=item />
|
<@statusItem item=item />
|
||||||
|
@ -100,14 +100,14 @@
|
||||||
|
|
||||||
<#-- If there were no fatal errors, let them go forward from here. -->
|
<#-- If there were no fatal errors, let them go forward from here. -->
|
||||||
<#if showLink>
|
<#if showLink>
|
||||||
<p><a href="${url}" title="continue">${i18n().continue}</a></p>
|
<p><a href="${url}" title="continue">Continue</a></p>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
</#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">
|
<ul id="startup-trace" cellspacing="0" class="trace" role="navigation">
|
||||||
<#list status.statusItems as item>
|
<#list status.statusItems as item>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue