Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 27 Jun 2015 02:36:17 +0000 (UTC)
From:      Peter Wemm <peter@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r46874 - in head: en_US.ISO8859-1/htdocs/cgi en_US.ISO8859-1/htdocs/cgi/GnatsPR en_US.ISO8859-1/htdocs/layout/css en_US.ISO8859-1/htdocs/platforms/ia64 en_US.ISO8859-1/htdocs/search en_...
Message-ID:  <201506270236.t5R2aHua038176@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: peter (src committer)
Date: Sat Jun 27 02:36:16 2015
New Revision: 46874
URL: https://svnweb.freebsd.org/changeset/doc/46874

Log:
  Tidy up some loose ends that no longer work after the apache-1.x server on
  hub.freebsd.org and the supporting 15 year old binaries have gone away.
  
  Highlights:
  - Sync up the cgi scripts to be closer to the standard page look
  and feel and the canonical url locations.
  - Adjust the search controls to include the docs.freebsd.org doc set.
  - Replace the remaining wais search references.
  - Fix up the embedded paths that depended on a symlink and/or nfs jungle
  on hub. These aren't present in the jail this now runs in.
  - Fix a typo (stray backtick) in one of the header entities.
  - Remove the remaining no-longer-functional gnats components - they
  ran on hub and no longer exist.
  
  Build tested by: gjb
  Brought to you by:  lots of coffee, profanity and confusion.

Deleted:
  head/en_US.ISO8859-1/htdocs/cgi/Gnats.pm
  head/en_US.ISO8859-1/htdocs/cgi/GnatsPR/
  head/en_US.ISO8859-1/htdocs/cgi/GnatsPR.pm
  head/en_US.ISO8859-1/htdocs/cgi/confirm-code.cgi
  head/en_US.ISO8859-1/htdocs/cgi/dosendpr.cgi
  head/en_US.ISO8859-1/htdocs/cgi/missing_handler.cgi
  head/en_US.ISO8859-1/htdocs/cgi/query-pr-lib.pl
  head/en_US.ISO8859-1/htdocs/cgi/query-pr-summary.cgi
  head/en_US.ISO8859-1/htdocs/cgi/query-pr.cgi
  head/en_US.ISO8859-1/htdocs/cgi/search.cgi
  head/en_US.ISO8859-1/htdocs/layout/css/query-pr.css
  head/en_US.ISO8859-1/htdocs/search/opensearch/query-pr.xml
  head/en_US.ISO8859-1/htdocs/search/opensearch/web-all.xml
  head/en_US.ISO8859-1/htdocs/search/opensearch/web.xml
Modified:
  head/en_US.ISO8859-1/htdocs/cgi/Makefile
  head/en_US.ISO8859-1/htdocs/cgi/cgi-style.pl
  head/en_US.ISO8859-1/htdocs/cgi/getmsg.cgi
  head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi
  head/en_US.ISO8859-1/htdocs/cgi/mid.cgi
  head/en_US.ISO8859-1/htdocs/cgi/ports.cgi
  head/en_US.ISO8859-1/htdocs/layout/css/Makefile
  head/en_US.ISO8859-1/htdocs/platforms/ia64/index.xml
  head/en_US.ISO8859-1/htdocs/search/opensearch/Makefile
  head/en_US.ISO8859-1/htdocs/search/opensearch/opensearch.xml
  head/en_US.ISO8859-1/htdocs/search/search.xml
  head/share/xml/header.ent

Modified: head/en_US.ISO8859-1/htdocs/cgi/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/Makefile	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/Makefile	Sat Jun 27 02:36:16 2015	(r46874)
@@ -8,28 +8,17 @@
 .endif
 
 DATA=
-DATA+=	Gnats.pm
-DATA+=	GnatsPR.pm
 DATA+=	cgi-lib.pl
 DATA+=	cgi-style.pl
-DATA+=	query-pr-lib.pl
 
 CGI=
-CGI+=	confirm-code.cgi
-CGI+=	dosendpr.cgi
 CGI+=	getmsg.cgi
 CGI+=	mailindex.cgi
 CGI+=	man.cgi
 CGI+=	mid.cgi
 CGI+=	mirror.cgi
-CGI+=	missing_handler.cgi
 CGI+=	monthly.cgi
 CGI+=	ports.cgi
-CGI+=	query-pr.cgi
-CGI+=	query-pr-summary.cgi
-CGI+=	search.cgi
-
-SUBDIR=	GnatsPR
 
 .SUFFIXES:	.C .cgi
 

Modified: head/en_US.ISO8859-1/htdocs/cgi/cgi-style.pl
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/cgi-style.pl	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/cgi-style.pl	Sat Jun 27 02:36:16 2015	(r46874)
@@ -14,7 +14,7 @@ if (!defined($hsty_base)) { 
     # However, if we aren't running as a cgi, or if we're
     # running on cgi, hub, docs or people, use the absolute home path.
     if (!defined($ENV{'HTTP_HOST'}) ||
-	$ENV{'HTTP_HOST'} =~ /(cgi|hub|docs|people).freebsd.org/i) {
+	$ENV{'HTTP_HOST'} =~ /(cgi|hub|docs|people|mailarchive.ysv).freebsd.org/i) {
 
 	$hsty_base = '//www.FreeBSD.org'
     } else {
@@ -22,7 +22,7 @@ if (!defined($hsty_base)) { 
     }
 }
 if (!defined($hsty_email)) {
-    $hsty_email = 'www@FreeBSD.org';
+    $hsty_email = 'Contact';
 }
 if (!defined($hsty_author)) {
     $hsty_author = "<a href='$hsty_base/mailto.html'>$hsty_email</a>";
@@ -83,7 +83,7 @@ $i_topbar = qq`
               <div id="search">
 		<form method="get" id="search" action="https://duckduckgo.com/">;
 		  <h2 class="blockhide"><label for="words">Search</label></h2>
-		  <input type="hidden" name="sites" value="www.FreeBSD.org,lists.FreeBSD.org,wiki.FreeBSD.org,forums.FreeBSD.org" />
+		  <input type="hidden" name="sites" value="www.FreeBSD.org,docs.FreeBSD.org,lists.FreeBSD.org,wiki.FreeBSD.org,forums.FreeBSD.org" />
 		  <input type="hidden" name="ka" value="v" />
 		  <input type="hidden" name="kt" value="v" />
 		  <input type="hidden" name="kh" value="1" />
@@ -160,8 +160,8 @@ $i_topbar = qq`
 		<ul>
 		  <li><a href="$hsty_base/commercial/commercial.html">Vendors</a></li>
 		  <li><a href="//security.FreeBSD.org/">Security Information</a></li>
-		  <li><a href="$hsty_base/cgi/query-pr-summary.cgi">Bug Reports</a></li>
-		  <li><a href="$hsty_base/send-pr.html">Submit Bug-report</a></li>
+		  <li><a href="https://bugs.freebsd.org/bugzilla/search/">Bug Reports</a></li>
+		  <li><a href="$hsty_base/support.html">Submit Bug-report</a></li>
 		</ul>
 	      </li>
 	    </ul>

Modified: head/en_US.ISO8859-1/htdocs/cgi/getmsg.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/getmsg.cgi	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/getmsg.cgi	Sat Jun 27 02:36:16 2015	(r46874)
@@ -26,7 +26,7 @@ pre a:visited { color: #220000; }
 #
 # Files MUST be fully qualified and MUST start with this path.
 #
-$messagepath = "/usr/local/www/db/text/";
+$messagepath = "/usr/local/www/mailindex/archive/";
 $messagepathcurrent = "/usr/local/www/mid/archive/";
 $ftparchive = 'ftp://ftp.FreeBSD.org/pub/FreeBSD/doc/mailing-lists/archive';
 

Modified: head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/mailindex.cgi	Sat Jun 27 02:36:16 2015	(r46874)
@@ -42,10 +42,10 @@ my $up = 0;
 $| = 1;
 
 # mail archive location
-$maildir = '/g/mail/archive';
+$maildir = '/home/mail/archive';
 
 # mailindex program
-$mailindex = '/usr/local/www/mid/bin/mailindex';
+$mailindex = '/usr/local/www/mailindex/bin/mailindex';
 
 
 $query = new CGI();
@@ -82,7 +82,7 @@ sub file_not_exists {
 }
 
 if ($file =~ s%^archive/%%) {
-    $maildir = '/g/www/db/text';
+    $maildir = '/usr/local/www/mailindex/archive';
     &file_not_exists("$maildir/$file") if (! -f "$maildir/$file");
 } elsif ($file =~ s%^current/%% && $file =~ /^freebsd-|^cvs-/) {
     &file_not_exists("$file") if (! -f "$maildir/$file");

Modified: head/en_US.ISO8859-1/htdocs/cgi/mid.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/mid.cgi	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/mid.cgi	Sat Jun 27 02:36:16 2015	(r46874)
@@ -32,10 +32,9 @@ require "./cgi-lib.pl";
 require "./cgi-style.pl";
 
 $home = '/usr/local/www/mailindex';
-$prefix= "/usr/local/www/db/text";
+$prefix= "/usr/local/www/mailindex/archive";
 $lookupdir = "$home/message-id"; # database(s) directory
 $databaseDefault = 'mid';           # default database
-$bindir = "$home/bin"; # where search scripts located
 $script = $ENV{'SCRIPT_NAME'};
 $shortid = 1;
 $lookCommand = "/usr/bin/look";
@@ -90,7 +89,7 @@ sub get_id {
 	local($id, $file, $start) = split($", $idlist[0]);
 	$location =~ s%/[^/]+$%%;
 	local($host) = $ENV{'HTTP_HOST'};
-	$location = 'http://' . $host . $location;
+	$location = '//' . $host . $location;
 	$start =~ s/\s+$//;
 
 	print "Location: $location/getmsg.cgi?fetch=$start+0+" .

Modified: head/en_US.ISO8859-1/htdocs/cgi/ports.cgi
==============================================================================
--- head/en_US.ISO8859-1/htdocs/cgi/ports.cgi	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/cgi/ports.cgi	Sat Jun 27 02:36:16 2015	(r46874)
@@ -458,10 +458,10 @@ Search for:
     %d = (
         'name',       'Package Name',     'all',      'All',
         'maintainer', 'Maintainer',       'text',     'Description',
-        'pkgdescr',   'Long Description', 'requires', 'Requires',
+        'requires', 'Requires',
     );
 
-    foreach ( 'all', 'name', 'text', 'pkgdescr', 'maintainer', 'requires' ) {
+    foreach ( 'all', 'name', 'text', 'maintainer', 'requires' ) {
         print "<option"
           . ( ( $_ eq $stype ) ? ' selected="selected" ' : ' ' )
           . qq{value="$_">}
@@ -588,15 +588,6 @@ if ( $path_info eq "/source" ) {
     &exit;
 }
 
-# Full text search in ports/<category>/port>/pkg-descr
-if ( $stype eq 'pkgdescr' ) {
-    local ($url) =
-      'http://www.FreeBSD.org/cgi/search.cgi?source=pkgdescr&max=25';
-    $query =~ s/\s+/+/g;
-    print "Location: $url&words=$query\n\n";
-    &exit;
-}
-
 if ( $stype eq "faq" ) {
     print &short_html_header( "FreeBSD Ports Search FAQ", 1 );
     &faq;

Modified: head/en_US.ISO8859-1/htdocs/layout/css/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/layout/css/Makefile	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/layout/css/Makefile	Sat Jun 27 02:36:16 2015	(r46874)
@@ -14,7 +14,6 @@ DATA+=	global.css
 DATA+=	iefixes.css
 DATA+=	layout.css
 DATA+=	navigation.css
-DATA+=	query-pr.css
 DATA+=	table.css
 DATA+=	text.css
 

Modified: head/en_US.ISO8859-1/htdocs/platforms/ia64/index.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/platforms/ia64/index.xml	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/platforms/ia64/index.xml	Sat Jun 27 02:36:16 2015	(r46874)
@@ -15,15 +15,6 @@
   <body class="navinclude.developers">
 		<img align="right" alt="McKinley die" src="mckinley-die.png"/>
 
-		<p>Search the ia64 mailing list archives:</p>
-
-		<form action="&cgibase;/search.cgi" method="get">
-		  <input name="words" size="50" type="text"/>
-		  <input name="max" type="hidden" value="25"/>
-		  <input name="source" type="hidden" value="freebsd-ia64"/>
-		  <input type="submit" value="Go"/>
-		</form>
-
 		<h3><a name="toc">Table Of Contents</a></h3>
 
 		<ul>

Modified: head/en_US.ISO8859-1/htdocs/search/opensearch/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/search/opensearch/Makefile	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/search/opensearch/Makefile	Sat Jun 27 02:36:16 2015	(r46874)
@@ -16,9 +16,6 @@ DATA+=	opensearch.js
 DATA+=	man.xml
 DATA+=	man-freebsd-release-ports.xml
 DATA+=	ports.xml
-DATA+=	query-pr.xml
-DATA+=	web.xml
-DATA+=	web-all.xml
 DATA+=	message-id.xml
 
 # external sites

Modified: head/en_US.ISO8859-1/htdocs/search/opensearch/opensearch.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/search/opensearch/opensearch.xml	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/search/opensearch/opensearch.xml	Sat Jun 27 02:36:16 2015	(r46874)
@@ -38,9 +38,6 @@ function install(link) {
           <li><a href="man.xml" onclick= "return install(this)">FreeBSD Manual Pages</a></li>
           <li><a href="man-freebsd-release-ports.xml" onclick= "return install(this)">FreeBSD + Ports Manual Pages</a></li>
           <li><a href="ports.xml" onclick= "return install(this)">FreeBSD Ports and Packages Collection</a></li>
-          <li><a href="query-pr.xml" onclick= "return install(this)">FreeBSD Problem Reports</a></li>
-          <li><a href="web-all.xml" onclick= "return install(this)">FreeBSD Fulltext Search Web + Manual + Ports Pages</a></li>
-          <li><a href="web.xml" onclick= "return install(this)">FreeBSD Fulltext Search Web Pages</a></li>
           <li><a href="message-id.xml" onclick= "return install(this)">FreeBSD Mailing List Message-ID Search</a></li>
 	  </ul>
 

Modified: head/en_US.ISO8859-1/htdocs/search/search.xml
==============================================================================
--- head/en_US.ISO8859-1/htdocs/search/search.xml	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/en_US.ISO8859-1/htdocs/search/search.xml	Sat Jun 27 02:36:16 2015	(r46874)
@@ -46,7 +46,7 @@
 
     <form action="https://duckduckgo.com/" method="get">
       <h2 class="blockhide"><label for="words">Search</label></h2>
-      <input type="hidden" name="sites" value="www.FreeBSD.org,lists.FreeBSD.org,wiki.FreeBSD.org,forums.FreeBSD.org" />
+      <input type="hidden" name="sites" value="www.FreeBSD.org,docs.FreeBSD.org/doc,wiki.FreeBSD.org,forums.FreeBSD.org" />
       <input type="hidden" name="ka" value="v" />
       <input type="hidden" name="kt" value="v" />
       <input type="hidden" name="kh" value="1" />
@@ -96,611 +96,18 @@
     <p>The mailing lists (as well as many others) have also been archived by <a
 	href="http://markmail.org/browse/?q=list:org.freebsd">MarkMail</a>.</p>;
 
-    <form action="&cgibase;/search.cgi" method="get">
-
-      <h3>Search for:</h3>
-
-      <p><em>Note: Use the operators AND or NOT to limit your
-        search.  <a href="searchhints.html">Look here
-	for more hints</a>.</em></p>
-
-      <p><input type="text" name="words" size="50"/><br/>
-	Limit the number of results to
-
-	<select name="max">
-	  <option value="5">5</option>
-	  <option value="10">10</option>
-	  <option value="25" selected="selected">25</option>
-	  <option value="50">50</option>
-	  <option value="100">100</option>
-	  <option value="250">250</option>
-	</select>
-
-	sort by
-
-	<select name="sort">
-	  <option value="score">score</option>
-	  <option value="date">score &amp; date</option>
-	  <option value="subject">subject</option>
-	  <option value="author">author</option>
-	</select>
-
-	Search
-
-	<select name="index">
-	  <option value="recent" selected="selected">recent</option>
-	  <option value="all">all</option>
-	</select>
-
-	<br/>
-
-	<input type="submit"/> <input type="reset"/></p>
-
-	<h3>In archive(s):</h3>
-
-	<p><em>Note: Searching more than three or four archives at once may
-	  yield inaccurate results.</em></p>
-
-	<h3>General Archives</h3>
-
-	<table>
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-advocacy"/> <strong>Advocacy</strong></td>
-	    <td>FreeBSD Evangelism</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-announce"/> <strong>Announce</strong></td>
-	    <td>Important events / milestones</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-chat"/> <strong>Chat</strong></td>
-	    <td>Random topics (sometimes) related to FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-jobs"/> <strong>Jobs</strong></td>
-	    <td>FreeBSD related job announcements and resumes</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-newbies"/> <strong>Newbies</strong></td>
-	    <td>New FreeBSD users activities and discussion</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source" checked="checked"
-	      value="freebsd-questions"/> <strong>Questions</strong></td>
-	    <td>General questions</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-security-notifications"/> <strong>Security Notifications</strong></td>
-	    <td>Announcements regarding FreeBSD security issues (including, e.g., CERT notices)</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-user-groups"/> <strong>User-Groups</strong></td>
-	    <td>A forum for FreeBSD user groups</td>
-	  </tr>
-	</table>
-
-	<h3>System Use and Administration</h3>
-
-	<table>
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-bugs"/> <strong>Bugs</strong></td>
-	    <td>Reports and discussion of bugs</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-cluster"/> <strong>Cluster</strong></td>
-	    <td>Discussions related to using FreeBSD in clustered environments</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-  	      value="freebsd-hardware"/> <strong>Hardware</strong></td>
-	    <td>Discussions concerning hardware as it relates to FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-isp"/> <strong>ISP</strong></td>
-	    <td>Discussions for ISPs using FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-performance"/> <strong>Performance</strong></td>
-	    <td>Discussions of the performance of FreeBSD under high load or extreme conditions</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-security"/> <strong>Security</strong></td>
-	    <td>FreeBSD computer security issues (DES, Kerberos, etc.)</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-stable"/> <strong>Stable</strong></td>
-	    <td>Discussion of the FreeBSD-stable branch of the development tree</td>
-	  </tr>
-	</table>
-
-	<h3>Developer</h3>
-
-	<table>
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-acpi"/> <strong>ACPI</strong></td>
-	    <td>ACPI and power management development</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-afs"/> <strong>Afs</strong></td>
-	    <td>Porting and using AFS (the Andrew File System) from CMU/Transarc</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-alpha"/> <strong>Alpha</strong></td>
-	    <td>Porting FreeBSD to the DEC Alpha</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-amd64"/> <strong>AMD64</strong></td>
-	    <td>Porting FreeBSD to the AMD64</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-apache"/> <strong>Apache</strong></td>
-	    <td>Discussion about Apache related ports</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-arch"/> <strong>Arch</strong></td>
-	    <td>Architecture and design discussions</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-arm"/> <strong>ARM</strong></td>
-	    <td>Porting FreeBSD to the StrongArm</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-atm"/> <strong>ATM</strong></td>
-	    <td>Using ATM networking with FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-audit"/> <strong>Audit</strong></td>
-	    <td>Source code audit project</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-binup"/> <strong>Binup</strong></td>
-	    <td>Design and development of the binary update system</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-bluetooth"/> <strong>Bluetooth</strong></td>
-	    <td>Discussion about FreeBSD support for Bluetooth</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-chromium"/> <strong>Chromium</strong></td>
-	    <td>FreeBSD-specific Chromium issues</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-bugbusters"/> <strong>Bugbusters</strong></td>
-	    <td>Coordination of the Problem Report handling effort</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="cvs-all"/> <strong>Commit (all)</strong></td>
-	    <td>All Changes made to all FreeBSD source trees</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="cvs-doc"/> <strong>Commit (doc)</strong></td>
-	    <td>Changes made to the FreeBSD documents source tree</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="cvs-ports"/> <strong>Commit (ports)</strong></td>
-	    <td>Changes made to the FreeBSD ports source tree</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="cvs-projects"/> <strong>Commit (projects)</strong></td>
-	    <td>Changes made to the FreeBSD projects source tree</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="cvs-src"/> <strong>Commit (src)</strong></td>
-	    <td>Changes made to the FreeBSD main source tree</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-config"/> <strong>Config</strong></td>
-	    <td>Development of FreeBSD installation and configuration tools</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-current"/> <strong>Current</strong></td>
-	    <td>Use of FreeBSD-current sources</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-cvsweb"/> <strong>CVSweb</strong></td>
-	    <td>Technical discussions about use, development and maintenance of FreeBSD-CVSweb</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-database"/> <strong>Database</strong></td>
-	    <td>Discussing database use and development under FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-doc"/> <strong>Doc</strong></td>
-	    <td>Discussions concerning documentation</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-drivers"/> <strong>Drivers</strong></td>
-	    <td>Writing device drivers for FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-embedded"/> <strong>Embedded</strong></td>
-	    <td>Discussions about using FreeBSD in embedded systems</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-emulation"/> <strong>Emulation</strong></td>
-	    <td>Emulating other systems on FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-firewire"/> <strong>Firewire</strong></td>
-	    <td>Design and implementation
-	      of a Firewire (aka IEEE 1394 aka iLink) subsystem for FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-fs"/> <strong>Fs</strong></td>
-	    <td>Discussions concerning FreeBSD filesystems</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-geom"/>  <strong>GEOM</strong></td>
-	    <td>GEOM-specific discussions and implementations</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-gnome"/> <strong>Gnome</strong></td>
-	    <td>Discussions concerning the FreeBSD GNOME project</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-hackers"/> <strong>Hackers</strong></td>
-	    <td>General technical discussions</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-i18n"/> <strong>I18n</strong></td>
-	    <td>FreeBSD Internationalization</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-i386"/> <strong>i386</strong></td>
-	    <td>i386-specific issues for FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ia32"/> <strong>ia32</strong></td>
-	    <td>FreeBSD on the IA32 platform</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ia64"/> <strong>ia64</strong></td>
-	    <td>Porting FreeBSD to Intel's upcoming IA64 systems</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ipfw"/> <strong>ipfw</strong></td>
-	    <td>Technical discussion concerning the redesign of the IP firewall code</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-isdn"/> <strong>ISDN</strong></td>
-	    <td>Development of ISDN support for FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-java"/> <strong>&java;</strong></td>
-	    <td>JDK porting and application development</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-libh"/> <strong>libh</strong></td>
-	    <td>The second generation installation and package system</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-mips"/> <strong>MIPS</strong></td>
-	    <td>Porting FreeBSD to MIPS</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-multimedia"/> <strong>Multimedia</strong></td>
-	    <td>Discussions about FreeBSD as a multimedia platform</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-mobile"/> <strong>Mobile</strong></td>
-	    <td>Using FreeBSD in a mobile environment</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-mozilla"/> <strong>Mozilla</strong></td>
-	    <td>Porting mozilla to FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-net"/> <strong>Net</strong></td>
-	    <td>Networking discussion and TCP/IP source code</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-new-bus"/> <strong>New Bus</strong></td>
-	    <td>Technical discussions on Bus Architecture</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-office"/> <strong>Office</strong></td>
-	    <td>Office applications on FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-openoffice"/> <strong>OpenOffice</strong></td>
-	    <td>Discussions concerning the FreeBSD OpenOffice and StarOffice ports</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-perl"/> <strong>Perl</strong></td>
-	    <td>Maintenance of a number of perl-related ports</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-pf"/> <strong>PF</strong></td>
-	    <td>Discussion and questions about the packet filter firewall system</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-platforms"/> <strong>Platforms</strong></td>
-	    <td>Cross-platform FreeBSD issues (non-Intel FreeBSD ports)</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-policy"/> <strong>Policy</strong></td>
-	    <td>FreeBSD core team policy decisions</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ports-bugs"/> <strong>Ports Bugs</strong></td>
-	    <td>Bug reports concerning FreeBSD's ports collection</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ports"/> <strong>Ports</strong></td>
-	    <td>Discussions concerning FreeBSD's ports collection</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-ppc"/> <strong>PPC</strong></td>
-	    <td>Porting FreeBSD to the PowerPC</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-python"/> <strong>Python</strong></td>
-	    <td>FreeBSD-specific Python issues</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-              value="freebsd-qa"/> <strong>QA</strong></td>
-	    <td>Discussion of quality assurance issues</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-  	      value="freebsd-rc"/> <strong>rc</strong></td>
-	    <td>Discussion related to /etc/rc.d design and implementation</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-realtime"/> <strong>Realtime</strong></td>
-	    <td>Development of realtime extensions to FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-scsi"/> <strong>SCSI</strong></td>
-	    <td>Discussions about FreeBSD's SCSI support</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-small"/> <strong>Small</strong></td>
-	    <td>Using FreeBSD in embedded applications</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-smp"/> <strong>SMP</strong></td>
-	    <td>FreeBSD on multi-processor platforms</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-sparc64"/> <strong>SPARC64</strong></td>
-	    <td>Porting FreeBSD to the SPARC64</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-standards"/> <strong>Standards</strong></td>
-	    <td>FreeBSD Conformance to the C99 and the &posix; standards</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-threads"/> <strong>Threads</strong></td>
-	    <td>Discussion about threading models in FreeBSD, including KSE and others</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-tilera"/> <strong>Tilera</strong></td>
-	    <td>Porting FreeBSD to the Tilera family of CPUs</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-tokenring"/> <strong>Tokenring</strong></td>
-	    <td>Support Token Ring in FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-toolchain"/> <strong>Toolchain</strong></td>
-	    <td>Maintenance of FreeBSD's integrated toolchain</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-usb"/> <strong>USB</strong></td>
-	    <td>Discussion about FreeBSD support for USB</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-vuxml"/> <strong>VuXML</strong></td>
-	    <td>Discussion on VuXML infrastructure</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-x11"/> <strong>X11</strong></td>
-	    <td>Maintenance and support of X11 on FreeBSD</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-xfce"/> <strong>XFCE</strong></td>
-	    <td>XFCE for FreeBSD &mdash; porting and maintaining</td>
-	  </tr>
-	</table>
-
-	<h3>Limited lists</h3>
-
-	<table>
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-hubs"/> <strong>Hubs</strong></td>
-	    <td>People running mirror sites (infrastructural support)</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-install"/> <strong>Install</strong></td>
-	    <td>Installation system development</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-wireless"/> <strong>Wireless</strong></td>
-	    <td>802.11 stack, tools, device driver development</td>
-	  </tr>
-
-	  <tr>
-	    <td><input type="checkbox" name="source"
-	      value="freebsd-www"/> <strong>WWW</strong></td>
-	    <td>Web site maintainers</td>
-	  </tr>
-	</table>
-
-	<p><input type="submit"/></p>
-      </form>
-
+    <form action="https://duckduckgo.com/" method="get">
+      <h2 class="blockhide"><label for="mlwords">Search</label></h2>
+      <input type="hidden" name="sites" value="docs.FreeBSD.org/mail,lists.FreeBSD.org/pipermail" />
+      <input type="hidden" name="ka" value="v" />
+      <input type="hidden" name="kt" value="v" />
+      <input type="hidden" name="kh" value="1" />
+      <input type="hidden" name="kj" value="r2" />
+      <input id="mlwords" name="q" type="text" size="50" maxlength="255" />
+      <br />
+      <input id="mlsubmit" name="submit" type="submit" value="Submit Query" />
+      <input id="mlreset" type="reset" value="Reset" />
+    </form>
 
   </body>
 </html>

Modified: head/share/xml/header.ent
==============================================================================
--- head/share/xml/header.ent	Sat Jun 27 00:25:33 2015	(r46873)
+++ head/share/xml/header.ent	Sat Jun 27 02:36:16 2015	(r46874)
@@ -66,7 +66,7 @@
   <div id="search" xmlns="http://www.w3.org/1999/xhtml">;
     <form method="get" id="search" action="https://duckduckgo.com/">;
       <h2 class="blockhide"><label for="words">&header2.word.search;</label></h2>
-      <input type="hidden" name="sites" value="www.FreeBSD.org,lists.FreeBSD.org,wiki.FreeBSD.org,forums.FreeBSD.org" />
+      <input type="hidden" name="sites" value="www.FreeBSD.org,docs.FreeBSD.org,lists.FreeBSD.org,wiki.FreeBSD.org,forums.FreeBSD.org" />
       <input type="hidden" name="ka" value="v" />
       <input type="hidden" name="kt" value="v" />
       <input type="hidden" name="kh" value="1" />
@@ -184,7 +184,7 @@
 
 <div xmlns="http://www.w3.org/1999/xhtml" id="headercontainer">
   <div id="header">
-    &header2.logo-red.label;`
+    &header2.logo-red.label;
 
     <div id="headerlogoleft">
       &header2.logo-red;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506270236.t5R2aHua038176>