summaryrefslogtreecommitdiffstats
path: root/debian/htdig/htdig-3.2.0b6/htdoc/config.html
diff options
context:
space:
mode:
Diffstat (limited to 'debian/htdig/htdig-3.2.0b6/htdoc/config.html')
-rw-r--r--debian/htdig/htdig-3.2.0b6/htdoc/config.html509
1 files changed, 509 insertions, 0 deletions
diff --git a/debian/htdig/htdig-3.2.0b6/htdoc/config.html b/debian/htdig/htdig-3.2.0b6/htdoc/config.html
new file mode 100644
index 00000000..a732ef2c
--- /dev/null
+++ b/debian/htdig/htdig-3.2.0b6/htdoc/config.html
@@ -0,0 +1,509 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
+<html>
+ <head>
+ <title>
+ ht://Dig: Configuration
+ </title>
+ </head>
+ <body bgcolor="#eef7ff">
+ <h1>
+ Configuration
+ </h1>
+ <p>
+ ht://Dig Copyright &copy; 1995-2004 <a href="THANKS.html">The ht://Dig Group</a><br>
+ Please see the file <a href="COPYING">COPYING</a> for
+ license information.
+ </p>
+ <hr size="4" noshade>
+ <p>
+ ht://Dig requires a configuration file and several HTML files
+ to operate correctly. Fortunately, when ht://Dig is
+ installed, a very reasonable configuration is created and in
+ most cases only minor modifications to the files are
+ necessary.
+ </p>
+ <p>
+ Below, we will use the variables that were set in CONFIG to
+ designate specific paths.
+ </p>
+ <p>
+ Standard files:
+ </p>
+ <ul>
+ <li>
+ <a href="#htdig.conf">${CONFIG_DIR}/htdig.conf</a>
+ </li>
+ <li>
+ <a href="#search.html">${SEARCH_DIR}/search.html</a>
+ </li>
+ <li>
+ <a href="#header.html">${COMMON_DIR}/header.html</a>
+ </li>
+ <li>
+ <a href="#footer.html">${COMMON_DIR}/footer.html</a>
+ </li>
+ <li>
+ <a href="#wrapper.html">${COMMON_DIR}/wrapper.html</a>
+ </li>
+ <li>
+ <a href="#nomatch.html">${COMMON_DIR}/nomatch.html</a>
+ </li>
+ <li>
+ <a href="#syntax.html">${COMMON_DIR}/syntax.html</a>
+ </li>
+ </ul>
+ <hr noshade>
+ <h2>
+ <a name="#htdig.conf">${CONFIG_DIR}/htdig.conf</a>
+ </h2>
+ <p>
+ This is the main runtime configuration file for all programs
+ that make up ht://Dig. The file is fully described in the
+ <a href="confindex.html" target="_top">Configuration file
+ manual</a>.
+ </p>
+ <p>
+ When ht://Dig is installed, several attributes will be
+ customized to your particular environment, but for reference,
+ here is a sample copy of what it can look like:
+ </p>
+<pre>
+<font size="-1">
+#
+# Example config file for ht://Dig.
+#
+# This configuration file is used by all the programs that make up ht://Dig.
+# Please refer to the attribute reference manual for more details on what
+# can be put into this file. (http://www.htdig.org/confindex.html)
+# Note that most attributes have very reasonable default values so you
+# really only have to add attributes here if you want to change the defaults.
+#
+# What follows are some of the common attributes you might want to change.
+#
+
+#
+# Specify where the database files need to go. Make sure that there is
+# plenty of free disk space available for the databases. They can get
+# pretty big.
+#
+database_dir: /opt/www/htdig/db
+
+#
+# This specifies the URL where the robot (htdig) will start. You can specify
+# multiple URLs here. Just separate them by some whitespace.
+# The example here will cause the ht://Dig homepage and related pages to be
+# indexed.
+# You could also index all the URLs in a file like so:
+# start_url: `${common_dir}/start.url`
+#
+start_url: http://www.htdig.org/
+
+#
+# This attribute limits the scope of the indexing process. The default is to
+# set it to the same as the start_url above. This way only pages that are on
+# the sites specified in the start_url attribute will be indexed and it will
+# reject any URLs that go outside of those sites.
+#
+# Keep in mind that the value for this attribute is just a list of string
+# patterns. As long as URLs contain at least one of the patterns it will be
+# seen as part of the scope of the index.
+#
+limit_urls_to: ${start_url}
+
+#
+# If there are particular pages that you definitely do NOT want to index, you
+# can use the exclude_urls attribute. The value is a list of string patterns.
+# If a URL matches any of the patterns, it will NOT be indexed. This is
+# useful to exclude things like virtual web trees or database accesses. By
+# default, all CGI URLs will be excluded. (Note that the /cgi-bin/ convention
+# may not work on your web server. Check the path prefix used on your web
+# server.)
+#
+exclude_urls: /cgi-bin/ .cgi
+
+#
+# Since ht://Dig does not (and cannot) parse every document type, this
+# attribute is a list of strings (extensions) that will be ignored during
+# indexing. These are *only* checked at the end of a URL, whereas
+# exclude_url patterns are matched anywhere.
+#
+# Also keep in mind that while other attributes allow regex, these must be
+# actual strings.
+#
+bad_extensions: .wav .gz .z .sit .au .zip .tar .hqx .exe .com .gif \
+ .jpg .jpeg .aiff .class .map .ram .tgz .bin .rpm .mpg .mov .avi .css
+
+#
+# The string htdig will send in every request to identify the robot. Change
+# this to your email address.
+#
+maintainer: unconfigured@htdig.searchengine.maintainer
+
+#
+# The excerpts that are displayed in long results rely on stored information
+# in the index databases. The compiled default only stores 512 characters of
+# text from each document (this excludes any HTML markup...) If you plan on
+# using the excerpts you probably want to make this larger. The only concern
+# here is that more disk space is going to be needed to store the additional
+# information. Since disk space is cheap (! :-)) you might want to set this
+# to a value so that a large percentage of the documents that you are going
+# to be indexing are stored completely in the database. At SDSU we found
+# that by setting this value to about 50k the index would get 97% of all
+# documents completely and only 3% was cut off at 50k. You probably want to
+# experiment with this value.
+# Note that if you want to set this value low, you probably want to set the
+# excerpt_show_top attribute to false so that the top excerpt_length characters
+# of the document are always shown.
+#
+max_head_length: 10000
+
+#
+# To limit network connections, ht://Dig will only pull up to a certain limit
+# of bytes. This prevents the indexing from dying because the server keeps
+# sending information. However, several FAQs happen because people have files
+# bigger than the default limit of 100KB. This sets the default a bit higher.
+# (see &lt;http://www.htdig.org/FAQ.html&gt; for more)
+#
+max_doc_size: 200000
+
+#
+# Most people expect some sort of excerpt in results. By default, if the
+# search words aren't found in context in the stored excerpt, htsearch shows
+# the text defined in the no_excerpt_text attribute:
+# (None of the search words were found in the top of this document.)
+# This attribute instead will show the top of the excerpt.
+#
+no_excerpt_show_top: true
+
+#
+# Depending on your needs, you might want to enable some of the fuzzy search
+# algorithms. There are several to choose from and you can use them in any
+# combination you feel comfortable with. Each algorithm will get a weight
+# assigned to it so that in combinations of algorithms, certain algorithms get
+# preference over others. Note that the weights only affect the ranking of
+# the results, not the actual searching.
+# The available algorithms are:
+# accents
+# exact
+# endings
+# metaphone
+# prefix
+# regex
+# soundex
+# speling [sic]
+# substring
+# synonyms
+# By default only the "exact" algorithm is used with weight 1.
+# Note that if you are going to use the endings, metaphone, soundex, accents,
+# or synonyms algorithms, you will need to run htfuzzy to generate
+# the databases they use.
+#
+search_algorithm: exact:1 synonyms:0.5 endings:0.1
+
+#
+# The following are the templates used in the builtin search results
+# The default is to use compiled versions of these files, which produces
+# slightly faster results. However, uncommenting these lines makes it
+# very easy to change the format of search results.
+# See &lt;http://www.htdig.org/hts_templates.html&gt; for more details.
+#
+# template_map: Long long ${common_dir}/long.html \
+# Short short ${common_dir}/short.html
+# template_name: long
+
+#
+# The following are used to change the text for the page index.
+# The defaults are just boring text numbers. These images spice
+# up the result pages quite a bit. (Feel free to do whatever, though)
+#
+next_page_text: &lt;img src="/htdig/buttonr.gif" border="0" align="middle" width="30" height="30" alt="next"&gt;
+no_next_page_text:
+prev_page_text: &lt;img src="/htdig/buttonl.gif" border="0" align="middle" width="30" height="30" alt="prev"&gt;
+no_prev_page_text:
+page_number_text: '&lt;img src="/htdig/button1.gif" border="0" align="middle" width="30" height="30" alt="1"&gt;' \
+ '&lt;img src="/htdig/button2.gif" border="0" align="middle" width="30" height="30" alt="2"&gt;' \
+ '&lt;img src="/htdig/button3.gif" border="0" align="middle" width="30" height="30" alt="3"&gt;' \
+ '&lt;img src="/htdig/button4.gif" border="0" align="middle" width="30" height="30" alt="4"&gt;' \
+ '&lt;img src="/htdig/button5.gif" border="0" align="middle" width="30" height="30" alt="5"&gt;' \
+ '&lt;img src="/htdig/button6.gif" border="0" align="middle" width="30" height="30" alt="6"&gt;' \
+ '&lt;img src="/htdig/button7.gif" border="0" align="middle" width="30" height="30" alt="7"&gt;' \
+ '&lt;img src="/htdig/button8.gif" border="0" align="middle" width="30" height="30" alt="8"&gt;' \
+ '&lt;img src="/htdig/button9.gif" border="0" align="middle" width="30" height="30" alt="9"&gt;' \
+ '&lt;img src="/htdig/button10.gif" border="0" align="middle" width="30" height="30" alt="10"&gt;'
+#
+# To make the current page stand out, we will put a border around the
+# image for that page.
+#
+no_page_number_text: '&lt;img src="/htdig/button1.gif" border="2" align="middle" width="30" height="30" alt="1"&gt;' \
+ '&lt;img src="/htdig/button2.gif" border="2" align="middle" width="30" height="30" alt="2"&gt;' \
+ '&lt;img src="/htdig/button3.gif" border="2" align="middle" width="30" height="30" alt="3"&gt;' \
+ '&lt;img src="/htdig/button4.gif" border="2" align="middle" width="30" height="30" alt="4"&gt;' \
+ '&lt;img src="/htdig/button5.gif" border="2" align="middle" width="30" height="30" alt="5"&gt;' \
+ '&lt;img src="/htdig/button6.gif" border="2" align="middle" width="30" height="30" alt="6"&gt;' \
+ '&lt;img src="/htdig/button7.gif" border="2" align="middle" width="30" height="30" alt="7"&gt;' \
+ '&lt;img src="/htdig/button8.gif" border="2" align="middle" width="30" height="30" alt="8"&gt;' \
+ '&lt;img src="/htdig/button9.gif" border="2" align="middle" width="30" height="30" alt="9"&gt;' \
+ '&lt;img src="/htdig/button10.gif" border="2" align="middle" width="30" height="30" alt="10"&gt;'
+</font>
+</pre>
+ <hr noshade>
+ <h2>
+ <a name="search.html">${SEARCH_DIR}/search.html</a>
+ </h2>
+ <p>
+ This is the default search form. It is an example interface to
+ the search engine, htsearch. The file contains a form with as
+ its action a call to htsearch. There are several form variables
+ which htsearch will use. More about those can be found in the
+ <a href="htsearch.html" target="_top">htsearch
+ documentation</a>.
+ </p>
+ <p>
+ An example file can be as follows:
+ </p>
+<pre>
+<font size="-1">
+&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;title&gt;ht://Dig WWW Search&lt;/title&gt;
+&lt;/head&gt;
+&lt;body bgcolor="#eef7ff"&gt;
+&lt;h1&gt;
+&lt;a href="http://www.htdig.org"&gt;&lt;IMG SRC="/htdig/htdig.gif" align="bottom" alt="ht://Dig" border="0"&gt;&lt;/a&gt;
+WWW Site Search&lt;/h1&gt;
+&lt;hr noshade size="4"&gt;
+This search will allow you to search the contents of
+all the publicly available WWW documents at this site.
+&lt;br&gt;
+&lt;p&gt;
+&lt;form method="post" action="/cgi-bin/htsearch"&gt;
+&lt;font size="-1"&gt;
+Match: &lt;select name="method"&gt;
+&lt;option value="and"&gt;All
+&lt;option value="or"&gt;Any
+&lt;option value="boolean"&gt;Boolean
+&lt;/select&gt;
+Format: &lt;select name="format"&gt;
+&lt;option value="builtin-long"&gt;Long
+&lt;option value="builtin-short"&gt;Short
+&lt;/select&gt;
+Sort by: &lt;select name="sort"&gt;
+&lt;option value="score"&gt;Score
+&lt;option value="time"&gt;Time
+&lt;option value="title"&gt;Title
+&lt;option value="revscore"&gt;Reverse Score
+&lt;option value="revtime"&gt;Reverse Time
+&lt;option value="revtitle"&gt;Reverse Title
+&lt;/select&gt;
+&lt;/font&gt;
+&lt;input type="hidden" name="config" value="htdig"&gt;
+&lt;input type="hidden" name="restrict" value=""&gt;
+&lt;input type="hidden" name="exclude" value=""&gt;
+&lt;br&gt;
+Search:
+&lt;input type="text" size="30" name="words" value=""&gt;
+&lt;input type="submit" value="Search"&gt;
+&lt;/form&gt;
+&lt;hr noshade size="4"&gt;
+&lt;/body&gt;
+&lt;/html&gt;
+
+</font>
+</pre>
+ <hr noshade>
+ <h2>
+ <a name="header.html">${COMMON_DIR}/header.html</a>
+ </h2>
+ <p>
+ This file is the file that is output before any of the search
+ results are produced in a search. This file can be customized
+ to reflect your particular web look-and-feel, for example. Take
+ note that this file is only the top part of the full HTML
+ document that is produced when search results are displayed.
+ This means that it should start with the proper HTML
+ introductory tags and title.
+ </p>
+ <p>
+ This file will not just simply be copied. Instead, the search
+ engine will look for special variables inside the file. These
+ variables will be replaced with the appropriate values for
+ the particular search it is used for. For more details of the
+ use of these variables, consult the
+ <a href="hts_templates.html">htsearch templates</a> documentation.
+ </p>
+ <p>
+ Below is the default header.html file that gets installed.
+ Note that it contains a form to allow the user to refine the
+ search.
+ </p>
+<pre>
+<font size="-1">
+&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
+&lt;html&gt;&lt;head&gt;&lt;title&gt;Search results for '$&(WORDS)'&lt;/title&gt;&lt;/head&gt;
+&lt;body bgcolor="#eef7ff"&gt;
+&lt;h2&gt;&lt;img src="/htdig/htdig.gif" alt="ht://Dig"&gt;
+Search results for '$&(LOGICAL_WORDS)'&lt;/h2&gt;
+&lt;hr noshade size="4"&gt;
+&lt;form method="get" action="$(CGI)"&gt;
+&lt;font size="-1"&gt;
+&lt;input type="hidden" name="config" value="$&(CONFIG)"&gt;
+&lt;input type="hidden" name="restrict" value="$&(RESTRICT)"&gt;
+&lt;input type="hidden" name="exclude" value="$&(EXCLUDE)"&gt;
+Match: $(METHOD)
+Format: $(FORMAT)
+Sort by: $(SORT)
+&lt;br&gt;
+Refine search:
+&lt;input type="text" size="30" name="words" value="$&(WORDS)"&gt;
+&lt;input type="submit" value="Search"&gt;
+&lt;/font&gt;
+&lt;/form&gt;
+&lt;hr noshade size="1"&gt;
+&lt;strong&gt;Documents $(FIRSTDISPLAYED) - $(LASTDISPLAYED) of $(MATCHES) matches.
+More &lt;img src="/htdig/star.gif" alt="*"&gt;'s indicate a better match.
+&lt;/strong&gt;
+&lt;hr noshade size="1"&gt;
+</font>
+</pre>
+ <hr noshade>
+ <h2>
+ <a name="footer.html">${COMMON_DIR}/footer.html</a>
+ </h2>
+ <p>
+ This file is output after all the search results have been
+ displayed. All the same header.html rules apply to this file,
+ except that it is supposed to contain all the ending HTML tags.
+ </p>
+ <p>
+ Below is the default footer.html file that gets installed.
+ Note that it contains the page navigation stuff.
+ </p>
+<pre>
+<font size="-1">
+$(PAGEHEADER)
+$(PREVPAGE) $(PAGELIST) $(NEXTPAGE)
+&lt;hr noshade size="4"&gt;
+&lt;a href="http://www.htdig.org/"&gt;
+&lt;img src="/htdig/htdig.gif" border="0" alt="ht://Dig"&gt;ht://Dig $(VERSION)&lt;/a&gt;
+&lt;/body&gt;&lt;/html&gt;
+</font>
+</pre>
+ <hr noshade>
+ <h2>
+ <a name="wrapper.html">${COMMON_DIR}/wrapper.html</a>
+ </h2>
+ <p>
+ This file may be used in place of the header.html and footer.html
+ files above. It is simply the concatenation of these two files,
+ with the pseudo-variable <strong>$(HTSEARCH_RESULTS)</strong> as
+ a separator for the header and footer sections.
+ All the same header.html and footer.html rules apply to this file.
+ To make this file override the header and footer files above, you
+ must define the <a href="attrs.html#search_results_wrapper">
+ search_results_wrapper</a> attribute.
+ </p>
+ <hr noshade>
+ <h2>
+ <a name="nomatch.html">${COMMON_DIR}/nomatch.html</a>
+ </h2>
+ <p>
+ If a search produces no matches, this file is displayed. All
+ the relevant variables will be replaced as in the header.html
+ and footer.html files. The default nomatch.html is little more
+ than header.html and footer.html appended:
+ </p>
+<pre>
+<font size="-1">
+&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
+&lt;html&gt;&lt;head&gt;&lt;title&gt;No match for '$&(LOGICAL_WORDS)'&lt;/title&gt;&lt;/head&gt;
+&lt;body bgcolor="#eef7ff"&gt;
+&lt;h1&gt;&lt;img src="/htdig/htdig.gif" alt="ht://Dig"&gt;
+Search results&lt;/h1&gt;
+&lt;hr noshade size="4"&gt;
+&lt;h2&gt;No matches were found for '$&(LOGICAL_WORDS)'&lt;/h2&gt;
+&lt;p&gt;
+Check the spelling of the search word(s) you used.
+If the spelling is correct and you only used one word,
+try using one or more similar search words with "&lt;strong&gt;Any&lt;/strong&gt;."
+&lt;/p&gt;&lt;p&gt;
+If the spelling is correct and you used more than one
+word with "&lt;strong&gt;Any&lt;/strong&gt;," try using one or more similar search
+words with "&lt;strong&gt;Any&lt;/strong&gt;."&lt;/p&gt;&lt;p&gt;
+If the spelling is correct and you used more than one
+word with "&lt;strong&gt;All&lt;/strong&gt;," try using one or more of the same words
+with "&lt;strong&gt;Any&lt;/strong&gt;."&lt;/p&gt;
+&lt;hr noshade size="4"&gt;
+&lt;form method="get" action="$(CGI)"&gt;
+&lt;font size="-1"&gt;
+&lt;input type="hidden" name="config" value="$&(CONFIG)"&gt;
+&lt;input type="hidden" name="restrict" value="$&(RESTRICT)"&gt;
+&lt;input type="hidden" name="exclude" value="$&(EXCLUDE)"&gt;
+Match: $(METHOD)
+Format: $(FORMAT)
+Sort by: $(SORT)
+&lt;br&gt;
+Refine search:
+&lt;input type="text" size="30" name="words" value="$&(WORDS)"&gt;
+&lt;input type="submit" value="Search"&gt;
+&lt;/font&gt;
+&lt;/form&gt;
+&lt;hr noshade size="4"&gt;
+&lt;a href="http://www.htdig.org/"&gt;
+&lt;img src="/htdig/htdig.gif" border="0" alt="ht://Dig"&gt;ht://Dig $(VERSION)&lt;/a&gt;
+&lt;/body&gt;&lt;/html&gt;
+</font>
+</pre>
+ <hr noshade>
+ <h2>
+ <a name="syntax.html">${COMMON_DIR}/syntax.html</a>
+ </h2>
+ <p>
+ If a boolean expression search causes a syntax error, this file
+ will be displayed.
+ </p>
+<pre>
+<font size="-1">
+&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;
+&lt;html&gt;&lt;head&gt;&lt;title&gt;Error in Boolean search for '$&(WORDS)'&lt;/title&gt;&lt;/head&gt;
+&lt;body bgcolor="#eef7ff"&gt;
+&lt;h1&gt;&lt;img src="/htdig/htdig.gif" alt="ht://Dig"&gt;
+Error in Boolean search for '$&(LOGICAL_WORDS)'&lt;/h1&gt;
+&lt;hr noshade size="4"&gt;
+Boolean expressions need to be 'correct' in order for the search
+system to use them.
+The expression you entered has errors in it.&lt;p&gt;
+Examples of correct expressions are: &lt;strong&gt;cat and dog&lt;/strong&gt;, &lt;strong&gt;cat
+not dog&lt;/strong&gt;, &lt;strong&gt;cat or (dog not nose)&lt;/strong&gt;.&lt;br&gt;Note that
+the operator &lt;strong&gt;not&lt;/strong&gt; has the meaning of 'without'.
+&lt;blockquote&gt;&lt;strong&gt;
+$(SYNTAXERROR)
+&lt;/strong&gt;&lt;/blockquote&gt;
+&lt;hr noshade size="4"&gt;
+&lt;form method="get" action="$(CGI)"&gt;
+&lt;font size="-1"&gt;
+&lt;input type="hidden" name="config" value="$&(CONFIG)"&gt;
+&lt;input type="hidden" name="restrict" value="$&(RESTRICT)"&gt;
+&lt;input type="hidden" name="exclude" value="$&(EXCLUDE)"&gt;
+Match: $(METHOD)
+Format: $(FORMAT)
+Sort: $(SORT)
+&lt;br&gt;
+Refine search:
+&lt;input type="text" size="30" name="words" value="$&(WORDS)"&gt;
+&lt;input type="submit" value="Search"&gt;
+&lt;/font&gt;
+&lt;/form&gt;
+&lt;hr noshade size="4"&gt;
+&lt;a href="http://www.htdig.org/"&gt;
+&lt;img src="/htdig/htdig.gif" border="0" alt="ht://Dig"&gt;ht://Dig $(VERSION)&lt;/a&gt;
+&lt;/body&gt;&lt;/html&gt;
+
+</font>
+</pre>
+ <hr size="4" noshade>
+
+ Last modified: $Date: 2004/05/28 13:15:18 $
+
+ </body>
+</html>