The cdf.xsl File |
Search [cckiefhk] |
||
Previous Next Xoc Software Training RVBA Conventions Maya Calendar Program Company Information Tools ASP.NET and Other Tips Articles Architecting, Writing, and Maintaining Large Programs in Visual Basic MiscellaneousConstructing a 404 Handler for IIS Constructing a Links Page using XML The default.asp File Differences between XHTML 1.0 and HTML 4.0The links.xml File The xslt.asp Include File The links.dtd File The links.xsl File The links.cdx File The cdf.xsl File ECMA, ISO, IETF RFCs, and Other Standards Home Automation Cataloging a Library Implementing a Privacy Policy Using P3P Mining Web Server Logs Object Oriented Programming Concepts Recommended Computer Books Recommended Internet Explorer Settings Review of the Compaq iPaq 3800 Series: H3830, H3835, H3850, H3870, H3875 Things to Consider when Internationalizing an Application Understanding the Internet Jigsaw Puzzle Using the Localization Toolkit Xoc Scale Search Engine Ratings Foldit Temporary Download Site Downloads Links Search Other Xoc managed sites: http://grr.xoc.net http://www.986faq.com http://www.mayainfo.org https://mayacalendar.xoc.net http://www.yachtslog.com |
<?xml version="1.0" encoding="UTF-8"?> <!-- Written by Greg Reddick --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" version="1.0" encoding="iso-8859-1" omit-xml-declaration="no" indent="yes" media-type="application/x-cdf"/> <xsl:template match="/"> <channel href="http://www.xoc.net/links" base="http://www.xoc.net/link"> <title>Xoc Links</title> <logo href="http://www.xoc.net/links/xocicon.gif" style="icon"/> <xsl:apply-templates/> </channel> </xsl:template> <xsl:template match="links"> <xsl:apply-templates> <xsl:sort select="attribute::title"/> </xsl:apply-templates> </xsl:template> <xsl:template match="group"> <channel> <title><xsl:value-of select="attribute::title"/></title> <xsl:apply-templates> <xsl:sort select="attribute::title"/> </xsl:apply-templates> </channel> </xsl:template> <xsl:template match="link"> <item href="{attribute::href}"> <title><xsl:value-of select="attribute::title"/></title> </item> </xsl:template> </xsl:stylesheet> |
||
Top |
[www.xoc.net] Copyright © 1997-2023 by Gregory Reddick . All Rights Reserved. 02/20/09 01:28 |