Displaying XML in Safari

2004-12-08 Thread Eric VERGNAUD
Hi,

The current version of Safari has no support for pure XML "à la Internet
Explorer". What a pity !

I was wondering if there is a simple way to convert an XML document to HTML
that would display properly in Safari.

This is merely an utility, and all I'm looking for is something that will
make XML look like XML. No special features.

---
Eric VERGNAUD - JLynx Software
Cutting-edge technologies and
services for software companies
web: http://www.jlynx.com
---



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



Re: Displaying XML in Safari

2004-12-08 Thread Alain Gaeremynck
Use mozilla and or Firefox.  It works perfectly for me
Eric VERGNAUD wrote:
Hi,
The current version of Safari has no support for pure XML "à la Internet
Explorer". What a pity !
I was wondering if there is a simple way to convert an XML document to HTML
that would display properly in Safari.
This is merely an utility, and all I'm looking for is something that will
make XML look like XML. No special features.
---
Eric VERGNAUD - JLynx Software
Cutting-edge technologies and
services for software companies
web: http://www.jlynx.com
---

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

--
Alain Gaeremynck
CTO Le Groupe Interstructure
(514) 374-1110
(514) 825-7810 cell
weblog: http://www.sanssucre.ca
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Displaying XML in Safari

2004-12-08 Thread Larry Meadors
If you have a String, you could use c:out, and the escapeXml attribute.

>>> [EMAIL PROTECTED] 12/8/2004 1:33:00 PM >>>
Hi,

The current version of Safari has no support for pure XML "à la Internet
Explorer". What a pity !

I was wondering if there is a simple way to convert an XML document to HTML
that would display properly in Safari.

This is merely an utility, and all I'm looking for is something that will
make XML look like XML. No special features.




Re: Displaying XML in Safari

2004-12-08 Thread Eric VERGNAUD
le 8/12/04 22:33, Larry Meadors à [EMAIL PROTECTED] a écrit :

> If you have a String, you could use c:out, and the escapeXml attribute.
> 
 [EMAIL PROTECTED] 12/8/2004 1:33:00 PM >>>
> Hi,
> 
> The current version of Safari has no support for pure XML "à la Internet
> Explorer". What a pity !
> 
> I was wondering if there is a simple way to convert an XML document to HTML
> that would display properly in Safari.
> 
> This is merely an utility, and all I'm looking for is something that will
> make XML look like XML. No special features.
> 
> 
> 

Here is what I found:

http://www.webreference.com/js/tips/011227.html

says:

You can convert an XML file to HTML on the fly, instead of building
DOMDocument objects and running a conversion utility between them. You just
load the XML file in your browser, and out will come the desired HTML. In
order to do this conversion on the fly, you need to specify the XSLT file
(formatting directives) in the body of the XML file. The top two lines of
the XML file should be as follows:



where transform.xsl is the name of the formatting utility.

It works like a charm.

---
Eric VERGNAUD - JLynx Software
Cutting-edge technologies and
services for software companies
web: http://www.jlynx.com
---



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