42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
Umbraco examine is an extensible indexer and search engine.
|
|
This configuration file can be extended to create your own index sets.
|
|
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 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> |