ďťż
Podstrony
|
telcocafeWitam od kilku dni ćwiczę xml i mam problem z wprowadzeniem <! [ CDATA [ ]] >. Gdy do dokumentu dodam CDATA:<?xml version="1.0" encoding="iso-8859-2"?> <?xml-stylesheet type="text/xsl" href="strona.xsl"?> <strona> <tytul>Test strony</tytul> <tresc> <lewa>lewa</lewa> <srodek> srodek <! [ CDATA [ tekst ]] > </srodek> <prawa>prawa</prawa> </tresc> </strona> Pojawia się błąd. Nie wiem czy robię gdzieś błąd czy to wina czegoś innego. Dokument przedstawiany jest za pomocą XSL: <?xml version="1.0" encoding="iso-8859-2" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:apply-templates/> </xsl:template> <xsl:template match="strona"> <html> <head> <title>adresy.xsl</title> </head> <body> <table border="1" width="100%"> <xsl:apply-templates/> </table> </body> </html> </xsl:template> <xsl:template match="tytul"> <tr> <td colspan="3"> <xsl:value-of select="."/> </td> </tr> </xsl:template> <xsl:template match="tresc"> <tr> <xsl:apply-templates/> </tr> </xsl:template> <xsl:template match="lewa"> <td width="20%"> <xsl:value-of select="."/> </td> </xsl:template> <xsl:template match="srodek"> <td width="60%"> <xsl:value-of select="."/> </td> </xsl:template> <xsl:template match="prawa"> <td width="20%"> <xsl:value-of select="."/> </td> </xsl:template> </xsl:stylesheet> Prosze o pomoc. Z góry dziękuje :) PS. Czy mośeci mi polecić jakąś dobrą strone lub książke o XML'u i XSl? |
|||
Sitedesign by AltusUmbrae. |