Convert commercial gallery into XML/XSLT powered version.
Thanks to Marc Silver and Gerhard Gonter for .raw -> .xml support. Approved by: simon(mentor)
This commit is contained in:
parent
c2549ffaf5
commit
4a92b30445
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=20832
23 changed files with 4549 additions and 4119 deletions
en/commercial
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD: www/en/commercial/Makefile,v 1.13 2000/09/30 00:21:38 nbm Exp $
|
||||
# $FreeBSD$
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
|
@ -7,48 +7,77 @@
|
|||
.include "../Makefile.inc"
|
||||
.endif
|
||||
|
||||
PERL= perl5
|
||||
DOCS= commercial.sgml
|
||||
|
||||
DOCS = commercial.sgml
|
||||
DOCS+= consulting.sgml
|
||||
DOCS+= consulting_bycat.sgml
|
||||
DOCS+= hardware.sgml
|
||||
DOCS+= misc.sgml
|
||||
DOCS+= software.sgml
|
||||
DOCS+= software_bycat.sgml
|
||||
DATA= consult.html
|
||||
DATA+= consult_bycat.html
|
||||
DATA+= hardware.html
|
||||
DATA+= misc.html
|
||||
DATA+= software.html
|
||||
DATA+= software_bycat.html
|
||||
|
||||
INDEXLINK=commercial.html
|
||||
CLEANFILES+= consulting.inc consulting_bycat.inc hardware.inc
|
||||
CLEANFILES+= misc.inc software.inc software_bycat.inc
|
||||
CLEANFILES= commercial.html
|
||||
CLEANFILES+= consult.html
|
||||
CLEANFILES+= consult_bycat.html
|
||||
CLEANFILES+= hardware.html
|
||||
CLEANFILES+= misc.html
|
||||
CLEANFILES+= software.html
|
||||
CLEANFILES+= software_bycat.html
|
||||
|
||||
consulting.html: consulting.sgml consulting.inc
|
||||
INDEXLINK= commercial.html
|
||||
|
||||
consulting_bycat.html: consulting_bycat.sgml consulting_bycat.inc
|
||||
XMLLINT?= /usr/local/bin/xmllint # Part of textproc/libxml2.
|
||||
|
||||
hardware.html: hardware.sgml hardware.inc
|
||||
consult.html: entries.xsl consult.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
--param pagename "'Consulting Services'" \
|
||||
${.CURDIR}/entries.xsl ${.CURDIR}/consult.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
misc.html: misc.sgml misc.inc
|
||||
consult_bycat.html: consult_bycat.xsl consult.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
${.CURDIR}/consult_bycat.xsl ${.CURDIR}/consult.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
software.html: software.sgml software.inc
|
||||
hardware.html: entries.xsl hardware.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
--param pagename "'Hardware Vendors'" \
|
||||
${.CURDIR}/entries.xsl ${.CURDIR}/hardware.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
software_bycat.html: software_bycat.sgml software_bycat.inc
|
||||
misc.html: entries.xsl misc.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
--param pagename "'Miscellaneous Vendors'" \
|
||||
${.CURDIR}/entries.xsl ${.CURDIR}/misc.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
consulting.inc: gencommercial.pl commercial.desc consulting.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} consulting
|
||||
software.html: entries.xsl software.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
--param pagename "'Software Vendors'" \
|
||||
${.CURDIR}/entries.xsl ${.CURDIR}/software.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
consulting_bycat.inc: gencommercial.pl commercial.desc consulting.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} -c consulting
|
||||
software_bycat.html: soft_bycat.xsl software.xml ../includes.xsl
|
||||
${XSLTPROC} ${XSLTPROCOPTS} -o ${.TARGET} \
|
||||
${.CURDIR}/soft_bycat.xsl ${.CURDIR}/software.xml
|
||||
.if !defined(NO_TIDY)
|
||||
-${TIDY} ${TIDYOPTS} ${.TARGET}
|
||||
.endif
|
||||
|
||||
hardware.inc: gencommercial.pl commercial.desc hardware.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} hardware
|
||||
|
||||
misc.inc: gencommercial.pl commercial.desc misc.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} misc
|
||||
|
||||
software.inc: gencommercial.pl commercial.desc software.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} software
|
||||
|
||||
software_bycat.inc: gencommercial.pl commercial.desc software.raw
|
||||
${PERL} ${.CURDIR}/gencommercial.pl -s ${.CURDIR} -c software
|
||||
lint:
|
||||
${XMLLINT} --valid -o /dev/null ${.CURDIR}/consult.xml
|
||||
${XMLLINT} --valid -o /dev/null ${.CURDIR}/hardware.xml
|
||||
${XMLLINT} --valid -o /dev/null ${.CURDIR}/misc.xml
|
||||
${XMLLINT} --valid -o /dev/null ${.CURDIR}/software.xml
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
||||
|
|
|
@ -1,54 +0,0 @@
|
|||
# FreeBSD Commercial Gallery Category Description File.
|
||||
#
|
||||
# $FreeBSD: www/en/commercial/commercial.desc,v 1.7 2000/08/28 13:19:03 phantom Exp $
|
||||
|
||||
################################################################
|
||||
## CONSULTING CATEGORY DESCRIPTION
|
||||
################################################################
|
||||
|
||||
CATEGORY="CONSULTING" SHORT="Consulting" LONG="Consulting Services"
|
||||
|
||||
DEFAULT_SUBCAT="NAMERICA"
|
||||
|
||||
SUBCAT="NAMERICA" DESCRIPTION="North America"
|
||||
SUBCAT="SAMERICA" DESCRIPTION="South America"
|
||||
SUBCAT="EUROPE" DESCRIPTION="Europe"
|
||||
SUBCAT="ASIA" DESCRIPTION="Asia"
|
||||
SUBCAT="AFRICA" DESCRIPTION="Africa"
|
||||
SUBCAT="AUSTRALIA" DESCRIPTION="Australia"
|
||||
SUBCAT="NEWZEALAND" DESCRIPTION="New Zealand"
|
||||
|
||||
################################################################
|
||||
# HARDWARE CATEGORY DESCRIPTION
|
||||
################################################################
|
||||
|
||||
## HARDWARE does not have subcategories
|
||||
|
||||
CATEGORY="HARDWARE" SHORT="Hardware" LONG="Hardware Vendors"
|
||||
|
||||
|
||||
################################################################
|
||||
# MISC CATEGORY DESCRIPTION
|
||||
################################################################
|
||||
|
||||
## MISC does not have subcategories
|
||||
|
||||
CATEGORY="MISC" SHORT="Miscellaneous" LONG="Miscellaneous Vendors"
|
||||
|
||||
################################################################
|
||||
## SOFTWARE CATEGORY DESCRIPTION
|
||||
################################################################
|
||||
|
||||
CATEGORY="SOFTWARE" SHORT="Software" LONG="Software Vendors"
|
||||
|
||||
DEFAULT_SUBCAT="MISC"
|
||||
|
||||
SUBCAT="SYSADMIN" DESCRIPTION="System Administration / ISP"
|
||||
SUBCAT="SECURITY" DESCRIPTION="Security"
|
||||
SUBCAT="NETWORK" DESCRIPTION="Network Systems and Applications"
|
||||
SUBCAT="DATABASE" DESCRIPTION="Databases"
|
||||
SUBCAT="SCIENTIFIC" DESCRIPTION="Scientific and Language Tools"
|
||||
SUBCAT="MULTIMEDIA" DESCRIPTION="Multimedia"
|
||||
SUBCAT="MISC" DESCRIPTION="Miscellaneous"
|
||||
SUBCAT="DEV" DESCRIPTION="Development Tools"
|
||||
SUBCAT="ECOMMERCE" DESCRIPTION="E-Commerce Solutions and Tools"
|
|
@ -8,51 +8,40 @@
|
|||
<html>
|
||||
&header;
|
||||
|
||||
<p>
|
||||
The power, flexibility, and reliability of FreeBSD
|
||||
attract a wide variety of users and vendors.
|
||||
Below is a list of vendors offering commercial products, services,
|
||||
and/or consulting for FreeBSD.
|
||||
</p>
|
||||
<p>The power, flexibility, and reliability of FreeBSD attract a wide
|
||||
variety of users and vendors. Below is a list of vendors offering
|
||||
commercial products, services, and/or consulting for FreeBSD.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="consult_bycat.html">Consulting Services</a> Whether you
|
||||
are just starting out with FreeBSD, or need to complete a large
|
||||
project, hiring consultants might be your answer. You can see the
|
||||
<a href="consult.html">alphabetical</a> list, or, if you prefer,
|
||||
view it by <a href="consult_bycat.html">categories</a>.</li>
|
||||
|
||||
<li><a href="consulting_bycat.html">Consulting Services</a>
|
||||
Whether you are just starting out with FreeBSD, or need to complete
|
||||
a large project, hiring consultants might be your answer. You can
|
||||
see the <a href="consulting.html">alphabetical</a> list, or, if you
|
||||
prefer, view it by <a href="consulting_bycat.html">categories</a>.
|
||||
<p></p></li>
|
||||
<li><a href="hardware.html">Hardware Vendors</a> Need specialized
|
||||
tools, looking to buy a new desktop, or to fill a cage with rack
|
||||
mount servers that come with FreeBSD pre-installed? These
|
||||
companies may have what you need!</li>
|
||||
|
||||
<li><a href="hardware.html">Hardware Vendors</a>
|
||||
Need specialized tools, looking to buy a new desktop, or to fill a
|
||||
cage with rack mount servers that come with FreeBSD pre-installed?
|
||||
These companies may have what you need!
|
||||
<p></p></li>
|
||||
|
||||
<li><a href="misc.html">Miscellaneous Vendors</a>
|
||||
Books and accessories you just cannot live without!
|
||||
<p></p></li>
|
||||
|
||||
<li><a href="software_bycat.html">Software Vendors</a>
|
||||
From audio players, network drivers, to commercial databases,
|
||||
FreeBSD has a wide variety of industrial strength software
|
||||
available. You can see the <a
|
||||
href="software.html">alphabetical</a> list, or, if you prefer, view
|
||||
it by <a href="software_bycat.html">categories</a>.
|
||||
<p></p></li>
|
||||
<li><a href="misc.html">Miscellaneous Vendors</a> Books and
|
||||
accessories you just cannot live without!</li>
|
||||
|
||||
<li><a href="software_bycat.html">Software Vendors</a> From audio
|
||||
players, network drivers, to commercial databases, FreeBSD has a
|
||||
wide variety of industrial strength software available. You can
|
||||
see the <a href="software.html">alphabetical</a> list, or, if you
|
||||
prefer, view it by <a
|
||||
href="software_bycat.html">categories</a>.</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
If your company supports a FreeBSD related product, service,
|
||||
<p>If your company supports a FreeBSD related product, service,
|
||||
consulting, or support that should be added to this page, please
|
||||
send email to <a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a>
|
||||
and let us know! Submissions should be in HTML and a medium-sized
|
||||
paragraph in length. Please note that the inclusion of vendors in
|
||||
our list does not signify our endorsement of their products or
|
||||
services by the FreeBSD Project.
|
||||
</p>
|
||||
services by the FreeBSD Project.</p>
|
||||
|
||||
&footer;
|
||||
|
||||
|
|
1599
en/commercial/consult.xml
Normal file
1599
en/commercial/consult.xml
Normal file
File diff suppressed because it is too large
Load diff
121
en/commercial/consult_bycat.xsl
Normal file
121
en/commercial/consult_bycat.xsl
Normal file
|
@ -0,0 +1,121 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!-- Copyright (c) 2003 Josef El-Rayes <josef@FreeBSD.org>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="email" select="'freebsd-www'"/>
|
||||
<xsl:variable name="title" select="'Commercial Vendors'"/>
|
||||
|
||||
<xsl:output method="xml" encoding="iso-8859-1"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:template match="entries">
|
||||
<html>
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<p>The power, flexibility, and reliability of FreeBSD attract a wide
|
||||
variety of users and vendors. Here you will find vendors offering
|
||||
commercial products and/or services for FreeBSD.</p>
|
||||
|
||||
<p>For your convenience, we have divided our growing commercial listing
|
||||
into several sections. If your company supports a FreeBSD-compatible
|
||||
product or service that should be added to this page, please send
|
||||
email to <a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a>
|
||||
and let us know! Submissions should be in HTML and a medium-sized
|
||||
paragraph in length.</p>
|
||||
|
||||
<h2>Consulting Services</h2>
|
||||
|
||||
<p>This file has been divided into sub-categories for your convenience.
|
||||
The following shortcuts will take you to the proper gallery entries.</p>
|
||||
|
||||
<h3>Africa</h3>
|
||||
<xsl:for-each select="entry[@continent='africa']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Asia</h3>
|
||||
<xsl:for-each select="entry[@continent='asia']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Australia</h3>
|
||||
<xsl:for-each select="entry[@continent='australia']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Europe</h3>
|
||||
<xsl:for-each select="entry[@continent='europe']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>New Zealand</h3>
|
||||
<xsl:for-each select="entry[@continent='nzealand']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>North America</h3>
|
||||
<xsl:for-each select="entry[@continent='namerica']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>South America</h3>
|
||||
<xsl:for-each select="entry[@continent='samerica']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
<xsl:copy-of select="$footer"/>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="entry">
|
||||
<li><a href="consult.html#{@id}">
|
||||
<xsl:value-of select="name"/>
|
||||
</a></li>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/consulting.sgml,v 1.35 2001/07/13 12:52:12 dd Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Consulting">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY consulting SYSTEM "consulting.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Consulting Services</H2>
|
||||
|
||||
<P>This file has been indexed by alphabetic order for easy navigating.
|
||||
Should you wish to find a specific entry, please use the shortcuts
|
||||
below for quick access.</P>
|
||||
|
||||
&consulting;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/consulting_bycat.sgml,v 1.5 2002/03/16 08:12:35 murray Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Consulting">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY consultingbycat SYSTEM "consulting_bycat.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Consulting Services</H2>
|
||||
|
||||
<P>This file has been divided into sub-categories for your
|
||||
convenience. The following shortcuts will take
|
||||
you to the proper gallery entries.</P>
|
||||
|
||||
&consultingbycat;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
40
en/commercial/entries.dtd
Normal file
40
en/commercial/entries.dtd
Normal file
|
@ -0,0 +1,40 @@
|
|||
<!-- DTD for commercial gallery entries on the FreeBSD website. -->
|
||||
<!-- $FreeBSD$ -->
|
||||
|
||||
<!ELEMENT entries (cvs:keywords?, entry+)>
|
||||
|
||||
<!ELEMENT entry (name, url, description)>
|
||||
<!ATTLIST entry id ID #REQUIRED>
|
||||
<!ATTLIST entry continent (africa | asia | australia
|
||||
| europe | nzealand | namerica | samerica) #IMPLIED>
|
||||
|
||||
<!ATTLIST entry category (DATABASE | DEV | ECOMMERCE | EMAIL
|
||||
| MISC | MULTIMEDIA | NETWORK | SCIENTIFIC | SECURITY | SYSADMIN) #IMPLIED>
|
||||
|
||||
<!ELEMENT name (#PCDATA)>
|
||||
<!ELEMENT url (#PCDATA)>
|
||||
<!ELEMENT description (#PCDATA|a|b|i|tt|em|p|strong|img|ul)*>
|
||||
|
||||
<!-- misc HTML tags -->
|
||||
<!ELEMENT a (#PCDATA|img)*>
|
||||
<!ATTLIST a href CDATA #REQUIRED>
|
||||
|
||||
<!ELEMENT b (#PCDATA|a)*>
|
||||
<!ELEMENT i (#PCDATA|a)*>
|
||||
<!ELEMENT tt (#PCDATA|a)*>
|
||||
<!ELEMENT em (#PCDATA|a)*>
|
||||
<!ELEMENT p (#PCDATA|a)*>
|
||||
<!ELEMENT strong (#PCDATA|a)*>
|
||||
<!ELEMENT ul (li)*>
|
||||
<!ELEMENT li (#PCDATA|a)*>
|
||||
<!ELEMENT img (#PCDATA|a)*>
|
||||
<!ATTLIST img alt CDATA #IMPLIED>
|
||||
<!ATTLIST img src CDATA #REQUIRED>
|
||||
|
||||
<!-- common cvs tags -->
|
||||
<!ELEMENT cvs:keywords (cvs:keyword+)>
|
||||
<!ATTLIST cvs:keywords xmlns:cvs CDATA #FIXED 'http://www.FreeBSD.org/XML/CVS'>
|
||||
<!ATTLIST cvs:keywords version CDATA #FIXED '1.0'>
|
||||
|
||||
<!ELEMENT cvs:keyword (#PCDATA)>
|
||||
<!ATTLIST cvs:keyword name CDATA #REQUIRED>
|
81
en/commercial/entries.xsl
Normal file
81
en/commercial/entries.xsl
Normal file
|
@ -0,0 +1,81 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!-- Copyright (c) 2003 Josef El-Rayes <josef@FreeBSD.org>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="email" select="'freebsd-www'"/>
|
||||
<xsl:variable name="title" select="'Commercial Vendors'"/>
|
||||
<xsl:param name="pagename" select="''"/>
|
||||
|
||||
<xsl:output method="xml" encoding="iso-8859-1"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:template match="entries">
|
||||
<html>
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<p>The power, flexibility, and reliability of FreeBSD attract
|
||||
a wide variety of users and vendors. Here you will find
|
||||
vendors offering commercial products and/or services for
|
||||
FreeBSD.</p>
|
||||
|
||||
<p>For your convenience, we have divided our growing
|
||||
commercial listing into several sections. If your company
|
||||
supports a FreeBSD-compatible product or service that should
|
||||
be added to this page, please send email to <a
|
||||
href="mailto:www@FreeBSD.org">www@FreeBSD.org</a> and let us
|
||||
know! Submissions should be in HTML and a medium-sized
|
||||
paragraph in length.</p>
|
||||
|
||||
<h2><xsl:value-of select="$pagename"/></h2>
|
||||
|
||||
<xsl:for-each select="entry">
|
||||
<xsl:sort select="name" order="ascending"/>
|
||||
<a name="{@id}" href="{url}">
|
||||
<xsl:value-of select="name"/>
|
||||
</a><br/>
|
||||
<xsl:value-of select="description"/><br/><br/>
|
||||
</xsl:for-each>
|
||||
<xsl:copy-of select="$footer"/>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
|
@ -1,365 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
#######################################################################
|
||||
# gencommercial.pl -
|
||||
#
|
||||
# A utility to help create FreeBSD's commercial gallery SGML files.
|
||||
# Processes "raw" data kept as raw files, one ".raw" file for each
|
||||
# commercial category (currently consulting, hardware, misc, and
|
||||
# software). A description file (by default, ./commercial.desc)
|
||||
# contains the definitions for each of the categories and its
|
||||
# sub-categories.
|
||||
#
|
||||
# Depending upon the flags passed on the command line (-a or -c),
|
||||
# this program creates an include file with a list of entries either
|
||||
# sorted alphabetically (-a or default) or by (sub-)category (-c.)
|
||||
# There is also a verbose option good for debugging (-v). The out-
|
||||
# put is suitable for inclusion into the gallery SMGL files.
|
||||
#
|
||||
# XXX The -v (verbose) option currently does not exist.
|
||||
#
|
||||
# This utility outputs to a file called either (category).inc
|
||||
# or (category)_bycat.inc respective to the -a or -c option.
|
||||
#
|
||||
# Author: Ade Barkah (mbarkah@FreeBSD.ORG)
|
||||
#
|
||||
# (c) 1999 by The FreeBSD Project, Inc. All Rights Reserved.
|
||||
# This program is made available to the general public under
|
||||
# the "BSD-style copyright" terms of agreement.
|
||||
#
|
||||
# $FreeBSD: www/en/commercial/gencommercial.pl,v 1.6 2000/04/04 09:23:41 kuriyama Exp $
|
||||
|
||||
#######################################################################
|
||||
## Configuration Section
|
||||
#######################################################################
|
||||
|
||||
# The $description_file contains the definitions for each Category
|
||||
# and Sub-category.
|
||||
|
||||
$description_file = "commercial.desc";
|
||||
|
||||
# If you want to change the output file naming convention,
|
||||
# modify the two lines below.
|
||||
|
||||
$alpha_suffix = ".inc";
|
||||
$subcat_suffix = "_bycat.inc";
|
||||
|
||||
# IMPORTANT!
|
||||
# The program will only attempt to index by the following list.
|
||||
# In particular, if you have entries beginning with a character
|
||||
# other than ones listed here, you need modify this list.
|
||||
|
||||
@index_list = qw(A B C D E F G H I J K L M N O P Q R S T U V W X Y Z);
|
||||
|
||||
#######################################################################
|
||||
# You should not need to modify anything below this line.
|
||||
#######################################################################
|
||||
|
||||
require 5.001;
|
||||
|
||||
# Parse the command line
|
||||
|
||||
sub usage_exit {
|
||||
print STDERR "Usage: gencommercial.pl [-ac] [-s directory] category\n";
|
||||
exit (1);
|
||||
}
|
||||
|
||||
use Getopt::Long;
|
||||
|
||||
$good_result = GetOptions ("alphabetical" => \$opt_alpha,
|
||||
"categorical" => \$opt_cat,
|
||||
"sourcedir=s" => \$opt_srcdir);
|
||||
&usage_exit() if (not $good_result);
|
||||
&usage_exit() if (@ARGV != 1);
|
||||
$opt_alpha = 1 if (! $opt_alpha && ! $opt_cat ); # -a is default;
|
||||
$category = $ARGV[0];
|
||||
$srcdir = $opt_srcdir || ".";
|
||||
|
||||
#######################################################################
|
||||
# Now, we parse the description file.
|
||||
#
|
||||
# We iterate through each line in the .desc file until we find the
|
||||
# CATEGORY description matching the category specified on the command
|
||||
# line. If found, then we save its short and long descriptions and
|
||||
# continue iterating through the file, reading the CATEGORY's
|
||||
# SUBCAT descriptions (if any) and DEFAULT_SUBCAT (if any.) We
|
||||
# continue either until we find another CATEGORY header ($finish
|
||||
# is set) or until the end of the file.
|
||||
#
|
||||
# Formats:
|
||||
#
|
||||
# CATEGORY="category" SHORT="short_description" LONG="long_description"
|
||||
# SUBCAT="sub-category" DESCRIPTION="description"
|
||||
# DEFAULT_SUBCAT="sub-category"
|
||||
#
|
||||
# A '#' at the *beginning* of a line marks a comment.
|
||||
|
||||
if (open (DESC, "< $srcdir/$description_file") == 0)
|
||||
{
|
||||
print "ERROR: Unable to open $srcdir/$description_file file.\n";
|
||||
print "ERROR: $!. Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
$finish = 0;
|
||||
$in_cat = 0;
|
||||
while ((! $finish) && ($_ = <DESC>))
|
||||
{
|
||||
next if ((/^#/) || (/^$/)); # Skip comments and empty lines
|
||||
|
||||
if ( m{\s*CATEGORY\s*=\s*"\s*(.+)\s*" # $1 = CATEGORY
|
||||
\s*SHORT\s*=\s*"\s*(.+)\s*" # $2 = SHORT (description)
|
||||
\s*LONG\s*=\s*"\s*(.+)\s*" }xio ) # $3 = LONG (description)
|
||||
{
|
||||
if ($in_cat)
|
||||
{
|
||||
$finish = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
$short = $2;
|
||||
$long = $3;
|
||||
|
||||
if ($1 =~ /^($category)$/io) # category == the one we want?
|
||||
{
|
||||
$short_cat = $short; # Yes, save the descriptions
|
||||
$long_cat = $long;
|
||||
$in_cat = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
next if (! $in_cat);
|
||||
|
||||
if (/DEFAULT_SUBCAT\s*=\s*"\s*(.+)\s*"/)
|
||||
{
|
||||
$default_subcat = $1;
|
||||
}
|
||||
elsif ( m{\s*SUBCAT\s*=\s*"\s*(.+)\s*"
|
||||
\s*DESCRIPTION\s*=\s*"\s*(.+)\s*"}xio )
|
||||
{
|
||||
$subcat = $1;
|
||||
$subcat =~ tr/a-z/A-Z/; # Make uppercase
|
||||
$subcats{$1} = $2; # Store descriptions in hash
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
close (DESC);
|
||||
|
||||
# We've read in the file, so let's do some sanity checking. For example,
|
||||
# make sure the category is actually valid.
|
||||
|
||||
if ($in_cat == 0)
|
||||
{
|
||||
print "ERROR: Category $category is not in description file.\n";
|
||||
print "ERROR: Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
# If %subcats == 0, then this CATEGORY does not have any sub-categories,
|
||||
# which is fine. However, if $default_subcat is defined, but the subcat
|
||||
# doesn't actually exist, we scream and quit.
|
||||
|
||||
if (%subcats == 0)
|
||||
{
|
||||
if ($opt_cat)
|
||||
{
|
||||
print "ERROR: -c option specified, but category has no subcategories.\n";
|
||||
print "ERROR: Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
$default_subcat = "DEFAULT";
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($subcats{$default_subcat} eq "")
|
||||
{
|
||||
print "ERROR: Default subcategory $default_subcat has no description.\n";
|
||||
print "ERROR: Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
# Things look in order so far, so we'll read in the .raw file. Each
|
||||
# entry begins with a header that looks like below:
|
||||
#
|
||||
# <--! NAME="entry_name" CAT="entry_category" SUBCAT="sub-category"-->
|
||||
#
|
||||
# Anything before the first header is treated as comment, everything
|
||||
# else is treated as part of an entry. The $first_time flag below
|
||||
# marks if we've seen a header or not.
|
||||
#
|
||||
# In this version, the CATEGORY is actually determined by the name
|
||||
# of the .raw file, so it is not used.
|
||||
|
||||
if (open (RAW, "< ${srcdir}/${category}.raw") == 0)
|
||||
{
|
||||
print "ERROR: Unable to open ${srcdir}/${category}.raw file.\n";
|
||||
print "ERROR: $!. Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
$first_time = 1;
|
||||
$entry_text = "";
|
||||
while (<RAW>)
|
||||
{
|
||||
next if (/^$/);
|
||||
|
||||
if ( m{<!--\s*NAME\s*=\s*"\s*(.+)\s*" # $1 = NAME
|
||||
.*CAT
|
||||
.*SUBCAT\s*=\s*"\s*(.*)\s*" # $2 = SUBCAT
|
||||
\s*-->}xio )
|
||||
{
|
||||
if ($first_time == 0)
|
||||
{
|
||||
$entries {"$entry_name"} = "$entry_subcat|$entry_text";
|
||||
$entry_text = "";
|
||||
}
|
||||
$entry_name = $1;
|
||||
$entry_subcat = $2;
|
||||
$entry_subcat =~ tr/a-z/A-Z/;
|
||||
if ($subcats{$entry_subcat} eq "")
|
||||
{
|
||||
$entry_subcat = $default_subcat;
|
||||
}
|
||||
$first_time = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
$entry_text = "${entry_text}$_" if (not $first_time);
|
||||
}
|
||||
}
|
||||
if ($first_time == 0)
|
||||
{
|
||||
$entries {"$entry_name"} = "$entry_subcat|$entry_text";
|
||||
}
|
||||
|
||||
close (RAW);
|
||||
|
||||
#######################################################################
|
||||
# Generate alphabetical output if necessary. We first build a
|
||||
# $list_string containing a unique list of the first letters of
|
||||
# each entry. Then we compare this string to @index_list and
|
||||
# create the alphabetical index. Then we simply output the
|
||||
# entries in key sorted order.
|
||||
|
||||
if ($opt_alpha)
|
||||
{
|
||||
if (open (OUTFILE, "> ${category}${alpha_suffix}") == 0)
|
||||
{
|
||||
print "ERROR: Unable to open ${category}${alpha_suffix}.\n";
|
||||
print "ERROR: $!. Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
print OUTFILE "<!-- WARNING! THIS FILE IS MACHINE GENERATED -->\n";
|
||||
print OUTFILE "<!-- DO NOT EDIT BY HAND! -->\n\n";
|
||||
|
||||
# Build unique first-letter list
|
||||
|
||||
@index = ();
|
||||
$first_letter = "";
|
||||
$list_string = "";
|
||||
foreach $entry (sort keys %entries)
|
||||
{
|
||||
if ($first_letter ne substr($entry, 0, 1))
|
||||
{
|
||||
$first_letter = uc(substr($entry, 0, 1)); # Ignore case
|
||||
$list_string = "$list_string$first_letter";
|
||||
}
|
||||
}
|
||||
|
||||
# Output alphabetical index
|
||||
|
||||
print OUTFILE "<HR WIDTH=\"75%\">\n\n<CENTER>\n";
|
||||
foreach $letter (@index_list)
|
||||
{
|
||||
if ($list_string =~ /$letter/)
|
||||
{
|
||||
print OUTFILE "<A HREF=\"#LETTER_$letter\">$letter</A>\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
print OUTFILE "$letter\n";
|
||||
}
|
||||
}
|
||||
print OUTFILE "</CENTER>\n\n<HR WIDTH=\"75%\">\n\n";
|
||||
|
||||
# Output entries in key sort order, fold case
|
||||
|
||||
print OUTFILE "<UL>\n";
|
||||
$first_letter = "";
|
||||
foreach $entry (sort { uc($a) cmp uc($b); } keys %entries)
|
||||
{
|
||||
print OUTFILE "<LI>";
|
||||
if ($first_letter ne substr($entry, 0, 1))
|
||||
{
|
||||
$first_letter = substr($entry, 0, 1);
|
||||
print OUTFILE "\n<A NAME=\"LETTER_$first_letter\"></A>\n\n";
|
||||
}
|
||||
$link = $entry;
|
||||
$link =~ tr/ /_/;
|
||||
$text = $entries{$entry};
|
||||
$text =~ /\|(.*)$/os;
|
||||
print OUTFILE "<A NAME=\"$link\"></A>\n";
|
||||
print OUTFILE "$1<P></P></LI>\n\n";
|
||||
}
|
||||
print OUTFILE "</UL>\n";
|
||||
|
||||
# Ok, we're done.
|
||||
|
||||
close (OUTFILE);
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
# Generate output by category if necessary. We actually output an
|
||||
# index to the alphabetical HTML file, which we assume to be called
|
||||
# ${category}.html. The procedure is inefficient but simple. We use a
|
||||
# double-loop to iterate through each subcategory, and through each
|
||||
# entry, so we're looking at O(n^2). Considering the size of the
|
||||
# raw files, however, this method is still very fast.
|
||||
|
||||
if ($opt_cat)
|
||||
{
|
||||
if (open (OUTFILE, "> ${category}${subcat_suffix}") == 0)
|
||||
{
|
||||
print "ERROR: Unable to open ${category}${subcat_suffix}.\n";
|
||||
print "ERROR: $!. Exiting.\n";
|
||||
exit 1;
|
||||
}
|
||||
|
||||
print OUTFILE "<!-- WARNING! THIS FILE IS MACHINE GENERATED -->\n";
|
||||
print OUTFILE "<!-- DO NOT EDIT BY HAND! -->\n\n";
|
||||
|
||||
# The following sort is by description (VALUE), not KEY
|
||||
foreach $subcat (sort {uc($subcats{$a}) cmp uc($subcats{$b});} keys %subcats)
|
||||
{
|
||||
print OUTFILE "<A NAME=\"CATEGORY_$subcat\"></A>\n";
|
||||
print OUTFILE "<H3>$subcats{$subcat}</H3>\n\n<UL>\n";
|
||||
|
||||
# Here sorting by KEY is what we want.
|
||||
foreach $entry (sort { uc($a) cmp uc($b); } keys %entries)
|
||||
{
|
||||
$text = $entries {$entry};
|
||||
$text =~ /^\s*(.+)\s*\|(.*)/o;
|
||||
if ($1 eq $subcat)
|
||||
{
|
||||
$link = $entry;
|
||||
$link =~ tr/ /_/;
|
||||
print OUTFILE "<LI><A HREF=\"${category}.html#$link\">$entry</A></LI>\n";
|
||||
}
|
||||
}
|
||||
|
||||
print OUTFILE "</UL>\n\n";
|
||||
}
|
||||
|
||||
close (OUTFILE);
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
# Done!
|
||||
|
||||
exit 0;
|
|
@ -1,620 +0,0 @@
|
|||
# $FreeBSD: www/en/commercial/hardware.raw,v 1.66 2004/02/29 23:50:45 josef Exp $
|
||||
|
||||
<!-- NAME="ActiveWire Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.ActiveWireInc.com/"
|
||||
>ActiveWire Inc.</A></STRONG>
|
||||
provides an extremely flexible, USB-based I/O board
|
||||
that connects to buttons, switches, and LEDs,
|
||||
providing a simple API to read and write to the I/O pins on the board.
|
||||
The USB port is supported in
|
||||
<A HREF="http://www.FreeBSD.org">FreeBSD 4.0</A>, with native
|
||||
<A HREF="http://www.etla.net/~n_hibma/usb/usb.pl">USB support</A>.
|
||||
An additional EZ USB chip firmware downloader is
|
||||
available in the Ports Collection.
|
||||
|
||||
<!-- NAME="ADCOMTEC" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.adcomtec.com">ADCOMTEC</A></STRONG> specializes
|
||||
in providing high-performance, advanced communications and networking
|
||||
solutions. FreeBSD driver support is provided for a range of high-performance
|
||||
WAN adapters for ADSL, T1, E1, and Synchronous Serial (RS-232/V.35/X.21/EIA530)
|
||||
connectivity that support a number of downloadable protocol modules including
|
||||
ATM, Frame Relay, X.25, HDLC, SDLC, PPP, and SS7. For more information,
|
||||
contact <A HREF="mailto:info@adcomtec.com">info@adcomtec.com</A> or visit
|
||||
<A HREF="http://www.adcomtec.com">http://www.adcomtec.com</A>.
|
||||
|
||||
<!-- NAME="Advanced Computer and Network Management Corporation" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.acnc.com/"
|
||||
>Advanced Computer and Network Corporation</A></STRONG>
|
||||
Our site, dedicated to RAID (Redundant Array of Independent Disks) technology,
|
||||
features, an excellent, easy-to-understand, graphical RAID tutorial.
|
||||
We are a one-stop source for cost-effective, high-performance RAID arrays,
|
||||
SCSI switches, boosters, cables, fiber-optic extenders,
|
||||
and high-availability solutions.
|
||||
|
||||
<!-- NAME="ASA Computers" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.asacomputers.com/"
|
||||
>ASA Computers</A></STRONG>
|
||||
offers a wide range of performance-oriented servers, workstations,
|
||||
and networking products.
|
||||
We are experienced in quality configuration and support
|
||||
of FreeBSD, Linux, and other operating systems.
|
||||
Multiple-OS experience and knowledge are our strengths.
|
||||
We resell a variety of communication and networking products,
|
||||
including 3COM, Cisco, Cyclades, DIGI, Livingston, and U.S. Robotics.
|
||||
Please take a look at the pre-configured systems on our web page.
|
||||
Contact us at
|
||||
<A HREF="mailto:unix@asacomputers.com">unix@asacomputers.com</A>
|
||||
to configure them your own way or if you have questions or comments.
|
||||
|
||||
<!-- NAME="BIS, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.bisworld.com/"
|
||||
>BIS, Inc.</A></STRONG>
|
||||
specializes in Internet- and Intranet-networking servers, running FreeBSD.
|
||||
We custom design and construct high-performance servers to fill any need.
|
||||
BIS also provides IS Support, network administration and management,
|
||||
training, Internet connectivity, corporate-wide e-mail gateways,
|
||||
domain name registration and hosting, web site development, and more.
|
||||
Please send e-mail to
|
||||
<A HREF="mailto:info@bisworld.com">info@bisworld.com</A> or visit
|
||||
<A HREF="http://www.bisworld.com/">http://www.bisworld.com</A>.
|
||||
|
||||
<!-- NAME="catpipe Systems" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.catpipe.net/"
|
||||
>catpipe Systems ApS</A></STRONG>
|
||||
provides managed services and support contracts for FreeBSD,
|
||||
implemented on rackmountable servers preloaded with FreeBSD.
|
||||
|
||||
<!-- NAME="Computer Access Technology Corporation" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.catc.com/"
|
||||
>CATC</A></STRONG> -
|
||||
Computer Access Technology Corporation,
|
||||
popularly called CATC ("cat-see"),
|
||||
is the world's leading supplier of development and test tools
|
||||
for the Universal Serial Bus (USB) and IEEE 1394 (FireWire[tm])
|
||||
serial communication standards.
|
||||
The company also offers a variety of peripheral devices,
|
||||
including a USB-to-Ethernet interface and the industry's first USB hub.
|
||||
|
||||
<!-- NAME="Coyote Point Systems" CAT="HARDWARE" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.coyotepoint.com/"
|
||||
>Coyote Point Systems</A></STRONG> offers the
|
||||
<A HREF="http://www.coyotepoint.com/equalizer.shtml">Equalizer</A>
|
||||
Load Balancing Appliance.
|
||||
Equalizer distributes client UDP/TCP requests to multiple server machines
|
||||
and includes load balancing, server failure detection/correction,
|
||||
and an easy-to-use administrative interface.
|
||||
Capable of handling over 20,000 HTTP GET operations per minute,
|
||||
Equalizer enhances the Scalability, Availability and Manageability
|
||||
of any server cluster.
|
||||
Equalizer works with all standard protocols, including:
|
||||
HTTP, FTP, POP, SMTP, DNS, etc.
|
||||
Equalizer is based on the FreeBSD kernel.
|
||||
|
||||
<!-- NAME="Cyclades Corporation" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.cyclades.com/"
|
||||
>Cyclades Corporation</A></STRONG>
|
||||
sells a variety of high performance, multiport serial cards
|
||||
which FreeBSD supports directly in its standard releases.
|
||||
|
||||
<!-- NAME="DAVICOM Semiconductor, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.davicom.com.tw/"
|
||||
>DAVICOM Semiconductor, Inc.</A></STRONG>
|
||||
designs, develops, and markets
|
||||
cost-effective integrated circuit (IC) solutions
|
||||
for mainstream networking and communications applications.
|
||||
DAVICOM is one of the leading suppliers of Local Area Network (LAN)
|
||||
and Wide Area Network (WAN) chip sets
|
||||
to international original equipment manufactures (OEMs)
|
||||
of networking and communications equipment.
|
||||
<P>
|
||||
The current products of DAVICOM Semiconductor, Inc.
|
||||
that will support the FreeBSD driver are
|
||||
DM9102 (10M/100M PCI Fast Ethernet single chip),
|
||||
DM9102A (3.3 volts Low Power10M/100M PCI Fast Ethernet single chip),
|
||||
DM9101 (10M/100M PCI Fast Ethernet PHY chip,
|
||||
included into DM9102 single chip),
|
||||
DM9131 (3.3 volts Low Power10M/100M PCI Fast Ethernet PHY chip,
|
||||
included into DM9102A single chip)
|
||||
and DM9801 (1M8 Home PNA PHY chip).
|
||||
</P>
|
||||
<P>
|
||||
Please visit <A HREF="http://www.davicom.com.tw">our web site</A>
|
||||
for more information about our company.
|
||||
</P>
|
||||
|
||||
<!-- NAME="Digital Networks United Kingdom" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.dnuk.com"
|
||||
>Digital Networks</A></STRONG>
|
||||
is one of the UK's leading supplier
|
||||
of desktops, workstations, and servers
|
||||
designed and optimized for the FreeBSD and Linux operating systems.
|
||||
From scientific to e-commerce applications,
|
||||
our products can be used as building blocks to create complete solutions.
|
||||
All products are built to order and can be purchased online
|
||||
from the company's web site
|
||||
at <a href="http://www.dnuk.com">www.dnuk.com</a>.
|
||||
|
||||
<!-- NAME="Emerging Technologies" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.etinc.com/"
|
||||
>Emerging Technologies, Inc.</A></STRONG>
|
||||
has high-speed serial-communications adapters,
|
||||
allowing FreeBSD systems to connect directly to leased lines
|
||||
at speeds from 56k to T1/E1.
|
||||
ET drivers support up to 16 T1/E1 lines on a single FreeBSD-based PC.
|
||||
The adapters include a complete set of drivers and utilities
|
||||
that allow a FreeBSD machine to communicate directly
|
||||
with virtually any IP router via synchronous PPP, Frame Relay, X.25,
|
||||
and directly to Cisco brand routers with Cisco serial encapsulation.
|
||||
Full documentation and support are included.
|
||||
Hardware choices are available for both ISA and PCI buses,
|
||||
ranging from an economical single-port ISA adapter
|
||||
to a four T1/E1 port PCI card with four dedicated 25MHz processors on-board.
|
||||
To contact Emerging Technologies, send E-mail to
|
||||
<A HREF="mailto:info@etinc.com">info@etinc.com</A>.
|
||||
|
||||
<!-- NAME="Enterprise Systems and Solutions" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.enterprisess.com/"
|
||||
>Enterprise Systems and Solutions</A></STRONG>
|
||||
builds high quality, customized systems,
|
||||
fully loaded and configured with FreeBSD for intranet/internet
|
||||
server and workstation use, at a competitive price.
|
||||
We also sell LAN/WAN products
|
||||
(from CISCO, 3COM, Livingston, SDL Comm, Digi, and more) and provide service.
|
||||
Please email us at
|
||||
<A HREF="mailto:info@enterprisess.com">info@enterprisess.com</A> or
|
||||
<A HREF="http://www.enterprisess.com/">visit our web site</A>.
|
||||
|
||||
<!-- NAME="Essenz Consulting" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.essenz.com"
|
||||
>Essenz Consulting</A></STRONG>
|
||||
is a leading provider of high-performance rackmount server equipment.
|
||||
All of our <A HREF="http://www.essenz.com/servers/index.html">servers</A>
|
||||
feature dual processor capability, dual onboard networking,
|
||||
high-capacity memory support, and integrated video.
|
||||
From 1U Hot-Swap SCSI systems
|
||||
to 2U Hot-Swap 64-bit SCSI RAID with 2x300W Hot-Swap Power Supply,
|
||||
all Essenz Servers can be custom configured with immediate online pricing.
|
||||
For more information, visit us
|
||||
<A HREF="http://www.essenz.com">online</A>
|
||||
or call our 24/7 Sales and Support department at 1-800-248-1736.
|
||||
|
||||
<!-- NAME="FreeBSD Systems" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.freebsdsystems.com">FreeBSD Systems</A></STRONG>
|
||||
- <STRONG>The Power To Serve</STRONG>™ is so true with an iNET® Server.
|
||||
We manufacture and <EM>customize</EM> 1U to 7U Rackmount Servers utilizing
|
||||
Intel Processors ranging from Xeon MP to Celeron, from single processing
|
||||
to quad and 8-Way Systems. Every Server is fully customized to our clients
|
||||
requirements including the installation of FreeBSD. iNET Servers are available
|
||||
in ATA and SCSI configurations. Looking for Direct Attached Storage? Check
|
||||
out the iSTOR6000, with data capacity of up to 7 Tera Bytes.
|
||||
<P>
|
||||
Since 1999, FreeBSD Systems has been providing high performance Rackmount
|
||||
Servers and Storage Systems to clients ranging from start-up Web Hosting Companies to
|
||||
Fortune 500 Companies to Federal Government Departments. We offer On-Site
|
||||
hardware warranty support to all of North America, Mexico and, Puerto Rico.
|
||||
Visit our web site <a href="http://www.FreeBSDsystems.com">http://www.FreeBSDsystems.com</a>
|
||||
or call us toll free at 1.877.963.1900.
|
||||
|
||||
<!-- NAME="Freedom Technologies Corporation" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.FreeBSDsystems.COM/"
|
||||
>Freedom Technologies Corporation</A></STRONG>
|
||||
offers businesses a total solution to Server systems.
|
||||
All our servers are based on the business needs of our customers.
|
||||
Each server is custom designed, both in terms of the hardware and the
|
||||
operating system, as well as the applications to be run.
|
||||
<p>
|
||||
FreedomTC delivers to its customers, server(s) that will do the task(s)
|
||||
at the highest level of performance.
|
||||
FreedomTC only uses the highest quality of hardware for any system we design.
|
||||
FreedomTC also includes its Net@dmin [TM] service for 1 year.
|
||||
<p>
|
||||
Our servers work extremely well with customer's workstations,
|
||||
using Windows or Macintosh for file and print sharing.
|
||||
<p>
|
||||
Please call us at our toll free telephone number, 1-877-963-1900.
|
||||
|
||||
<!-- NAME="Gallantry Technologies, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.gallantry.com/"
|
||||
>Gallantry Technologies Inc.</A></STRONG>
|
||||
offers a business broadband gateway for small- to medium-sized businesses.
|
||||
Our products are focused on offering an easy-to-use product
|
||||
that provides multiple services routing, firewall, e-mail, web server,
|
||||
DHCP, NAT, FTP, DNS, and print server.
|
||||
All these features can be accessed via an easy-to-use web interface.
|
||||
<p>
|
||||
The GallantWEB-100 is an affordable and easy-to-use business broadband gateway
|
||||
that is ideal for connecting small and medium offices to the Internet
|
||||
via any broadband connection including xDSL, Cable, Frame Relay/T1, or ISDN.
|
||||
<p>
|
||||
The GallantWEB-200 is the industry's first business broadband gateway
|
||||
to include a built-in SDSL router.
|
||||
This innovative one-box solution makes it easy for DSL service providers
|
||||
to deploy and manage.
|
||||
|
||||
<!-- NAME="GND Distribution, Ltd." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.gnd.com/"
|
||||
>GND Distribution, Ltd.</A></STRONG>,
|
||||
a London, UK-based company, specializes in bespoke computer systems
|
||||
for FreeBSD and Linux.
|
||||
All GND computer systems are built to order,
|
||||
using only top-quality components.
|
||||
Our build quality is second to none.
|
||||
Systems are supplied configured and optimized to our customer's requirements.
|
||||
We also supply a large range of system components,
|
||||
including ASUSTeK mainboards,
|
||||
which are popular within the FreeBSD and Linux communities.
|
||||
|
||||
|
||||
<!-- NAME="Hewlett_Packard" CAT="hardware" SUBCAT="" -->
|
||||
<strong><a href="http://www.hp.com/">Hewlett-Packard</a></strong>
|
||||
sells Proliant BL10e blade servers that are compatible with FreeBSD.
|
||||
280 blades can fit within in a 42U rack, offering superior
|
||||
density, computing power and management for all front-end and cluster
|
||||
applications.
|
||||
|
||||
<!-- NAME="HighPoint Technologies, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.highpoint-tech.com/"
|
||||
>HighPoint Technologies, Inc.</A></STRONG>
|
||||
is an ASIC design company specialized in the storage management area.
|
||||
Its technical expertise covers ATAPI/USB/1394 interfaces.
|
||||
The principle products are a series of UDMA/ATA RAID Controllers.
|
||||
|
||||
<!-- NAME="iMimic Networking, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.imimic.com/"
|
||||
>iMimic Networking, Inc.</A></STRONG>
|
||||
offers the <A HREF="http://www.imimic.com/">DataReactor</A> family
|
||||
of Web-cache appliances.
|
||||
The DataReactor family leads the caching industry in price/performance,
|
||||
from an aggressively priced entry-level caching appliance to a
|
||||
high-end caching appliance at mid-level prices.<BR>
|
||||
The FreeBSD-based
|
||||
<A HREF="http://www.imimic.com/indexd746.html">DataReactor Core software</A>
|
||||
includes management features such as SNMP monitoring support,
|
||||
Common Logfile Format logging, and Web-based or console-based configuration.
|
||||
Please send mail to <A HREF="mailto:info@imimic.com">info@imimic.com</A>
|
||||
for more information.
|
||||
|
||||
<!-- NAME="INetU Dedicated Managed Hosting" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.inetu.net/">
|
||||
INetU Dedicated Managed Hosting</A></STRONG> are one of the top rated hosting
|
||||
firms focused on dedicated managed hosting, INetU provides managed dedicated
|
||||
FreeBSD servers, along with firewalls, load balancing, advanced monitoring
|
||||
and data backup services. They offer more free tech support than most other
|
||||
hosts and have a lucrative partner program for consultants and developers.
|
||||
|
||||
<!-- NAME="Introspective Technologies USA" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.itechusa.net/"
|
||||
>Introspective Technologies USA</A></STRONG>
|
||||
delivers networking solutions
|
||||
with high powered servers and workstations
|
||||
pre-installed with choice of operating systems, including FreeBSD.
|
||||
|
||||
<!-- NAME="Iron Systems" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.ironsystems.com/">Iron Systems</A></STRONG>,
|
||||
located in San Jose, California, is a provider of high-density
|
||||
rack-mount Internet systems, low cost hosting solutions and OEM
|
||||
integration services. System solutions are either built-to-order
|
||||
iServers with custom-configured hardware, OS, kernel and applications;
|
||||
or a set of pre-configured network infrastructure iEngines and
|
||||
iClusters, specially designed to deliver a dedicated application. Iron
|
||||
Systems backs all solutions with world-class technical support for
|
||||
FreeBSD and Linux.
|
||||
<P>
|
||||
Our team at an average has over 10 years of experience in building
|
||||
BSD-based systems. We understand that our servers run your
|
||||
mission-critical applications - that's why we use only the highest
|
||||
quality components and test all systems in advance. We are confident
|
||||
that you will appreciate our approach. Give us an opportunity to serve
|
||||
you! Please send us email at <a
|
||||
href="mailto:info@ironsystems.com">info@ironsystems.com</a> or call
|
||||
1-800-921-IRON.
|
||||
|
||||
<!-- NAME="Itautec Philco" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://itautecamerica.com/"
|
||||
>Itautec Philco</A></STRONG>
|
||||
is one of Brazil's leading IT products manufacturers
|
||||
and one the leaders in the Brazilian Market and significant market share
|
||||
in Portugal, Uruguay and Argentina.
|
||||
Products such as the Infoway and the InfoServer are fully compatible
|
||||
with FreeBSD, Linux, and other Operating Systems.
|
||||
Itautec Philco also manufactures Banking and Retail Automation products,
|
||||
as well as Consumer Electronics products.
|
||||
We provide complete solutions for our customers,
|
||||
from Infrastructure (such as LAN) to software applications,
|
||||
to Web development and hosting services, to call-center services.
|
||||
|
||||
<!-- NAME="KYTEX Computers Ltd" CAT="HARDWARE" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.kytex.bg/"
|
||||
>KYTEX Computers Ltd</A></STRONG>
|
||||
offers K-SERVER family of pre-installed xBSD and Linux Internet appliances.
|
||||
K-SERVER product line include small footprint all-in-one solutions
|
||||
for small to middle networks
|
||||
and rackmount servers for ISP/ASP and corporate networks.
|
||||
All-in-one solutions provides Internet access
|
||||
via dial-up, leased lines, xDSL, wireless technology
|
||||
and offer filesharing for Windows and MacOS workstations
|
||||
across the network at no additional cost,
|
||||
users WEB-, Mail-, Firewall-, DNS-server applications
|
||||
started and partially configured for easy integration
|
||||
in any existing networks.
|
||||
K-SERVER setup and management is very simple -
|
||||
just start any browser on your workstation
|
||||
and follow the setup instructions and menus.
|
||||
If you have any questions or proposals, please e-mail us.
|
||||
|
||||
<!-- NAME="MOXA" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.moxa.com/"
|
||||
>MOXA</A></STRONG>
|
||||
makes attractively priced multi-port serial cards
|
||||
which are compatible with FreeBSD's <EM>sio</EM> serial driver.
|
||||
The C104 / C168 family of 2/4/8 serial port cards
|
||||
features custom ASIC design, speeds up to 921.6Kbps,
|
||||
surge protection, independent and software-configurable I/O ports and IRQs.
|
||||
|
||||
<!-- NAME="Neturn Corp." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://neturn.sinacity.com/netserv/"
|
||||
>Neturn Corp</A></STRONG>.,
|
||||
based in Vancouver, Canada,
|
||||
provides complete solutions
|
||||
on selective and fine-tuned hardware and software
|
||||
(BSDs as primary server OSs) platforms to meet the
|
||||
<STRONG>demand from e-commerce, telecom, manufacturing, industrial,
|
||||
aerospace, medical applications where stability and reliability
|
||||
are mandatory</STRONG>.
|
||||
For detailed information, please visit
|
||||
<A HREF="http://neturn.sinacity.com/netserv/"
|
||||
>http://neturn.sinacity.com/netserv</A>.
|
||||
|
||||
<!-- NAME="NetWolves Corporation" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.netwolves.com"
|
||||
>NetWolves Corporation</A></STRONG>
|
||||
produces the FoxBox line
|
||||
of Multi-services Internet Communications Gateway systems.
|
||||
These Internet Access Devices offer a three stage firewall,
|
||||
unlimited e-mail, site hosting, filtered browsing, web and DNS caching,
|
||||
DHCP for ease of set up, file sharing/serving, e-mail archiving,
|
||||
and a series of productivity enhancing reports - cost effectively.
|
||||
The FoxBox OS is based on FreeBSD.
|
||||
Bandwidth options range from V.90 modems
|
||||
to T-1, cable modems, and DSL speeds.
|
||||
The FoxBox provides Internet access for between 8 and 1000 users
|
||||
on one or more LANs
|
||||
and is available internationally through our VAR reseller network.
|
||||
Visit <A HREF="http://www.netwolves.com/">our site</A>
|
||||
for more information or contact us by
|
||||
<A HREF="mailto:sales@netwolves.com">email</A>.
|
||||
|
||||
<!-- NAME="Offmyserver" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.offmyserver.com/"
|
||||
>Offmyserver</A></STRONG>
|
||||
offers state-of-the-art Internet Server Systems,
|
||||
Internet Appliance Platforms, RAID solutions, Multi-boot Workstations,
|
||||
LAN/WAN products, and peripherals at competitive prices.
|
||||
We'll help you find the right system hardware -
|
||||
configure, price, build, AND test it with BSD operating systems.
|
||||
If that's not enough,
|
||||
we'll even bend sheet metal to suit your identity.
|
||||
That's what you get when the company that sells you the complete system
|
||||
is also the one that custom builds it for you.
|
||||
We use only the best quality components
|
||||
and do the required testing in advance -
|
||||
knowing that you are going to run your mission-critical applications
|
||||
on our servers.
|
||||
We are confident that you will appreciate our approach -
|
||||
give us an opportunity to serve you!
|
||||
Send us an email at
|
||||
<A HREF="mailto:info@offmyserver.com">info@offmyserver.com</A>.
|
||||
|
||||
<!-- NAME="Open Systems Networking & Consulting" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://open-systems.net/"
|
||||
>Open Systems Networking & Consulting</A></STRONG>
|
||||
specializes in FreeBSD-based high-performance LAN/WAN solutions.
|
||||
We keep our solutions as open to scalability and future expansion as possible.
|
||||
We offer LAN/WAN video conferencing solutions, custom built applications,
|
||||
security services including firewalls and encryption,
|
||||
Internet connectivity, and high-performance secure web servers.
|
||||
We custom build our networks around the clients' current and future needs.
|
||||
We offer complete turnkey solutions with our networks,
|
||||
from the installation and configuration
|
||||
to the wiring and termination of fiber optic cable and Cat 5.
|
||||
Don't lock yourself into a proprietary solution;
|
||||
use an OPEN network from open systems!
|
||||
For more information, please send email to
|
||||
<A HREF="mailto:opsys@open-systems.net">opsys@open-systems.net</A> or
|
||||
<A HREF="http://open-systems.net/">visit our web site</A>.
|
||||
|
||||
<!-- NAME="PCW Microsystems, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.rackmount.com/"
|
||||
>PCW Microsystems, Inc.</A></STRONG>
|
||||
offers rackmount workstations and servers,
|
||||
optimized for the FreeBSD operating system.
|
||||
We carry full line of rackmount chassis, RAID, WAN, and LAN products
|
||||
for FreeBSD OS.
|
||||
Please <A HREF="http://www.rackmount.com/">visit our web site</A>
|
||||
for more information or send us an e-mail at
|
||||
<A HREF="mailto:sales@pcwnet.com">sales@pcwnet.com</A>
|
||||
|
||||
<!-- NAME="PSSC Labs" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.pssclabs.com/"
|
||||
>PSSC Labs</A></STRONG>
|
||||
provides custom configured computer solutions
|
||||
to meet any budget or specification.
|
||||
Visit our website to build your computer just the way you want it,
|
||||
including hard-drive partitioning and operating system setup.
|
||||
|
||||
<!-- NAME="R and D Associates, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.RnDAssociates.com/"
|
||||
>R & D Associates, Inc.</A></STRONG>
|
||||
developed ServeTheWeb.com
|
||||
utilizing FreeBSD running Apache.
|
||||
We employed consulting services from
|
||||
<A HREF="mailto:phk@FreeBSD.org">Poul-Henning Kamp</A>
|
||||
to develop our Virtual Server solution
|
||||
(which is now available in <A HREF="http://www.FreeBSD.org">FreeBSD</A> 4.0).
|
||||
<P>
|
||||
<A HREF="http://ServeTheWeb.com/">ServeTheWeb.com</A>
|
||||
is our System Admin level of Virtual Servers.
|
||||
Please visit <A HREF="http://www.ServeTheWeb.com/">www.ServeTheWeb.com</A>
|
||||
for additional information on this product.
|
||||
</P>
|
||||
<P>
|
||||
R & D Associates, Inc. is an application development firm,
|
||||
specializing in client/server designs.
|
||||
We use FreeBSD, running Apache and utilizing PHP's and MySQL
|
||||
(As well as NT with ASP's and SQL/Access).
|
||||
</P>
|
||||
|
||||
<!-- NAME="Sangoma Technologies, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.sangoma.com/"
|
||||
>Sangoma Technologies Inc.</A></STRONG>
|
||||
offers the WANPIPE™ range
|
||||
of high speed intelligent communication adapters
|
||||
that support a number of downloadable protocol modules
|
||||
including PPP, Frame Relay and X.25.
|
||||
The cards are available with RS-232/V.35/X.21/EIA530 interfaces
|
||||
or an on board T1 or Fractional T-1 CSU/DSU.
|
||||
All of our FreeBSD and Linux code is distributed
|
||||
under the GNU Public License (GPL) in source code form.
|
||||
The FreeBSD PPP driver and utilities for Sangoma WANPIPE™ kits
|
||||
are available for download at
|
||||
<A HREF="ftp://ftp.sangoma.com/FreeBSD">ftp.sangoma.com/FreeBSD</A>.
|
||||
Frame Relay and X.25 support will follow shortly.
|
||||
|
||||
<!-- NAME="SBE" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.sbei.com/"
|
||||
>SBE</a></STRONG>
|
||||
specializes in providing high-performance,
|
||||
advanced communications and networking solutions
|
||||
for CompactPCI-, PCI-, and PMC-based applications.
|
||||
FreeBSD driver support is provided
|
||||
for a range of high-performance WAN adapters,
|
||||
providing connectivity for Synchronous Serial, T1/E1, DS3/T3, and HSSI.
|
||||
For more information, contact
|
||||
<A HREF="mailto:info@sbei.com">info@sbei.com</A> or visit
|
||||
<A HREF="http://www.sbei.com/">http://www.sbei.com</A>.
|
||||
|
||||
<!-- NAME="Sera Systems" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.serasystems.com"
|
||||
>Sera Systems</A></STRONG>
|
||||
is a manufacturer of xBSD-based servers and workstations.
|
||||
Sera Systems was formed to address the security needs
|
||||
of Internet-connected businesses
|
||||
by helping develop, setup, and support network infrastructure computers
|
||||
with reliable, proactively-secure free software.
|
||||
Sera Systems products include
|
||||
the SeraBox, a low-cost, multi-function server,
|
||||
the SeraVPN, a dedicated virtual private network server,
|
||||
and a line of customizable servers based on choice of xBSD.
|
||||
Sera Systems offers with all products a value-added preconfiguration service
|
||||
which is designed to help customers implement specific network applications
|
||||
using xBSD and be up and running as quickly as possible.
|
||||
For more information please
|
||||
<A HREF="http://www.serasystems.com">visit our web site</A>
|
||||
or e-mail <A HREF="mailto:sales@serasystems.com">sales@serasystems.com</A>.
|
||||
|
||||
<!-- NAME="Perle Specialix" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.perle.com/"
|
||||
>Perle Specialix</A></STRONG>
|
||||
makes a wide variety of multi-port async serial expansion products.
|
||||
The ISA, EISA, and PCI SI/XIO host cards work under FreeBSD,
|
||||
using the <EM>si</EM> driver.
|
||||
|
||||
<!-- NAME="Stallion Technologies, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.stallion.com/"
|
||||
>Stallion Technologies, Inc.</A></STRONG>
|
||||
offers a range of multiport serial boards
|
||||
for the ISA, EISA, MCA and PCI buses.
|
||||
Although Stallion does not officially support drivers for FreeBSD,
|
||||
there is an unsupported, freely available driver available from their <A
|
||||
HREF="ftp://ftp.stallion.com/drivers/unsupported/freebsd/stalbsd-0.0.5.tar.gz"
|
||||
>FTP site</A>.
|
||||
This driver supports the Stallion <EM>EasyIO</EM> and <EM>EasyConnection
|
||||
8/32</EM> multiport boards.
|
||||
For local pricing and availability information,
|
||||
contact Stallion via their <A HREF="http://www.stallion.com/">WWW page</A>.
|
||||
|
||||
<!-- NAME="StoreAnyWhere.com" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://StoreAnyWhere.com/"
|
||||
>StoreAnyWhere.com</A></STRONG>
|
||||
offers a wide range of high-performance and cost-effective
|
||||
quad- and dual-processor servers, workstations, and networking products
|
||||
with FreeBSD and Linux as their operating systems.
|
||||
Just go to our website for servers in a variety of configurations
|
||||
or custom-made systems.
|
||||
|
||||
<!-- NAME="SW Technology" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://freebsd.swt.com/"
|
||||
>SW Technology</A></STRONG>
|
||||
offers quality Pentium machines with FreeBSD pre-installed.
|
||||
|
||||
<!-- NAME="Synetic, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.synetic.net/"
|
||||
>Synetic Inc.</A></STRONG>
|
||||
is a Canadian and North American distributor
|
||||
for IDE-to-IDE, SCSI-to-IDE and SCSI-to-SCSI RAID controllers,
|
||||
supporting the FreeBSD platform.
|
||||
Our products can be found at
|
||||
<A HREF="http://www.synetic.net/prodman.htm"
|
||||
>www.synetic.net/prodman.htm</A> or
|
||||
<A HREF="http://www.synetic.net/prodspec.htm"
|
||||
>www.synetic.net/prodspec.htm</A>
|
||||
|
||||
<!-- NAME="Tegatai Systems" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.tegatai.com/">Tegatai Systems</A></STRONG>
|
||||
develops software and networking products and services using FreeBSD
|
||||
and Linux-based open-source software.
|
||||
|
||||
<!-- NAME="Ten 26" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.ten26.com/">Ten 26</A></STRONG>
|
||||
Enterprises is your source for high performance, fault tolerant
|
||||
FreeBSD workstations and servers. Choose a pre-configured
|
||||
package or create your own custom machine from our list of well-tested
|
||||
components. All machines carry a 2 year warranty. For more
|
||||
information, visit <A HREF="http://www.ten26.com/">Ten 26</A> or
|
||||
e-mail <A HREF="mailto:info@ten26.com">info@ten26.com</A>.
|
||||
|
||||
<!-- NAME="TeraSolutions, Inc." CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.terasolutions.com/"
|
||||
>TeraSolutions, Inc.</A></STRONG>
|
||||
is a manufacturer of high-reliability, high-performance rack-mount
|
||||
Internet server and RAID storage systems
|
||||
which are specifically designed and built
|
||||
for the best operation with FreeBSD.
|
||||
Our servers come with FreeBSD pre-installed and tuned
|
||||
for high-traffic Internet server applications.
|
||||
TeraSolutions was founded by FreeBSD co-founder David Greenman
|
||||
and has built some of the highest-traffic Internet servers in the world.
|
||||
Please <A HREF="http://www.terasolutions.com/">visit our web site</A>
|
||||
or contact us directly at +1 503 288 9544 for more information.
|
||||
|
||||
<!-- NAME="TPC IT Pty, Ltd" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.tpcit.com.au/">TPC IT Pty, Ltd</A></STRONG>
|
||||
is Authorized Australian Cyclades Distributor. We have just set up an
|
||||
online discussion group for Cyclades customers and anyone wishing to
|
||||
know about the product. Visit our <A HREF="http://www.tpcit.com.au/">web
|
||||
site</A> for details.
|
||||
|
||||
<!-- NAME="Znyx" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.znyx.com/"
|
||||
>Znyx Corporation</A></STRONG>
|
||||
specializes in high-availability, high-performance,
|
||||
single and multi-channel Fast Ethernet adapters
|
||||
for PCI, CompactPCI, and PCI Mezzanine Connector (PMC).
|
||||
FreeBSD, Linux, QNX, NetWare, OS/2, and SCO Unixware
|
||||
are supported on virtually all products.
|
||||
|
||||
<!-- NAME="NCS Technologies" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.ncsapp.com/">NCS Technologies</A></STRONG>
|
||||
offers "NCS Swift Appliance Partner Program (NCSAPP)"
|
||||
for Independent Software Vendors (ISVs) and other OEMs. Under this
|
||||
program, NCS develops "turn-key" server appliances for its ISV partners
|
||||
by bundling their appliance software with its own hardware platforms.
|
||||
These appliance hardware platforms are built using the latest industry
|
||||
standard chipsets and components and can run FreeBSD based applications.
|
||||
|
||||
<!-- NAME="ERACKS" CAT="hardware" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://eracks.com/">eRacks Open Source Systems</A></STRONG>
|
||||
is a leading provider of open source solutions. The company features
|
||||
its own line of rackmount computer servers, desktops, and laptops
|
||||
and offers a wide array of services including open source
|
||||
enterprise migration, security, and network architecture services.
|
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/hardware.sgml,v 1.32 2001/07/13 12:52:12 dd Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Hardware">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY hardware SYSTEM "hardware.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Hardware Vendors</H2>
|
||||
|
||||
<P>This file has been indexed by alphabetic order for easy navigating.
|
||||
Should you wish to find a specific entry, please use the shortcuts
|
||||
below for quick access.</P>
|
||||
|
||||
&hardware;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
695
en/commercial/hardware.xml
Normal file
695
en/commercial/hardware.xml
Normal file
|
@ -0,0 +1,695 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE entries SYSTEM "entries.dtd">
|
||||
|
||||
<entries>
|
||||
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
|
||||
<cvs:keyword name="freebsd">
|
||||
$FreeBSD$
|
||||
</cvs:keyword>
|
||||
</cvs:keywords>
|
||||
|
||||
<entry id="ActiveWire">
|
||||
<name>ActiveWire Inc.</name>
|
||||
<url>http://www.ActiveWireInc.com/</url>
|
||||
<description>
|
||||
ActiveWire Inc. provides an extremely flexible, USB-based I/O board
|
||||
that connects to buttons, switches, and LEDs, providing a simple API
|
||||
to read and write to the I/O pins on the board. The USB port is
|
||||
supported in <a href="http://www.FreeBSD.org">FreeBSD 4.0</a>, with
|
||||
native <a href="http://www.etla.net/~n_hibma/usb/usb.pl">USB
|
||||
support</a>. An additional EZ USB chip firmware downloader is
|
||||
available in the Ports Collection.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="ADCOMTEC">
|
||||
<name>ADCOMTEC</name>
|
||||
<url>http://www.adcomtec.com</url>
|
||||
<description>
|
||||
ADCOMTEC specializes in providing high-performance, advanced
|
||||
communications and networking solutions. FreeBSD driver support is
|
||||
provided for a range of high-performance WAN adapters for ADSL, T1,
|
||||
E1, and Synchronous Serial (RS-232/V.35/X.21/EIA530) connectivity
|
||||
that support a number of downloadable protocol modules including ATM,
|
||||
Frame Relay, X.25, HDLC, SDLC, PPP, and SS7. For more information,
|
||||
contact <a href="mailto:info@adcomtec.com">info@adcomtec.com</a> or
|
||||
visit <a href="http://www.adcomtec.com">http://www.adcomtec.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="AdvancedComputer">
|
||||
<name>Advanced Computer and Network Management Corporation</name>
|
||||
<url>http://www.acnc.com/</url>
|
||||
<description>
|
||||
Advanced Computer and Network Corporation Our site, dedicated to RAID
|
||||
(Redundant Array of Independent Disks) technology, features, an
|
||||
excellent, easy-to-understand, graphical RAID tutorial. We are a
|
||||
one-stop source for cost-effective, high-performance RAID arrays,
|
||||
SCSI switches, boosters, cables, fiber-optic extenders, and
|
||||
high-availability solutions.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="ASA">
|
||||
<name>ASA Computers</name>
|
||||
<url>http://www.asacomputers.com/</url>
|
||||
<description>
|
||||
ASA Computers offers a wide range of performance-oriented servers,
|
||||
workstations, and networking products. We are experienced in quality
|
||||
configuration and support of FreeBSD, Linux, and other operating
|
||||
systems. Multiple-OS experience and knowledge are our strengths. We
|
||||
resell a variety of communication and networking products, including
|
||||
3COM, Cisco, Cyclades, DIGI, Livingston, and U.S. Robotics. Please
|
||||
take a look at the pre-configured systems on our web page. Contact us
|
||||
at <a href="mailto:unix@asacomputers.com">unix@asacomputers.com</a>
|
||||
to configure them your own way or if you have questions or comments.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="BISInc">
|
||||
<name>BIS, Inc.</name>
|
||||
<url>http://www.bisworld.com/</url>
|
||||
<description>
|
||||
BIS, Inc. specializes in Internet- and Intranet-networking servers,
|
||||
running FreeBSD. We custom design and construct high-performance
|
||||
servers to fill any need. BIS also provides IS Support, network
|
||||
administration and management, training, Internet connectivity,
|
||||
corporate-wide e-mail gateways, domain name registration and hosting,
|
||||
web site development, and more. Please send e-mail to <a
|
||||
href="mailto:info@bisworld.com">info@bisworld.com</a> or visit <a
|
||||
href="http://www.bisworld.com/">http://www.bisworld.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="catpipe">
|
||||
<name>catpipe Systems</name>
|
||||
<url>http://www.catpipe.net/</url>
|
||||
<description>
|
||||
catpipe Systems ApS provides managed services and support contracts
|
||||
for FreeBSD, implemented on rackmountable servers preloaded with
|
||||
FreeBSD.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="ComputerAccess">
|
||||
<name>Computer Access Technology Corporation</name>
|
||||
<url>http://www.catc.com/</url>
|
||||
<description>
|
||||
CATC - Computer Access Technology Corporation, popularly called CATC
|
||||
("cat-see"), is the world's leading supplier of development and test
|
||||
tools for the Universal Serial Bus (USB) and IEEE 1394 (FireWire[tm])
|
||||
serial communication standards. The company also offers a variety of
|
||||
peripheral devices, including a USB-to-Ethernet interface and the
|
||||
industry's first USB hub.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="CoyotePointSystems">
|
||||
<name>Coyote Point Systems</name>
|
||||
<url>http://www.coyotepoint.com/</url>
|
||||
<description>
|
||||
Coyote Point Systems offers the <a
|
||||
href="http://www.coyotepoint.com/equalizer.shtml">Equalizer</a> Load
|
||||
Balancing Appliance. Equalizer distributes client UDP/TCP requests to
|
||||
multiple server machines and includes load balancing, server failure
|
||||
detection/correction, and an easy-to-use administrative interface.
|
||||
Capable of handling over 20,000 HTTP GET operations per minute,
|
||||
Equalizer enhances the Scalability, Availability and Manageability of
|
||||
any server cluster. Equalizer works with all standard protocols,
|
||||
including: HTTP, FTP, POP, SMTP, DNS, etc. Equalizer is based on the
|
||||
FreeBSD kernel.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="CycladesCorporation">
|
||||
<name>Cyclades Corporation</name>
|
||||
<url>http://www.cyclades.com/</url>
|
||||
<description>
|
||||
Cyclades Corporation sells a variety of high performance, multiport
|
||||
serial cards which FreeBSD supports directly in its standard
|
||||
releases.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="DAVICOM">
|
||||
<name>DAVICOM Semiconductor, Inc.</name>
|
||||
<url>http://www.davicom.com.tw/</url>
|
||||
<description>
|
||||
DAVICOM Semiconductor, Inc. designs, develops, and markets
|
||||
cost-effective integrated circuit (IC) solutions for mainstream
|
||||
networking and communications applications. DAVICOM is one of the
|
||||
leading suppliers of Local Area Network (LAN) and Wide Area Network
|
||||
(WAN) chip sets to international original equipment manufactures
|
||||
(OEMs) of networking and communications equipment. <p> The current
|
||||
products of DAVICOM Semiconductor, Inc. that will support the FreeBSD
|
||||
driver are DM9102 (10M/100M PCI Fast Ethernet single chip), DM9102A
|
||||
(3.3 volts Low Power10M/100M PCI Fast Ethernet single chip), DM9101
|
||||
(10M/100M PCI Fast Ethernet PHY chip, included into DM9102 single
|
||||
chip), DM9131 (3.3 volts Low Power10M/100M PCI Fast Ethernet PHY
|
||||
chip, included into DM9102A single chip) and DM9801 (1M8 Home PNA PHY
|
||||
chip). </p> <p> Please visit <a href="http://www.davicom.com.tw">our
|
||||
web site</a> for more information about our company. </p>
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="DigitalNetworks">
|
||||
<name>Digital Networks United Kingdom</name>
|
||||
<url>http://www.dnuk.com</url>
|
||||
<description>
|
||||
Digital Networks is one of the UK's leading supplier of desktops,
|
||||
workstations, and servers designed and optimized for the FreeBSD and
|
||||
Linux operating systems. From scientific to e-commerce applications,
|
||||
our products can be used as building blocks to create complete
|
||||
solutions. All products are built to order and can be purchased
|
||||
online from the company's web site at <a
|
||||
href="http://www.dnuk.com">www.dnuk.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="EmergingTechnologies">
|
||||
<name>Emerging Technologies</name>
|
||||
<url>http://www.etinc.com/</url>
|
||||
<description>
|
||||
Emerging Technologies, Inc. has high-speed serial-communications
|
||||
adapters, allowing FreeBSD systems to connect directly to leased
|
||||
lines at speeds from 56k to T1/E1. ET drivers support up to 16 T1/E1
|
||||
lines on a single FreeBSD-based PC. The adapters include a complete
|
||||
set of drivers and utilities that allow a FreeBSD machine to
|
||||
communicate directly with virtually any IP router via synchronous
|
||||
PPP, Frame Relay, X.25, and directly to Cisco brand routers with
|
||||
Cisco serial encapsulation. Full documentation and support are
|
||||
included. Hardware choices are available for both ISA and PCI buses,
|
||||
ranging from an economical single-port ISA adapter to a four T1/E1
|
||||
port PCI card with four dedicated 25MHz processors on-board. To
|
||||
contact Emerging Technologies, send E-mail to <a
|
||||
href="mailto:info@etinc.com">info@etinc.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="EnterpriseSystems">
|
||||
<name>Enterprise Systems and Solutions</name>
|
||||
<url>http://www.enterprisess.com/</url>
|
||||
<description>
|
||||
Enterprise Systems and Solutions builds high quality, customized
|
||||
systems, fully loaded and configured with FreeBSD for
|
||||
intranet/internet server and workstation use, at a competitive price.
|
||||
We also sell LAN/WAN products (from CISCO, 3COM, Livingston, SDL
|
||||
Comm, Digi, and more) and provide service. Please email us at <a
|
||||
href="mailto:info@enterprisess.com">info@enterprisess.com</a> or <a
|
||||
href="http://www.enterprisess.com/">visit our web site</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="EssenzConsulting">
|
||||
<name>Essenz Consulting</name>
|
||||
<url>http://www.essenz.com</url>
|
||||
<description>
|
||||
Essenz Consulting is a leading provider of high-performance rackmount
|
||||
server equipment. All of our <a
|
||||
href="http://www.essenz.com/servers/index.html">servers</a> feature
|
||||
dual processor capability, dual onboard networking, high-capacity
|
||||
memory support, and integrated video. From 1U Hot-Swap SCSI systems
|
||||
to 2U Hot-Swap 64-bit SCSI RAID with 2x300W Hot-Swap Power Supply,
|
||||
all Essenz Servers can be custom configured with immediate online
|
||||
pricing. For more information, visit us <a
|
||||
href="http://www.essenz.com">online</a> or call our 24/7 Sales and
|
||||
Support department at 1-800-248-1736.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="FreeBSDSystems">
|
||||
<name>FreeBSD Systems</name>
|
||||
<url>http://www.freebsdsystems.com</url>
|
||||
<description>
|
||||
FreeBSD Systems - The Power To Serve™ is so true with an
|
||||
iNET Server. We manufacture and <em>customize</em> 1U to 7U
|
||||
Rackmount Servers utilizing Intel Processors ranging from Xeon MP to
|
||||
Celeron, from single processing to quad and 8-Way Systems. Every
|
||||
Server is fully customized to our clients requirements including the
|
||||
installation of FreeBSD. iNET Servers are available in ATA and SCSI
|
||||
configurations. Looking for Direct Attached Storage? Check out the
|
||||
iSTOR6000, with data capacity of up to 7 Tera Bytes. Since 1999,
|
||||
FreeBSD Systems has been providing high performance Rackmount Servers
|
||||
and Storage Systems to clients ranging from start-up Web Hosting
|
||||
Companies to Fortune 500 Companies to Federal Government Departments.
|
||||
We offer On-Site hardware warranty support to all of North America,
|
||||
Mexico and, Puerto Rico. Visit our web site <a
|
||||
href="http://www.FreeBSDsystems.com">http://www.FreeBSDsystems.com</a>
|
||||
or call us toll free at 1.877.963.1900.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="FreedomTechnologies">
|
||||
<name>Freedom Technologies Corporation</name>
|
||||
<url>http://www.FreeBSDsystems.COM/</url>
|
||||
<description>
|
||||
Freedom Technologies Corporation offers businesses a total solution
|
||||
to Server systems. All our servers are based on the business needs of
|
||||
our customers. Each server is custom designed, both in terms of the
|
||||
hardware and the operating system, as well as the applications to be
|
||||
run. FreedomTC delivers to its customers, server(s) that will do
|
||||
the task(s) at the highest level of performance. FreedomTC only uses
|
||||
the highest quality of hardware for any system we design. FreedomTC
|
||||
also includes its Net@dmin [TM] service for 1 year. Our servers
|
||||
work extremely well with customer's workstations, using Windows or
|
||||
Macintosh for file and print sharing. Please call us at our toll
|
||||
free telephone number, 1-877-963-1900.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Gallantry">
|
||||
<name>Gallantry Technologies, Inc.</name>
|
||||
<url>http://www.gallantry.com/</url>
|
||||
<description>
|
||||
Gallantry Technologies Inc. offers a business broadband gateway for
|
||||
small- to medium-sized businesses. Our products are focused on
|
||||
offering an easy-to-use product that provides multiple services
|
||||
routing, firewall, e-mail, web server, DHCP, NAT, FTP, DNS, and print
|
||||
server. All these features can be accessed via an easy-to-use web
|
||||
interface. The GallantWEB-100 is an affordable and easy-to-use
|
||||
business broadband gateway that is ideal for connecting small and
|
||||
medium offices to the Internet via any broadband connection including
|
||||
xDSL, Cable, Frame Relay/T1, or ISDN. The GallantWEB-200 is the
|
||||
industry's first business broadband gateway to include a built-in
|
||||
SDSL router. This innovative one-box solution makes it easy for DSL
|
||||
service providers to deploy and manage.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="GND">
|
||||
<name>GND Distribution, Ltd.</name>
|
||||
<url>http://www.gnd.com/</url>
|
||||
<description>
|
||||
GND Distribution, Ltd., a London, UK-based company, specializes in
|
||||
bespoke computer systems for FreeBSD and Linux. All GND computer
|
||||
systems are built to order, using only top-quality components. Our
|
||||
build quality is second to none. Systems are supplied configured and
|
||||
optimized to our customer's requirements. We also supply a large
|
||||
range of system components, including ASUSTeK mainboards, which are
|
||||
popular within the FreeBSD and Linux communities.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Hewlett_Packard">
|
||||
<name>Hewlett_Packard</name>
|
||||
<url>http://www.hp.com/</url>
|
||||
<description>
|
||||
Hewlett-Packard sells Proliant BL10e blade servers that are
|
||||
compatible with FreeBSD. 280 blades can fit within in a 42U rack,
|
||||
offering superior density, computing power and management for all
|
||||
front-end and cluster applications.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="iMimicNetworking">
|
||||
<name>iMimic Networking, Inc.</name>
|
||||
<url>http://www.imimic.com/</url>
|
||||
<description>
|
||||
iMimic Networking, Inc. offers the <a
|
||||
href="http://www.imimic.com/">DataReactor</a> family of Web-cache
|
||||
appliances. The DataReactor family leads the caching industry in
|
||||
price/performance, from an aggressively priced entry-level caching
|
||||
appliance to a high-end caching appliance at mid-level prices.
|
||||
The FreeBSD-based <a
|
||||
href="http://www.imimic.com/indexd746.html">DataReactor Core
|
||||
software</a> includes management features such as SNMP monitoring
|
||||
support, Common Logfile Format logging, and Web-based or
|
||||
console-based configuration. Please send mail to <a
|
||||
href="mailto:info@imimic.com">info@imimic.com</a> for more
|
||||
information.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="INetU">
|
||||
<name>INetU Dedicated Managed Hosting</name>
|
||||
<url>http://www.inetu.net/</url>
|
||||
<description>
|
||||
INetU Dedicated Managed Hosting are one of the top rated hosting
|
||||
firms focused on dedicated managed hosting, INetU provides managed
|
||||
dedicated FreeBSD servers, along with firewalls, load balancing,
|
||||
advanced monitoring and data backup services. They offer more free
|
||||
tech support than most other hosts and have a lucrative partner
|
||||
program for consultants and developers.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="IntrospectiveTechnologies">
|
||||
<name>Introspective Technologies USA</name>
|
||||
<url>http://www.itechusa.net/</url>
|
||||
<description>
|
||||
Introspective Technologies USA delivers networking solutions with
|
||||
high powered servers and workstations pre-installed with choice of
|
||||
operating systems, including FreeBSD.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="IronSystems">
|
||||
<name>Iron Systems</name>
|
||||
<url>http://www.ironsystems.com/</url>
|
||||
<description>
|
||||
Iron Systems, located in San Jose, California, is a provider of
|
||||
high-density rack-mount Internet systems, low cost hosting solutions
|
||||
and OEM integration services. System solutions are either
|
||||
built-to-order iServers with custom-configured hardware, OS, kernel
|
||||
and applications; or a set of pre-configured network infrastructure
|
||||
iEngines and iClusters, specially designed to deliver a dedicated
|
||||
application. Iron Systems backs all solutions with world-class
|
||||
technical support for FreeBSD and Linux. Our team at an average
|
||||
has over 10 years of experience in building BSD-based systems. We
|
||||
understand that our servers run your mission-critical applications -
|
||||
that's why we use only the highest quality components and test all
|
||||
systems in advance. We are confident that you will appreciate our
|
||||
approach. Give us an opportunity to serve you! Please send us email
|
||||
at <a href="mailto:info@ironsystems.com">info@ironsystems.com</a> or
|
||||
call 1-800-921-IRON.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="ItautecPhilco">
|
||||
<name>Itautec Philco</name>
|
||||
<url>http://itautecamerica.com/</url>
|
||||
<description>
|
||||
Itautec Philco is one of Brazil's leading IT products manufacturers
|
||||
and one the leaders in the Brazilian Market and significant market
|
||||
share in Portugal, Uruguay and Argentina. Products such as the
|
||||
Infoway and the InfoServer are fully compatible with FreeBSD, Linux,
|
||||
and other Operating Systems. Itautec Philco also manufactures Banking
|
||||
and Retail Automation products, as well as Consumer Electronics
|
||||
products. We provide complete solutions for our customers, from
|
||||
Infrastructure (such as LAN) to software applications, to Web
|
||||
development and hosting services, to call-center services.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="KYTEX">
|
||||
<name>KYTEX Computers Ltd</name>
|
||||
<url>http://www.kytex.bg/</url>
|
||||
<description>
|
||||
KYTEX Computers Ltd offers K-SERVER family of pre-installed xBSD and
|
||||
Linux Internet appliances. K-SERVER product line include small
|
||||
footprint all-in-one solutions for small to middle networks and
|
||||
rackmount servers for ISP/ASP and corporate networks. All-in-one
|
||||
solutions provides Internet access via dial-up, leased lines, xDSL,
|
||||
wireless technology and offer filesharing for Windows and MacOS
|
||||
workstations across the network at no additional cost, users WEB-,
|
||||
Mail-, Firewall-, DNS-server applications started and partially
|
||||
configured for easy integration in any existing networks. K-SERVER
|
||||
setup and management is very simple - just start any browser on your
|
||||
workstation and follow the setup instructions and menus. If you have
|
||||
any questions or proposals, please e-mail us.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="MOXA">
|
||||
<name>MOXA</name>
|
||||
<url>http://www.moxa.com/</url>
|
||||
<description>
|
||||
MOXA makes attractively priced multi-port serial cards which are
|
||||
compatible with FreeBSD's <em>sio</em> serial driver. The C104 / C168
|
||||
family of 2/4/8 serial port cards features custom ASIC design, speeds
|
||||
up to 921.6Kbps, surge protection, independent and
|
||||
software-configurable I/O ports and IRQs.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Neturn">
|
||||
<name>Neturn Corp.</name>
|
||||
<url>http://neturn.sinacity.com/netserv/</url>
|
||||
<description>
|
||||
Neturn Corp., based in Vancouver, Canada, provides complete solutions
|
||||
on selective and fine-tuned hardware and software (BSDs as primary
|
||||
server OSs) platforms to meet the demand from e-commerce, telecom,
|
||||
manufacturing, industrial, aerospace, medical applications where
|
||||
stability and reliability are mandatory. For detailed information,
|
||||
please visit <a href="http://neturn.sinacity.com/netserv/">
|
||||
http://neturn.sinacity.com/netserv</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="NetWolves">
|
||||
<name>NetWolves Corporation</name>
|
||||
<url>http://www.netwolves.com</url>
|
||||
<description>
|
||||
NetWolves Corporation produces the FoxBox line of Multi-services
|
||||
Internet Communications Gateway systems. These Internet Access
|
||||
Devices offer a three stage firewall, unlimited e-mail, site hosting,
|
||||
filtered browsing, web and DNS caching, DHCP for ease of set up, file
|
||||
sharing/serving, e-mail archiving, and a series of productivity
|
||||
enhancing reports - cost effectively. The FoxBox OS is based on
|
||||
FreeBSD. Bandwidth options range from V.90 modems to T-1, cable
|
||||
modems, and DSL speeds. The FoxBox provides Internet access for
|
||||
between 8 and 1000 users on one or more LANs and is available
|
||||
internationally through our VAR reseller network. Visit <a
|
||||
href="http://www.netwolves.com/">our site</a> for more information or
|
||||
contact us by <a href="mailto:sales@netwolves.com">email</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Offmyserver">
|
||||
<name>Offmyserver</name>
|
||||
<url>http://www.offmyserver.com/</url>
|
||||
<description>
|
||||
Offmyserver offers state-of-the-art Internet Server Systems, Internet
|
||||
Appliance Platforms, RAID solutions, Multi-boot Workstations, LAN/WAN
|
||||
products, and peripherals at competitive prices. We'll help you
|
||||
find the right system hardware - configure, price, build, AND test it
|
||||
with BSD operating systems. If that's not enough, we'll even
|
||||
bend sheet metal to suit your identity. That's what you get when
|
||||
the company that sells you the complete system is also the one that
|
||||
custom builds it for you. We use only the best quality components and
|
||||
do the required testing in advance - knowing that you are going to
|
||||
run your mission-critical applications on our servers. We are
|
||||
confident that you will appreciate our approach - give us an
|
||||
opportunity to serve you! Send us an email at <a
|
||||
href="mailto:info@offmyserver.com">info@offmyserver.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="PCW">
|
||||
<name>PCW Microsystems, Inc.</name>
|
||||
<url>http://www.rackmount.com/</url>
|
||||
<description>
|
||||
PCW Microsystems, Inc. offers rackmount workstations and servers,
|
||||
optimized for the FreeBSD operating system. We carry full line of
|
||||
rackmount chassis, RAID, WAN, and LAN products for FreeBSD OS. Please
|
||||
<a href="http://www.rackmount.com/">visit our web site</a> for more
|
||||
information or send us an e-mail at <a
|
||||
href="mailto:sales@pcwnet.com">sales@pcwnet.com</a>
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="PSSCLabs">
|
||||
<name>PSSC Labs</name>
|
||||
<url>http://www.pssclabs.com/</url>
|
||||
<description>
|
||||
PSSC Labs provides custom configured computer solutions to meet any
|
||||
budget or specification. Visit our website to build your computer
|
||||
just the way you want it, including hard-drive partitioning and
|
||||
operating system setup.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="RandDAssociates">
|
||||
<name>R and D Associates, Inc.</name>
|
||||
<url>http://www.RnDAssociates.com/</url>
|
||||
<description>
|
||||
R and D Associates, Inc. developed ServeTheWeb.com utilizing FreeBSD
|
||||
running Apache. We employed consulting services from <a
|
||||
href="mailto:phk@FreeBSD.org">Poul-Henning Kamp</a> to develop our
|
||||
Virtual Server solution (which is now available in <a
|
||||
href="http://www.FreeBSD.org">FreeBSD</a> 4.0). <p> <a
|
||||
href="http://ServeTheWeb.com/">ServeTheWeb.com</a> is our System
|
||||
Admin level of Virtual Servers. Please visit <a
|
||||
href="http://www.ServeTheWeb.com/">www.ServeTheWeb.com</a> for
|
||||
additional information on this product. </p> <p> R and D Associates,
|
||||
Inc. is an application development firm, specializing in
|
||||
client/server designs. We use FreeBSD, running Apache and utilizing
|
||||
PHP's and MySQL (As well as NT with ASP's and SQL/Access). </p>
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="SangomaTechnologies">
|
||||
<name>Sangoma Technologies, Inc.</name>
|
||||
<url>http://www.sangoma.com/</url>
|
||||
<description>
|
||||
Sangoma Technologies Inc. offers the WANPIPE™ range of high
|
||||
speed intelligent communication adapters that support a number of
|
||||
downloadable protocol modules including PPP, Frame Relay and X.25.
|
||||
The cards are available with RS-232/V.35/X.21/EIA530 interfaces or an
|
||||
on board T1 or Fractional T-1 CSU/DSU. All of our FreeBSD and Linux
|
||||
code is distributed under the GNU Public License (GPL) in source code
|
||||
form. The FreeBSD PPP driver and utilities for Sangoma WANPIPE™
|
||||
kits are available for download at <a
|
||||
href="ftp://ftp.sangoma.com/FreeBSD">ftp.sangoma.com/FreeBSD</a>.
|
||||
Frame Relay and X.25 support will follow shortly.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="SBE">
|
||||
<name>SBE</name>
|
||||
<url>http://www.sbei.com/</url>
|
||||
<description>
|
||||
SBE specializes in providing high-performance, advanced
|
||||
communications and networking solutions for CompactPCI-, PCI-, and
|
||||
PMC-based applications. FreeBSD driver support is provided for a
|
||||
range of high-performance WAN adapters, providing connectivity for
|
||||
Synchronous Serial, T1/E1, DS3/T3, and HSSI. For more information,
|
||||
contact <a href="mailto:info@sbei.com">info@sbei.com</a> or visit <a
|
||||
href="http://www.sbei.com/">http://www.sbei.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="SeraSystems">
|
||||
<name>Sera Systems</name>
|
||||
<url>http://www.serasystems.com</url>
|
||||
<description>
|
||||
Sera Systems is a manufacturer of xBSD-based servers and
|
||||
workstations. Sera Systems was formed to address the security needs
|
||||
of Internet-connected businesses by helping develop, setup, and
|
||||
support network infrastructure computers with reliable,
|
||||
proactively-secure free software. Sera Systems products include the
|
||||
SeraBox, a low-cost, multi-function server, the SeraVPN, a dedicated
|
||||
virtual private network server, and a line of customizable servers
|
||||
based on choice of xBSD. Sera Systems offers with all products a
|
||||
value-added preconfiguration service which is designed to help
|
||||
customers implement specific network applications using xBSD and be
|
||||
up and running as quickly as possible. For more information please <a
|
||||
href="http://www.serasystems.com">visit our web site</a> or e-mail <a
|
||||
href="mailto:sales@serasystems.com">sales@serasystems.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="PerleSpecialix">
|
||||
<name>Perle Specialix</name>
|
||||
<url>http://www.perle.com/</url>
|
||||
<description>
|
||||
Perle Specialix makes a wide variety of multi-port async serial
|
||||
expansion products. The ISA, EISA, and PCI SI/XIO host cards work
|
||||
under FreeBSD, using the <em>si</em> driver.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Stallion">
|
||||
<name>Stallion Technologies, Inc.</name>
|
||||
<url>http://www.stallion.com/</url>
|
||||
<description>
|
||||
Stallion Technologies, Inc. offers a range of multiport serial boards
|
||||
for the ISA, EISA, MCA and PCI buses. Although Stallion does not
|
||||
officially support drivers for FreeBSD, there is an unsupported,
|
||||
freely available driver available from their <a
|
||||
href="ftp://ftp.stallion.com/drivers/unsupported/freebsd/stalbsd-0.0.
|
||||
5.tar.gz">FTP site</a>. This driver supports the Stallion
|
||||
<em>EasyIO</em> and <em>EasyConnection 8/32</em> multiport boards.
|
||||
For local pricing and availability information, contact Stallion via
|
||||
their <a href="http://www.stallion.com/">WWW page</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="StoreAnyWhere">
|
||||
<name>StoreAnyWhere.com</name>
|
||||
<url>http://StoreAnyWhere.com/</url>
|
||||
<description>
|
||||
StoreAnyWhere.com offers a wide range of high-performance and
|
||||
cost-effective quad- and dual-processor servers, workstations, and
|
||||
networking products with FreeBSD and Linux as their operating
|
||||
systems. Just go to our website for servers in a variety of
|
||||
configurations or custom-made systems.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="SWTechnology">
|
||||
<name>SW Technology</name>
|
||||
<url>http://freebsd.swt.com/</url>
|
||||
<description>
|
||||
SW Technology offers quality Pentium machines with FreeBSD
|
||||
pre-installed.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Synetic">
|
||||
<name>Synetic, Inc.</name>
|
||||
<url>http://www.synetic.net/</url>
|
||||
<description>
|
||||
Synetic Inc. is a Canadian and North American distributor for
|
||||
IDE-to-IDE, SCSI-to-IDE and SCSI-to-SCSI RAID controllers, supporting
|
||||
the FreeBSD platform. Our products can be found at <a
|
||||
href="http://www.synetic.net/prodman.htm">www.synetic.net/prodman.htm</a>
|
||||
or <a href="http://www.synetic.net/prodspec.htm">
|
||||
www.synetic.net/prodspec.htm</a>
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="TegataiSystems">
|
||||
<name>Tegatai Systems</name>
|
||||
<url>http://www.tegatai.com/</url>
|
||||
<description>
|
||||
Tegatai Systems develops software and networking products and
|
||||
services using FreeBSD and Linux-based open-source software.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Ten26">
|
||||
<name>Ten 26</name>
|
||||
<url>http://www.ten26.com/</url>
|
||||
<description>
|
||||
Ten 26 Enterprises is your source for high performance, fault
|
||||
tolerant FreeBSD workstations and servers. Choose a pre-configured
|
||||
package or create your own custom machine from our list of
|
||||
well-tested components. All machines carry a 2 year warranty. For
|
||||
more information, visit <a href="http://www.ten26.com/">Ten 26</a> or
|
||||
e-mail <a href="mailto:info@ten26.com">info@ten26.com</a>.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="TeraSolutions">
|
||||
<name>TeraSolutions, Inc.</name>
|
||||
<url>http://www.terasolutions.com/</url>
|
||||
<description>
|
||||
TeraSolutions, Inc. is a manufacturer of high-reliability,
|
||||
high-performance rack-mount Internet server and RAID storage systems
|
||||
which are specifically designed and built for the best operation with
|
||||
FreeBSD. Our servers come with FreeBSD pre-installed and tuned for
|
||||
high-traffic Internet server applications. TeraSolutions was founded
|
||||
by FreeBSD co-founder David Greenman and has built some of the
|
||||
highest-traffic Internet servers in the world. Please <a
|
||||
href="http://www.terasolutions.com/">visit our web site</a> or
|
||||
contact us directly at +1 503 288 9544 for more information.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="TPC">
|
||||
<name>TPC IT Pty, Ltd</name>
|
||||
<url>http://www.tpcit.com.au/</url>
|
||||
<description>
|
||||
TPC IT Pty, Ltd is Authorized Australian Cyclades Distributor. We
|
||||
have just set up an online discussion group for Cyclades customers
|
||||
and anyone wishing to know about the product. Visit our <a
|
||||
href="http://www.tpcit.com.au/">web site</a> for details.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Znyx">
|
||||
<name>Znyx</name>
|
||||
<url>http://www.znyx.com/</url>
|
||||
<description>
|
||||
Znyx Corporation specializes in high-availability, high-performance,
|
||||
single and multi-channel Fast Ethernet adapters for PCI, CompactPCI,
|
||||
and PCI Mezzanine Connector (PMC). FreeBSD, Linux, QNX, NetWare,
|
||||
OS/2, and SCO Unixware are supported on virtually all products.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="NCSTechnologies">
|
||||
<name>NCS Technologies</name>
|
||||
<url>http://www.ncsapp.com/</url>
|
||||
<description>
|
||||
NCS Technologies offers "NCS Swift Appliance Partner Program
|
||||
(NCSAPP)" for Independent Software Vendors (ISVs) and other OEMs.
|
||||
Under this program, NCS develops "turn-key" server appliances for its
|
||||
ISV partners by bundling their appliance software with its own
|
||||
hardware platforms. These appliance hardware platforms are built
|
||||
using the latest industry standard chipsets and components and can
|
||||
run FreeBSD based applications.
|
||||
</description>
|
||||
</entry>
|
||||
</entries>
|
|
@ -1,22 +0,0 @@
|
|||
<!-- $FreeBSD: www/en/commercial/includes.sgml,v 1.6 2000/06/12 18:44:39 jim Exp $ -->
|
||||
|
||||
<!ENTITY vendorintroduction '
|
||||
<p>
|
||||
The power, flexibility, and reliability of FreeBSD
|
||||
attract a wide variety of users and vendors.
|
||||
In addition to our <a href="../gallery/gallery.html">gallery</a> page,
|
||||
showcasing many of our users,
|
||||
here you will find vendors offering commercial products and/or services
|
||||
for FreeBSD.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
For your convenience,
|
||||
we have divided our growing commercial listing into several sections.
|
||||
If your company supports a FreeBSD-compatible product or service
|
||||
that should be added to this page, please send email
|
||||
to <a href="mailto:www@FreeBSD.org">www@FreeBSD.org</a>
|
||||
and let us know!
|
||||
Submissions should be in HTML and a medium-sized paragraph in length.
|
||||
</p>
|
||||
'>
|
|
@ -1,65 +0,0 @@
|
|||
# $FreeBSD: www/en/commercial/misc.raw,v 1.14 2003/10/02 10:01:06 ceri Exp $
|
||||
|
||||
<!-- NAME="Bookpool" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.bookpool.com/"
|
||||
>The Bookpool</A></STRONG>
|
||||
offers 30% discounts on the new edition
|
||||
of <EM>The Design and Implementation of the 4.4BSD Operating System</EM>
|
||||
and other FreeBSD-related books.
|
||||
|
||||
<!-- NAME="BSDMall" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.bsdmall.com/"
|
||||
>BSDMall</A></STRONG>
|
||||
supports all flavors of BSD,
|
||||
providing books, clothing, hardware, software, and more!
|
||||
|
||||
<!-- NAME="DOSSIER" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.ptf.com/dossier/"
|
||||
>DOSSIER</A></STRONG>
|
||||
is a series of demand-printed document collections,
|
||||
covering a variety of Free and Open Source topics.
|
||||
DOSSIER uses FreeBSD documentation as the basis
|
||||
for many of its volumes.
|
||||
|
||||
<!-- NAME="FreeBSD Mall" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.freebsdmall.com/"
|
||||
>The FreeBSD Mall</A></STRONG>
|
||||
can provide everything you may want or need
|
||||
to enhance your FreeBSD experience.
|
||||
Are you new to FreeBSD?
|
||||
Or, perhaps you've been using it for years?
|
||||
We have something for you.
|
||||
We have the latest FreeBSD CDROMs,
|
||||
helpful books, and colorful shirts and hats.
|
||||
Stay current with FreeBSD and put it to work for you!
|
||||
|
||||
<!-- NAME="Liebscher & Partner" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.freibergnet.de"
|
||||
>Liebscher & Partner</A></STRONG>
|
||||
are now shipping the BSD
|
||||
<A HREF="http://lem.freibergnet.de/cgi-bin/fanshop/scan/sf=category/se=BSD">Stuffed Daemon</A>!<BR>
|
||||
<img alt="stuffed daemon" src="../gifs/plueschtier-tiny.jpg">
|
||||
|
||||
<!-- NAME="ScotGold Products" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.scotgold.com/daemon.htm"
|
||||
>ScotGold Products</A></STRONG>
|
||||
design and manufacture PC case badges,
|
||||
including a BSD daemon badge
|
||||
with the permission and blessing of Kirk McKusick.
|
||||
|
||||
<!-- NAME="Fultus FODL" CAT="misc" SUBCAT="" -->
|
||||
<STRONG><A HREF="http://www.fultus.com/"
|
||||
>Fultus</A></STRONG>
|
||||
presents <A HREF="http://elibrary.fultus.com/mergedProjects/FreeBSD%20Documentation/index.htm">FreeBSD Open Documentation Library</A>.
|
||||
This is the <B>full up-to-date</B> FreeBSD documentation collection available
|
||||
online in the Technical Literature section of the Fultus <A HREF="http://elibrary.fultus.com/">eLibrary</A> and Fultus Online Book <A HREF="http://store.fultus.com/advanced_search_result.php?keywords=FreeBSD">Superstore</A> in the following formats:
|
||||
<UL>
|
||||
<LI>Online Web Help (searchable through all documents) (Mozilla,
|
||||
Netscape Navigator & IE compatible);</LI>
|
||||
<LI>Searchable Adobe PDF format with Bookmark link page (for desktop
|
||||
and PDA);</LI>
|
||||
<LI>Compiled HTML format (chm) (for Windows).</LI>
|
||||
</UL>
|
||||
Interested?<BR>
|
||||
Read about FreeBSD eBooks and download examples on the <A HREF="http://www.fultus.com/free/documentation.phtml">FreeBSD Documentation</A> page of the <A HREF="http://www.fultus.com/">Fultus</A> web site.
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/misc.sgml,v 1.13 2001/07/13 12:52:12 dd Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Miscellaneous">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY misc SYSTEM "misc.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Miscellaneous Vendors</H2>
|
||||
|
||||
<P>This file has been indexed by alphabetic order for easy navigating.
|
||||
Should you wish to find a specific entry, please use the shortcuts
|
||||
below for quick access.</P>
|
||||
|
||||
&misc;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
97
en/commercial/misc.xml
Normal file
97
en/commercial/misc.xml
Normal file
|
@ -0,0 +1,97 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE entries SYSTEM "entries.dtd">
|
||||
|
||||
<entries>
|
||||
<cvs:keywords xmlns:cvs="http://www.FreeBSD.org/XML/CVS" version="1.0">
|
||||
<cvs:keyword name="freebsd">
|
||||
$FreeBSD$
|
||||
</cvs:keyword>
|
||||
</cvs:keywords>
|
||||
|
||||
<entry id="Bookpool">
|
||||
<name>Bookpool</name>
|
||||
<url>http://www.bookpool.com/</url>
|
||||
<description>
|
||||
The Bookpool offers 30% discounts on the new edition of The
|
||||
Design and Implementation of the 4.4BSD Operating System and
|
||||
other FreeBSD-related books.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="BSDMall">
|
||||
<name>BSDMall</name>
|
||||
<url>http://www.bsdmall.com/</url>
|
||||
<description>
|
||||
BSDMall supports all flavors of BSD, providing books, clothing,
|
||||
hardware, software, and more!
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="DOSSIER">
|
||||
<name>DOSSIER</name>
|
||||
<url>http://www.ptf.com/dossier/</url>
|
||||
<description>
|
||||
DOSSIER is a series of demand-printed document collections, covering
|
||||
a variety of Free and Open Source topics. DOSSIER uses FreeBSD
|
||||
documentation as the basis for many of its volumes.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="FreeBSDMall">
|
||||
<name>FreeBSD Mall</name>
|
||||
<url>http://www.freebsdmall.com/</url>
|
||||
<description>
|
||||
The FreeBSD Mall can provide everything you may want or need to
|
||||
enhance your FreeBSD experience. Are you new to FreeBSD? Or, perhaps
|
||||
you've been using it for years? We have something for you. We have
|
||||
the latest FreeBSD CDROMs, helpful books, and colorful shirts and
|
||||
hats. Stay current with FreeBSD and put it to work for you!
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="Liebscher">
|
||||
<name>Liebscher & Partner</name>
|
||||
<url>http://www.freibergnet.de</url>
|
||||
<description>
|
||||
Liebscher & Partner are now shipping the BSD <a
|
||||
href="http://lem.freibergnet.de/cgi-bin/fanshop/scan/sf=category/se=BSD">
|
||||
Stuffed Daemon! <img alt="stuffed daemon" src="../gifs/plueschtier-tiny.jpg"/></a>
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="ScotGold">
|
||||
<name>ScotGold Products</name>
|
||||
<url>http://www.scotgold.com/daemon.htm</url>
|
||||
<description>
|
||||
ScotGold Products design and manufacture PC case badges, including a
|
||||
BSD daemon badge with the permission and blessing of Kirk McKusick.
|
||||
</description>
|
||||
</entry>
|
||||
|
||||
<entry id="FultusFODL">
|
||||
<name>Fultus FODL</name>
|
||||
<url>http://www.fultus.com/</url>
|
||||
<description>
|
||||
Fultus presents <a
|
||||
href="http://elibrary.fultus.com/mergedProjects/FreeBSD%20Documentati
|
||||
on/index.htm">FreeBSD Open Documentation Library</a>. This is the
|
||||
<b>full up-to-date</b> FreeBSD documentation collection available
|
||||
online in the Technical Literature section of the Fultus <a
|
||||
href="http://elibrary.fultus.com/">eLibrary</a> and Fultus Online
|
||||
Book <a
|
||||
href="http://store.fultus.com/advanced_search_result.php?keywords=Fre
|
||||
eBSD">Superstore</a> in the following formats:
|
||||
<ul>
|
||||
<li>Online Web Help (searchable through all documents)
|
||||
(Mozilla, Netscape Navigator & IE compatible);</li>
|
||||
<li>Searchable Adobe PDF format with Bookmark link page (for desktop
|
||||
and PDA);</li>
|
||||
<li>Compiled HTML format (chm) (for Windows).</li>
|
||||
</ul>
|
||||
Interested? Read about FreeBSD eBooks and download examples on
|
||||
the <a href="http://www.fultus.com/free/documentation.phtml">FreeBSD
|
||||
Documentation</a> page of the <a href="http://www.fultus.com/">Fultus
|
||||
web site</a>.
|
||||
</description>
|
||||
</entry>
|
||||
</entries>
|
136
en/commercial/soft_bycat.xsl
Normal file
136
en/commercial/soft_bycat.xsl
Normal file
|
@ -0,0 +1,136 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<!-- Copyright (c) 2003 Josef El-Rayes <josef@FreeBSD.org>
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
1. Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
2. Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
||||
|
||||
$FreeBSD$
|
||||
-->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
|
||||
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
|
||||
exclude-result-prefixes="cvs">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="date">
|
||||
<xsl:value-of select="//cvs:keyword[@name='freebsd']"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="email" select="'freebsd-www'"/>
|
||||
<xsl:variable name="title" select="'Commercial Vendors'"/>
|
||||
|
||||
<xsl:output method="xml" encoding="iso-8859-1"
|
||||
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
|
||||
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
|
||||
|
||||
<xsl:template match="entries">
|
||||
<html>
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<p>The power, flexibility, and reliability of FreeBSD attract
|
||||
a wide variety of users and vendors. Here you will find
|
||||
vendors offering commercial products and/or services for
|
||||
FreeBSD.</p>
|
||||
|
||||
<p>For your convenience, we have divided our growing
|
||||
commercial listing into several sections. If your company
|
||||
supports a FreeBSD-compatible product or service that should
|
||||
be added to this page, please send email to <a
|
||||
href="mailto:www@FreeBSD.org">www@FreeBSD.org</a> and let us
|
||||
know! Submissions should be in HTML and a medium-sized
|
||||
paragraph in length.</p>
|
||||
|
||||
<h2>Software Vendors</h2>
|
||||
|
||||
<p>This file has been divided into sub-categories for your
|
||||
convenience. The following shortcuts will take you to the
|
||||
proper gallery entries.</p>
|
||||
|
||||
<h3>Databases</h3>
|
||||
<xsl:for-each select="entry[@category='DATABASE']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Development Tools</h3>
|
||||
<xsl:for-each select="entry[@category='DEV']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>E-Commerce Solutions and Tools</h3>
|
||||
<xsl:for-each select="entry[@category='ECOMMERCE']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Miscellaneous</h3>
|
||||
<xsl:for-each select="entry[@category='MISC']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Multimedia</h3>
|
||||
<xsl:for-each select="entry[@category='MULTIMEDIA']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Network Systems and Applications</h3>
|
||||
<xsl:for-each select="entry[@category='NETWORK']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Scientific and Language Tools</h3>
|
||||
<xsl:for-each select="entry[@category='SCIENTIFIC']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>Security</h3>
|
||||
<xsl:for-each select="entry[@category='SECURITY']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
|
||||
<h3>System Administration / ISP</h3>
|
||||
<xsl:for-each select="entry[@category='SYSADMIN']">
|
||||
<xsl:sort select="name"/>
|
||||
<xsl:call-template name="entry"/>
|
||||
</xsl:for-each>
|
||||
<xsl:copy-of select="$footer"/>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="entry">
|
||||
<li><a href="software.html#{@id}">
|
||||
<xsl:value-of select="name"/>
|
||||
</a></li>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/software.sgml,v 1.61 2001/07/13 12:52:12 dd Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Software">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY software SYSTEM "software.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Software Vendors</H2>
|
||||
|
||||
<P>This file has been indexed by alphabetic order for easy navigating.
|
||||
Should you wish to find a specific entry, please use the shortcuts
|
||||
below for quick access.</P>
|
||||
|
||||
&software;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
1696
en/commercial/software.xml
Normal file
1696
en/commercial/software.xml
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "..">
|
||||
<!ENTITY date "$FreeBSD: www/en/commercial/software_bycat.sgml,v 1.5 2002/03/16 08:12:36 murray Exp $">
|
||||
<!ENTITY title "Commercial Vendors - Software">
|
||||
<!ENTITY % includes SYSTEM "../includes.sgml"> %includes;
|
||||
<!ENTITY % vendorincludes SYSTEM "includes.sgml"> %vendorincludes;
|
||||
<!ENTITY softwarebycat SYSTEM "software_bycat.inc">
|
||||
]>
|
||||
|
||||
<HTML>
|
||||
|
||||
&header;
|
||||
&vendorintroduction;
|
||||
|
||||
<H2>Software Vendors</H2>
|
||||
|
||||
<P>This file has been divided into sub-categories for your
|
||||
convenience. The following shortcuts will take
|
||||
you to the proper gallery entries.</P>
|
||||
|
||||
&softwarebycat;
|
||||
|
||||
<P></P><A HREF="commercial.html">Commercial Vendors Home</A>
|
||||
|
||||
&footer;
|
||||
|
||||
</BODY>
|
||||
</HTML>
|
Loading…
Reference in a new issue