Skip to content

Commit

Permalink
Merge pull request #257 from guusdk/html5-tomcat-log-errors
Browse files Browse the repository at this point in the history
Html5 tomcat log errors
  • Loading branch information
akrherz authored Sep 16, 2024
2 parents e77342a + 13d1907 commit 6b4a3cd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/main/webapp/downloads/nightly_openfire.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
final SortedMap<String, List<File>> filesByDate = new TreeMap<>( Collections.reverseOrder() );
filesByDate.putAll(
Arrays.stream( allFiles )
.filter(File::isFile)
.sorted( new FileComparator() )
.collect( Collectors.groupingBy(file -> {
final Matcher matcher = datePattern.matcher( file.getName() );
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/downloads/nightly_smack.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
final SortedMap<Date, File> filesByDate = new TreeMap<>(Collections.reverseOrder());
filesByDate.putAll(
Arrays.stream(allFiles)
.filter(File::isFile)
.collect(Collectors.toMap(file -> {
final Matcher matcher = datePattern.matcher(file.getName());
if (matcher.find()) {
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/downloads/nightly_spark.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
final SortedMap<String, List<File>> filesByDate = new TreeMap<>( Collections.reverseOrder() );
filesByDate.putAll(
Arrays.stream( allFiles )
.filter(File::isFile)
.sorted( new FileComparator() )
.collect( Collectors.groupingBy(file -> {
final Matcher matcher = datePattern.matcher( file.getName() );
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/downloads/nightly_xiff.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
final SortedMap<Date, File> filesByDate = new TreeMap<>(Collections.reverseOrder());
filesByDate.putAll(
Arrays.stream(allFiles)
.filter(File::isFile)
.collect(Collectors.toMap(file -> {
final Matcher matcher = datePattern.matcher(file.getName());
if (matcher.find()) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/projects/openfire/connection_manager.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
</head>
<body>

<jsp:param name="project" value="openfire"/>
<jsp:include page="/includes/navigation.jspf">
<jsp:param name="project" value="openfire"/>
</jsp:include>

<section id="ignite_body">
Expand Down
4 changes: 2 additions & 2 deletions src/main/webapp/projects/openfire/plugin-archive.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
</td>
<td class="c4" style="white-space: nowrap; text-align: center">
<c:out value="${not empty plugin.minimumRequiredOpenfireVersion ? plugin.minimumRequiredOpenfireVersion : ''}"/>
<c:out value="${not empty plugin.priorToOpenfireVersion ? '<br>- ' + plugin.priorToOpenfireVersion : '+'}"/>
<c:out value="${not empty plugin.priorToOpenfireVersion ? '- '.concat(plugin.priorToOpenfireVersion) : '+'}"/>
</td>
</tr>
</c:forEach>
Expand Down Expand Up @@ -264,7 +264,7 @@
</td>
<td class="c4" style="white-space: nowrap; text-align: center">
<c:out value="${not empty plugin.minimumRequiredOpenfireVersion ? plugin.minimumRequiredOpenfireVersion : ''}"/>
<c:out value="${not empty plugin.priorToOpenfireVersion ? '<br>- ' + plugin.priorToOpenfireVersion : '+'}"/>
<c:out value="${not empty plugin.priorToOpenfireVersion ? '- '.concat(plugin.priorToOpenfireVersion) : '+'}"/>
</td>
</tr>

Expand Down

0 comments on commit 6b4a3cd

Please sign in to comment.