Libxslt is the XSLT C library developed for the GNOME project. It provides an implementation of XSLT 1.0 and common extensions like EXSLT. Libxslt is based on libxml2 (for XML parsing, tree manipulation and XPath support).
Questions tagged [libxslt]
110 questions
0
votes
1 answer
How to know, libxslt support EXSLT or not
I am on MacOSX 10.7, and having libxml2 version as i can see from libxml2/xmlversion.h is
define LIBXML_DOTTED_VERSION "2.7.3"
that means 2.7.3
My application also using xslt, for so it has libxslt processor, which comes along with the libxml2
some…

Amitg2k12
- 3,765
- 10
- 48
- 97
0
votes
1 answer
Mac OS | xmlXPathCompOpEval: function max bound to undefined prefix math
In my application, i am using libxslt engine, and stucked in one issue, my xslt engine having one syntax is using
and getting warning
xmlXPathCompOpEval: function max bound to undefined prefix math
does…

Amitg2k12
- 3,765
- 10
- 48
- 97
0
votes
2 answers
0
votes
2 answers
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 win32, it seems that binaries are already availble…

rpg
- 1,632
- 2
- 18
- 34
0
votes
1 answer
Python AWS CDK build broke yesterday - 'Please make sure the libxml2 and libxslt development packages are installed.'
I've been using CDK to regularly deploy my python-based lambdas to AWS for over a year and it's been working great. The build broke yesterday, and I noticed that the image I'm using was updated a couple of days ago:…

Devvex23
- 1
- 2
0
votes
0 answers
Facing an issue in LibXSLT 1.99 version transform function
Problem statement :
I'm parsing my XML document by using the LibXSLT file. Now I've updated my service Perl version from 5.16 to 5.30. I pulled the LibXSLT version accordingly. Seems I used the "1.80" LIBXSLT version for the 5.16 perl version…

Kaushik KR
- 11
- 2
0
votes
0 answers
python lxml in docker: "Document is empty" while parsing
Why this code is working without issues on my mac with any version of python, requests and lxml, but doesn't work in any docker container? i tried everything(
it just fails on 34533 line (discovered by printing el.sourceline)
from requests import…

Van4ozA
- 1
- 2
0
votes
1 answer
'libxslt not found' when build nginx with 'nginx-dav-ext-module' on windows
I want to build nginx for windows with webdav module, so I followed the doc http://nginx.org/en/docs/howto_build_on_win32.html
Enviroment
Windows10
Microsoft Visual C++ Build…

Doctor.Who.
- 607
- 1
- 7
- 15
0
votes
1 answer
Using LibXSLT (xsltproc) as an external engine in Altova's XMLSpy
I am trying to use LibXSLT as an external engine in Altova's XMLSpy, but keep getting an IO error when merging. What am I doing wrong?
Runline:
Error:

Roee Vakrat
- 51
- 7
0
votes
2 answers
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 2.6.27 for this version of libxslt
but libxml2-2.7.3…

Meltemi
- 37,979
- 50
- 195
- 293
0
votes
0 answers
Does Libxslt support mutable arguments?
In our company, we are moving from MSXML 6.0 engine to Libxslt.
Our XSLT code contains a lot of flags, counters and arrays implemented in JS, which MSXML supported and Libxslt does not.
As a replacement, I am looking for some sort of mutable…

Roee Vakrat
- 51
- 7
0
votes
1 answer
XSLT extension function with libxslt
I am trying to create an xslt extension function for libxslt (c++). My extension function takes a string as input, then this string is parsed by xml parser, and the function returns this parsed xml. I return value by this expression:
void…

andrei.aliashkevich
- 93
- 1
- 7
0
votes
1 answer
Is there a source build available for the libxslt development package?
I am trying to install lxml on a ReMarkable tablet, and while the opkg entware repo has libxslt, it does not contain a package for libxslt-dev. I was wondering if anyone has links to a source build or even better an ipkg file. I've been scouring the…

Jcwscience
- 17
- 3
0
votes
0 answers
Segmentation fault when create FILE
I try to convert an XML file with XSLT into HTML.
#include
#include
#include
#include
#include
#include
#include…

Cardi
- 29
- 5
0
votes
1 answer
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
in the XSL file is being turned into
in the output from unicode(applyStylesheet()). This is…
in the XSL file is being turned into
in the output from unicode(applyStylesheet()). This is…

Isaac
- 10,668
- 5
- 59
- 68