Doing some hard work

Thu 25 May 2006, ,

Last night, I worked hard to enhance this blogging tool and doing some other stuffs that were on the fire too.

Added a RDF/RSS feed to this blog
You can know add me to your aggregator
Finished a publication about XSL Formatting Objects (XSL-FO)
The goal of it is to give the first steps to follow to build a .fo file.
Started and finished the next step of XSL-FO : XSLT
This publication builds an eye-candy PDF file from an XHTML web page.

An XSL trick to serialize XML (into a CDATA) :

<xsl:text disable-output-escaping="yes">&lt;![CDATA[</xsl:text>
<xsl:copy-of select="." />
<xsl:text disable-output-escaping="yes">]]&gt;</xsl:text>

Un peu de dur labeur hier soir, ça ne fait pas de mal (et ça rappelle le temps des études). Un fil RSS a été ajouté pour le plaisir de votre aggrégateur préféré.

J'en ai profité aujourd'hui pour terminer l’article d’Introduction à XSL-FO et de réaliser la suite de cet article soit la génération d’un document .fo à partir de XML via XSLT.

Pour terminer, une astuce XSL permettant mettre du XML à plat, dans un CDATA :

<xsl:text disable-output-escaping="yes">&lt;![CDATA[</xsl:text>
<xsl:copy-of select="." />
<xsl:text disable-output-escaping="yes">]]&gt;</xsl:text>