Click here to Skip to main content
15,884,537 members
Articles / Web Development / ASP.NET

Image and Location Search(aroo)

Rate me:
Please Sign up or sign in to vote.
4.96/5 (28 votes)
11 Jun 2008CPOL12 min read 202.7K   2.5K   76  
Index your website (including images and geographic data), search and display results in Google Earth.
<?xml version="1.0"?>
<configuration>
	<appSettings>
    <!-- How much logging info is displayed (0:none, 5:maximum) -->
    <add key="Searcharoo_IndexerDefaultVerbosity" value="4"/>
    
		<!-- Whether to serialize the Catalog to XML for 'viewing' (it's ALWAYS Binary Serialized) -->
		<add key="Searcharoo_DebugSerializeXml" value="true"/>
		<!-- Seconds to wait for a page to respond, before giving up -->
		<add key="Searcharoo_RequestTimeout" value="5"/>
		<!-- First page to search - should have LOTS of links to follow http://localhost:2732/Searcharoo.net/;-->
    <add key="Searcharoo_VirtualRoot"
         value="http://conceptdev.blogspot.com/"/>
    
    <!-- Limit to the number of 'levels' of links to follow -->
		<add key="Searcharoo_RecursionLimit" value="200"/>
		<!-- Request another page after waiting x seconds; use zero ONLY on your own/internal sites -->
		<add key="Searcharoo_SpeedLimit" value="1"/>
		<!-- Whether to use stemming (English only), and if so, what mode [ Off | StemOnly | StemAndOriginal ] -->
		<add key="Searcharoo_StemmingType" value="1"/>
		<!-- Whether to use stop words (English only), and if so, what mode [ Off | Short | List ] -->
		<add key="Searcharoo_StoppingType" value="2"/>
		<!-- Whether to use go words (English only), and if so, what mode [ Off | On ] -->
		<add key="Searcharoo_GoType" value="1"/>
		<!-- Number of characters to include in 'file summary' -->
		<add key="Searcharoo_SummaryChars" value="350"/>
		<!-- User Agent sent with page requests, in case you wish to change it -->
		<add key="Searcharoo_UserAgent" value="Mozilla/6.0 (MSIE 6.0; Windows NT 5.1; Searcharoo.NET; robot)"/>
		<!-- Application[] cache key where the Catalog is stored, in case you need to alter it -->
		<add key="Searcharoo_CacheKey" value="Searcharoo_Catalog"/>
		<!-- Name of file where the Catalog object is serialized (.dat and .xml) -->
		<add key="Searcharoo_CatalogFilepath" value="C:\Inetpub\CodeProject.com\Searcharoo6\WebApplication\"/>
    <add key="Searcharoo_CatalogFilename" value="z_searcharoo.dat"/>
    <add key="Searcharoo_TempFilepath" value="C:\Inetpub\CodeProject.com\Searcharoo6\WebApplication\Temp\"/>
		<!-- Number of result links to include per page -->
		<add key="Searcharoo_DefaultResultsPerPage" value="10"/>
		<!-- Language to use when none is supplied (or supplied language is not available) -->
		<add key="Searcharoo_DefaultLanguage" value="en-US"/>
    <!-- Used within an Html comment (no spaces) to exclude part of an Html page indexing -->
    <add key="Searcharoo_IgnoreRegionTagNoIndex" value="SEARCHAROONOINDEX"/>
    <!-- Used within an Html comment (no spaces) to exclude part of an Html page from having links followed-->
    <add key="Searcharoo_IgnoreRegionTagNoFollow" value="SEARCHAROONOFOLLOW"/>
    <!-- Set this to FALSE if you are indexing any language other than English (ie. your content has characters that are not ASCII) -->
    <add key="Searcharoo_AssumeAllWordsAreEnglish" value="true"/>

    <!-- Whether Medium Trust has been specified (either below, or in a machine.config file on your hosting provider) -->
    <add key="Searcharoo_InMediumTrust" value="True"/>
  </appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Australia Australia
-- ooo ---
www.conceptdevelopment.net
conceptdev.blogspot.com
www.searcharoo.net
www.recipenow.net
www.racereplay.net
www.silverlightearth.com

Comments and Discussions