Imported the Spanish Web pages, except the

english sub directories: cgi, commercial, gallery, gifs
	which are redundant and will never be translated

and the

	spanish sub directories: doc-es, docs-es

Submitted by: "Jesus Rodriguez" <jesusr@ncsa.es>

Fix Makefiles errors. `Make all install' runs fine.

Currently, many the links to the sub directories cgi, commercial,
gallery, gifs are broken. The links should point to the English
orginal files.
This commit is contained in:
Wolfram Schneider 1999-02-08 19:26:12 +00:00
parent 1699e994f5
commit 646ddd7e13
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=4248
160 changed files with 22933 additions and 0 deletions

24
es/search/Makefile Normal file
View file

@ -0,0 +1,24 @@
# $Id: Makefile,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
DOCS+= index-site.sgml
DOCS+= search.sgml
DOCS+= searchhints.sgml
DOCS+= search-mid.sgml
INDEXLINK= search.html
CLEANFILES+=atoz.sgml site.sgml
index-site.sgml: atoz.sgml site.sgml
atoz.sgml: web.atoz
sort -fu web.atoz | perl atoz.pl > ${.TARGET}
site.sgml: site.map
./site.pl < ${.ALLSRC} > ${.TARGET}
.include "../web.mk"

50
es/search/atoz.pl Normal file
View file

@ -0,0 +1,50 @@
#!/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.1.1 1999-02-08 19:26:12 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';
$table = 1; # use table output for alphabet
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};
print qq{<TABLE BORDER=4><TR>\n} if $table;
foreach (@az) {
if ($table) {
print qq{<TD><A HREF="#$_">$_</A></TD>\n};
} else {
print qq{<A HREF="#$_">$_</A>\n};
}
}
print "</TR></TABLE>\n" if $table;
print $hr; print @list;
#print qq{<link ref="made" href="http://www.de.freebsd.org/~wosch/">\n};

49
es/search/index-site.sgml Normal file
View file

@ -0,0 +1,49 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1999-02-08 19:26:12 $">
<!ENTITY title "Mapa del servidor e Indice de http://www.FreeBSD.org">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
<!ENTITY atoz SYSTEM "atoz.sgml">
<!ENTITY site SYSTEM "site.sgml">
]>
<!-- $Id: index-site.sgml,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $ -->
<html>
&header;
<h1>Mapa del servidor</h1>
&site;
<h2>Secciones</h2>
<ul>
<li><a href="../news/news.html">Noticias</a></li>
<li><a href="../docs.html">Documentaci&oacute;n</a></li>
<li><a href="../support.html">Soporte</a></li>
<li><a href="../security/security.html">Seguridad</a></li>
<li><a href="../releases/index.html">Informaciones de Release</a></li>
<li><a href="../projects/projects.html">Projectos</a></li>
<li><a href="../gallery/gallery.html">Galer&iacute;a</a></li>
<li><a href="../ports/index.html">Ports</a></li>
<li><a href="../commercial/commercial.html">Comercial</a></li>
<li><a href="../internal/internal.html">Interno</a></li>
<li><a href="../copyright/copyright.html">Copyright</a></li>
<li><a href="../search/search.html">B&uacute;squedas</a></li>
</ul>
<HR NOSHADE>
<h1>Indice A-Z</h1>
&atoz;
&footer;
</body>
</html>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:nil
sgml-shorttag:nil
End:
-->

41
es/search/search-mid.sgml Normal file
View file

@ -0,0 +1,41 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1999-02-08 19:26:12 $">
<!ENTITY title "B&uacute;squedas en listas de distribuci&oacute;n">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- Created at 1998-03-21 by Wolfram Schneider <wosch@FreeBSD.org> -->
<!-- $Id: search-mid.sgml,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $ -->
<html>
&header;
<FORM ACTION="http://www.freebsd.org/cgi/mid.cgi" METHOD="GET">
<b>ID-Mensaje:</b><br>
<INPUT NAME="id" TYPE="text" SIZE="50">
<INPUT name="db" VALUE="mid" TYPE="hidden">
<INPUT TYPE="submit" VALUE="Buscar">
</FORM>
<FORM ACTION="http://www.freebsd.org/cgi/mid.cgi" METHOD="GET">
<b>Respuestas al ID-Mensaje:</b><br>
<INPUT NAME="db" VALUE="irt" TYPE="hidden">
<INPUT TYPE="text" NAME="id" SIZE="50">
<INPUT TYPE="submit" VALUE="Buscar">
</FORM>
<p>
Solo puedes buscar en las cabeceras
<b>Message-ID</b>, <b>Resent-Message-id</b>, <b>In-Reply-to</b>, y
<b>References</b>.
Un Message-ID es algo como &lt;199802242058.MAA24843@monk.via.net&gt;.
No se soportan otras cabeceras. La base de datos del campo
Message-ID se actualiza cada hora.</p>
<a href="search.html#mailinglists">Archivos de listas en modo texto</a>.
&footer;
</body>
</html>

364
es/search/search.sgml Normal file
View file

@ -0,0 +1,364 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1999-02-08 19:26:12 $">
<!ENTITY title "B&uacute;squeda">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- $Id: search.sgml,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $ -->
<html>
&header;
<h2>Servicio de b&uacute;squeda de FreeBSD</h2>
<ul>
<li><a href="http://www.freebsd.org/cgi/query-pr-summary.cgi?query">
Informe de problemas GNATS (Bugs) database</a>
<li><a href="http://www.freebsd.org/cgi/man.cgi">P&aacute;ginas Man</a>
<li><a href="http://www.freebsd.org/cgi/ports.cgi">
Modificaciones de Ports</a>
<li><a href="http://minnie.cs.adfa.oz.au/FreeBSD-srctree/FreeBSD.html">
El c&oacute;digo fuente</a>
<li><a href="#web">P&aacute;ginas Web</a>
<li><a href="#mailinglists">Archivos de listas de distribuci&oacute;n</a>
<li><a href="search-mid.html">Message-ID</a>
<li><a href="http://minnie.cs.adfa.oz.au/BSD-info/bsdnews_search.html">
Buscador de news BSD</a>
</ul>
<hr noshade>
<a name="web"></a><h2>P&aacute;ginas Web (incluyendo
<a href="&base/FAQ/FAQ.html">FAQ</a> y
<a href="&base/handbook/handbook.html">Handbook</a>)</h2>
<form action="http://www.freebsd.org/cgi/search.cgi" method="GET">
<h3>Buscar:</h3>
<p><em>Nota: Usa los operadores AND y NOT para limitar la b&uacute;squeda. <a
href="searchhints.html">Mira aqu&iacute; para m&aacute;s opciones</a>.</em></p>
<p><input type="text" name="words" size="50"><br>
Limitar el n&uacute;mero de resultados a <select name="max"
<OPTION VALUE="5">5</OPTION>
<OPTION VALUE="10">10</OPTION>
<OPTION VALUE="25" SELECTED>25</OPTION>
<OPTION VALUE="50">50</OPTION>
<OPTION VALUE="100">100</OPTION>
<OPTION VALUE="250">250</OPTION>
<OPTION VALUE="500">500</OPTION>
<OPTION VALUE="1000">1000</OPTION>
</SELECT>
<input type="submit" value="Enviar"> <input type="reset" value="Anular"></p>
<input type="hidden" name="source" value="www">
</form>
<hr noshade>
<a name="mailinglists"></a><h2>Archivos listas de distribuci&oacute;n</h2>
<p>&i.new; Los &iacute;ndices de los archivos de listas se actualizan ahora
semanalmente!</p>
<form action="http://www.freebsd.org/cgi/search.cgi" method="GET">
<h3>Buscar:</h3>
<p><em>Nota: Usa los operadores AND y NOT para limitar la b&uacute;squeda
<a href="searchhints.html">Mira aqu&iacute; para m&aacute;s opciones
</a>.</em></p>
<p><input type="text" name="words" size="50"><br>
Limitar el n&uacute;mero de resultados a <select name="max"
<OPTION VALUE="5">5</OPTION>
<OPTION VALUE="10">10</OPTION>
<OPTION VALUE="25" SELECTED>25</OPTION>
<OPTION VALUE="50">50</OPTION>
<OPTION VALUE="100">100</OPTION>
<OPTION VALUE="250">250</OPTION>
<OPTION VALUE="500">500</OPTION>
<OPTION VALUE="1000">1000</OPTION>
</SELECT>
ordenado por
<SELECT NAME="sort">
<OPTION VALUE="score">coincidencia</OPTION>
<OPTION VALUE="date">fecha</OPTION>
<OPTION VALUE="subject">t&iacute;tulo</OPTION>
<OPTION VALUE="author">autor</OPTION>
</SELECT>
<input type="submit" value="Enviar"> <input type="reset" value="Anular"></p>
<h3>En archivo(s):</h3>
<p><em>Nota: Buscar en m&aacute;s de tres o cuatro archivos de una sola vez
puede producir resultados inadecuados.</em></p>
<h3>Archivos Generales</h3>
<table>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-advocacy"> <strong>Promoci&oacute;n</strong></td>
<td>Evangelismo FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-announce"> <strong>Anuncios</strong></td>
<td>Noticias / Eventos importantes</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-chat"> <strong>Chat</strong></td>
<td>Temas varios (a veces) relacionados con FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-jobs"> <strong>Trabajos</strong></td>
<td>Ofertas y demandas de empleo relacionadas con FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-newbies"> <strong>Principiantes</strong></td>
<td>Actividades y discusiones de nuevos usuarios de FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source" checked="checked"
value="freebsd-questions"> <strong>Preguntas</strong></td>
<td>Preguntas generales</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-user-groups"> <strong>Grupos de usuarios</strong></td>
<td>Un f&oacute;rum para grupos de usuarios de FreeBSD</td>
</tr>
</table>
<h3>Administraci&oacute;n y uso de sistemas</h3>
<table>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-bugs"> <strong>Bugs</strong></td>
<td>Informaci&oacute;n y discusi&oacute;n de bugs</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-hardware"> <strong>Hardware</strong></td>
<td>Discusiones relacionadas con hardware y FreeBSDD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-isp"> <strong>ISP</strong></td>
<td>Discusiones de ISP's (Proveedores de Internet) usando FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-security"> <strong>Seguridad</strong></td>
<td>Seguridad y/en FreeBSD (DES, Kerberos, etc.)</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-stable"> <strong>Stable</strong></td>
<td>Discusiones sobre la rama de desarrollo FreeBSD-stable</td>
</tr>
</table>
<h3>Desarrollador</h3>
<table>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-afs"> <strong>Afs</strong></td>
<td>Portando y usando AFS (Andrew File System) de CMU/Transarc</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-alpha"> <strong>Alpha</strong></td>
<td>Portando FreeBSD a DEC Alpha</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-atm"> <strong>ATM</strong></td>
<td>Uso de redes ATM con FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="cvs-committers"> <strong>Commit</strong></td>
<td>Cambios realizados al c&oacute;digo fuente de FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-config"> <strong>Config</strong></td>
<td>Desarrollo de herramientas de configuraci&oacute;n e instalaci&oacute;n</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-current"> <strong>Current</strong></td>
<td>Uso de la rama de desarrollo FreeBSD-current</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-database"> <strong>Database</strong></td>
<td>Uso y desarrollo de bases de datos en FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-doc"> <strong>Doc</strong></td>
<td>Documentaci&oacute;n de FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-emulation"> <strong>Emulation</strong></td>
<td>Emulaci&oacute;n de otros sistemas en FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-fs"> <strong>Fs</strong></td>
<td>Sistema de ficheros de FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-hackers"> <strong>Hackers</strong></td>
<td>Discusiones t&eacute;cnicas generales</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-isdn"> <strong>ISDN</strong></td>
<td>Desarrollo de soporte de RDSI/ISDN en FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-java"> <strong>Java</strong></td>
<td>Port de JDK y desarrollo de aplicaciones</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-multimedia"> <strong>Multimedia</strong></td>
<td>Discusiones sobre FreeBSD como plataforma multimedia</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-mobile"> <strong>Mobile</strong></td>
<td>Uso de FreeBSD en entornos m&oacute;viles</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-mozilla"> <strong>Mozilla</strong></td>
<td>Portando mozilla a FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-net"> <strong>Net</strong></td>
<td>Discusiones de red y c&oacute;digo fuente TCP/IP</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-platforms"> <strong>Platforms</strong></td>
<td>FreeBSD en plataformas no-Intel</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-ports"> <strong>Ports</strong></td>
<td>Colecci&oacute;n de ports de FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-realtime"> <strong>Realtime</strong></td>
<td>Desarrollo de extensiones de tiempo real en FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-scsi"> <strong>SCSI</strong></td>
<td>Soporte de SCSI en FreeBSD</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-small"> <strong>Small</strong></td>
<td>Usando FreeBSD en aplicaciones "comprimidas"</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-smp"> <strong>SMP</strong></td>
<td>FreeBSD en plataformas multiprocesador</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-sparc"> <strong>SPARC</strong></td>
<td>Portando FreeBSD a SPARC</td>
</tr>
<tr>
<td><input type="checkbox" name="source"
value="freebsd-tokenring"> <strong>Tokenring</strong></td>
<td>Soporte Token Ring en FreeBSD</td>
</tr>
</table>
<!--
<input type="checkbox" name="source" value="freebsd-hubs">
<b>Hubs:</b> Managers of FreeBSD ftp/www mirrors and mail relays<br>
<input type="checkbox" name="source" value="freebsd-install">
<b>Install:</b> Installation development<br>
<input type="checkbox" name="source" value="freebsd-atm">
<b>Atm:</b> <br>
<input type="checkbox" name="source" value="freebsd-ircops">
<b>Ircops:</b> <br>
<input type="checkbox" name="source" value="freebsd-security-notifications">
<b>Security-notifications:</b> <br>
<input type="checkbox" name="source" value="freebsd-stats">
<b>Stats:</b> <br>
<input type="checkbox" name="source" value="freebsd-www">
<b>WWW:</b> <br>
-->
<p><input type="submit" value="Enviar"></p>
</form>
&footer;
</body>
</html>

View file

@ -0,0 +1,52 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN" [
<!ENTITY base CDATA "..">
<!ENTITY date "$Date: 1999-02-08 19:26:12 $">
<!ENTITY title "Opciones de b&uacute;squeda">
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
]>
<!-- $Id: searchhints.sgml,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $ -->
<html>
&header;
<h2>Si obtienes m&uacute;ltiples resultados irrelevantes...</h2>
<ol>
<li>Si buscas diferentes palabras como "<tt>quantum hard drives</tt>",
un OR se considera relevante, s&oacute;lo una de las palabras
ha de aparecer en el mensaje. Para encontrar mensajes que
s&oacute;lo incluyan las tres palabras, cambia la
b&uacute;squeda a "<tt>quantum and hard and drives</tt>"<p></p></li>
<li>Si todav&iacute;a obtienes muchos mensajes irrelevantes, mira si
&eacute;stos tienen algo en com&uacute;n. Si es as&iacute;, los
puedes excluir con el operador <tt>not</tt>. Por ejemplo
"<tt>quantum and hard and drives not ide</tt>" excluir&aacute;
cualquier mensaje sobre discos duros ide quantum.</li>
</ol>
<h2>Si crees que no has recinido todo lo que debieras...</h2>
<ol>
<li>Si alguna de tus palabras clave tiene variantes,
aseg&uacute;rate de entrar todas las formar relevantes. Si busca
"<tt>buslogic</tt>", deber&iacute;as cambiarlo por
"<tt>buslogic o bustek</tt>".<p></p></li>
<li>Con palabras de sufijos variables podemos usar asteriscos.
Buscando "<tt>drive*</tt>" aparecer&aacute;n resultados como
<tt>drive</tt>, <tt>drives</tt>, <tt>driver</tt>,
<tt>drivers</tt>, etc.<p></p></li>
<li>Intenta eliminar palabras que puedan estar ya implicadas en
el contexto del mensaje. Por ejemplo ""<tt>quantum and
hard and drive</tt>" perder&iacute;a mensajes relevantes que
"<tt>quantum and drive</tt>" podr&iacute;a obtener.</li>
</ol>
<hr>
<a href="search.html">Volver a la p&aacute;gina de b&uacute;squeda</a>
&footer;
</body>
</html>

50
es/search/site.map Normal file
View file

@ -0,0 +1,50 @@
# Copyright (c) June 1998 Wolfram Schneider <wosch@FreeBSD.org>, Berlin.
#
# Site map for FreeBSD.org
#
# Empty lines and comments ('#') are ignored.
# Format: <url> | <description>
# An empty url begin a new section
#
# $Id: site.map,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $
|Software
../availability.html|About FreeBSD
../features.html|Features
../releases/|Releases
../handbook/install.html|Installation
../handbook/install:hw.html|Supported Hardware
../handbook/mirrors.html|Mirrors
../applications.html|Applications
../ports/|Ports
../commercial/commercial.html|Commercial Vendors
|Support
../support.html#mailing-list|Mailing lists
../support.html#newsgroups|Newsgroups
../support.html#web|Web
../support.html#pr|Bugs
../support.html#cvs|CVS
../support.html#development|Projects
../support.html#user|User Groups
../security/security.html|Security
../gallery/gallery.html|Gallery
../commercial/commercial.html|Commercial Vendors
|News
../news/newsflash.html|Newsflash
../news/qnewsletter.html|FreeBSD Quick Newsletter
../news/press.html|FreeBSD in the press
../publish.html#newsletter|Newsletter
|Documentation
../handbook/|Handbook
../FAQ/|FAQ
../tutorials/|Tutorials
../docs.html#man|Manual Pages
../docs.html#info|INFO
../docs.html#44doc|4.4BSD Manuals
../publish.html|Publications
../handbook/bibliography.html|Books
../y2kbug.html|Year2000

57
es/search/site.pl Executable file
View file

@ -0,0 +1,57 @@
#!/usr/bin/perl
# Copyright (c) June 1998 Wolfram Schneider <wosch@FreeBSD.org>, Berlin.
#
# site - create automatically a site map
#
# Format: <url> | <description>
# An empty url begin a new section
#
# $Id: site.pl,v 1.1.1.1 1999-02-08 19:26:12 wosch Exp $
# print a dl list
# <dl><dt>foo</dt>
# <dd>bla,foo,bar</dd>
# </dl>
sub dl {
$menu = 0;
print "<DL>\n";
while(<>) {
# ignore comments and empty lines
next if /^\s*#/;
next if /^\s*$/;
chop;
($url, $description) = split('\|');
$description =~ s/^\s+//;
$description =~ s/\s+$//;
# new section
if (!$url && $description) {
# close last <dd>
if ($menu) {
print "\n", " </DD>\n", "\n";
}
$menu = 1;
print " <DT><STRONG>", $description, "</STRONG></DT>\n";
print " <DD>\n";
}
# entries for a section
elsif ($menu) {
# a comma execpt for the last entry
print ",\n" if ($menu > 1);
print " <A HREF=", '"', $url, '">', $description, "</A>";
$menu++;
}
}
print "\n", " </DD>\n";
print "</DL>\n";
}
&dl;

392
es/search/web.atoz Normal file
View file

@ -0,0 +1,392 @@
#
# `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.1.1 1999-02-08 19:26:12 wosch Exp $
# about.sgml
Usage statistics for this server|../internal/about.html
Statistics for this server|../internal/about.html
WWW statistics for this server|../internal/about.html
Fieber, John|../internal/about.html
Apache http server|../internal/about.html
http server|../internal/about.html
WWW server www.FreeBSD.ORG|../internal/about.html
hub.cdrom.com|../internal/about.html
Walnut Creek CDROM, network connection|../internal/about.html
Network connection, Walnut Creek CDROM|../internal/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|../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
# cgallery.sgml
Gallery, Commercial|../gallery/cgallery.html
# commercial.sgml
Commercial Vendors|../commercial/commercial.html
Vendors, commercial|../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|../copyright/daemon.html
Daemon, BSD|../copyright/daemon.html
Nemeth, Evi|../copyright/daemon.html
Lassiter, John|../copyright/daemon.html
Hosokawa, Tatsumi|../copyright/daemon.html
McKusick, Marshall Kirk|../copyright/daemon.html
# docproj.sgml
Documentation Project|../docproj/docproj.html
Project, Documentation|../docproj/docproj.html
Goals, documentation|../docproj/docproj.html
FAQ, Documentation Project|../docproj/docproj.html
Handbook, Documentation Project|../docproj/docproj.html
Contributing, Documentation Project|../docproj/docproj.html
Submitting corrections, Documentation Project|../docproj/docproj.html
Submitting new material, Documentation Project|../docproj/docproj.html
SGML, Documentation Project|../docproj/docproj.html
Linuxdoc, Documentation Project|../docproj/docproj.html
Docbook, Documentation Project|../docproj/docproj.html
Guidelines, Documentation Project|../docproj/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
y2k|../docs.html#y2kbug
Year 2000 bug|../docs.html#y2kbug
Millennium bug|../docs.html#y2kbug
2000, year bug|../docs.html#y2kbug
# 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/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
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|../copyright/license.html
License|../copyright/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|../internal/mirror.html
rsync|../internal/mirror.html
# mozilla.sgml
Mozilla Group, FreeBSD|../projects/mozilla.html
Netscape source code|../projects/mozilla.html
# newsflash.sgml
News flash|../news/newsflash.html
Press releases, News|../news/newsflash.html
# npgallery.sgml
Non-profit organizations, Gallery|../gallery/npgallery.html
# npgallery.sgml
Personal sites, Gallery|../gallery/pgallery.html
# ports/index.sgml
Ports Collection|../ports/index.html
# press.sgml
Press, in the|../news/press.html
# publish.sgml
Related Publications|../publish.html
Publications, Related|../publish.html
Covers, Publications|../publish.html
Daemon, Covers|../publish.html
CDROM, Covers|../publish.html#cdroms
Books, Covers|../publish.html#books
Magazins, Covers|../publish.html#magazines
Newsletter|../publish.html#newsletter
# 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#past
2.2 FreeBSD|../releases/index.html#past
2.2.1 FreeBSD|../releases/index.html#past
2.2.2 FreeBSD|../releases/index.html#past
2.2.5 FreeBSD|../releases/index.html#past
2.2.6 FreeBSD|../releases/index.html#current
# resignation.sgml
Jordan's Resignation Letter|../internal/resignation.html
Resignation Letter, Jordan|../internal/resignation.html
President of the FreeBSD Project|../internal/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
Message-ID, Search|search.html
Search, Message-ID|search.html
Usenet News, Search|search.html
Newsgroups, Search|search.html
Search, Usenet News|search.html
# searchhints.sgml
Searching Hints|searchhints.html
# security/security.sgml
Security Guide|../security/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, Czech|../support.html#mailing-list
Mailing lists, Polish|../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
Czech mailing lists|../support.html#mailing-list
Polish 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
Czech 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
Slovakian 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
CTM|../support.html#cvs
CVSup|../support.html#cvs
anoncvs|../support.html#anoncvs
User Groups|../support.html#user
General UNIX Information|../support.html#general
X Window System|../support.html#xwin
Hardware, support|../support.html#hardware
# /projects/
Multimedia|../projects/projects.html#multimedia
Home Automation|../projects/projects.html#homeauto
Automation, Home|../projects/projects.html#homeauto
Symmetric MultiProcessing (SMP)|../projects/projects.html#SMP
SMP|../projects/projects.html#SMP
Sparc|../projects/projects.html#sparc
FreeBSD-Sparc|../projects/projects.html#sparc
Alpha, FreeBSD|../projects/projects.html#alpha
DEC Alpha|../projects/projects.html#alpha
DIGITAL Alpha|../projects/projects.html#alpha
FreeBSD/Alpha|../projects/projects.html#alpha
Java|../projects/projects.html#java
PicoBSD|../projects/projects.html#picobsd
single floppy FreeBSD|../projects/projects.html#picobsd
Related Operating System Projects|../projects/projects.html#related
Operating System, related projects|../projects/projects.html#related
DEVFS|../projects/projects.html#devfs
soft update code|../projects/projects.html#softupdate
Newbies Project|../projects/projects.html#newbies
Hardening Project|../projects/projects.html#hardening
secure environment|../projects/projects.html#hardening
KAME Project|../projects/projects.html#kame
IPv6/IPsec stack for BSD|../projects/projects.html#kame
Token-Ring Project|../projects/projects.html#tokenring
i4b|../projects/projects.html#isdn
ISDN|../projects/projects.html#isdn
ISDN4BSD|../projects/projects.html#isdn
USB|../projects/projects.html#usb
Drawbridge|../projects/projects.html#drawbridge
secure MobileIP via IPSec|../projects/projects.html#smn
MobileIP via IPSec|../projects/projects.html#smn
IPSec|../projects/projects.html#smn
SMN|../projects/projects.html#smn
High-precision timekeeping|../projects/projects.html#timekeeping
timekeeping, High-precision|../projects/projects.html#timekeeping
ALTQ|../projects/projects.html#altq
bandwidth management|../projects/projects.html#altq
Alternate Queueing|../projects/projects.html#altq
vinum|../projects/projects.html#vinum
logical volume manager|../projects/projects.html#vinum
volume manager, logical|../projects/projects.html#vinum
ATM, BSD|../projects/projects.html#atm
BSD ATM|../projects/projects.html#atm
PAO|../projects/projects.html#pao
Mobile Computing|../projects/projects.html#pao
laptop|../projects/projects.html#pao
Point to Point Protocol (PPP)|../projects/projects.html#ppp
GLOBAL common source code tag system|../projects/projects.html#global
Metacomputing|../projects/projects.html#metacomputing
Voice Answering Machine|../projects/projects.html#vam
Answering Machine, Voice|../projects/projects.html#vam
Retail Outlets for FreeBSD|../projects/projects.html#retail
CAM|../projects/projects.html#cam
Security Advisories|ftp://ftp.freebsd.org/pub/FreeBSD/CERT/index.html
Advisories, security|ftp://ftp.freebsd.org/pub/FreeBSD/CERT/index.html
SA|ftp://ftp.freebsd.org/pub/FreeBSD/CERT/index.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
# news/
Real-Quick (TM) Newsletter|../news/qnewsletter.html
RQN|../news/qnewsletter.html
Quick (TM) Newsletter|../news/qnewsletter.html
Newsletter, Real-Quick (TM)|../news/qnewsletter.html
Release Usage Statistic|http://www.freebsd.org/statistic/release_usage/images/
Statistic, Release Usage|http://www.freebsd.org/statistic/release_usage/images/