On Wednesday 30 January 2002 12:29, Terrence Brannon wrote: > How easy is it to build a website in AxKit that has > > spanish, english and japanese versions? > > Are there any examples of this? What would it entail?
To expand on what Yanick said, you can also use simple XSLT rules and xml:lang attributes in your source XML. All you have to do is to pass the language to the XSLT as an xsl:param (there are multiple simple ways of doing that) and then add a predicate [@xml:lang=$language] to your match rules. Alternatively, you could do this as a two step process, the first stylesheet removing all elements (and their content) that aren't in the right language, and the second one doing the formatting. -- _______________________________________________________________________ Robin Berjon <[EMAIL PROTECTED]> -- CTO k n o w s c a p e : // venture knowledge agency www.knowscape.com ----------------------------------------------------------------------- James Joyce -- an essentially private man who wished his total indifference to public notice to be universally recognized. -- Tom Stoppard --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
