Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
588 views

Python - convert <type 'instance'> to <type 'str'>?

I'm using libxml2 and libxslt to process XML files. The return value is of type instance but I need to have a UTF-8 static string. styledoc = libxml2.parseFile(style_file) style = ...
3
votes
1answer
141 views

XSLT 1 Plain Text Spacing

Using Perl's XML::LibXSLT necessitates that I use XSLT 1.0, which means that I am stuck without XSLT 2.0 features. Is there a way that I can still pad text cleanly in a plain-text output from my ...
2
votes
2answers
23 views

Python3 and xml/xslt libraries

In python 2.6 I did this to achieve an xsl tranform import libxml2 import libxslt ... styledoc = libxml2.parseFile(my_xslt_file) style = libxslt.parseStylesheetDoc(styledoc) ...
2
votes
1answer
279 views

Building libxslt for iPhone

I just had an app rejected for linking to libxslt using this technique. I'd really like to use XSLT in my app, so it looks like my only shot is to compile it myself. I don't want to use a ...
2
votes
3answers
197 views

Does libxslt have a feature for splitting a document into multiple documents?

Looks like libxslt does not support XSLT 2.0, and xsl:result-document. Is there a way to mimic xsl:result-document using libxslt, or xsltproc?
1
vote
2answers
50 views

xslt variable strangness

Can anyone explain this to me? (using latest libxslt): <a><xsl:copy-of select="(@attrib|exsl:node-set(0))"/></a> <b><xsl:copy-of ...
1
vote
0answers
62 views

How to get Regexp from EXSLT working in libxslt?

Has anyone got Regexp working in libxslt? When yes, how? http://www.exslt.org/regexp/index.html When using the command xsltproc --dumpextensions with the latest libxslt I'm not getting any Regexp ...
1
vote
1answer
98 views

Is there a way to call externals from an xsl stylesheet?

I very often use the document() xslt function to access an external XML file and use that in the transformation. If I provide a URL within the function I can also access RESTfull web service from the ...
0
votes
2answers
68 views

Installing XML::LibXSLT on ActiveState Perl 5.8

For XSLT processing, I am trying to use XML::LibXSLT. I am having ActiveState Perl on win32. As I understand, I need to first install the libxslt before calling 'perl Makefile.PL'. for libxslt on ...
0
votes
0answers
67 views

Can't build libxslt on mac os x

I'm trying to build the libxslt framework from source. I did already build libxml2 successfully, but with libxslt I get some linker errors: Undefined symbols for architecture x86_64: ...
0
votes
2answers
80 views

Trouble linking to correct libxml2 when installing libxslt

Trying to install libxslt-1.1.24 but getting an error during ./configure that says: checking for libxml libraries >= 2.6.27... configure: error: Version 2.6.16 found. You need at least libxml2 ...
0
votes
1answer
84 views

libxslt's applyStylesheet() produces broken XHTML

I've got an XML data file that I'm applying an XSL stylesheet to, using libxslt in Python. Things are almost perfect, but every instance of <hr/> in the XSL file is being turned into <hr> ...
0
votes
1answer
246 views

libxslt-ruby - failed to install gem

I am trying to install the libxslt-ruby gem with ruby 1.8.7 and rails 2.3.8. I have installed libxml-ruby Here is the mkmf.log "gcc -o conftest -I. ...
0
votes
1answer
251 views

xsl:include fails after upgrading PHP version; is libxml/libxslt version mismatch the issue?

I'm running Windows XP with the precompiled PHP binaries available from windows.php.net. I upgraded from PHP 5.2.5 to PHP 5.2.16, and now the xsl:includes in some of my stylesheets stopped working. ...
0
votes
1answer
320 views

passing configure options to rake gems:build

On the server (where I am not root), I have compiled libxslt into /home/foo/sw. So I can install my gem like so: gem install nokogiri -- --with-xslt-dir=/home/foo/sw However, this same technique ...
0
votes
4answers
793 views

How do I include libxslt in my iPhone app?

I've heard that including libxslt.dylib is grounds for getting your app rejected. I don't know how accurate that is. Nevertheless, I would like to include the latest version of libxslt. I'd like to ...
0
votes
1answer
154 views

PHP and XSLTProcessor Misbehavior

Simple question: Why is a PHP function called from an XSL Stylesheet just returning the last argument passed: foo.xsl: <xsl:template match="/"> <xsl:value-of ...
0
votes
4answers
331 views

Order of execution in xslt stylesheet

Lets say I have a xslt stylesheet like the following: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
0
votes
1answer
141 views

Python packages depending on libxml2 and libxslt

Apart from lxml, is anyone aware of Python packages that depend on libxml2 and libxslt?
-1
votes
1answer
243 views

XSL short `value-of` with `disable-output-escaping`?

I'm processing the following (example) XML: <?xml version="1.0"?> <root>&amp; &amp; &amp;</root> through the following (example) XSL: <?xml version="1.0"?> ...
-1
votes
4answers
2k views

How do I install libXSLT for Perl's XML::LibXSLT?

When I run a Perl script I get Can't locate XML/LibXSLT.pm in @INC So I try doing this in cpan: cpan> install XML::LibXSLT CPAN: Storable loaded ok Going to read /root/.cpan/Metadata ...