|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: default meta tag??
The FAQ is doing translation via a scripting language. For my project I am using the Java XML API (Xalan) to do the translation. So the suggestion made in the FAQ is not going to be appropriate. Are there any other potential solutions which can be used in the Java XML API? Thanks. Tanzila -----Original Message----- From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Julian Reschke Sent: 04 September 2001 12:48 To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Subject: RE: default meta tag?? This is a FAQ. See <http://www.biglist.com/lists/xsl-list/archives/200108/msg00541.html>. > -----Original Message----- > From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx > [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Tanzila > Mohammad > Sent: Tuesday, September 04, 2001 1:33 PM > To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx > Subject: RE: default meta tag?? > > > The problem I have is as follows: > My xml > <?xml version="1.0" encoding="iso-8859-6"?> > <language> > <organisation>organisation</organisation> > <encoding>iso-8859-6</encoding> > </language> > > My xsl: > > <?xml version="1.0"?> > <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" > version='1.0'> > <xsl:output method="html"/> > > <xsl:param name="xmlFile"></xsl:param> > > <xsl:template match="/"> > <html> > <head> > <meta content="text/html;CHARSET={document($xmlFile)//encoding}" > http-equiv="Content-Type"/> > </head> > <body> > <font color="#CC0000"> > <xsl:value-of select="document($xmlFile)//organisation"/> > </font> <br/> > </body> > </html> > </xsl:template> > > </xsl:stylesheet> > > My output returns: > <html> > <head> > <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> > <meta http-equiv="Content-Type" content="text/html;CHARSET=iso-8859-6"> > </head> > <body> > <font color="#CC0000">organisation</font> > <br> > </body> > </html> > > The problem is in the output - the duplicate meta tag, is there a default > setting that I am missing? How do I remove the following? > > <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> > > When I use encoding for Arabic or Chinese the characters are not being > recognised due to the presence of the extra meta tag. > > Thanks > > Tanzila > > > > > > XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list > XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






