WORK IN PROGRESS, GET STABLE SOURCE FROM DOWNLOAD TAB

Fixed contextual search.
Examine upgrade.

[TFS Changeset #64127]
This commit is contained in:
Shandem
2010-02-22 13:50:33 +00:00
parent 84cfe5e4d9
commit 6f5ce6fd42
10 changed files with 250 additions and 165 deletions

View File

@@ -1,4 +1,4 @@
<clientDependency isDebugMode="false" version="3">
<clientDependency isDebugMode="false" version="4">
<fileRegistration defaultProvider="PageHeaderProvider" fileDependencyExtensions="js,css" enableCompositeFiles="true">
<providers>
<add name="PageHeaderProvider" type="ClientDependency.Core.FileRegistration.Providers.PageHeaderProvider, ClientDependency.Core" />

View File

@@ -6,15 +6,16 @@ Index sets can be defined in the ExamineIndex.config if you're using the standar
More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com
-->
<UmbracoExamine>
<!-- Disabled for the beta since new xml schema is not supported -->
<UmbracoExamine>
<ExamineIndexProviders enableDefaultEventHandler="true">
<providers>
<add name="InternalIndex" type="UmbracoExamine.Providers.LuceneExamineIndexer, UmbracoExamine.Providers"
indexSet="Default"
enabled="true"
debug="false"
supportUnpublished="true"/>
supportUnpublished="true"
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
<!-- This is an example of an index provider created for the Creative Website Starter kit
<add name="CWSIndex" type="UmbracoExamine.Providers.LuceneExamineIndexer, UmbracoExamine.Providers"
indexSet="CWSIndex"
@@ -26,7 +27,13 @@ More information and documentation can be found on CodePlex: http://umbracoexami
<ExamineSearchProviders defaultProvider="InternalSearch">
<providers>
<add name="InternalSearch" type="UmbracoExamine.Providers.LuceneExamineSearcher, UmbracoExamine.Providers"
indexSet="Default" />
indexSet="Default"
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
<!-- This is an example of a search provider created for the Creative Website Starter kit
<add name="CWSIndex" type="UmbracoExamine.Providers.LuceneExamineSearcher, UmbracoExamine.Providers"
indexSet="CWSIndex"/>
-->
</providers>
</ExamineSearchProviders>
</UmbracoExamine>