0.9.5
- Simple and Complex field hyperlinks now support bookmarks / internal anchors
0.9.4
- Faked lists inside tables are correctly converted to real lists
0.9.3
- Headings inside a complex field no longer fail to ignore styles
0.9.2
- Fixed issue where multiple complex fields in the same paragraph would cause content to disappear.
0.9.1
- Added EmbeddedObject support with Shape
0.9.0
- Implemented complex and simple field hyperlinks.
- This includes a significant change to the API. The export methods are now all
called twice. The results are discarded in the first pass. In first pass
(
self.first_pass == True
), you can now track information that will be used to make decisions in the second pass. The notable example where this technique is used is implementing complex fields. Because the export methods are called twice, some exporter extensions that perform lossly operations on the document structure may need to ignore processing during the first pass. - The function signature of the
get_hyperlink_tag
has changed. It previously accepted aHyperlink
instance. Now it only acceptstarget_uri
.
0.8.5
- Styled whitespace is no longer ignored. Previously, this would result in certain configurations with words grouped together without spaces.
0.8.4
- Headings now preserve italic, webHidden and vanish styles
0.8.3
- Decimal font sizes are now handled properly
0.8.2
- Paragraphs that have numbering definitions with a level number format of None are no longer considered list items.
0.8.1
- Headings in lists no longer break numbering. By default, in the HTML exporter, headings in lists are represented using the "strong" tag, regardless of the heading level.
0.8.0
- Note: This release consists of significant changes to the internal API and is not backwards compatible with prior versions
- Removed
ConvertRootUpperRomanListToHeadingMixin
- Fixed issue where the same image referenced multiple times would not display correctly after the first instance
- Removed the preprocessor and re-implemented the functionality into the exporter
- Re-implemented the exporter into a top-down generator algorithm
- Implemented the necessary object classes for each element type (Paragraph, Run, Text, etc)
- Implemented enumerated list detection and conversion to numbering lists
0.7.0
- Added support for python 3.4
- Added support for pypy
- No longer adding list-style-type attribute to ordered list tags. We are now using a class to indicate these.
- Faked sub/super handling is no longer handled by default.
Instead,
that handling is implemented in a new mixin class.
See
pydocx.export.mixins
pydocx.wordml
andpydocx.openxml
have been merged intopydocx.openxml.packaging
to better mirror the MS implementation structure.pydocx.models.styles
has been moved topydocx.openxml.wordprocessing.*
pydocx.managers.styles
has been merged intopydocx.openxml.wordprocessing.style_definition_part
- Added
XmlCollection
field type, now used byopenxml.wordprocessing.styles.Style
- Implemented several model classes for Numbering.
- Added numbering property to the numbering definitions part.
- XmlModels now define their own tags
- Simplified importing PyDocX
- Header processing now occurs in the exporter rather than the pre-processor
- PyDocXExporter.heading signature has changed from accepting heading_level which was an HTML tag to accepting heading_style_name which is the raw style name of the heading.
- The
convert_root_level_upper_roman
option has been replaced with an optional mixinpydocx.export.mixins.ConvertRootUpperRomanListToHeadingMixin
. - Preprocessor no longer manages table membership. Instead, that is handled in the base iterative parser.
ConvertRootUpperRomanListToHeadingMixin
would fail for paragraphs that had no properties.
0.6.0
- Moved parsers to export module
- Renamed DocxParser to PyDocXExporter
- Renamed Docx2Html to PyDocXHTMLExporter
- Eliminated all improper usages of the find_first utility function
- Added support for NumberingDefinitionsPart to the WordprocessingDocumentFactory
0.5.1
- Fixed issue #116 - Don't assume the first sz of an rPr actually is a direct child of that rPr.
0.5.0
- Moved CLI to __main__
- Moved tests to root-level module
0.4.4
- Specify charset in rendered HTML
- Added support for using defusedxml to mitigate XML vulnerabilities.
0.4.3
- Allow a file-like object to be passed into the DocXParser constructor.
- Added basic support for footnotes.
0.4.2
- Fixed a problem with calculating image sizes
0.4.01
- Take into account run position and size to apply superscript and subscript tags to runs that would look like they have superscript and subscript tags but are being faked due to positioning and sizing.
0.4.00
- External images are now handled. This causes a backwards incompatible change with all handers related to images.
0.3.23
- Added support for style basedOn property
0.3.22
- Fixed a bug in which the run paragraph mark properties were used as run properties (pPr > rPr within a style definition)
- Fixed a bug in which the run paragraph properties defined a global style identifier, any of those styles defined globally were ignored.
- Fixed a bug which allowed run properties to reference paragraph properties, and paragraph properties to reference run properties. Such instances are now ignored.
0.3.21
- We are once again supporting files that are missing images.
0.3.20
- Fixed a problem with list nesting. We were marking list items as the first list item in error.
0.3.19
- Added support for python 3.3
- Fixed a problem with list nesting with nested sublists that have the same ilvl.
0.3.18
- Fixed an issue with marking runs as underline when they were not supposed to be.
0.3.17
- Fixed path issue on Windows for Zip archives
- Fixed attribute typo when attempting to generate an error message for a missing required resource
0.3.16
- CHANGELOG.md was missing from the MANIFEST in 0.3.15 which would cause the setup to fail.
0.3.15
- Use inline span to define styles instead of div
- Use ems for HTML widths instead of pixels
- If a property value is
off
, it is now considered disabled
0.3.14
- Use paths from
_rels/.rels
instead of hardcoding
0.3.13
- Significant performance gains for documents with a large number of table cells.
- Significant performance gains for large documents.
0.3.12
- Added command line support to convert from docx to either html or markdown.
0.3.11
- The non breaking hyphen tag was not correctly being imported. This issue has been fixed.
0.3.10
- Found and optimized a fairly large performance issue with tables that had large amounts of content within a single cell, which includes nested tables.
0.3.9
- We are now respecting the
<w:tab/>
element. We are putting a space in everywhere they happen. - Each styling can have a default defined based on values in
styles.xml
. These default styles can be overwritten using therPr
on the actualr
tag. These default styles defined instyles.xml
are actually being respected now.
0.3.8
- If zipfile fails to open the passed in file,
we are now raising
MalformedDocxException
instead ofBadZipFIle
.
0.3.7
- Some inline tags
(most notably the underline tag)
could have a
val
ofnone
and that would signify that the style is disabled. Aval
ofnone
is now correctly handled.
0.3.6
- It is possible for a docx file to not contain a
numbering.xml
file but still try to use lists. Now if this happens all lists get converted to paragraphs.
0.3.5
- Not all docx files contain a
styles.xml
file. We are no longer assuming they do.
0.3.4
- It is possible for
w:t
tags to havetext
set toNone
. This no longer causes an error when escaping that text.
0.3.3
- In the event that
cElementTree
has a problem parsing the document, aMalformedDocxException
is raised instead of aSyntaxError
0.3.2
- We were not taking into account that vertical merges should have a continue attribute, but sometimes they do not, and in those cases word assumes the continue attribute. We updated the parser to handle the cases in which the continue attribute is not there.
- We now correctly handle documents with unicode character in the namespace.
- In rare cases, some text would be output with a style when it should not have been. This issue has been fixed.
0.3.1
- Added support for several more OOXML tags including:
- caps
- smallCaps
- strike
- dstrike
- vanish
- webHidden
More details in the README.
0.3.0
- We switched from using
stock
xml.etree.ElementTree
to usingxml.etree.cElementTree
. This has resulted in a fairly significant speed increase for python 2.6 - It is now possible to create your own pre processor to do additional pre processing.
- Superscripts and subscripts are now extracted correctly.
0.2.1
- Added a changelog
- Added the version in
pydocx.__init__
- Fixed an issue with duplicating content if there was indentation or justification on a p element that had multiple t tags.