Re: NSXMLDocument question
Re: NSXMLDocument question
- Subject: Re: NSXMLDocument question
- From: John Stiles <email@hidden>
- Date: Thu, 02 Mar 2006 09:24:34 -0800
I wouldn't rely on Safari's XSLT capabilities yet. We tried using it
recently and had to abandon the plan entirely because it corrupts any
non-ASCII characters. So our USA page rendered great, but our Korean
page turned to gibberish. We have a radar open; I'd suggest anyone else
who would be affected by this should do the same.
There is a command-line XSLT engine that you can use which seemed to
work great; I haven't tried NSXMLDocument's methods so I don't know if
they produce correct results.
Robert Walker wrote:
It sounds to me like you may be able to benefit from NSXMLDocument's
"built-in" support for XSLT processing.
Have you looked at:
NSXMLDocument:
- (id)objectByApplyingXSLT:(NSData *)xslt arguments:(NSDictionary
*)arguments error:(NSError **)error
or
- (id)objectByApplyingXSLTAtURL:(NSURL *)xsltURL
arguments:(NSDictionary *)arguments error:(NSError **)error
On Mar 2, 2006, at 8:40 AM, Ilan Volow wrote:
Off the top-of-my-head, I'd say what you should do would be to call
NSXMLNode's processingInstructionWithName:stringValue method to get
yourself a processing instruction node, and then add this node to
your NSXMLDocument.
-- Ilan
On Mar 2, 2006, at 7:13 AM, malcom wrote:
Hello, I need to generate an XML Document from some NSString. Then,
the xml string will be transmitted to an XSLT document and finally it
will be rendered by WebKit.
But I have a problem...
NSXMLDocument can generate a document like this:
<?xml version="1.0" encoding="utf-8"?>
<ROOT KEY>
..
..
But I need to put this string:
<?xml-stylesheet type="text/xsl" href="template.xsl" ?>
after the first line and pass all to browser. How can I add it? Is
possible?
I have found this on ADC:
file:///Developer/ADC Reference Library/documentation/Cocoa/Conceptual/NSXML_Concepts/Articles/WritingXML.html#//apple_ref/doc/uid/TP40001256
"...NSXML includes support for XSLT. With XSLT you can apply a set of
template rules and patterns to a source XML document and thereby
transform that document into another XML document or into an HTML,
RTF, or plain-text document. Two NSXMLDocument methods are the
interface to XSLT processing:
- (id)objectByApplyingXSLT:(NSString *)xslt error:(NSError **)error
- (id)objectByApplyingXSLTAtURL:(NSURL *)xsltURL error:(NSError
**)error"
Is this a better way to do it?
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden