Add A-Z Index database.
Change Quick Index to A-Z Index. Generate A-Z Index SGML output on-the-fly (atoz.sgml).
This commit is contained in:
parent
0f6a0bc38f
commit
29d225a250
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=1482
10 changed files with 730 additions and 218 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.15 1997-04-24 23:03:54 jmg Exp $
|
||||
# $Id: Makefile,v 1.16 1997-05-04 19:59:36 wosch Exp $
|
||||
|
||||
.if exists(Makefile.conf)
|
||||
.include "Makefile.conf"
|
||||
|
@ -17,6 +17,8 @@ DOCS+= internet.sgml license.sgml mailto.sgml mirror.sgml newsflash.sgml
|
|||
DOCS+= npgallery.sgml pgallery.sgml search.sgml searchhints.sgml send-pr.sgml
|
||||
DOCS+= security.sgml support.sgml welcome.sgml where.sgml resignation.sgml
|
||||
|
||||
CLEANFILES+=atoz.sgml
|
||||
|
||||
# These will be directly installed.
|
||||
|
||||
DATA= COPYING COPYING.LIB README.mirror robots.txt
|
||||
|
@ -38,6 +40,10 @@ stats-img.html: ${ACCESS_LOG_DIR}/${ACCESS_LOG_FILE}
|
|||
cat ${ACCESS_LOG_FILE}) | \
|
||||
${ANALOG} +i0 +R500 -o > ${.TARGET}
|
||||
|
||||
index-site.sgml: atoz.sgml
|
||||
atoz.sgml: web.atoz
|
||||
sort -fu web.atoz | perl atoz.pl > ${.TARGET}
|
||||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi commercial gifs ports releases tutorials ja_JP.EUC
|
||||
|
|
43
data/atoz.pl
Normal file
43
data/atoz.pl
Normal file
|
@ -0,0 +1,43 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright (c) May 1997 Wolfram Schneider <wosch@FreeBSD.org>, Berlin.
|
||||
#
|
||||
# atoz - create automatically an `A-Z Index' from a pre-sorted database
|
||||
# (sort -uf) with the format `<titel>|<url>'
|
||||
#
|
||||
# $Id: atoz.pl,v 1.1 1997-05-04 19:59:36 wosch Exp $
|
||||
|
||||
if ($ARGV[0] eq '-u' && $#ARGV > 0) {
|
||||
$urlprefix = $ARGV[1]; shift; shift; # prefix for relative URLs
|
||||
} elsif ($ARGV[0] =~ /^-/) { die "usage: $0 [-u urlprefix] files ...\n" }
|
||||
|
||||
$top = 'ruebezahl'; # HTML tag name for `go to top of page'
|
||||
$hr = "<HR NOSHADE>\n\n"; $h2 = 'H2';
|
||||
sub eol { "</UL>\n\n" }
|
||||
|
||||
$firstold = ''; @az = (); @list = ();
|
||||
while(<>) {
|
||||
chop; next if /^\s*#/ || /^\s*$/; # ignore comments
|
||||
$first = substr($_, 0, 1); $first =~ y/a-z/A-Z/;
|
||||
|
||||
if ($firstold ne $first) { # a new alphabet character
|
||||
push(@az, $first);
|
||||
push(@list, &eol) if $#az > 0; # close previous list
|
||||
push(@list,
|
||||
qq{<$h2><A NAME="$first" HREF="#$top">$first</a></$h2>\n<UL>\n});
|
||||
}
|
||||
$firstold = $first;
|
||||
($title, $url) = split('\|', $_); $url =~ s/^\s+//; $url =~ s/\s+$//;
|
||||
$url = $urlprefix . $url unless
|
||||
($url =~ m%^/% || $url =~ /^(news|mailto|ftp|http|telnet):/oi);
|
||||
push(@list, qq{<LI><A HREF="$url">$title</A>\n});
|
||||
}
|
||||
push(@list, &eol); # close last list
|
||||
|
||||
# Output header, list, and copyright
|
||||
print qq{<A NAME="$top"></A>\n\n};
|
||||
foreach (@az) {
|
||||
print qq{<A HREF="#$_">$_</A>\n};
|
||||
}
|
||||
print $hr; print @list; # print $hr;
|
||||
print qq{<!--\nCreated by <A HREF="http://www.apfel.de/~wosch/">atoz</A>\n};
|
||||
print qq{at } . `date -u +"%Y/%m/%d %T"` . "UTC\n-->\n";
|
|
@ -1,112 +1,12 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY date "$Date: 1997-03-05 14:28:19 $">
|
||||
<!ENTITY title "Index of http://www.FreeBSD.org">
|
||||
<!ENTITY date "$Date: 1997-05-04 19:59:37 $">
|
||||
<!ENTITY title "A-Z Index of http://www.FreeBSD.org">
|
||||
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
|
||||
<!ENTITY atoz SYSTEM "atoz.sgml">
|
||||
]>
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<ul>
|
||||
<li><a href="welcome.html">About FreeBSD</a>
|
||||
<ul>
|
||||
<li><a href="internet.html">Internet server</a>
|
||||
<li><a href="features.html">Advanced features</a>
|
||||
<li><a href="applications.html">Applications</a>
|
||||
<li><a href="install.html">Install</a>
|
||||
<li><a href="availability.html">Availability</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="where.html">Obtaining and Installing FreeBSD</a>
|
||||
<ul>
|
||||
<li><a href="where.html#releases">Release Information</a>
|
||||
<li><a href="where.html#install">Installing FreeBSD</a>
|
||||
<li><a href="where.html#distribution">FreeBSD Distribution Sites</a>
|
||||
<li><a href="where.html#apps">Applications and Utility Software</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="releases/index.html">Release Information</a>
|
||||
<ul>
|
||||
<li><a href="newsflash.html">Newsflash!</a>
|
||||
<li><a href="releases/index.html#current">Current Release</a>
|
||||
<li><a href="releases/index.html#past">Past Releases</a>
|
||||
<li><a href="releases/index.html#future">Future Releases</a>
|
||||
<ul>
|
||||
<li><a href="handbook/stable.html">FreeBSD-stable</a>
|
||||
<li><a href="handbook/current.html">FreeBSD-current</a>
|
||||
<li><a href="releases/snapshots.html">snapshot</a>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="ports/index.html">Application Software, FreeBSD Ports</a>
|
||||
|
||||
<p>
|
||||
<li><a href="docs.html">Documentation</a>
|
||||
<ul>
|
||||
<li><a href="docs.html#handbook">The FreeBSD Handbook</a>
|
||||
<li><a href="docs.html#faq">Frequently Asked Questions (FAQ)</a>
|
||||
<li><a href="docs.html#tutorial">Tutorials</a>
|
||||
<li><a href="docs.html#books">Books</a>
|
||||
<li><a href="docs.html#man">Manual Pages</a>
|
||||
<li><a href="docs.html#source">The Source Code</a>
|
||||
<li><a href="docs.html#doc">The FreeBSD Documentation Project</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="support.html">User and Developer Resources</a>
|
||||
<ul>
|
||||
<li><a href="support.html#mailing-list">Mailing lists</a>
|
||||
<li><a href="support.html#newsgroups">Newsgroups</a>
|
||||
<li><a href="support.html#web">WEB Resources</a>
|
||||
<li><a href="support.html#pr">Problem reports, query-pr, Bugs</a>
|
||||
<li><a href="support.html#cvs">CVS Repository</a>
|
||||
<li><a href="support.html#user">User Groups</a>
|
||||
<li><a href="support.html#general">General UNIX Information</a>
|
||||
<li><a href="support.html#xwin">The X Window System</a>
|
||||
<li><a href="support.html#hardware">Hardware</a>
|
||||
<li><a href="support.html#multimedia">Multimedia</a>
|
||||
<li><a href="support.html#related">Related Operating System Projects</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="commercial.html">Commercial Vendors</a>
|
||||
<ul>
|
||||
<li><a href="commercial.html#soft">Software</a>
|
||||
<li><a href="commercial.html#hard">Hardware and complete systems</a>
|
||||
<li><a href="commercial.html#consult">Consulting services</a>
|
||||
<li><a href="commercial.html#misc">Documentation and miscellaneous accessories</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="gallery.html">The FreeBSD Gallery</a>
|
||||
<ul>
|
||||
<li><a href="cgallery.html">Commercial organizations</a>
|
||||
<li><a href="npgallery.html">Non-profit organizations</a>
|
||||
<li><a href="pgallery.html">Personal sites</a>
|
||||
<li><a href="http://www.freebsd.org/~jhs/freebsd/people.html">FreeBSD People</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="about.html">About the FreeBSD WWW Server</a>
|
||||
<ul>
|
||||
<li><a href="mirror.html">Mirroring the FreeBSD Web Pages</a>
|
||||
<li><a href="about.html">Usage statistics for this server</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="search.html">Search</a>
|
||||
<ul>
|
||||
<li><a href="searchhints.html">Searching Hints</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="license.html">The FreeBSD Copyright</a>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
&atoz;
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY date "$Date: 1997-05-04 15:03:46 $">
|
||||
<!ENTITY date "$Date: 1997-05-04 19:59:37 $">
|
||||
<!ENTITY title "FreeBSD Inc.">
|
||||
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
|
||||
]>
|
||||
<!-- $Id: index.sgml,v 1.33 1997-05-04 15:03:46 wosch Exp $ -->
|
||||
<!-- $Id: index.sgml,v 1.34 1997-05-04 19:59:37 wosch Exp $ -->
|
||||
|
||||
<html>
|
||||
<head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<a href="search.html">Search...</a></h2>
|
||||
<img src="gifs/littlelogo.gif" alt="" align="left" width="27" height="27">
|
||||
<h4 align="left">
|
||||
<a href="index-site.html">Quick Index</a></h4>
|
||||
<a href="index-site.html">A-Z Index</a></h4>
|
||||
</td>
|
||||
|
||||
<td align=center>
|
||||
|
@ -103,7 +103,7 @@ Select a server near you:<br>
|
|||
<address>
|
||||
Copyright © 1995, 1996, 1997 FreeBSD Inc. All rights reserved.<br>
|
||||
<a href="mailto.html">www@FreeBSD.ORG</a><br>
|
||||
$Date: 1997-05-04 15:03:46 $
|
||||
$Date: 1997-05-04 19:59:37 $
|
||||
</address>
|
||||
<a href="&base/about.html">About the FreeBSD WWW Server...</a>
|
||||
</td>
|
||||
|
|
307
data/web.atoz
Normal file
307
data/web.atoz
Normal file
|
@ -0,0 +1,307 @@
|
|||
#
|
||||
# `A-Z Index' for http://www.FreeBSD.org
|
||||
#
|
||||
# With the format `<titel>|<url>'.
|
||||
# Empty lines or comments are ignored.
|
||||
#
|
||||
# $Id: web.atoz,v 1.1 1997-05-04 19:59:38 wosch Exp $
|
||||
|
||||
# about.sgml
|
||||
Usage statistics for this server|about.html
|
||||
Statistics for this server|about.html
|
||||
WWW statistics for this server|about.html
|
||||
Fieber, John|about.html|about.html
|
||||
Apache http server|about.html
|
||||
http server|about.html
|
||||
WWW server www.FreeBSD.ORG|about.html
|
||||
hub.cdrom.com|about.html
|
||||
Walnut Creek CDROM, network connection|about.html
|
||||
Network connection, Walnut Creek CDROM|about.html
|
||||
CGI scripts|about.html
|
||||
Mailing list archive|about.html
|
||||
freewais-sf|about.html
|
||||
|
||||
# applications.sgml
|
||||
Hittinger, Mark|applications.html
|
||||
WinNet Communications|applications.html
|
||||
Netscape Navigator|applications.html
|
||||
Java, Netscape Navigator|applications.html
|
||||
Internet services|applications.html
|
||||
X Windows workstation|applications.html
|
||||
Networking|applications.html
|
||||
Software development|applications.html
|
||||
Net surfing|applications.html
|
||||
Education and research|applications.html
|
||||
|
||||
# auditors.sgml
|
||||
Security|auditors.html
|
||||
Auditors|auditors.html
|
||||
|
||||
# availability.sgml
|
||||
Availability of FreeBSD|availability.html
|
||||
Hardware requirements|availability.html
|
||||
Where to get it|availability.html
|
||||
About the FreeBSD Project|availability.html
|
||||
Walnut Creek CD-ROM, address|availability.html
|
||||
Kelly, Sean|availability.html
|
||||
|
||||
# branch.sgml
|
||||
Branch|branch.html
|
||||
2.2-RELEASE, branch|branch.html
|
||||
2.2-STABLE, branch|branch.html
|
||||
2.2.x-RELEASE, branch|branch.html
|
||||
2.1-STABLE, branch|branch.html
|
||||
3.0-CURRENT, branch|branch.html
|
||||
2.1.7-RELEASE, branch|branch.html
|
||||
Walnut Creek CDROM, subscription customer|branch.html
|
||||
subscription customer, Walnut Creek CDROM|branch.html
|
||||
|
||||
# cgallery.sgml
|
||||
Gallery, Commercial|cgallery.sgml
|
||||
|
||||
# commercial.sgml
|
||||
Commercial Vendors|commercial.html
|
||||
Vendors, commercial|commercial.html
|
||||
Commercial Vendors, Consulting|commercial/consulting.html
|
||||
Consulting, Commercial Vendors|commercial/consulting.html
|
||||
Commercial Vendors, Hardware|commercial/hardware.html
|
||||
Hardware, Commercial Vendors|commercial/hardware.html
|
||||
Commercial Vendors, Software|commercial/software.html
|
||||
Software, Commercial Vendors|commercial/software.html
|
||||
Commercial Vendors, Miscellaneous|commercial/misc.html
|
||||
Miscellaneous, Commercial Vendors|commercial/misc.html
|
||||
|
||||
# daemon.sgml
|
||||
BSD Daemon|daemon.html
|
||||
Daemon, BSD|daemon.html
|
||||
Nemeth, Evi|daemon.html
|
||||
Lassiter, John|daemon.html
|
||||
Hosokawa, Tatsumi|daemon.html
|
||||
McKusick, Marshall Kirk|daemon.html
|
||||
|
||||
# docproj.sgml
|
||||
Documentation Project|docproj.html
|
||||
Project, Documentation|docproj.html
|
||||
Goals, documentation|docproj.html
|
||||
FAQ, Documentation Project|docproj.html
|
||||
Handbook, Documentation Project|docproj.html
|
||||
Contributing, Documentation Project|docproj.html
|
||||
Submitting corrections, Documentation Project|docproj.html
|
||||
Submitting new material, Documentation Project|docproj.html
|
||||
SGML, Documentation Project|docproj.html
|
||||
Linuxdoc, Documentation Project|docproj.html
|
||||
Docbook, Documentation Project|docproj.html
|
||||
Guidelines, Documentation Project|docproj.html
|
||||
|
||||
# docs.sgml
|
||||
Documentation|docs.html
|
||||
Handbook|docs.html
|
||||
Japanese Handbook|docs.html#handbook
|
||||
Handbook, Japanese|docs.html#handbook
|
||||
Frequently Asked Questions (FAQ)|docs.html#faq
|
||||
FAQ|docs.html#faq
|
||||
Tutorials|docs.html#tutorial
|
||||
Books|docs.html#books
|
||||
Manual Pages|docs.html#man
|
||||
4.4BSD Documents|docs.html#44doc
|
||||
BSD Documents|docs.html#44doc
|
||||
Documents, 4.4BSD|docs.html#44doc
|
||||
Schneider, Wolfram|docs.html#man
|
||||
Info Documents|docs.html#info
|
||||
GNU Info Documents|docs.html#info
|
||||
Source Code|docs.html#source
|
||||
Toomey, Warren|docs.html#source
|
||||
Eilts, Hinrich|docs.html#man
|
||||
|
||||
# features.sgml
|
||||
Features|features.html
|
||||
4.4BSD, A complete operating system|features.html
|
||||
Berkeley, University of California|features.html
|
||||
UCB|features.html
|
||||
Computer Systems Research Group|features.html
|
||||
CSRG|features.html
|
||||
Bounce buffering|features.html
|
||||
Merged virtual memory and filesystem buffer cache|features.html
|
||||
virtual memory|features.html
|
||||
buffer cache|features.html
|
||||
Compatibility, SCO|features.html
|
||||
Compatibility, Linux|features.html
|
||||
Compatibility, NetBSD|features.html
|
||||
Compatibility, OpenBSD|features.html
|
||||
Compatibility, BSDI|features.html
|
||||
SCO, Compatibility|features.html
|
||||
Linux, Compatibility|features.html
|
||||
NetBSD, Compatibility|features.html
|
||||
OpenBSD, Compatibility|features.html
|
||||
BSDI, Compatibility|features.html
|
||||
FrontPage Server|features.html
|
||||
WordPerfect|features.html
|
||||
Dynamically loadable kernel modules|features.html
|
||||
LKM|features.html
|
||||
loadable kernel modules|features.html
|
||||
Shared libraries|features.html
|
||||
Libraries, shared|features.html
|
||||
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
|
||||
|
||||
# internet.sgml
|
||||
Internet|internet.html
|
||||
TCP/IP protocols|internet.html
|
||||
NFS|internet.html
|
||||
NIS|internet.html
|
||||
SNMP|internet.html
|
||||
FTP|internet.html
|
||||
DNS/BIND|internet.html
|
||||
PPP|internet.html
|
||||
SLIP|internet.html
|
||||
MBONE|internet.html
|
||||
SAMBA|internet.html
|
||||
PCNFS|internet.html
|
||||
Appletalk|internet.html
|
||||
Novell|internet.html
|
||||
TCP extensions|internet.html
|
||||
RFC-1323|internet.html
|
||||
RFC-1644|internet.html
|
||||
networking|internet.html
|
||||
FTP Server ftp.FreeBSD.ORG, configuration|internet.html
|
||||
Yahoo|internet.html
|
||||
High performance and security|internet.html
|
||||
Encryption software|internet.html
|
||||
secure shells|internet.html
|
||||
Kerberos|internet.html
|
||||
end-to-end encryption|internet.html
|
||||
secure RPC facilities|internet.html
|
||||
O'Brien, Michael|internet.html
|
||||
SunExpert|internet.html
|
||||
|
||||
# license.sgml
|
||||
Copyright|license.html
|
||||
License|license.html
|
||||
|
||||
# mailto.sgml
|
||||
Contact us|mailto.html
|
||||
Questions about this WWW server|mailto.html
|
||||
Questions about the contents of this WWW server|mailto.html
|
||||
Questions about FreeBSD|mailto.html
|
||||
|
||||
# mirror.sgml
|
||||
Mirroring the FreeBSD Web Pages|mirror.html
|
||||
rsync|mirror.html
|
||||
|
||||
# newsflash.sgml
|
||||
News flash|newsflash.html
|
||||
Press releases, News|newsflash.html
|
||||
|
||||
# npgallery.sgml
|
||||
Non-profit organizations, Gallery|npgallery.html
|
||||
|
||||
# npgallery.sgml
|
||||
Personal sites, Gallery|pgallery.html
|
||||
|
||||
# ports/index.sgml
|
||||
Ports Collection|ports/index.html
|
||||
|
||||
# releases/index.sgml
|
||||
Recent announcements about FreeBSD Releases|releases/index.html
|
||||
Current Releases|releases/index.html#current
|
||||
Future Releases|releases/index.html#future
|
||||
Past Releases|releases/index.html#past
|
||||
Releases, current|releases/index.html#current
|
||||
Releases, future|releases/index.html#future
|
||||
Releases, past|releases/index.html#past
|
||||
1.0 FreeBSD|releases/index.html#past
|
||||
1.1 FreeBSD|releases/index.html#past
|
||||
1.1.5 FreeBSD|releases/index.html#past
|
||||
1.1.5.1 FreeBSD|releases/index.html#past
|
||||
2.0 FreeBSD|releases/index.html#past
|
||||
2.0.5 FreeBSD|releases/index.html#past
|
||||
2.1 FreeBSD|releases/index.html#past
|
||||
2.1.5 FreeBSD|releases/index.html#past
|
||||
2.1.6 FreeBSD|releases/index.html#past
|
||||
2.1.7 FreeBSD|releases/index.html#current
|
||||
2.2 FreeBSD|releases/index.html#current
|
||||
|
||||
# resignation.sgml
|
||||
Jordan's Resignation Letter|resignation.html
|
||||
Resignation Letter, Jordan|resignation.html
|
||||
President of the FreeBSD Project|resignation.html
|
||||
|
||||
# search.sgml
|
||||
Search Services|search.html
|
||||
Web pages, search|search.html#web
|
||||
Search, Web pages|search.html#web
|
||||
Mailing list archives, search|search.html#mailinglists
|
||||
Search, Mailing list archives|search.html#mailinglists
|
||||
Ports Changes, Search|search.html
|
||||
Search, Ports Changes|search.html
|
||||
|
||||
# searchhints.sgml
|
||||
Searching Hints|searchhints.html
|
||||
|
||||
# security.sgml
|
||||
Security Guide|security.html
|
||||
|
||||
# send-pr.sgml
|
||||
Submit a FreeBSD problem report|send-pr.html
|
||||
Bug report, submit|send-pr.html
|
||||
|
||||
# support.sgml
|
||||
Support|support.html
|
||||
Mailing lists|support.html#mailing-list
|
||||
non-English mailing lists|support.html#mailing-list
|
||||
Mailing lists, German|support.html#mailing-list
|
||||
Mailing lists, Portuguese|support.html#mailing-list
|
||||
Mailing lists, Japanese|support.html#mailing-list
|
||||
Mailing lists, Japanese|support.html#mailing-list
|
||||
Mailing lists, Hungarian|support.html#mailing-list
|
||||
German mailing lists|support.html#mailing-list
|
||||
Portuguese mailing lists|support.html#mailing-list
|
||||
Japanese mailing lists|support.html#mailing-list
|
||||
Hungarian mailing lists|support.html#mailing-list
|
||||
German web pages|support.html#mailing-list
|
||||
Portuguese web pages|support.html#mailing-list
|
||||
Japanese web pages|support.html#mailing-list
|
||||
Hungarian web pages|support.html#mailing-list
|
||||
Newsgroups|support.html#newsgroups
|
||||
Web Resources, mirrors|support.html#web
|
||||
GNATS Problem Report Database|support.html#pr
|
||||
Bug reports, view|support.html#pr
|
||||
CVS Repository|support.html#cvs
|
||||
User Groups|support.html#user
|
||||
General UNIX Information|support.html#general
|
||||
X Window System|support.html#xwin
|
||||
Hardware, support|support.html#hardware
|
||||
Multimedia|support.html#multimedia
|
||||
Home Automation|support.html#homeauto
|
||||
Automation, Home|support.html#homeauto
|
||||
Symmetric MultiProcessing (SMP)|support.html#SMP
|
||||
SMP|support.html#SMP
|
||||
Related Operating System Projects|support.html#related
|
||||
Operating System, related projects|support.html#related
|
||||
|
||||
# welcome.sgml
|
||||
What is FreeBSD|welcome.html
|
||||
BSD UNIX|welcome.html
|
||||
FreeBSD is free|welcome.html
|
||||
|
||||
# where.sgml
|
||||
Getting FreeBSD|where.html
|
||||
Installing FreeBSD|where.html#install
|
||||
Distribution Sites|where.html#distribution
|
||||
Release Information|where.html#releases
|
||||
Applications and Utility Software|where.html#apps
|
||||
Commercial software|where.html
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
# $Id: Makefile,v 1.15 1997-04-24 23:03:54 jmg Exp $
|
||||
# $Id: Makefile,v 1.16 1997-05-04 19:59:36 wosch Exp $
|
||||
|
||||
.if exists(Makefile.conf)
|
||||
.include "Makefile.conf"
|
||||
|
@ -17,6 +17,8 @@ DOCS+= internet.sgml license.sgml mailto.sgml mirror.sgml newsflash.sgml
|
|||
DOCS+= npgallery.sgml pgallery.sgml search.sgml searchhints.sgml send-pr.sgml
|
||||
DOCS+= security.sgml support.sgml welcome.sgml where.sgml resignation.sgml
|
||||
|
||||
CLEANFILES+=atoz.sgml
|
||||
|
||||
# These will be directly installed.
|
||||
|
||||
DATA= COPYING COPYING.LIB README.mirror robots.txt
|
||||
|
@ -38,6 +40,10 @@ stats-img.html: ${ACCESS_LOG_DIR}/${ACCESS_LOG_FILE}
|
|||
cat ${ACCESS_LOG_FILE}) | \
|
||||
${ANALOG} +i0 +R500 -o > ${.TARGET}
|
||||
|
||||
index-site.sgml: atoz.sgml
|
||||
atoz.sgml: web.atoz
|
||||
sort -fu web.atoz | perl atoz.pl > ${.TARGET}
|
||||
|
||||
# Subdirectories
|
||||
|
||||
SUBDIR= cgi commercial gifs ports releases tutorials ja_JP.EUC
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY date "$Date: 1997-05-04 15:03:46 $">
|
||||
<!ENTITY date "$Date: 1997-05-04 19:59:37 $">
|
||||
<!ENTITY title "FreeBSD Inc.">
|
||||
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
|
||||
]>
|
||||
<!-- $Id: index.sgml,v 1.33 1997-05-04 15:03:46 wosch Exp $ -->
|
||||
<!-- $Id: index.sgml,v 1.34 1997-05-04 19:59:37 wosch Exp $ -->
|
||||
|
||||
<html>
|
||||
<head>
|
||||
|
@ -41,7 +41,7 @@
|
|||
<a href="search.html">Search...</a></h2>
|
||||
<img src="gifs/littlelogo.gif" alt="" align="left" width="27" height="27">
|
||||
<h4 align="left">
|
||||
<a href="index-site.html">Quick Index</a></h4>
|
||||
<a href="index-site.html">A-Z Index</a></h4>
|
||||
</td>
|
||||
|
||||
<td align=center>
|
||||
|
@ -103,7 +103,7 @@ Select a server near you:<br>
|
|||
<address>
|
||||
Copyright © 1995, 1996, 1997 FreeBSD Inc. All rights reserved.<br>
|
||||
<a href="mailto.html">www@FreeBSD.ORG</a><br>
|
||||
$Date: 1997-05-04 15:03:46 $
|
||||
$Date: 1997-05-04 19:59:37 $
|
||||
</address>
|
||||
<a href="&base/about.html">About the FreeBSD WWW Server...</a>
|
||||
</td>
|
||||
|
|
43
en/search/atoz.pl
Normal file
43
en/search/atoz.pl
Normal file
|
@ -0,0 +1,43 @@
|
|||
#!/usr/bin/perl
|
||||
# Copyright (c) May 1997 Wolfram Schneider <wosch@FreeBSD.org>, Berlin.
|
||||
#
|
||||
# atoz - create automatically an `A-Z Index' from a pre-sorted database
|
||||
# (sort -uf) with the format `<titel>|<url>'
|
||||
#
|
||||
# $Id: atoz.pl,v 1.1 1997-05-04 19:59:36 wosch Exp $
|
||||
|
||||
if ($ARGV[0] eq '-u' && $#ARGV > 0) {
|
||||
$urlprefix = $ARGV[1]; shift; shift; # prefix for relative URLs
|
||||
} elsif ($ARGV[0] =~ /^-/) { die "usage: $0 [-u urlprefix] files ...\n" }
|
||||
|
||||
$top = 'ruebezahl'; # HTML tag name for `go to top of page'
|
||||
$hr = "<HR NOSHADE>\n\n"; $h2 = 'H2';
|
||||
sub eol { "</UL>\n\n" }
|
||||
|
||||
$firstold = ''; @az = (); @list = ();
|
||||
while(<>) {
|
||||
chop; next if /^\s*#/ || /^\s*$/; # ignore comments
|
||||
$first = substr($_, 0, 1); $first =~ y/a-z/A-Z/;
|
||||
|
||||
if ($firstold ne $first) { # a new alphabet character
|
||||
push(@az, $first);
|
||||
push(@list, &eol) if $#az > 0; # close previous list
|
||||
push(@list,
|
||||
qq{<$h2><A NAME="$first" HREF="#$top">$first</a></$h2>\n<UL>\n});
|
||||
}
|
||||
$firstold = $first;
|
||||
($title, $url) = split('\|', $_); $url =~ s/^\s+//; $url =~ s/\s+$//;
|
||||
$url = $urlprefix . $url unless
|
||||
($url =~ m%^/% || $url =~ /^(news|mailto|ftp|http|telnet):/oi);
|
||||
push(@list, qq{<LI><A HREF="$url">$title</A>\n});
|
||||
}
|
||||
push(@list, &eol); # close last list
|
||||
|
||||
# Output header, list, and copyright
|
||||
print qq{<A NAME="$top"></A>\n\n};
|
||||
foreach (@az) {
|
||||
print qq{<A HREF="#$_">$_</A>\n};
|
||||
}
|
||||
print $hr; print @list; # print $hr;
|
||||
print qq{<!--\nCreated by <A HREF="http://www.apfel.de/~wosch/">atoz</A>\n};
|
||||
print qq{at } . `date -u +"%Y/%m/%d %T"` . "UTC\n-->\n";
|
|
@ -1,112 +1,12 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
|
||||
<!ENTITY date "$Date: 1997-03-05 14:28:19 $">
|
||||
<!ENTITY title "Index of http://www.FreeBSD.org">
|
||||
<!ENTITY date "$Date: 1997-05-04 19:59:37 $">
|
||||
<!ENTITY title "A-Z Index of http://www.FreeBSD.org">
|
||||
<!ENTITY % includes SYSTEM "includes.sgml"> %includes;
|
||||
<!ENTITY atoz SYSTEM "atoz.sgml">
|
||||
]>
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<ul>
|
||||
<li><a href="welcome.html">About FreeBSD</a>
|
||||
<ul>
|
||||
<li><a href="internet.html">Internet server</a>
|
||||
<li><a href="features.html">Advanced features</a>
|
||||
<li><a href="applications.html">Applications</a>
|
||||
<li><a href="install.html">Install</a>
|
||||
<li><a href="availability.html">Availability</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="where.html">Obtaining and Installing FreeBSD</a>
|
||||
<ul>
|
||||
<li><a href="where.html#releases">Release Information</a>
|
||||
<li><a href="where.html#install">Installing FreeBSD</a>
|
||||
<li><a href="where.html#distribution">FreeBSD Distribution Sites</a>
|
||||
<li><a href="where.html#apps">Applications and Utility Software</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="releases/index.html">Release Information</a>
|
||||
<ul>
|
||||
<li><a href="newsflash.html">Newsflash!</a>
|
||||
<li><a href="releases/index.html#current">Current Release</a>
|
||||
<li><a href="releases/index.html#past">Past Releases</a>
|
||||
<li><a href="releases/index.html#future">Future Releases</a>
|
||||
<ul>
|
||||
<li><a href="handbook/stable.html">FreeBSD-stable</a>
|
||||
<li><a href="handbook/current.html">FreeBSD-current</a>
|
||||
<li><a href="releases/snapshots.html">snapshot</a>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="ports/index.html">Application Software, FreeBSD Ports</a>
|
||||
|
||||
<p>
|
||||
<li><a href="docs.html">Documentation</a>
|
||||
<ul>
|
||||
<li><a href="docs.html#handbook">The FreeBSD Handbook</a>
|
||||
<li><a href="docs.html#faq">Frequently Asked Questions (FAQ)</a>
|
||||
<li><a href="docs.html#tutorial">Tutorials</a>
|
||||
<li><a href="docs.html#books">Books</a>
|
||||
<li><a href="docs.html#man">Manual Pages</a>
|
||||
<li><a href="docs.html#source">The Source Code</a>
|
||||
<li><a href="docs.html#doc">The FreeBSD Documentation Project</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="support.html">User and Developer Resources</a>
|
||||
<ul>
|
||||
<li><a href="support.html#mailing-list">Mailing lists</a>
|
||||
<li><a href="support.html#newsgroups">Newsgroups</a>
|
||||
<li><a href="support.html#web">WEB Resources</a>
|
||||
<li><a href="support.html#pr">Problem reports, query-pr, Bugs</a>
|
||||
<li><a href="support.html#cvs">CVS Repository</a>
|
||||
<li><a href="support.html#user">User Groups</a>
|
||||
<li><a href="support.html#general">General UNIX Information</a>
|
||||
<li><a href="support.html#xwin">The X Window System</a>
|
||||
<li><a href="support.html#hardware">Hardware</a>
|
||||
<li><a href="support.html#multimedia">Multimedia</a>
|
||||
<li><a href="support.html#related">Related Operating System Projects</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="commercial.html">Commercial Vendors</a>
|
||||
<ul>
|
||||
<li><a href="commercial.html#soft">Software</a>
|
||||
<li><a href="commercial.html#hard">Hardware and complete systems</a>
|
||||
<li><a href="commercial.html#consult">Consulting services</a>
|
||||
<li><a href="commercial.html#misc">Documentation and miscellaneous accessories</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="gallery.html">The FreeBSD Gallery</a>
|
||||
<ul>
|
||||
<li><a href="cgallery.html">Commercial organizations</a>
|
||||
<li><a href="npgallery.html">Non-profit organizations</a>
|
||||
<li><a href="pgallery.html">Personal sites</a>
|
||||
<li><a href="http://www.freebsd.org/~jhs/freebsd/people.html">FreeBSD People</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="about.html">About the FreeBSD WWW Server</a>
|
||||
<ul>
|
||||
<li><a href="mirror.html">Mirroring the FreeBSD Web Pages</a>
|
||||
<li><a href="about.html">Usage statistics for this server</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="search.html">Search</a>
|
||||
<ul>
|
||||
<li><a href="searchhints.html">Searching Hints</a>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
<li><a href="license.html">The FreeBSD Copyright</a>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
&atoz;
|
||||
&footer;
|
||||
</body>
|
||||
</html>
|
||||
|
|
307
en/search/web.atoz
Normal file
307
en/search/web.atoz
Normal file
|
@ -0,0 +1,307 @@
|
|||
#
|
||||
# `A-Z Index' for http://www.FreeBSD.org
|
||||
#
|
||||
# With the format `<titel>|<url>'.
|
||||
# Empty lines or comments are ignored.
|
||||
#
|
||||
# $Id: web.atoz,v 1.1 1997-05-04 19:59:38 wosch Exp $
|
||||
|
||||
# about.sgml
|
||||
Usage statistics for this server|about.html
|
||||
Statistics for this server|about.html
|
||||
WWW statistics for this server|about.html
|
||||
Fieber, John|about.html|about.html
|
||||
Apache http server|about.html
|
||||
http server|about.html
|
||||
WWW server www.FreeBSD.ORG|about.html
|
||||
hub.cdrom.com|about.html
|
||||
Walnut Creek CDROM, network connection|about.html
|
||||
Network connection, Walnut Creek CDROM|about.html
|
||||
CGI scripts|about.html
|
||||
Mailing list archive|about.html
|
||||
freewais-sf|about.html
|
||||
|
||||
# applications.sgml
|
||||
Hittinger, Mark|applications.html
|
||||
WinNet Communications|applications.html
|
||||
Netscape Navigator|applications.html
|
||||
Java, Netscape Navigator|applications.html
|
||||
Internet services|applications.html
|
||||
X Windows workstation|applications.html
|
||||
Networking|applications.html
|
||||
Software development|applications.html
|
||||
Net surfing|applications.html
|
||||
Education and research|applications.html
|
||||
|
||||
# auditors.sgml
|
||||
Security|auditors.html
|
||||
Auditors|auditors.html
|
||||
|
||||
# availability.sgml
|
||||
Availability of FreeBSD|availability.html
|
||||
Hardware requirements|availability.html
|
||||
Where to get it|availability.html
|
||||
About the FreeBSD Project|availability.html
|
||||
Walnut Creek CD-ROM, address|availability.html
|
||||
Kelly, Sean|availability.html
|
||||
|
||||
# branch.sgml
|
||||
Branch|branch.html
|
||||
2.2-RELEASE, branch|branch.html
|
||||
2.2-STABLE, branch|branch.html
|
||||
2.2.x-RELEASE, branch|branch.html
|
||||
2.1-STABLE, branch|branch.html
|
||||
3.0-CURRENT, branch|branch.html
|
||||
2.1.7-RELEASE, branch|branch.html
|
||||
Walnut Creek CDROM, subscription customer|branch.html
|
||||
subscription customer, Walnut Creek CDROM|branch.html
|
||||
|
||||
# cgallery.sgml
|
||||
Gallery, Commercial|cgallery.sgml
|
||||
|
||||
# commercial.sgml
|
||||
Commercial Vendors|commercial.html
|
||||
Vendors, commercial|commercial.html
|
||||
Commercial Vendors, Consulting|commercial/consulting.html
|
||||
Consulting, Commercial Vendors|commercial/consulting.html
|
||||
Commercial Vendors, Hardware|commercial/hardware.html
|
||||
Hardware, Commercial Vendors|commercial/hardware.html
|
||||
Commercial Vendors, Software|commercial/software.html
|
||||
Software, Commercial Vendors|commercial/software.html
|
||||
Commercial Vendors, Miscellaneous|commercial/misc.html
|
||||
Miscellaneous, Commercial Vendors|commercial/misc.html
|
||||
|
||||
# daemon.sgml
|
||||
BSD Daemon|daemon.html
|
||||
Daemon, BSD|daemon.html
|
||||
Nemeth, Evi|daemon.html
|
||||
Lassiter, John|daemon.html
|
||||
Hosokawa, Tatsumi|daemon.html
|
||||
McKusick, Marshall Kirk|daemon.html
|
||||
|
||||
# docproj.sgml
|
||||
Documentation Project|docproj.html
|
||||
Project, Documentation|docproj.html
|
||||
Goals, documentation|docproj.html
|
||||
FAQ, Documentation Project|docproj.html
|
||||
Handbook, Documentation Project|docproj.html
|
||||
Contributing, Documentation Project|docproj.html
|
||||
Submitting corrections, Documentation Project|docproj.html
|
||||
Submitting new material, Documentation Project|docproj.html
|
||||
SGML, Documentation Project|docproj.html
|
||||
Linuxdoc, Documentation Project|docproj.html
|
||||
Docbook, Documentation Project|docproj.html
|
||||
Guidelines, Documentation Project|docproj.html
|
||||
|
||||
# docs.sgml
|
||||
Documentation|docs.html
|
||||
Handbook|docs.html
|
||||
Japanese Handbook|docs.html#handbook
|
||||
Handbook, Japanese|docs.html#handbook
|
||||
Frequently Asked Questions (FAQ)|docs.html#faq
|
||||
FAQ|docs.html#faq
|
||||
Tutorials|docs.html#tutorial
|
||||
Books|docs.html#books
|
||||
Manual Pages|docs.html#man
|
||||
4.4BSD Documents|docs.html#44doc
|
||||
BSD Documents|docs.html#44doc
|
||||
Documents, 4.4BSD|docs.html#44doc
|
||||
Schneider, Wolfram|docs.html#man
|
||||
Info Documents|docs.html#info
|
||||
GNU Info Documents|docs.html#info
|
||||
Source Code|docs.html#source
|
||||
Toomey, Warren|docs.html#source
|
||||
Eilts, Hinrich|docs.html#man
|
||||
|
||||
# features.sgml
|
||||
Features|features.html
|
||||
4.4BSD, A complete operating system|features.html
|
||||
Berkeley, University of California|features.html
|
||||
UCB|features.html
|
||||
Computer Systems Research Group|features.html
|
||||
CSRG|features.html
|
||||
Bounce buffering|features.html
|
||||
Merged virtual memory and filesystem buffer cache|features.html
|
||||
virtual memory|features.html
|
||||
buffer cache|features.html
|
||||
Compatibility, SCO|features.html
|
||||
Compatibility, Linux|features.html
|
||||
Compatibility, NetBSD|features.html
|
||||
Compatibility, OpenBSD|features.html
|
||||
Compatibility, BSDI|features.html
|
||||
SCO, Compatibility|features.html
|
||||
Linux, Compatibility|features.html
|
||||
NetBSD, Compatibility|features.html
|
||||
OpenBSD, Compatibility|features.html
|
||||
BSDI, Compatibility|features.html
|
||||
FrontPage Server|features.html
|
||||
WordPerfect|features.html
|
||||
Dynamically loadable kernel modules|features.html
|
||||
LKM|features.html
|
||||
loadable kernel modules|features.html
|
||||
Shared libraries|features.html
|
||||
Libraries, shared|features.html
|
||||
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
|
||||
|
||||
# internet.sgml
|
||||
Internet|internet.html
|
||||
TCP/IP protocols|internet.html
|
||||
NFS|internet.html
|
||||
NIS|internet.html
|
||||
SNMP|internet.html
|
||||
FTP|internet.html
|
||||
DNS/BIND|internet.html
|
||||
PPP|internet.html
|
||||
SLIP|internet.html
|
||||
MBONE|internet.html
|
||||
SAMBA|internet.html
|
||||
PCNFS|internet.html
|
||||
Appletalk|internet.html
|
||||
Novell|internet.html
|
||||
TCP extensions|internet.html
|
||||
RFC-1323|internet.html
|
||||
RFC-1644|internet.html
|
||||
networking|internet.html
|
||||
FTP Server ftp.FreeBSD.ORG, configuration|internet.html
|
||||
Yahoo|internet.html
|
||||
High performance and security|internet.html
|
||||
Encryption software|internet.html
|
||||
secure shells|internet.html
|
||||
Kerberos|internet.html
|
||||
end-to-end encryption|internet.html
|
||||
secure RPC facilities|internet.html
|
||||
O'Brien, Michael|internet.html
|
||||
SunExpert|internet.html
|
||||
|
||||
# license.sgml
|
||||
Copyright|license.html
|
||||
License|license.html
|
||||
|
||||
# mailto.sgml
|
||||
Contact us|mailto.html
|
||||
Questions about this WWW server|mailto.html
|
||||
Questions about the contents of this WWW server|mailto.html
|
||||
Questions about FreeBSD|mailto.html
|
||||
|
||||
# mirror.sgml
|
||||
Mirroring the FreeBSD Web Pages|mirror.html
|
||||
rsync|mirror.html
|
||||
|
||||
# newsflash.sgml
|
||||
News flash|newsflash.html
|
||||
Press releases, News|newsflash.html
|
||||
|
||||
# npgallery.sgml
|
||||
Non-profit organizations, Gallery|npgallery.html
|
||||
|
||||
# npgallery.sgml
|
||||
Personal sites, Gallery|pgallery.html
|
||||
|
||||
# ports/index.sgml
|
||||
Ports Collection|ports/index.html
|
||||
|
||||
# releases/index.sgml
|
||||
Recent announcements about FreeBSD Releases|releases/index.html
|
||||
Current Releases|releases/index.html#current
|
||||
Future Releases|releases/index.html#future
|
||||
Past Releases|releases/index.html#past
|
||||
Releases, current|releases/index.html#current
|
||||
Releases, future|releases/index.html#future
|
||||
Releases, past|releases/index.html#past
|
||||
1.0 FreeBSD|releases/index.html#past
|
||||
1.1 FreeBSD|releases/index.html#past
|
||||
1.1.5 FreeBSD|releases/index.html#past
|
||||
1.1.5.1 FreeBSD|releases/index.html#past
|
||||
2.0 FreeBSD|releases/index.html#past
|
||||
2.0.5 FreeBSD|releases/index.html#past
|
||||
2.1 FreeBSD|releases/index.html#past
|
||||
2.1.5 FreeBSD|releases/index.html#past
|
||||
2.1.6 FreeBSD|releases/index.html#past
|
||||
2.1.7 FreeBSD|releases/index.html#current
|
||||
2.2 FreeBSD|releases/index.html#current
|
||||
|
||||
# resignation.sgml
|
||||
Jordan's Resignation Letter|resignation.html
|
||||
Resignation Letter, Jordan|resignation.html
|
||||
President of the FreeBSD Project|resignation.html
|
||||
|
||||
# search.sgml
|
||||
Search Services|search.html
|
||||
Web pages, search|search.html#web
|
||||
Search, Web pages|search.html#web
|
||||
Mailing list archives, search|search.html#mailinglists
|
||||
Search, Mailing list archives|search.html#mailinglists
|
||||
Ports Changes, Search|search.html
|
||||
Search, Ports Changes|search.html
|
||||
|
||||
# searchhints.sgml
|
||||
Searching Hints|searchhints.html
|
||||
|
||||
# security.sgml
|
||||
Security Guide|security.html
|
||||
|
||||
# send-pr.sgml
|
||||
Submit a FreeBSD problem report|send-pr.html
|
||||
Bug report, submit|send-pr.html
|
||||
|
||||
# support.sgml
|
||||
Support|support.html
|
||||
Mailing lists|support.html#mailing-list
|
||||
non-English mailing lists|support.html#mailing-list
|
||||
Mailing lists, German|support.html#mailing-list
|
||||
Mailing lists, Portuguese|support.html#mailing-list
|
||||
Mailing lists, Japanese|support.html#mailing-list
|
||||
Mailing lists, Japanese|support.html#mailing-list
|
||||
Mailing lists, Hungarian|support.html#mailing-list
|
||||
German mailing lists|support.html#mailing-list
|
||||
Portuguese mailing lists|support.html#mailing-list
|
||||
Japanese mailing lists|support.html#mailing-list
|
||||
Hungarian mailing lists|support.html#mailing-list
|
||||
German web pages|support.html#mailing-list
|
||||
Portuguese web pages|support.html#mailing-list
|
||||
Japanese web pages|support.html#mailing-list
|
||||
Hungarian web pages|support.html#mailing-list
|
||||
Newsgroups|support.html#newsgroups
|
||||
Web Resources, mirrors|support.html#web
|
||||
GNATS Problem Report Database|support.html#pr
|
||||
Bug reports, view|support.html#pr
|
||||
CVS Repository|support.html#cvs
|
||||
User Groups|support.html#user
|
||||
General UNIX Information|support.html#general
|
||||
X Window System|support.html#xwin
|
||||
Hardware, support|support.html#hardware
|
||||
Multimedia|support.html#multimedia
|
||||
Home Automation|support.html#homeauto
|
||||
Automation, Home|support.html#homeauto
|
||||
Symmetric MultiProcessing (SMP)|support.html#SMP
|
||||
SMP|support.html#SMP
|
||||
Related Operating System Projects|support.html#related
|
||||
Operating System, related projects|support.html#related
|
||||
|
||||
# welcome.sgml
|
||||
What is FreeBSD|welcome.html
|
||||
BSD UNIX|welcome.html
|
||||
FreeBSD is free|welcome.html
|
||||
|
||||
# where.sgml
|
||||
Getting FreeBSD|where.html
|
||||
Installing FreeBSD|where.html#install
|
||||
Distribution Sites|where.html#distribution
|
||||
Release Information|where.html#releases
|
||||
Applications and Utility Software|where.html#apps
|
||||
Commercial software|where.html
|
||||
|
Loading…
Reference in a new issue