summaryrefslogtreecommitdiff
path: root/libmat2/office.py
diff options
context:
space:
mode:
authorjvoisin2019-11-30 11:38:22 +0100
committerjvoisin2019-11-30 11:38:22 +0100
commite4114af3b527836793a48aa1c4a4d3e20ccf4ec4 (patch)
tree474bf7493d741dc7669941f2288a046cf95958c7 /libmat2/office.py
parentd56f83bed1d2b77cce6dab02a99905da4a67f959 (diff)
Improve a bit ppt support
Diffstat (limited to 'libmat2/office.py')
-rw-r--r--libmat2/office.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/libmat2/office.py b/libmat2/office.py
index 21bff6e..aee98af 100644
--- a/libmat2/office.py
+++ b/libmat2/office.py
@@ -93,6 +93,11 @@ class MSOfficeParser(ZipParser):
93 r'^(?:word|ppt)/theme', 93 r'^(?:word|ppt)/theme',
94 r'^(?:word|ppt)/people\.xml$', 94 r'^(?:word|ppt)/people\.xml$',
95 r'^(?:word|ppt)/numbering\.xml$', 95 r'^(?:word|ppt)/numbering\.xml$',
96 # View properties like view mode, last viewed slide etc
97 r'^(?:word|ppt)/viewProps\.xml$',
98 # Additional presentation-wide properties like printing properties,
99 # presentation show properties etc.
100 r'^(?:word|ppt)/presProps\.xml$',
96 101
97 # we have an allowlist in self.files_to_keep, 102 # we have an allowlist in self.files_to_keep,
98 # so we can trash everything else 103 # so we can trash everything else