home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _a0eb1feb00a2fedc96faa610f0b015d6 < prev    next >
Text File  |  2000-03-23  |  21KB  |  483 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>WWW::Search - Virtual base class for WWW searches</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> WWW::Search - Virtual base class for WWW searches</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#sample program">Sample program</A></LI>
  28.     </UL>
  29.  
  30.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  31.     <LI><A HREF="#methods and functions">METHODS AND FUNCTIONS</A></LI>
  32.     <UL>
  33.  
  34.         <LI><A HREF="#new">new</A></LI>
  35.         <LI><A HREF="#reset_search (private)">reset_search (PRIVATE)</A></LI>
  36.         <LI><A HREF="#version">version</A></LI>
  37.         <LI><A HREF="#maintainer">maintainer</A></LI>
  38.         <LI><A HREF="#gui_query">gui_query</A></LI>
  39.         <LI><A HREF="#native_query">native_query</A></LI>
  40.         <LI><A HREF="#approximate_result_count">approximate_result_count</A></LI>
  41.         <LI><A HREF="#results">results</A></LI>
  42.         <LI><A HREF="#next_result">next_result</A></LI>
  43.         <LI><A HREF="#response">response</A></LI>
  44.         <LI><A HREF="#seek_result($offset)"><CODE>seek_result($offset)</CODE></A></LI>
  45.         <LI><A HREF="#maximum_to_retrieve">maximum_to_retrieve</A></LI>
  46.         <LI><A HREF="#timeout">timeout</A></LI>
  47.         <LI><A HREF="#opaque">opaque</A></LI>
  48.         <LI><A HREF="#escape_query">escape_query</A></LI>
  49.         <LI><A HREF="#unescape_query">unescape_query</A></LI>
  50.         <LI><A HREF="#strip_tags">strip_tags</A></LI>
  51.         <LI><A HREF="#hash_to_cgi_string (private)">hash_to_cgi_string (PRIVATE)</A></LI>
  52.         <LI><A HREF="#http_proxy">http_proxy</A></LI>
  53.         <LI><A HREF="#user_agent($non_robot) (private)"><CODE>user_agent($NON_ROBOT)</CODE> (PRIVATE)</A></LI>
  54.         <LI><A HREF="#http_request($method, $url)">http_request($method, $url)</A></LI>
  55.         <LI><A HREF="#split_lines (private)">split_lines (PRIVATE)</A></LI>
  56.         <LI><A HREF="#generic_option (private)">generic_option (PRIVATE)</A></LI>
  57.         <LI><A HREF="#setup_search (private)">setup_search (PRIVATE)</A></LI>
  58.         <LI><A HREF="#user_agent_delay (private)">user_agent_delay (PRIVATE)</A></LI>
  59.         <LI><A HREF="#absurl (private)">absurl (PRIVATE)</A></LI>
  60.         <LI><A HREF="#retrieve_some (private)">retrieve_some (PRIVATE)</A></LI>
  61.         <LI><A HREF="#test_cases">test_cases</A></LI>
  62.     </UL>
  63.  
  64.     <LI><A HREF="#implementing new backends">IMPLEMENTING NEW BACKENDS</A></LI>
  65.     <LI><A HREF="#bugs and desired features">BUGS AND DESIRED FEATURES</A></LI>
  66.     <LI><A HREF="#author">AUTHOR</A></LI>
  67.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  68. </UL>
  69. <!-- INDEX END -->
  70.  
  71. <HR>
  72. <P>
  73. <H1><A NAME="name">NAME</A></H1>
  74. <P>WWW::Search - Virtual base class for WWW searches</P>
  75. <P>
  76. <HR>
  77. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  78. <UL>
  79. <LI>Linux</LI>
  80. <LI>Solaris</LI>
  81. <LI>Windows</LI>
  82. </UL>
  83. <HR>
  84. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  85. <PRE>
  86.     require WWW::Search;
  87.     $search_engine = "AltaVista";
  88.     $search = new WWW::Search($search_engine);</PRE>
  89. <P>
  90. <HR>
  91. <H1><A NAME="description">DESCRIPTION</A></H1>
  92. <P>This class is the parent for all access methods supported by the
  93. <CODE>WWW::Search</CODE> library.  This library implements a Perl API
  94. to web-based search engines.</P>
  95. <P>See README for a list of search engines currently supported.</P>
  96. <P>Search results can be limited, and there is a pause between each
  97. request to avoid overloading either the client or the server.</P>
  98. <P>
  99. <H2><A NAME="sample program">Sample program</A></H2>
  100. <P>Using the library should be straightforward.
  101. Here is a sample program:</P>
  102. <PRE>
  103.     my($search) = new WWW::Search('AltaVista');
  104.     $search->native_query(WWW::Search::escape_query($query));
  105.     my($result);
  106.     while ($result = $search->next_result()) {
  107.         print $result->url, "\n";
  108.     };</PRE>
  109. <P>Results are objects of type <CODE>WWW::SearchResult</CODE>
  110. (see <A HREF="../../../site/lib/WWW/SearchResult.html">the WWW::SearchResult manpage</A> for details).
  111. Note that different backends support different result fields.
  112. All backends are required to support title and url.</P>
  113. <P>
  114. <HR>
  115. <H1><A NAME="see also">SEE ALSO</A></H1>
  116. <P>For specific search engines, see <A HREF="../../../WWW/Search/TheEngineName.html">the WWW::Search::TheEngineName manpage</A>
  117. (replacing TheEngineName with a particular search engine).</P>
  118. <P>For details about the results of a search,
  119. see <A HREF="../../../site/lib/WWW/SearchResult.html">the WWW::SearchResult manpage</A>.</P>
  120. <P>
  121. <HR>
  122. <H1><A NAME="methods and functions">METHODS AND FUNCTIONS</A></H1>
  123. <P>
  124. <H2><A NAME="new">new</A></H2>
  125. <P>To create a new WWW::Search, call</P>
  126. <PRE>
  127.     $search = new WWW::Search('SearchEngineName');</PRE>
  128. <P>where SearchEngineName is replaced with a particular search engine.
  129. For example:</P>
  130. <PRE>
  131.     $search = new WWW::Search('Google');</PRE>
  132. <P>If no search engine is specified a default (currently 'AltaVista')
  133. will be chosen for you.
  134. The next step is usually:</P>
  135. <PRE>
  136.     $search->native_query('search-engine-specific+query+string');</PRE>
  137. <P>
  138. <H2><A NAME="reset_search (private)">reset_search (PRIVATE)</A></H2>
  139. <P>Resets internal data structures to start over with a new search.</P>
  140. <P>
  141. <H2><A NAME="version">version</A></H2>
  142. <P>Returns the value of the $VERSION variable of the backend engine, or
  143. $WWW::Search::VERSION if the backend does not contain $VERSION.</P>
  144. <P>
  145. <H2><A NAME="maintainer">maintainer</A></H2>
  146. <P>Returns the value of the $MAINTAINER variable of the backend engine,
  147. or $WWW::Search::MAINTAINER if the backend does not contain
  148. $MAINTAINER.</P>
  149. <P>
  150. <H2><A NAME="gui_query">gui_query</A></H2>
  151. <P>Specify a query to the current search object;  
  152. the query will be performed with the engine's default options,
  153. as if it were typed by a user in a browser window.</P>
  154. <P>The query must be escaped; call <A HREF="../../../site/lib/WWW/Search.html#escape_query">escape_query in the WWW::Search manpage</A> to escape
  155. a plain query.  See <CODE>native_query</CODE> below for more information.</P>
  156. <P>Currently, this feature is supported by only a few backends; 
  157. consult the documentation for each backend to see if it is implemented.</P>
  158. <P>
  159. <H2><A NAME="native_query">native_query</A></H2>
  160. <P>Specify a query (and optional options) to the current search object.
  161. Previous query (if any) and its cached results (if any) will be thrown away.
  162. The option values and the query must be escaped; call <A HREF="../../../WWW/Search/escape_query().html">the WWW::Search::escape_query() manpage</A>
  163. to escape a string.
  164. The search process is not actually begun until <CODE>results</CODE> or
  165. <CODE>next_result</CODE> is called (lazy!), so native_query does not return anything.</P>
  166. <P>Example:</P>
  167. <PRE>
  168.   $search->native_query('search-engine-specific+escaped+query+string',
  169.                         { option1 => 'able', option2 => 'baker' } );</PRE>
  170. <P>The hash of options following the query string is optional.  
  171. The query string is backend-specific.
  172. There are two kinds of options:
  173. options specific to the backend,
  174. and generic options applicable to multiple backends.</P>
  175. <P>Generic options all begin with 'search_'.
  176. Currently a few are supported:</P>
  177. <DL>
  178. <DT><STRONG><A NAME="item_search_url">search_url</A></STRONG><BR>
  179. <DD>
  180. Specifies the base URL for the search engine.
  181. <P></P>
  182. <DT><STRONG><A NAME="item_search_debug">search_debug</A></STRONG><BR>
  183. <DD>
  184. Enables backend debugging.  The default is 0 (no debugging).
  185. <P></P>
  186. <DT><STRONG><A NAME="item_search_parse_debug">search_parse_debug</A></STRONG><BR>
  187. <DD>
  188. Enables backend parser debugging.  The default is 0 (no debugging).
  189. <P></P>
  190. <DT><STRONG><A NAME="item_search_method">search_method</A></STRONG><BR>
  191. <DD>
  192. Specifies the HTTP method (<CODE>GET</CODE> or <CODE>POST</CODE>) for HTTP-based queries.
  193. The default is GET
  194. <P></P>
  195. <DT><STRONG><A NAME="item_search_to_file_FILE">search_to_file FILE</A></STRONG><BR>
  196. <DD>
  197. Causes the search results to be saved in a set of files 
  198. prefixed by FILE.
  199. (Used internally by the test-suite, not intended for general use.)
  200. <P></P>
  201. <DT><STRONG><A NAME="item_search_from_file_FILE">search_from_file FILE</A></STRONG><BR>
  202. <DD>
  203. Reads a search from a set of files prefixed by FILE.
  204. (Used internally by the test-suite, not intended for general use.)
  205. <P></P></DL>
  206. <P>Some backends may not implement these generic options,
  207. but any which do implement them must provide these semantics.</P>
  208. <P>Backend-specific options are described
  209. in the documentation for each backend.
  210. In most cases the options and their values are packed together to create the query portion of
  211. the final URL.</P>
  212. <P>Details about how the search string and option hash are interpreted
  213. might be found in the search-engine-specific manual pages
  214. (WWW::Search::SearchEngineName).</P>
  215. <P>After <CODE>native_query</CODE>, the next step is usually:</P>
  216. <PRE>
  217.     @results = $search->results();</PRE>
  218. <P>or</P>
  219. <PRE>
  220.     while ($result = $search->next_result()) {
  221.         # do_something;
  222.     }</PRE>
  223. <P>
  224. <H2><A NAME="approximate_result_count">approximate_result_count</A></H2>
  225. <P>Some backends indicate how many hits they have found.
  226. Typically this is an approximate value.</P>
  227. <P>
  228. <H2><A NAME="results">results</A></H2>
  229. <P>Return all the results of a query as a reference to array 
  230. of SearchResult objects.
  231. Example:</P>
  232. <PRE>
  233.     @results = $search->results();
  234.     foreach $result (@results) {
  235.         print $result->url(), "\n";
  236.     };</PRE>
  237. <P>On error, <CODE>results()</CODE> will return undef and set <CODE>response()</CODE>
  238. to the HTTP response code.</P>
  239. <P>
  240. <H2><A NAME="next_result">next_result</A></H2>
  241. <P>Call this method repeatedly to return each result of a query as a
  242. SearchResult object.  Example:</P>
  243. <PRE>
  244.     while ($result = $search->next_result()) {
  245.         print $result->url(), "\n";
  246.     };</PRE>
  247. <P>On error, <CODE>next_result()</CODE> will return undef and set <CODE>response()</CODE>
  248. to the HTTP response code.</P>
  249. <P>
  250. <H2><A NAME="response">response</A></H2>
  251. <P>Return the HTTP Response code for the last query
  252. (see <A HREF="../../../site/lib/HTTP/Response.html">the HTTP::Response manpage</A>).
  253. If the query returns <A HREF="../../../lib/Pod/perlfunc.html#item_undef"><CODE>undef</CODE></A>,
  254. errors could be reported like this:</P>
  255. <PRE>
  256.     my($response) = $search->response();
  257.     if ($response->is_success) {
  258.         print "normal end of result list\n";
  259.     } else {
  260.         print "error:  " . $response->as_string() . "\n";
  261.     };</PRE>
  262. <P>Note:  even if the backend does not involve the web
  263. it should return HTTP::Response-style codes.</P>
  264. <P>
  265. <H2><A NAME="seek_result($offset)"><CODE>seek_result($offset)</CODE></A></H2>
  266. <P>Set which result <CODE>next_result</CODE> should return
  267. (like <CODE>lseek</CODE> in Unix).
  268. Results are zero-indexed.</P>
  269. <P>The only guaranteed valid offset is 0,
  270. which will replay the results from the beginning.
  271. In particular, seeking past the end of the current cached
  272. results probably will not do what you might think it should.</P>
  273. <P>Results are cached, so this does not re-issue the query
  274. or cause IO (unless you go off the end of the results).
  275. To re-do the query, create a new search object.</P>
  276. <P>Example:</P>
  277. <PRE>
  278.     $search->seek_result(0);</PRE>
  279. <P>
  280. <H2><A NAME="maximum_to_retrieve">maximum_to_retrieve</A></H2>
  281. <P>The maximum number of hits to return.
  282. Queries resulting in more than this many hits will return
  283. the first hits, up to this limit.
  284. Although this specifies a maximum limit,
  285. search engines might return less than this number.</P>
  286. <P>Defaults to 500.</P>
  287. <P>Example:
  288.     $max = $search->maximum_to_retrieve(100);</P>
  289. <P>
  290. <H2><A NAME="timeout">timeout</A></H2>
  291. <P>The maximum length of time any portion of the query should take,
  292. in seconds.</P>
  293. <P>Defaults to 60.</P>
  294. <P>Example:
  295.     $search->timeout(120);</P>
  296. <P>
  297. <H2><A NAME="opaque">opaque</A></H2>
  298. <P>This function provides an application a place to store
  299. one opaque data element (or many via a Perl reference).
  300. This facility is useful to (for example),
  301. maintain client-specific information in each active query
  302. when you have multiple concurrent queries.</P>
  303. <P>
  304. <H2><A NAME="escape_query">escape_query</A></H2>
  305. <P>Escape a query.
  306. Before queries are made special characters must be escaped
  307. so that a proper URL can be formed.
  308. This is like escaping a URL,
  309. but all non-alphanumeric characters are escaped and
  310. and spaces are converted to ``+''s.</P>
  311. <P>Example:
  312.     $escaped = WWW::Search::escape_query('+hi +mom');</P>
  313. <PRE>
  314.     (Returns "%2Bhi+%2Bmom").</PRE>
  315. <P>See also <CODE>unescape_query</CODE>.
  316. NOTE that this is not a method, it is a plain function.</P>
  317. <P>
  318. <H2><A NAME="unescape_query">unescape_query</A></H2>
  319. <P>Unescape a query.
  320. See <CODE>escape_query</CODE> for details.</P>
  321. <P>Example:
  322.     $unescaped = WWW::Search::unescape_query('%22hi+mom%22');</P>
  323. <PRE>
  324.     (Returns '"hi mom"').</PRE>
  325. <P>NOTE that this is not a method, it is a plain function.</P>
  326. <P>
  327. <H2><A NAME="strip_tags">strip_tags</A></H2>
  328. <P>Given a string, returns a copy of that string with HTML tags removed.
  329. This should be used by each backend as they insert the title and
  330. description values into the SearchResults.</P>
  331. <P>
  332. <H2><A NAME="hash_to_cgi_string (private)">hash_to_cgi_string (PRIVATE)</A></H2>
  333. <P>Given a reference to a hash of string => string, constructs a CGI
  334. parameter string that looks like 'key1=value1&key2=value2'.</P>
  335. <P>Backends should use this function rather than piecing the URL together
  336. by hand, to ensure that URLs are identical across platforms and
  337. software versions.</P>
  338. <P>Example:</P>
  339. <PRE>
  340.     $self->{_options} = {
  341.                          'opt3' => 'val3',
  342.                          'search_url' => '<A HREF="http://www.deja.com/dnquery.xp">http://www.deja.com/dnquery.xp</A>',
  343.                          'opt1' => 'val1',
  344.                          'QRY' => $native_query,
  345.                          'opt2' => 'val2',
  346.                         };
  347.     $self->{_next_url} = $self->{_options}{'search_url'} .'?'. 
  348.                          $self->hash_to_cgi_string($self->{_options});</PRE>
  349. <P>
  350. <H2><A NAME="http_proxy">http_proxy</A></H2>
  351. <P>Set-up an HTTP proxy
  352. (for connections from behind a firewall).</P>
  353. <P>This routine should be called before the first retrieval is attempted.</P>
  354. <P>Example:</P>
  355. <PRE>
  356.     $search->http_proxy("<A HREF="http://gateway:8080"">http://gateway:8080"</A>;);</PRE>
  357. <P>
  358. <H2><A NAME="user_agent($non_robot) (private)"><CODE>user_agent($NON_ROBOT)</CODE> (PRIVATE)</A></H2>
  359. <P>This internal routine creates a user-agent
  360. for dervived classes that query the web.
  361. If <CODE>$NON_ROBOT</CODE>, a normal user-agent (rather than a robot-style user-agent)
  362. is used.</P>
  363. <P>backends should use robot-style user-agents whereever possible.
  364. Also, backends should call <CODE>user_agent_delay</CODE> every page retrieval
  365. to avoid swamping search-engines.</P>
  366. <P>
  367. <H2><A NAME="http_request($method, $url)">http_request($method, $url)</A></H2>
  368. <P>Return the response from an http request,
  369. handling debugging.  Requires that user_agent already be set up.
  370. For POST methods, query is split off of the URL and passed
  371. in the request body.</P>
  372. <P>
  373. <H2><A NAME="split_lines (private)">split_lines (PRIVATE)</A></H2>
  374. <P>This internal routine splits data (typically the result of the web
  375. page retrieval) into lines in a way that is OS independent.</P>
  376. <P>
  377. <H2><A NAME="generic_option (private)">generic_option (PRIVATE)</A></H2>
  378. <P>This internal routine checks if an option
  379. is generic or backend specific.
  380. Currently all generic options begin with 'search_'.
  381. This routine is not a method.</P>
  382. <P>
  383. <H2><A NAME="setup_search (private)">setup_search (PRIVATE)</A></H2>
  384. <P>This internal routine does generic Search setup.
  385. It calls <CODE>native_setup_search</CODE> to do backend specific setup.</P>
  386. <P>
  387. <H2><A NAME="user_agent_delay (private)">user_agent_delay (PRIVATE)</A></H2>
  388. <P>Derived classes should call this between requests to remote
  389. servers to avoid overloading them with many, fast back-to-back requests.</P>
  390. <P>
  391. <H2><A NAME="absurl (private)">absurl (PRIVATE)</A></H2>
  392. <P>An internal routine to convert a relative URL into a absolute URL.  It
  393. takes two arguments, the 'base' url (usually the search engine CGI
  394. URL) and the URL to be converted.  Returns a URI::URL object.</P>
  395. <P>
  396. <H2><A NAME="retrieve_some (private)">retrieve_some (PRIVATE)</A></H2>
  397. <P>An internal routine to interface with <CODE>native_retrieve_some</CODE>.
  398. Checks for overflow.</P>
  399. <P>
  400. <H2><A NAME="test_cases">test_cases</A></H2>
  401. <P>Returns the value of the $TEST_CASES variable of the backend engine.
  402. All backends should set $TEST_CASES to a string containing perl code
  403. which will be eval-ed during 'make test'.
  404. See Excite.pm for an example.</P>
  405. <P>
  406. <HR>
  407. <H1><A NAME="implementing new backends">IMPLEMENTING NEW BACKENDS</A></H1>
  408. <P><CODE>WWW::Search</CODE> supports backends to separate search engines.
  409. Each backend is implemented as a subclass of <CODE>WWW::Search</CODE>.
  410. <A HREF="../../../site/lib/WWW/Search/AltaVista.html">the WWW::Search::AltaVista manpage</A> provides a good sample backend.</P>
  411. <P>A backend must have the two routines
  412. <CODE>native_retrieve_some</CODE> and <CODE>native_setup_search</CODE>.</P>
  413. <P><CODE>native_retrieve_some</CODE> is the core of a backend.
  414. It will be called periodically to fetch URLs.
  415. It should retrieve several hits from the search service
  416. and add them to the cache.  It should return the number
  417. of hits found, or undef when there are no more hits.</P>
  418. <P>Internally, <CODE>native_retrieve_some</CODE> typically sends an HTTP request to
  419. the search service, parse the HTML, extract the links and
  420. descriptions, then save the URL for the next page of results.  See the
  421. code for the AltaVista implementation for an example.</P>
  422. <P><CODE>native_setup_search</CODE> is invoked before the search.
  423. It is passed a single argument:  the escaped, native version
  424. of the query.</P>
  425. <P>The front- and backends share a single object (a hash).
  426. The backend can change any hash element beginning with underscore,
  427. and <CODE>{response}</CODE> (an <CODE>HTTP::Response</CODE> code) and <CODE>{cache}</CODE>
  428. (the array of <CODE>WWW::SearchResult</CODE> objects caching all results).
  429. Again, look at one of the existing web search backends as an example.</P>
  430. <P>If you implement a new backend, please let the authors know.</P>
  431. <P>
  432. <HR>
  433. <H1><A NAME="bugs and desired features">BUGS AND DESIRED FEATURES</A></H1>
  434. <P>The bugs are there for you to find (some people call them Easter Eggs).</P>
  435. <P>Desired features:</P>
  436. <DL>
  437. <DT><STRONG><A NAME="item_A_portable_query_language%2E">A portable query language.</A></STRONG><BR>
  438. <DD>
  439. A portable language would easily allow you to move queries easily
  440. between different search engines.  A query abstraction is non-trivial
  441. and unfortunately will not be done anytime soon by the current
  442. maintainers.  If you want to take a shot at it, please let me know.
  443. <P></P></DL>
  444. <P>
  445. <HR>
  446. <H1><A NAME="author">AUTHOR</A></H1>
  447. <P><CODE>WWW::Search</CODE> was written by John Heidemann, <<A HREF="mailto:johnh@isi.edu">johnh@isi.edu</A>>.
  448. <CODE>WWW::Search</CODE> is currently maintained by Martin Thurn, <<A HREF="mailto:MartinThurn@iname.com">MartinThurn@iname.com</A>>.</P>
  449. <P>backends and applications for WWW::Search were originally written by
  450. John Heidemann,
  451. Wm. L. Scheding,
  452. Cesare Feroldi de Rosa,
  453. and
  454. GLen Pringle.</P>
  455. <P>
  456. <HR>
  457. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  458. <P>Copyright (c) 1996 University of Southern California.
  459. All rights reserved.                                            
  460. </P>
  461. <PRE>
  462.  
  463. Redistribution and use in source and binary forms are permitted
  464. provided that the above copyright notice and this paragraph are
  465. duplicated in all such forms and that any documentation, advertising
  466. materials, and other materials related to such distribution and use
  467. acknowledge that the software was developed by the University of
  468. Southern California, Information Sciences Institute.  The name of the
  469. University may not be used to endorse or promote products derived from
  470. this software without specific prior written permission.</PRE>
  471. <P>THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  472. WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  473. MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.</P>
  474. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  475. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  476. <STRONG><P CLASS=block> WWW::Search - Virtual base class for WWW searches</P></STRONG>
  477. </TD></TR>
  478. </TABLE>
  479.  
  480. </BODY>
  481.  
  482. </HTML>
  483.