first commit

This commit is contained in:
Sven Wappler
2021-04-17 21:20:54 +02:00
parent c93ec9492a
commit cadcc8edb4
406 changed files with 4917 additions and 5157 deletions

View File

@@ -1,4 +1,4 @@
{namespace solr=WapplerSystems\Meilisearch\ViewHelpers\Backend}
{namespace meilisearch=WapplerSystems\Meilisearch\ViewHelpers\Backend}
<f:if condition="{document}">
<div class="panel panel-default">
@@ -27,7 +27,7 @@
<f:for each="{tableRows}" key="tableRowFiledName" as="tableRowValue" >
<tr>
<th scope="row">{tableRowFiledName}</th>
<solr:isString value="{tableRowValue}">
<meilisearch:isString value="{tableRowValue}">
<f:then>
<td>{tableRowValue}</td>
</f:then>
@@ -36,7 +36,7 @@
<f:render section="SubTable" arguments="{tableRows: tableRowValue}"/>
</td>
</f:else>
</solr:isString>
</meilisearch:isString>
</tr>
</f:for>
</f:section>

View File

@@ -1,32 +1,32 @@
<f:if condition="{showSelectOtherPage}">
<f:then>
<f:be.infobox title="No site could be found." state="3">
<p>Please choose other page in the page tree, which has solr configured.</p>
<p>Please choose other page in the page tree, which has meilisearch configured.</p>
</f:be.infobox>
</f:then>
<f:else>
<p>When all of these steps are done check this module again.</p>
<f:be.infobox title="There is no site configured for your solr extension!" state="3">
<f:be.infobox title="There is no site configured for your meilisearch extension!" state="3">
<p>Please check the following:</p>
<p>If you want to use solr with the TYPO3 site configuration:</p>
<p>If you want to use meilisearch with the TYPO3 site configuration:</p>
<ul>
<li>Your site has a page, marked as root page.</li>
<li>Configure EXT:meilisearch with the TYPO3 site module.</li>
<li>Check the reports module if any solr error is shown.</li>
<li>Check the reports module if any meilisearch error is shown.</li>
</ul>
<hr />
<p><strong>OR</strong></p>
<hr />
<p>If you want to use solr with the legacy configuration (domain record and typoscript of EXTCONF setup):</p>
<p>If you want to use meilisearch with the legacy configuration (domain record and typoscript of EXTCONF setup):</p>
<ul>
<li>Your site has a domain configured, please create a domain record on the root page, or configure it in "TYPO3_CONF_VARS|EXTCONF|solr|sites|###rootPageId###|domains"</li>
<li>Your site has a domain configured, please create a domain record on the root page, or configure it in "TYPO3_CONF_VARS|EXTCONF|meilisearch|sites|###rootPageId###|domains"</li>
<li>Your site has a page, marked as root page.</li>
<li>Your page has included the solr typoscript configuration.</li>
<li>You've initialized the solr connections in the backend with the menu item "Initialize solr connections"</li>
<li>Your page has included the meilisearch typoscript configuration.</li>
<li>You've initialized the meilisearch connections in the backend with the menu item "Initialize meilisearch connections"</li>
<li>Afterwards please check if the reports module is showing any errors.</li>
</ul>
</f:be.infobox>