Some basics: I covered a lot. XML to XSD to .vb class to implimenting the class.This was a demonstration of … More
Tag: XML
Timestamping
This is an old topic. But is it? In this time of data marshalling via remoting and XML webservices, timestamps … More
My revised Atom XSLT… solves the problem with escaped content.
By Published:
My revised Atom XSLT… solves the problem with escaped content.
<?xml version=”1.0″?> <xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform” xmlns:atom=”http://purl.org/atom/ns#”> <xsl:output method=”xml” indent=”yes” omit-xml-declaration=”yes”/> <xsl:preserve-space elements=”div”/> <xsl:preserve-space elements=”content”/> <xsl:template match=”atom:feed”> <html> <body> <xsl:for-each select=”atom:entry”> … More
My revised Atom XSLT… solves the problem with escaped content.
<?xml version=”1.0″?> <xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform” xmlns:atom=”http://purl.org/atom/ns#”> <xsl:output method=”xml” indent=”yes” omit-xml-declaration=”yes”/> <xsl:preserve-space elements=”div”/> <xsl:preserve-space elements=”content”/> <xsl:template match=”atom:feed”> <html> <body> <xsl:for-each select=”atom:entry”> … More
Not everything needs to be dynamic
Ever wonder why some site hosts suck so bad, and other don’t. Sometimes it isn’t the host but the number … More
Weakness in my Atom XSLT
If you are working with my Atom XSLT, you may or may not have noticed the formatting and HTML code … More
XSLTs: For RSS 1.0
<?xml version=”1.0″?> <xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform” xmlns:rdf=”http://www.w3.org/1999/02/22-rdf-syntax-ns#” xmlns:rss=”http://purl.org/rss/1.0/” xmlns:dc=”http://purl.org/dc/elements/1.1/”> <xsl:output method=”html” indent=”yes” omit-xml-declaration=”yes”/> <xsl:template match=”rdf:RDF” > <html> <body> <xsl:for-each select=”rss:channel”> <a … More
XSLTs: For RSS 0.9x and 2.0
<?xml version=”1.0″?> <xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform”> <xsl:output method=”html” indent=”yes”/> <xsl:param name=”TITLE”/> <xsl:template match=”rss”> <html> <body> <xsl:for-each select=”channel/image”> <a href=”{link}”> <img src=”{url}” … More
A simple XSLT For Atom Feeds
<?xml version=”1.0″?><xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform” xmlns:atom=”http://purl.org/atom/ns#” ><xsl:output method=”html” indent=”yes” omit-xml-declaration=”yes”/><xsl:template match=”atom:feed”><html><body><xsl:for-each select=”atom:entry”><p><a href=”{atom:link[2]/@href}” target=”_blank”><font size=”+1″><b><xsl:value-of select=”atom:link[2]/@title”/></b></font></a><br/><xsl:for-each select=”atom:author”>By <b><xsl:value-of select=”atom:name”/></b><br/></xsl:for-each><br/><xsl:if test=”atom:issued”>Published:<b><xsl:value-of select=”atom:issued”/></b><br/></xsl:if><br/><xsl:value-of … More