Fix links due repository copy.

This commit is contained in:
Wolfram Schneider 1998-08-03 15:37:48 +00:00
parent ad3a445f34
commit 86585fef72
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=3254
16 changed files with 57 additions and 58 deletions

View file

@ -1,4 +1,4 @@
# $Id: cgi-style.pl,v 1.10 1998-04-15 13:47:24 wosch Exp $
# $Id: cgi-style.pl,v 1.11 1998-08-03 15:37:47 wosch Exp $
#
# Perl routines to encapsulate various elements of HTML page style.
@ -27,9 +27,9 @@ $i_topbar = "<IMG SRC=\"$hsty_base/gifs/bar.gif\" ALT=\"\" WIDTH=\"565\" HEIGHT=
<area shape=\"rect\" coords=\"112,11,196,31\" href=\"$hsty_base/ports/index.html\" ALT=\"\">
<area shape=\"rect\" coords=\"196,12,257,33\" href=\"$hsty_base/support.html\" ALT=\"\">
<area shape=\"rect\" coords=\"256,12,365,33\" href=\"$hsty_base/docs.html\" ALT=\"\">
<area shape=\"rect\" coords=\"366,13,424,32\" href=\"$hsty_base/commercial.html\" ALT=\"\">
<area shape=\"rect\" coords=\"425,16,475,32\" href=\"$hsty_base/search.html\" ALT=\"\">
<area shape=\"rect\" coords=\"477,16,516,33\" href=\"$hsty_base/index-site.html\" ALT=\"\">
<area shape=\"rect\" coords=\"366,13,424,32\" href=\"$hsty_base/commercial/commercial.html\" ALT=\"\">
<area shape=\"rect\" coords=\"425,16,475,32\" href=\"$hsty_base/search/search.html\" ALT=\"\">
<area shape=\"rect\" coords=\"477,16,516,33\" href=\"$hsty_base/search/index-site.html\" ALT=\"\">
<area shape=\"rect\" coords=\"516,15,562,33\" href=\"$hsty_base/index.html\" ALT=\"\">
<area shape=\"rect\" href=\"$hsty_base/index.html\" coords=\"0,0,564,32\" ALT=\"\">
</map>";

View file

@ -6,7 +6,7 @@
# by John Fieber
# February 26, 1998
#
# $Id: getmsg.cgi,v 1.15 1998-04-13 18:54:32 wosch Exp $
# $Id: getmsg.cgi,v 1.16 1998-08-03 15:37:47 wosch Exp $
#
require "./cgi-lib.pl";
@ -176,7 +176,7 @@ sub MessageToHTML
}
$message .= qq{| <a href="$ENV{'REQUEST_URI'}+raw">Raw E-Mail</a>\n};
$message .= qq{| <a href="$ENV{'REQUEST_URI'}+archive">Current Archive</a>\n} if $file =~ m%^$messagepath%o;
$message .= qq{| <a href="../searchhints.html">Help</a>\n};
$message .= qq{| <a href="../search/searchhints.html">Help</a>\n};
$message .= "<HR NOSHADE>\n";

View file

@ -26,7 +26,7 @@
#
# Search a mail by Message-ID, References or In-Reply-To field
#
# $Id: mid.cgi,v 1.5 1998-05-10 18:26:18 wosch Exp $
# $Id: mid.cgi,v 1.6 1998-08-03 15:37:47 wosch Exp $
$hsty_base = '';
@ -101,7 +101,7 @@ sub get_id {
sub midheader {
return &short_html_header("FreeBSD Message-ID Mail Archives") .
qq{<p><a href="../search.html">Back to the search interface</a><p>\n};
qq{<p><a href="../search/search.html">Back to the search interface</a><p>\n};
}
sub foot { return &html_footer . "</BODY></HTML>\n"; }

View file

@ -24,7 +24,7 @@
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $Id: ports.cgi,v 1.24 1998-08-02 17:40:29 wosch Exp $
# $Id: ports.cgi,v 1.25 1998-08-03 15:37:47 wosch Exp $
#
# ports.cgi - search engine for FreeBSD ports
# o search for a port by name or description
@ -649,7 +649,7 @@ else {
if (!$counter) {
print "Sorry, nothing found.\n";
print qq{You may look for other } .
qq{<a href="/search.html">FreeBSD Search Services</a>.\n};
qq{<a href="/search/search.html">FreeBSD Search Services</a>.\n};
} else {
print "</dl>\n";
}

View file

@ -90,8 +90,8 @@ print "<AREA SHAPE=\"RECT\" COORDS=\"112,11,196,31\" HREF=\"../ports/index.html\
print "<AREA SHAPE=\"RECT\" COORDS=\"196,12,257,33\" HREF=\"../support.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"256,12,365,33\" HREF=\"../docs.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"366,13,424,32\" HREF=\"../commercial.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"425,16,475,32\" HREF=\"../search.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"477,16,516,33\" HREF=\"../index-site.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"425,16,475,32\" HREF=\"../search/search.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"477,16,516,33\" HREF=\"../search/index-site.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"516,15,562,33\" HREF=\"../index.html\">\n";
print "<AREA SHAPE=\"RECT\" COORDS=\"0,0,564,32\" HREF=\"../index.html\">\n";
print "</MAP>\n";

View file

@ -19,8 +19,8 @@
$server_root = '/usr/local/www';
$waisq = "/usr/local/www/bin/waisq";
$sourcepath = "$server_root/db/index";
$hints = "/searchhints.html";
$searchpage = '/search.html';
$hints = "/search/searchhints.html";
$searchpage = '/search/search.html';
$myurl = $ENV{'SCRIPT_NAME'};
require "open2.pl";

View file

@ -1,15 +1,15 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1998-08-03 12:34:56 $">
<!ENTITY date "$Date: 1998-08-03 15:37:43 $">
<!ENTITY title "Documentation">
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: docs.sgml,v 1.48 1998-08-03 12:34:56 wosch Exp $ -->
<!-- $Id: docs.sgml,v 1.49 1998-08-03 15:37:43 wosch Exp $ -->
<html>
&header;
<a name="press"></a>
<h2><a href="press.html">FreeBSD in the Press</a></h2>
<h2><a href="news/press.html">FreeBSD in the Press</a></h2>
<p>The press about FreeBSD.</p>
<a name="y2kbug"></a>

View file

@ -1,8 +1,7 @@
# $Id: Makefile,v 1.1 1998-08-03 09:34:03 wosch Exp $
# $Id: Makefile,v 1.2 1998-08-03 15:37:48 wosch Exp $
DOCS = gallery.sgml
DOCS+= cgallery.sgml
DOCS+= gallery.sgml
DOCS+= npgallery.sgml
DOCS+= pgallery.sgml

View file

@ -1,10 +1,10 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1998-08-03 09:34:04 $">
<!ENTITY date "$Date: 1998-08-03 15:37:48 $">
<!ENTITY title "The FreeBSD Gallery">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- $Id: gallery.sgml,v 1.37 1998-08-03 09:34:04 wosch Exp $ -->
<!-- $Id: gallery.sgml,v 1.38 1998-08-03 15:37:48 wosch Exp $ -->
<html>
&header;
@ -26,6 +26,6 @@
<IMG SRC="gifs/banner3.gif" ALT="" WIDTH=250 HEIGHT=35 BORDER=0><P>
<IMG SRC="gifs/banner4.gif" ALT="" WIDTH=225 HEIGHT=46 BORDER=0><P>
</CENTER>
<P>The "Powered by FreeBSD" logos above may be <A HREF="gifs/powerlogo.gif">downloaded</A> and displayed on personal or commercial home pages served by FreeBSD machines. Use of this logo or the likeliness of the <A HREF="daemon.html">BSD Daemons</A> for profitable gain requires the consent of <A HREF="mailto:taob@risc.org">Brian Tao</A> (creator of the "power" logo) and <A HREF="mailto:mckusick@mckusick.com">Marshall Kirk McKusick</A> (trademark holder for the BSD Daemon image).<P>&footer;</body></html>
<P>The "Powered by FreeBSD" logos above may be <A HREF="gifs/powerlogo.gif">downloaded</A> and displayed on personal or commercial home pages served by FreeBSD machines. Use of this logo or the likeliness of the <A HREF="../copyright/daemon.html">BSD Daemons</A> for profitable gain requires the consent of <A HREF="mailto:taob@risc.org">Brian Tao</A> (creator of the "power" logo) and <A HREF="mailto:mckusick@mckusick.com">Marshall Kirk McKusick</A> (trademark holder for the BSD Daemon image).<P>&footer;</body></html>

View file

@ -1,5 +1,5 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- $Id: index.html,v 1.51 1998-08-03 13:28:52 wosch Exp $ -->
<!-- $Id: index.html,v 1.52 1998-08-03 15:37:43 wosch Exp $ -->
<HTML>
<HEAD><TITLE>FreeBSD Inc.</TITLE>
<META NAME="DESCRIPTION" CONTENT="FreeBSD Inc.">
@ -163,9 +163,9 @@ function change(Name,Image,No) {
onMouseover="change('supportA','support',1)"
onMouseout="change('supportA','support',0)"><IMG NAME="supportA" BORDER=0 alt=" Support " WIDTH= "64" HEIGHT= "23" SRC="./gifs/support0.gif"></A><A HREF="./docs.html"
onMouseover="change('docsA','docs',1)"
onMouseout="change('docsA','docs',0)"><IMG NAME="docsA" BORDER=0 alt=" Documentation " WIDTH= "117" HEIGHT= "23" SRC="./gifs/docs0.gif"></A><A HREF="./comm/commercial.html"
onMouseout="change('docsA','docs',0)"><IMG NAME="docsA" BORDER=0 alt=" Documentation " WIDTH= "117" HEIGHT= "23" SRC="./gifs/docs0.gif"></A><A HREF="commercial/commercial.html"
onMouseover="change('vendorsA','vendors',1)"
onMouseout="change('vendorsA','vendors',0)"><IMG NAME="vendorsA" BORDER=0 alt=" Vendors " WIDTH= "66" HEIGHT= "23" SRC="./gifs/vendors0.gif"></A><A HREF="./search.html"
onMouseout="change('vendorsA','vendors',0)"><IMG NAME="vendorsA" BORDER=0 alt=" Vendors " WIDTH= "66" HEIGHT= "23" SRC="./gifs/vendors0.gif"></A><A HREF="search/search.html"
onMouseover="change('searchA','search',1)"
onMouseout="change('searchA','search',0)"><IMG NAME="searchA" BORDER=0 alt=" Search " WIDTH= "58" HEIGHT= "23" SRC="./gifs/search0.gif"></A><A HREF="search/index-site.html"
onMouseover="change('indexA','index',1)"
@ -263,7 +263,7 @@ information is available</A>.
register to receive the <A HREF="./register.html">FreeBSD
Newsletter</A>, visit our gallery of FreeBSD related <A
HREF="./publish.html">publications</A> or
<a href="press.html">FreeBSD in the press</a>,
<a href="news/press.html">FreeBSD in the press</a>,
and browse through this website!.
</FONT>
</p>
@ -304,7 +304,7 @@ and browse through this website!.
</TD>
<TD>
<A HREF="daemon.html"><IMG SRC="gifs/powerlogo.gif" WIDTH="171" HEIGHT="64" BORDER="0" ALT=" Powered by FreeBSD"></A>
<A HREF="copyright/daemon.html"><IMG SRC="gifs/powerlogo.gif" WIDTH="171" HEIGHT="64" BORDER="0" ALT=" Powered by FreeBSD"></A>
</TD>
</TR>
</TBODY>
@ -318,7 +318,7 @@ and browse through this website!.
Page design <A HREF="http://www.asis.com/~meganm/">Megan McCormack</A><BR>
<A HREF="./mailto.html">questions@FreeBSD.ORG</A><BR>
<A HREF="internal/about.html"> About this Web Site</A><BR>
$Date: 1998-08-03 13:28:52 $
$Date: 1998-08-03 15:37:43 $
</FONT></TD>
<TD ALIGN=RIGHT VALIGN=TOP><FONT SIZE="-1">

View file

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1998-05-27 09:23:44 $">
<!ENTITY date "$Date: 1998-08-03 15:37:43 $">
<!ENTITY title "About FreeBSD's Internetworking">
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: internet.sgml,v 1.11 1998-05-27 09:23:44 wosch Exp $ -->
<!-- $Id: internet.sgml,v 1.12 1998-08-03 15:37:43 wosch Exp $ -->
<HTML>
&header;
@ -78,7 +78,7 @@ of the Internet, serving scads of daily net surfers with information about
the World Wide Web. Yahoo, as well the companies that advertise on Yahoo,
rely on FreeBSD to run reliable and responsive web servers.</LI>
<LI>If that is not enough, visit our <A HREF="&base/gallery.html">Gallery</A>
<LI>If that is not enough, visit our <A HREF="&base/gallery/gallery.html">Gallery</A>
of satisfied FreeBSD users.</LI>
</ul>

View file

@ -1,17 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1998-08-03 13:28:58 $">
<!ENTITY date "$Date: 1998-08-03 15:37:48 $">
<!ENTITY title "FreeBSD in the Press">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- $Id: press.sgml,v 1.13 1998-08-03 13:28:58 wosch Exp $ -->
<!-- $Id: press.sgml,v 1.14 1998-08-03 15:37:48 wosch Exp $ -->
<html>
&header;
<!-- some blub -->
If you miss an entry please send the URL to
<a href="mailto.html">www@FreeBSD.ORG</a>
<a href="../mailto.html">www@FreeBSD.ORG</a>
<p>

View file

@ -4,7 +4,7 @@
# With the format `<titel>|<url>'.
# Empty lines or comments are ignored.
#
# $Id: web.atoz,v 1.36 1998-08-03 13:28:59 wosch Exp $
# $Id: web.atoz,v 1.37 1998-08-03 15:37:48 wosch Exp $
# about.sgml
Usage statistics for this server|../internal/about.html
@ -149,17 +149,17 @@ Infoworld|../features.html
Glass, Brett|../features.html
# gallery.sgml
Gallery, FreeBSD|../gallery.html
Powered by FreeBSD logo|../gallery.html
logo, Powered by FreeBSD|../gallery.html
Tao, Brian|../gallery.html
McKusick, Marshall Kirk|../gallery.html
commercial organizations, gallery|../gallery.html#commercial
gallery, commercial organizations|../gallery.html#commercial
non-profit organizations, gallery|../gallery.html#non-profit
gallery, non-profit organizations|../gallery.html#non-profit
gallery, personal sites|../gallery.html#personal
personal sites, gallery|../gallery.html#personal
Gallery, FreeBSD|../gallery/gallery.html
Powered by FreeBSD logo|../gallery/gallery.html
logo, Powered by FreeBSD|../gallery/gallery.html
Tao, Brian|../gallery/gallery.html
McKusick, Marshall Kirk|../gallery/gallery.html
commercial organizations, gallery|../gallery/gallery.html#commercial
gallery, commercial organizations|../gallery/gallery.html#commercial
non-profit organizations, gallery|../gallery/gallery.html#non-profit
gallery, non-profit organizations|../gallery/gallery.html#non-profit
gallery, personal sites|../gallery/gallery.html#personal
personal sites, gallery|../gallery/gallery.html#personal
# internet.sgml
Internet|../internet.html
@ -203,7 +203,7 @@ Questions about FreeBSD|../mailto.html
# mirror.sgml
Mirroring the FreeBSD Web Pages|../internal/mirror.html
rsync|../mirror.html
rsync|../internal/mirror.html
# mozilla.sgml
Mozilla Group, FreeBSD|../projects/mozilla.html
@ -279,7 +279,7 @@ Newsgroups, Search|search.html
Search, Usenet News|search.html
# searchhints.sgml
Searching Hints|../searchhints.html
Searching Hints|searchhints.html
# security/security.sgml
Security Guide|../security/security.html

View file

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1998-07-17 10:06:55 $">
<!ENTITY date "$Date: 1998-08-03 15:37:43 $">
<!ENTITY title "Support">
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: support.sgml,v 1.89 1998-07-17 10:06:55 wosch Exp $ -->
<!-- $Id: support.sgml,v 1.90 1998-08-03 15:37:43 wosch Exp $ -->
<html>
&header;
@ -89,7 +89,7 @@ http://www.tw.freebsd.org/ Local language
-->
<li><p>For information on recent FreeBSD progress and releases,
see the <a href="newsflash.html">Newsflash</a> page.</p></li>
see the <a href="news/newsflash.html">Newsflash</a> page.</p></li>
<li><p>To register to receive the FreeBSD Newsletter and/or subscribe to
the announcement mailing list, please see the

View file

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1998-07-17 10:06:55 $">
<!ENTITY date "$Date: 1998-08-03 15:37:43 $">
<!ENTITY title "Support">
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: usergroups.sgml,v 1.89 1998-07-17 10:06:55 wosch Exp $ -->
<!-- $Id: usergroups.sgml,v 1.90 1998-08-03 15:37:43 wosch Exp $ -->
<html>
&header;
@ -89,7 +89,7 @@ http://www.tw.freebsd.org/ Local language
-->
<li><p>For information on recent FreeBSD progress and releases,
see the <a href="newsflash.html">Newsflash</a> page.</p></li>
see the <a href="news/newsflash.html">Newsflash</a> page.</p></li>
<li><p>To register to receive the FreeBSD Newsletter and/or subscribe to
the announcement mailing list, please see the

View file

@ -1,9 +1,9 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY date "$Date: 1998-07-25 19:40:18 $">
<!ENTITY date "$Date: 1998-08-03 15:37:43 $">
<!ENTITY title "Getting FreeBSD">
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
]>
<!-- $Id: where.sgml,v 1.25 1998-07-25 19:40:18 jkh Exp $ -->
<!-- $Id: where.sgml,v 1.26 1998-08-03 15:37:43 wosch Exp $ -->
<html>
&header;
@ -119,7 +119,7 @@ CDROM</a></li>
href="ftp://ftp.freebsd.org/pub/FreeBSD/2.1.7.1-RELEASE/commerce">Commercial
products for FreeBSD 2.1.5 - 2.1.7</a></li>
<li><a href="commercial.html">Commercial vendors supporting
<li><a href="commercial/commercial.html">Commercial vendors supporting
FreeBSD</a></li>
</ul>