When upgrading to Plone 4.2, what versions of libxml2 and libxslt should be used with lxml?
When upgrading to Plone 4.2, what versions of libxml2 and libxslt should be used with lxml 2.3.4?
615 Views Asked by William-Roy Shackleton At
1
There are 1 best solutions below
Related Questions in PLONE
- Can I use plone.protect 3.0 with Plone 4.3?
- How do I override the main template in Plone 3?
- Create copy of plone installed onto another server with data
- Where is the main space used up in Plone file upload?
- Create a folder in Plone and set uid
- Plone - Syntax Error when doing hello world tutorial
- collective.googleanalytics report with filter containing tag
- Redirecting Site Root URL to its Language Root Folder
- How to move a content type definition created TTW to the file system
- Multiple contact forms in a Plone website
- How to transfer a structure from one Plone to another
- Javascript form processing issue in Plone
- How to get fields displaying in a custom plone dexterity form?
- Plone- In a dexterity.AddForm, how can I include a schema.List widget that has a value_type of object?
- Usage of ZODB temporary storage
Related Questions in LXML
- LXML to write in unicode?
- Python: pip install lxml from source using pip and cython
- Parsing HTML tree in lxml : how can I retrieve the text inside the element?
- How to force python lxml not to quote attributes with <?php ... ?> inclusions?
- Python 3.4 : LXML web scraping
- How to add spaces between nodes when using string() on a tree in XPath
- Get inner text from lxml
- Python 3.4 : LXML : Parsing Tables
- xpath regex doesn't search tail in lxml.etree
- Python, lxml and xpath: returns "[<Element x at 0x29a9998>] rather than expected value
- LXML - parse td content within tr tag
- lxml: I can't remove a span tag and the text inside
- Combine multiple tags with lxml
- How to merge two different paths in a XML file?
- LXML : Populating Pandas DataFrame
Related Questions in LIBXML2
- how to generate xml file using libxml2 in c++?
- LibXML : colon in removeAttribute and value in getAttribute
- valgrind shows me a leak when using libxml2
- Check build parameters of libxml2.so at runtime
- access sub child value by libxml::xpathcontext
- ImportError: No module named libxml2 within Travis build
- How to obtain an xmlBuf for use with xmlBufGetNodeContent/xmlBufNodeDump etc.?
- error libxml2 not found on installing gokogiri on windows
- How to install gokogiri on Windows?
- Installation Error:libxml2
- Parsing large XML from server while downloading with LibXML2 in Swift 3
- How to get the xsd file attribute name one by one using dom parser? how to use get_next_sibling?
- R: xml2 extracts more nodes than expected
- #import <libxml/tree.h> file not found after xcode 6.1 update
- How to prevent LibXML prettyprint from changing element values?
Related Questions in LIBXSLT
- How to calculate max string-length of a node-set?
- xsl:include fails after upgrading PHP version; is libxml/libxslt version mismatch the issue?
- Unexpected result from xsltproc - libXML
- Python libxml2/ libxslt unlinkNode from transformed result produces memory-leak
- Python3 and xml/xslt libraries
- Converting XML to HTML in NodeJs using LibXSLT(throws has no method 'apply' error)
- Installing XML::LibXSLT on ActiveState Perl 5.8
- PHP : different behaviour of XSLT Processor in Windows WRT to Linux
- xmlXPathCompOpEval: function node-set not found
- Different XSLT processing result compared with xsltproc
- When upgrading to Plone 4.2, what versions of libxml2 and libxslt should be used with lxml 2.3.4?
- Could not open file perl
- Perl LibXLST failing on Mac OS Big Sur 11.4
- xslt transformation removes CDATA
- python lxml in docker: "Document is empty" while parsing
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Plone does not set any requirements beyond lxml itself. So, if you meet the requirements listed on the lxml installation page, you meet the requirements for Plone 4.2.
In summary, lxml requires libxml 2.6.21 or later, and libxslt 1.1.15 or later. In detail, I quote the lxml installation page:
Debian and Ubuntu have libxml2 2.7.8 (Ubuntu has had that version since Natty), and libxslt1.1 1.1.26 (all the way back to Lucid); most other Linux distributions will have matching packages.
On Windows, the lxml egg has been statically linked against the correct libxml and libxslt versions, so you don't need to bother with versions there.