Skip to content

Commit

Permalink
Fixing wrong subtitles
Browse files Browse the repository at this point in the history
  • Loading branch information
Maarc committed Aug 13, 2017
1 parent cb35d2d commit e9cad29
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
Expand Up @@ -79,7 +79,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">EJB Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">This report lists the Java EE EJB beans with their JNDI address - stateless and statefull beans, message driven beans, and entity beans.</div>
</div>
Expand Down
Expand Up @@ -29,7 +29,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Hibernate Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
The Hibernate report lists the Hibernate entities and the Hibernate configuration found in the application.
Expand Down
Expand Up @@ -31,7 +31,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">JBPM Process Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
The JBPM process report shows the basic characteristics of JBPM processes found in the application,
Expand Down
Expand Up @@ -29,7 +29,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">JPA Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
The JPA report lists the JPA entities, named JPA queries, and the JPA configuration found in the application.
Expand Down
Expand Up @@ -29,7 +29,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Remote Service Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
This report lists Java EE EJB services - their interfaces and implementations.
Expand Down
Expand Up @@ -29,7 +29,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Server Resource Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
This reports lists the resources of the application that are supposed to be used by the server,
Expand Down
Expand Up @@ -29,7 +29,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Spring Bean Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
The Spring bean report lists the SpringBeans found in the application
Expand Down
Expand Up @@ -97,7 +97,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Compatible Files Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
Files in this report are believed to be compatible with the selected target platform;
Expand Down
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<#assign applicationReportIndexModel = reportModel.applicationReportIndexModel>

<html lang="en">
<head>
<meta charset="utf-8">
Expand Down Expand Up @@ -41,7 +41,7 @@
<h1>
<div class="main">${reportModel.reportName}</div>
<#if reportModel.projectModel??>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</#if>
</h1>
<div class="desc">
Expand Down
Expand Up @@ -63,7 +63,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Hard-coded IP Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
The hard-coded IP report lists the places where an IP address is found in the application.
Expand Down
Expand Up @@ -80,8 +80,8 @@
<div class="row">
<div class="page-header page-header-no-border">
<h1>
<div class="main">Ignored Files Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="main">Ignored files</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
${reportModel.description}
Expand Down
Expand Up @@ -71,7 +71,7 @@
<div class="page-header page-header-no-border">
<h1>
<div class="main">Unparsable Files Report</div>
<div class="path">${reportModel.projectModel.name?html}</div>
<div class="path">${reportModel.projectModel.rootFileModel.fileName}</div>
</h1>
<div class="desc">
${reportModel.description}
Expand Down

0 comments on commit e9cad29

Please sign in to comment.