fixed config templates to include the examine settings for the internal Member searching
[TFS Changeset #75819]
This commit is contained in:
@@ -7,19 +7,35 @@ Index/Search providers can be defined in the UmbracoSettings.config
|
||||
More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com
|
||||
-->
|
||||
<ExamineLuceneIndexSets>
|
||||
<!-- The internal index set used by Umbraco back-office - DO NOT REMOVE -->
|
||||
<IndexSet SetName="InternalIndexSet" IndexPath="~/App_Data/ExamineIndexes/Internal/">
|
||||
<IndexAttributeFields>
|
||||
<add Name="id" />
|
||||
<add Name="nodeName" />
|
||||
<add Name="updateDate" />
|
||||
<add Name="writerName" />
|
||||
<add Name="path" />
|
||||
<add Name="nodeTypeAlias" />
|
||||
<add Name="parentID" />
|
||||
</IndexAttributeFields>
|
||||
<IndexUserFields />
|
||||
<IncludeNodeTypes/>
|
||||
<ExcludeNodeTypes />
|
||||
</IndexSet>
|
||||
<!-- The internal index set used by Umbraco back-office - DO NOT REMOVE -->
|
||||
<IndexSet SetName="InternalIndexSet" IndexPath="~/App_Data/ExamineIndexes/Internal/">
|
||||
<IndexAttributeFields>
|
||||
<add Name="id" />
|
||||
<add Name="nodeName" />
|
||||
<add Name="updateDate" />
|
||||
<add Name="writerName" />
|
||||
<add Name="path" />
|
||||
<add Name="nodeTypeAlias" />
|
||||
<add Name="parentID" />
|
||||
</IndexAttributeFields>
|
||||
<IndexUserFields />
|
||||
<IncludeNodeTypes/>
|
||||
<ExcludeNodeTypes />
|
||||
</IndexSet>
|
||||
|
||||
<!-- The internal index set used by Umbraco back-office for indexing members - DO NOT REMOVE -->
|
||||
<IndexSet SetName="InternalMemberIndexSet" IndexPath="~/App_Data/ExamineIndexes/InternalMember/">
|
||||
<IndexAttributeFields>
|
||||
<add Name="id" />
|
||||
<add Name="nodeName"/>
|
||||
<add Name="updateDate" />
|
||||
<add Name="writerName" />
|
||||
<add Name="loginName" />
|
||||
<add Name="email" />
|
||||
<add Name="nodeTypeAlias" />
|
||||
</IndexAttributeFields>
|
||||
<IndexUserFields/>
|
||||
<IncludeNodeTypes/>
|
||||
<ExcludeNodeTypes />
|
||||
</IndexSet>
|
||||
</ExamineLuceneIndexSets>
|
||||
@@ -15,12 +15,20 @@ More information and documentation can be found on CodePlex: http://umbracoexami
|
||||
supportProtected="true"
|
||||
interval="10"
|
||||
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
|
||||
<add name="InternalMemberIndexer" type="UmbracoExamine.MemberLuceneExamineIndexer, UmbracoExamine"
|
||||
runAsync="true"
|
||||
supportUnpublished="true"
|
||||
supportProtected="true"
|
||||
interval="10"
|
||||
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"/>
|
||||
</providers>
|
||||
</ExamineIndexProviders>
|
||||
<ExamineSearchProviders defaultProvider="InternalSearcher">
|
||||
<providers>
|
||||
<add name="InternalSearcher" type="UmbracoExamine.LuceneExamineSearcher, UmbracoExamine"
|
||||
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
|
||||
<add name="InternalMemberSearcher" type="UmbracoExamine.LuceneExamineSearcher, UmbracoExamine"
|
||||
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcards="true"/>
|
||||
</providers>
|
||||
</ExamineSearchProviders>
|
||||
</Examine>
|
||||
|
||||
Reference in New Issue
Block a user