Better searching from the 404 page.
authorrich <rich>
Tue, 2 Nov 2004 19:21:17 +0000 (19:21 +0000)
committerrich <rich>
Tue, 2 Nov 2004 19:21:17 +0000 (19:21 +0000)
If no results, offer a link to Google search.

scripts/search.ml
templates/page_404.html
templates/search.html

index 0ee9f2e..2b2e8b9 100644 (file)
@@ -1,7 +1,7 @@
 (* COCANWIKI - a wiki written in Objective CAML.
  * Written by Richard W.M. Jones <rich@merjis.com>.
  * Copyright (C) 2004 Merjis Ltd.
- * $Id: search.ml,v 1.6 2004/11/02 18:47:54 rich Exp $
+ * $Id: search.ml,v 1.7 2004/11/02 19:21:17 rich Exp $
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -35,6 +35,8 @@ let split_words = Pcre.regexp "\\W+"
 let run r (q : cgi) (dbh : Dbi.connection) hostid host user =
   let template = get_template dbh hostid "search.html" in
 
+  template#set "canonical_hostname" host.canonical_hostname;
+
   (* Get the query, if it exists. *)
   let query = try q#param "q" with Not_found -> "" in
   let have_query = not (string_is_whitespace query) in
index 2d55a9e..8f3c0c0 100644 (file)
 Search our site for this page:
 </p>
 
-<form method="post" action="/_bin/search.cmo">
+<form method="post" action="/_search">
 <p>
-<input name="q" value="::search_terms_html_tag::" size="50"/>
-<input type="submit" value="Search"/>
+<input name="q" value="::search_terms_html_tag::" size="70"/><input type="submit" value="Search"/>
 </p>
 </form>
 
index 1d1167c..7fae64b 100644 (file)
@@ -74,6 +74,7 @@ Some tips for finding what you want:
 <ul>
 <li> Use fewer words. </li>
 <li> <a href="/_sitemap">Try browsing the sitemap.</a> </li>
+<li> <a href="http://www.google.com/search?q=site&#58;::canonical_hostname_url::+::query_url::">Try the same search on Google.</a>
 </ul>
 
 ::end::