removed test examine settings

This commit is contained in:
Shannon
2013-08-14 10:08:59 +10:00
parent d7fd1efd60
commit 599caeb933
3 changed files with 0 additions and 33 deletions

View File

@@ -33,11 +33,6 @@ app.config(function ($routeProvider) {
if (!rp.method)
return "views/common/dashboard.html";
////here we detect recycle bins, all recycle bins start with -2* (i.e. -20, -21)
//if (rp.id.startsWith("-2")) {
// return 'views/' + rp.section + '/recyclebin.html';
//}
return 'views/' + rp.section + '/' + rp.method + '.html';
}
})

View File

@@ -26,9 +26,5 @@ 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>

View File

@@ -22,24 +22,6 @@ 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>
@@ -52,12 +34,6 @@ 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>