doc/en/commercial/soft_bycat.xsl
Simon L. B. Nielsen cf5a329a36 MFP4:
- Merge new layout.

Submitted by:	Emily Boyd <emilyboyd@emilyboyd.com>
Sponsored by:	Google Summer of Code 2005
2005-10-04 16:33:22 +00:00

161 lines
5.2 KiB
XML

<?xml version="1.0"?>
<!-- Copyright (c) 2004 Josef El-Rayes <josef@FreeBSD.org>
Copyright (c) 2003, 2004 Hiten Pandya <hmp@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: www/en/commercial/soft_bycat.xsl,v 1.3 2004/07/18 22:23:07 josef Exp $
-->
<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="section" select="'support'"/>
<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">
<div id="containerwrap">
<div id="container">
<xsl:copy-of select="$header2"/>
<div id="content">
<xsl:copy-of select="$sidenav"/>
<div id="contentwrap">
<xsl:copy-of select="$header3"/>
<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 fill out a
<a href="http://www.FreeBSD.org/send-pr.html">problem report</a> for
category www. 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>
</div> <!-- contentwrap -->
<br class="clearboth" />
</div> <!-- content -->
<xsl:copy-of select="$footer"/>
</div> <!-- container -->
</div> <!-- containerwrap -->
</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>