Subject:Saving XML as Unicode Author:Max Hodges Date:19 Jun 2001 07:02 AM
is there any way to force SStudio to save my XML documents as Unicode instead of UTF8 files? Presently, I must resave them all with Notepad after I edit them.
Subject:Re: Saving XML as Unicode Author:Minollo I. Date:19 Jun 2001 09:28 AM
At 07:07 AM 6/19/2001 -0400, you wrote:
>From: "Max Hodges"
>
>is there any way to force SStudio to save my XML documents as Unicode
>instead of UTF8 files? Presently, I must resave them all with Notepad
>after I edit them.
Just specify encoding="ucs-2" in your XML PI.
Minollo
> -----Original Message-----
> From: stylus-studio-tech Listmanager [mailto:listmanager]
> Sent: Tuesday, June 19, 2001 11:24 PM
> To: Recipients of 'stylus-studio-tech' suppressed
> Subject: Re: Saving XML as Unicode
>
>
> From: "Yodi Kodi"
>
> Hi all !
>
> How can I save java source as another encoding type instead of UTF-8 ?
>
> YodiKodi
>
>
>
> To reply: mailto:stylus-studio-tech.3122@edn.exceloncorp.com
> To start a new topic: mailto:stylus-studio-tech@edn.exceloncorp.com
> To login: http://edn.exceloncorp.com/~SSDN
>
>
Subject:RE: Saving XML as Unicode Author:Minollo I. Date:20 Jun 2001 09:04 AM
At 01:12 AM 6/20/2001 -0400, you wrote:
>From: "Yodi Kodi"
>
>Thanks for your answer !
>
>Maybe it is important to users who do not use English.
>I hope that you add this feature in next release.
UTF-8 is able to represent any character set.
Anyway, we'll look into what we can do.
Subject:RE: Saving XML as Unicode Author:Max Hodges Date:20 Jun 2001 11:38 PM
I am using Japanese characters in my XML. Then open and read these files in VB using the FileSystemObject. If the files are not Unicode, I get garbage, so I must save them to Unicode. I wish I could do this from Stylus. It seems that Stylus is remembering to save my XSL as Unicode, but not my XML. Is there are setting for the format of the XSL, or is unicode just the default?
THanks,
Max
On 6/20/01 9:04:39 AM, Carlo Innocenti wrote:
>At 01:12 AM 6/20/2001 -0400,
>you wrote:
>From: "Yodi Kodi"
>
>
>Tha
>nks for your answer !
>
>Maybe
>it is important to users who
>do not use English.
>I hope
>that you add this feature in
>next release.
UTF-8 is able
>to represent any character
>set.
Anyway, we'll look into
>what we can do.
Subject:RE: Saving XML as Unicode Author:Minollo I. Date:21 Jun 2001 12:06 AM
At 11:43 PM 6/20/2001 -0400, you wrote:
>From: "Max Hodges"
>
>I am using Japanese characters in my XML. Then open and read these files
>in VB using the FileSystemObject. If the files are not Unicode, I get
>garbage, so I must save them to Unicode. I wish I could do this from
>Stylus. It seems that Stylus is remembering to save my XSL as Unicode, but
>not my XML. Is there are setting for the format of the XSL, or is unicode
>just the default?
Did you read my answer? If you have an XML PI that specifies
encoding="ucs-2", like:
....then Stylus Studio will save your file as Unicode.
The same applies to XSLT; the default is utf-8, but if you specify
encoding="ucs-2" in the XML PI than the XSL file will be saved as Unicode.
Subject:RE: Saving XML as Unicode Author:Max Hodges Date:29 Jun 2001 05:30 AM
What is the difference between ucs-2 and ucs-4?
which shoudl I use? Why?
On 6/21/01 12:06:53 AM, Carlo Innocenti wrote:
>At 11:43 PM 6/20/2001 -0400, you
>wrote:
>From: "Max Hodges"
>
>I am
>using Japanese characters in my XML.
>Then open and read these files
>in VB
>using the FileSystemObject. If the files
>are not Unicode, I get
>garbage, so I
>must save them to Unicode. I wish I
>could do this from
>Stylus. It seems
>that Stylus is remembering to save my
>XSL as Unicode, but
>not my XML. Is
>there are setting for the format of the
>XSL, or is unicode
>just the
>default?
Did you read my answer? If you
>have an XML PI that specifies
>
encoding="ucs-2", like:
>version="1.0"
>encoding="ucs-2"?>
....then Stylus
>Studio will save your file as
>Unicode.
The same applies to XSLT; the
>default is utf-8, but if you specify
>
encoding="ucs-2" in the XML PI than the
>XSL file will be saved as
>Unicode.
Subject:RE: Saving XML as Unicode Author:(Deleted User) Date:29 Jun 2001 05:48 AM
At 05.35 29/06/01 -0400, you wrote:
>From: "Max Hodges"
>
>What is the difference between ucs-2 and ucs-4?
>which shoudl I use? Why?
UCS-2 uses 2 bytes for every character (so it can address up to 65536
different symbols), while UCS-4 uses 4 bytes (and the symbols are over 4
millions). So, normally, UCS-2 is sufficient, as it maps the most commonly
used characters, but sometimes you need to switch to UCS-4 (that doubles
the size of the document) or to UTF-16 (pretty much identical to UCS-2 but
it can use more than 2 bytes when needed)
Subject:RE: Saving XML as Unicode Author:Minollo I. Date:29 Jun 2001 02:46 PM
>What is the difference between ucs-2 and ucs-4?
>which shoudl I use? Why?
It may also be worth noting that ucs-2 is the common Unicode representation
on Windows NT systems; some processors (including MSXML I think) don't even
support ucs-4