-
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Support several Apache Solr versions
As incompatibilities can also occur in minor versions, all versions will be explicitly tested and listed. Currently tested and supported versions are: 9.3.0, 9.4.0, 9.4.1, 9.5.0. It is always recommended to use the latest tested version. Resolves: #3955
- Loading branch information
1 parent
e6282ad
commit 138b2ab
Showing
8 changed files
with
71 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM solr:9.3.0 | ||
FROM solr:9.5.0 | ||
MAINTAINER dkd Internet Service GmbH <[email protected]> | ||
ENV TERM linux | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 32 additions & 20 deletions
52
Resources/Private/Templates/Backend/Reports/SolrVersionStatus.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,34 @@ | ||
<p style="margin-bottom: 10px;">Found an | ||
outdated Apache Solr server version. <br />The <strong>minimum | ||
required version is <code>{requiredVersion}</code></strong>, you have <code>{currentVersion}</code>.</p> | ||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" | ||
xmlns:f="http://typo3.org/ns/TYPO3/Fluid/ViewHelpers" | ||
data-namespace-typo3-fluid="true" | ||
> | ||
|
||
<p style="margin-bottom: 10px;">Found an unsupported Apache Solr server version. <br /> | ||
It is strongly recommended to use one of the explicitly tested versions, preferably the latest one.<br /> | ||
The currently supported versions are: | ||
<f:for each="{supportedSolrVersions}" as="version" iteration="iterator"> | ||
<strong><code>{version}</code></strong>{f:if(condition: '{iterator.isLast}', then: '.', else: ',')} | ||
</f:for> | ||
<br />Your version is: <code>{currentVersion}</code>. | ||
</p> | ||
<table class="table table-condensed table-hover table-striped"> | ||
<thead> | ||
<tr> | ||
<td colspan="2">Affected Solr server</td> | ||
</tr> | ||
</thead> | ||
<tr> | ||
<th>Host</th> | ||
<td>{solr.primaryEndpoint.host}</td> | ||
</tr> | ||
<tr> | ||
<th>Path</th> | ||
<td>{solr.corePath}</td> | ||
</tr> | ||
<tr> | ||
<th>Port</th> | ||
<td>{solr.primaryEndpoint.port}</td> | ||
</tr> | ||
<thead> | ||
<tr> | ||
<td colspan="2">Affected Solr server</td> | ||
</tr> | ||
</thead> | ||
<tr> | ||
<th>Host</th> | ||
<td>{solr.primaryEndpoint.host}</td> | ||
</tr> | ||
<tr> | ||
<th>Path</th> | ||
<td>{solr.corePath}</td> | ||
</tr> | ||
<tr> | ||
<th>Port</th> | ||
<td>{solr.primaryEndpoint.port}</td> | ||
</tr> | ||
</table> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters