|
What are the currently available XSLT processors supporting XPath 2.0 standard?
Started by Lucas -luky- Noleto on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Altova2009 is said....
Update : IBM's WebSphere 7 XML Feature Pack
There are four known XSLT 2.0 processors at this date-Paul Adams , Eifel IBM's WebSphere 7 XML Feature Pack , Java Of these Saxon and IBM's xslt processor are written in Java .
|
|
What are the chances to see XSLT 2.0 processors like saxon for php in the nearest future?
Started by Dziamid on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
PHP5 relies exclusively on LibXSLT for XSLT processing (Sablotron to the AltovaXML XSLT 2.0 processor....
If youIn the nearest future? None.
This isn't entirely true.
Is out), and there is no plan to support XSLT 2.0 in this library.
|
|
Does anyone know of a resource which summarises which version of XSLT is supported in different versions of the major browsers?
Started by pauldoo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Internet Explorer 5 is NOT compatible with the official....
Internet Explorer
Internet Explorer 6 supports XML, XSLT, and XPath.
Http://www.w3schools.com/XSL/xsl_browsers.asp
Mozilla Firefox
Firefox 3 supports XML, XSLT, and XPath.
|
Ask your Facebook Friends
|
Now that doctype exists this has been posted there: I18n for XSLT (or what is the gettext() and xgettext of C++ for XSLT)? ).
Complete C++ i18n gettext() “hello world” example shows a standard way to handle messages in a C++ program using gettext(). The...
Started by C.W.Holeman II on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Text in an XSLT.
|
|
It seems like this is easy to do in XSLT 2.0 but Microsoft in its infinite wisdom doesn't support XSLT 2.0 in Visual Studio 2005.
Started by Kevin Gale on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However, another option would be to extend XSLT with a custom script function in C#:....
With XSLT 1.0 you'll have to use substring-before() and substring-after() to split option would be to do all the parsing and calculation in XSLT.
|
|
I plan to use XML/XSLT in my iPhone application.
What version of XSLT is currently supported on the iPhone? Can I use XSLT 2.0 or just 1.0 ?
Started by tillda on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The NSXMLDocument class would be the way to do option I know of is to directly use... .
The onlyI'm afraid the xslt situation is rather grim.
TouchXML plans xslt support but doesn't have it yet.
This but Apple pulled it from the iPhone.
|
|
Is there anything that competes with XSLT. I really just cannot wrap my head around XSLT.
Answer Snippets (Read the full thread at stackoverflow):
For ....
Not precisely, but if you want to help your head learn to wrap around CS concepts related to XSLT you own parser, and express the transformation that you'd "normally" with XSLT in whatever language explicit anyway, than XSLT.
|
|
I'm trying to run an XSLT transformation from an ant file.
I'm using a XSLT 2.0 stylesheet with a saxon 9 parser (supporting XSLT 2.0).
The problem is that it seems that ant is always calling an XSLT 1.0 parser.
Here's my ant file :
<xslt style="stylesheet...
Started by paulgreg on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you sure you need the double back slashes?
Update: The xslt ant documentation mentions="net.sf.saxon.TransformerFactoryImpl....
Www.abbeyworkshop.com/howto/xslt/ant-saxon/index.html
From that it appears you are doing the correct thing.
|
|
Is there an XSLT library that is pure Python?
Installing libxml2+libxslt or any similar C libraries is a problem on some of the platforms I need to support.
I really only need basic XSLT support, and speed is not a major issue.
Started by Andy Balaam on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Unfortunately there are no pure-python ....
Here's some info.
Have you looked at 4suite ?
If you only need basic support, and your XML isn't too crazy, consider removing the XSLT element from the equation and just using a DOM/SAX parser.
|
|
What it is about XSLT that people find irritating? Is it the syntax (which is pretty unusual) or just the way XSLT works in general? Are there features that are lacking?
I did a little bit of XSLT (around 800 lines) a while ago and found it not that bad...
Started by Gab Royer on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Just out of curiosity, what did your 80....
I've worked with XSLT before.
I personally dislike XSLT because it seems to combine several things that are generrally disliked which can make statements verbose - aka xml programming language.
|