Well, I'm really sorry but I can't really help you 'cause I'm absolutely 
new to Cocoon. I'm just learning, for the moment. I come from PHP 
development and this operation in PHP is done in an extremely fast way 
with the iconv() function:
<?php
   $XMLdoc_Latin1   = "Some characters: тащийм";
   $XMLdoc_UTF-8    = iconv("ISO-8859-1", "UTF-8", $XMLdoc_Latin1);
   $XMLdoc_MacRoman = iconv("ISO-8859-1", "MacRoman", $XMLdoc_Latin1);
?>
Docs here: http://www.php.net/manual/en/ref.iconv.php
I can try to find some solutions in C2 but I'm really a newbie.
I'm really sorry Jesse to not be able to help you. And for speaking 
about PHP in a wrong place ...
Sincerely,

--
Fulvio Picecchi


Jesse Reynolds wrote:
> Thanks Fulvio
> 
> Looks like the JDK's native2ascii is what I want, only i'd need to make 
> my own Generator out of it or something in order to perform the 
> translation live, yeah?
> 
> And that scares me!
> 
> Do you think a Generator is the right way to go here? (That basically 
> does the same as the xml file generator, or the serverpages generator, 
> but performs the translation to utf-8 beforehand)
> 
> Cheers
> 
> Jesse
> 


---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to