Merge remote-tracking branch 'origin/6.1.4' into 7.0.0
Conflicts: src/Umbraco.Core/StringExtensions.cs src/Umbraco.Tests/Models/ContentExtensionsTests.cs src/Umbraco.Tests/TestHelpers/Entities/MockedContentTypes.cs src/Umbraco.Tests/Umbraco.Tests.csproj src/Umbraco.Tests/packages.config
This commit is contained in:
@@ -27,5 +27,8 @@ More information and documentation can be found on CodePlex: http://umbracoexami
|
||||
<!-- Default Indexset for external searches, this indexes all fields on all types of nodes-->
|
||||
<IndexSet SetName="ExternalIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/External/" />
|
||||
|
||||
<IndexSet SetName="WebsiteIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Website/" />
|
||||
<IndexSet SetName="PDFIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/PDF/" />
|
||||
|
||||
|
||||
</ExamineLuceneIndexSets>
|
||||
@@ -21,7 +21,25 @@ More information and documentation can be found on CodePlex: http://umbracoexami
|
||||
|
||||
<!-- default external indexer, which excludes protected and published pages-->
|
||||
<add name="ExternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"/>
|
||||
|
||||
|
||||
<add name="WebsiteIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"
|
||||
dataService="UmbracoExamine.DataServices.UmbracoDataService, UmbracoExamine"
|
||||
indexSet="WebsiteIndexSet"
|
||||
supportUnpublished="false"
|
||||
supportProtected="true"
|
||||
runAsync="true"
|
||||
interval="10"
|
||||
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"
|
||||
enableDefaultEventHandler="true"/>
|
||||
|
||||
<add name="PDFIndexer" type="UmbracoExamine.PDF.PDFIndexer, UmbracoExamine.PDF"
|
||||
extensions=".pdf"
|
||||
umbracoFileProperty="umbracoFile"/>
|
||||
|
||||
<!--<add name="OfficeIndexer" type="CLIENTNAME.BusinessLogic.Search.OfficeIndexer, CLIENTNAME.BusinessLogic"
|
||||
extensions=".docx,.doc,.txt"
|
||||
umbracoFileProperty="umbracoFile"/>-->
|
||||
|
||||
</providers>
|
||||
</ExamineIndexProviders>
|
||||
|
||||
@@ -34,6 +52,12 @@ More information and documentation can be found on CodePlex: http://umbracoexami
|
||||
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcards="true"/>
|
||||
|
||||
<add name="ExternalSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" />
|
||||
|
||||
<add name="WebsiteSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcards="true"/>
|
||||
|
||||
<add name="PDFSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" />
|
||||
|
||||
<add name="CombinedIndexSearcher" type="Examine.LuceneEngine.Providers.MultiIndexSearcher, Examine" indexSets="WebsiteIndexSet,PDFIndexSet"/>
|
||||
|
||||
</providers>
|
||||
</ExamineSearchProviders>
|
||||
|
||||
Reference in New Issue
Block a user