summaryrefslogtreecommitdiff
path: root/src/lxml/serializer.pxi
Commit message (Expand)AuthorAgeFilesLines
* Avoid direct C-API call.Stefan Behnel2021-05-191-2/+1
* LP#1869455: C14N 2.0 serialisation failed for unprefixed attributes when a de...Stefan Behnel2020-10-011-1/+6
* Make it less likely that the serialisation of large documents (> MAX_INT) is ...Stefan Behnel2020-05-111-3/+5
* Support parsing from file paths in canonicalize(), not just file-like objects.Stefan Behnel2019-04-291-10/+8
* Change canonicalize() interface to return its result as a text string by defa...Stefan Behnel2019-04-291-9/+19
* Implement C14N 2.0 exclusion of tags and attributes.Stefan Behnel2019-04-281-2/+28
* Do something useful with the result of target.close() in _tree_to_target(), f...Stefan Behnel2019-04-271-1/+1
* Correctly serialise text content in ET.write() and ET.tostring() with C14N 2.0.Stefan Behnel2019-04-271-5/+13
* Implement "c14n2" serialisation method via iterwalk().Stefan Behnel2019-04-271-3/+56
* Reduce overhead in C14N serialisation for empty namespace and/or attribute li...Stefan Behnel2019-04-261-10/+16
* Avoid redundant list of list creation.Stefan Behnel2019-04-261-1/+1
* Add C14N 2.0 implementation.Stefan Behnel2019-04-261-0/+320
* Exclude absolute Windows (C:\...) file paths from URL escaping since libxml2 ...Stefan Behnel2019-03-271-2/+4
* Remove some Python anachronisms by using the with statement for file resource...Stefan Behnel2019-03-271-9/+2
* Work around libxml2's URL-unescaping in xmlOutputBufferCreateFilename() by es...Stefan Behnel2019-03-261-1/+7
* Speed up ascii/non-ascii string detection in isutf8() and funicode() helper f...Stefan Behnel2018-10-201-1/+1
* Remove redundant parenthesesHugo2018-08-251-27/+27
* Convert another string formatting operation to an f-string.Stefan Behnel2018-01-251-2/+2
* Use f-strings for all string formatting for which it makes sense (i.e. does n...Stefan Behnel2018-01-251-10/+11
* Remove useless Py3 adaptation that Cython can handle internally.Stefan Behnel2017-11-051-4/+4
* Evaluate error code inside of with-block to avoid "maybe uninitialised" C com...Stefan Behnel2017-08-311-2/+2
* Implement async interface for xmlfile().Stefan Behnel2017-08-191-0/+138
* Make object struct layout of internal xmlfile classes more compact by avoidin...Stefan Behnel2017-08-191-2/+2
* Rewrite the xmlfile "stop on error" handling as we should only stop writing o...Stefan Behnel2017-08-191-4/+9
* Add a ``.write_result()`` method to XSLT result objects to simplify writing t...Stefan Behnel2017-08-171-4/+5
* LP#1415643: Prevent writing to target after it raised an exception. This prev...Stefan Behnel2017-08-131-8/+12
* LP#1465357: allow None as argument to xmlfile.write() for convenience.Stefan Behnel2017-08-131-4/+7
* Clean up exception classes and turn them into extension types.Stefan Behnel2017-08-131-2/+4
* fix in-code hex entity encodermatejcik2017-04-111-17/+20
* Merge remote-tracking branch 'lxml/master' into method-ctxmanagerBurak Arslan2017-02-061-8/+209
|\
| * repair xmlfile serialisation: comparing bytes to str always fails in Py3Stefan Behnel2017-01-221-3/+4
| * fix typos in error handling codeStefan Behnel2017-01-081-2/+2
| * fix UTF-8 error handling in _write_attr_string()Stefan Behnel2017-01-081-4/+10
| * support exception raising from _write_attr_string()Stefan Behnel2017-01-081-1/+1
| * avoid redundant casting and Python conversions in attribute serialisation codeStefan Behnel2017-01-081-16/+16
| * remove some trailing semicolons that were left over from copied C code but ar...Stefan Behnel2017-01-081-43/+46
| * port libxml2's xmlBufAttrSerializeTxtContent as _write_attr_stringBurak Arslan2017-01-061-1/+195
| * try to use the new functionBurak Arslan2016-12-271-1/+1
* | check and test for _IncrementalWriter.method() ctx manager misuseBurak Arslan2017-01-101-1/+17
* | implement _IncrementalWriter.method() for changing output method with a conte...Burak Arslan2017-01-081-1/+31
* | Add method keyword to _IncrementalWriter.element()Burak Arslan2017-01-051-3/+12
|/
* fix <script> text content serialization in incremental html modeBurak Arslan2016-12-231-1/+8
* minor code cleanupsStefan Behnel2016-12-041-12/+7
* docstring updateBurak Arslan2016-12-041-1/+4
* Make it possible to temporarily override output method when calling _Increme...Burak Arslan2016-11-291-3/+10
* Revert "Revert "Revert "Merge pull request #184 from Pelleplutt/master"""Stefan Behnel2016-08-201-3/+2
* Revert "Revert "Merge pull request #184 from Pelleplutt/master""Stefan Behnel2016-08-201-2/+3
* Revert "Merge pull request #184 from Pelleplutt/master"Stefan Behnel2016-08-201-3/+2
* Use keyword arguments to get rid of the silly one digit bools all over.Per Lejontand2016-01-221-2/+3
* Limit the impact of the sparse namespace copy to c14n.Per Lejontand2015-12-151-2/+2